*,
*::after,
*::before {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Roboto-Light';
    src: url('/css/fonts/Roboto-Light.eot');
    src: url('/css/fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
    url('/css/fonts/Roboto-Light.woff2') format('woff2'), 
    url('/css/fonts/Roboto-Light.woff') format('woff'),
    url('/css/fonts/Roboto-Light.ttf') format('truetype'),
    url('/css/fonts/Roboto-Light.svg#Roboto-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'PlayfairDisplay-Black';
    src: url('/css/fonts/PlayfairDisplay-Black.eot');
    src: url('/fonts/PlayfairDisplay-Black.eot?#iefix') format('embedded-opentype'),
    url('/css/fonts/PlayfairDisplay-Black.woff2') format('woff2'),
    url('/css/fonts/PlayfairDisplay-Black.woff') format('woff'), 
    url('/bp-mz-test/css/fonts/PlayfairDisplay-Black.ttf') format('truetype'),
    url('/css/fonts/PlayfairDisplay-Black.svg#PlayfairDisplay-Black') format('svg');
    font-weight: 900;
    font-style: normal;
}

body {
    font-family: 'Roboto-Light', sans-serif;
    min-height: 100vh;
    color: #3f0d01;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow: hidden;
}

button:focus {
    outline: 0;
}


/* SPLASHPAGE */

.splash {
    height: auto;
    width: 100vw;
    z-index: 11;
}

.splash a {
    font-family: 'Roboto-Light';
    color: #3f0d01;
    text-align: center;
    margin-top: 2vh;
    margin-bottom: 0;
    font-size: 1.42vw;
}

.marazagologo {
    background: url('/img/marazago_logo.svg') no-repeat top center;
    background-size: contain;
    cursor: pointer;
    height: 16vw;
    width: 50vw;
    margin-left: 25vw;
}

.splash-mail,
.splash-call {
    width: 50vw;
    font-family: 'Roboto-Light';
    text-decoration: none;
    bottom: 0;
    text-align: center;
    font-size: 1.42vw;
    transition-duration: 0.5s;
    cursor: pointer;
    display: inline-block;
    background-color: #d4b4a9;
    color: #3f0d01;
    position: absolute;
    z-index: 50;
}

.splash-mail a {
    margin-bottom: 0;
    display: block;
    padding-bottom: 1vw;
    padding-top: 1vw;
    color: #3f0d01;
    transition-duration: 0.5s;
}

.splash-call a {
    margin-bottom: 0;
    display: block;
    padding-bottom: 1vw;
    padding-top: 1vw;
    color: #3f0d01;
    transition-duration: 0.5s;
}

.splash-call {
    left: 0;
}

.splash-mail {
    right: 0;
}

.splash-mail:hover {
    background-color: #3f0d01;
    color: #d4b4a9;
}

.splash-mail a:hover {
    color: #d4b4a9;
}

.splash-call:hover {
    background-color: #3f0d01;
    color: #d4b4a9;
}

.splash-call a:hover {
    color: #d4b4a9;
}


/* BUTTON */

#button {
    background-color: #f9ebed;
    border: none;
    color: #3f0d01;
    padding: 1.35vw 5vw;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.42vw;
    cursor: pointer;
    border-radius: 0.3vw;
    transition-duration: 0.5s;
    font-family: 'Roboto-Light', sans-serif;
}

#button.enter {
    margin-top: 15vh;
    margin-bottom: 15vh;
}

#button:hover {
    background-color: #3f0d01;
    color: #f9ebed;
}

#moreinfo {
    position: relative;
    z-index: 50;
    width: 4vw;
    height: 4vw;
    margin-top: 5vw;
    margin-left: 48vw;
    bottom: 0;
    transition-duration: 0.5s;
    background-image: url('/img/marazargo-arrow-down.svg');
    background-repeat: no-repeat;
    background-position: center;
}

#moreinfo:before {
    position: absolute;
    content: '';
    top: -5vh;
    right: -5vh;
    left: -5vh;
    bottom: -5vh;
    z-index: 40;
}

a {
    display: inline-block;
    text-decoration: none;
    color: #3f0d01;
    color: var(--color-link);
    outline: none;
    margin-bottom: 2.5vw;
}


/* CAROUSEL */

.slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    background-color: #f4500;
}


/* Color schemes */

.marazago {
    --color-text: #fff;
    --color-link: #5f5f5f;
    --color-link-hover: #ff963b;
    --color-enter: #fff;
    --color-title: #fff;
    --color-subtitle: #5f5f5f;
    --color-menu-item: #000;
    --color-menu-item-hover: #ff963b;
    --color-menu-item-hover-alt: #8544da;
    --color-content: #222325;
    --color-content-fixed: #f5dad3;
    --font-alt: 200 6vw/1 'Spectral', serif;
    --color-next: #5f5f5f;
    --color-next-hover: #8544da;
}


/* Page Loader */

.js .loading::before {
    content: '';
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d3b4aa;
}

.js .loading::after {
    content: '';
    position: fixed;
    z-index: 10000;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    pointer-events: none;
    background: #d3b4aa;
    background: var(--color-text);
    border-radius: 50%;
    animation: loaderAnim 0.5s ease infinite alternate forwards;
}

@keyframes loaderAnim {
    0% {
        transform: scale3d(0.5, 0.5, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}

.hidden {
    position: absolute;
    overflow: hidden;
    width: 0;
    height: 0;
    pointer-events: none;
}


/* Page transitions */

main {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.content {
    width: 100%;
    height: 100vh;
    position: relative;
}

.content--intro {
    z-index: 100;
    height: 200vh;
}

.content--fixed {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #d3b4aa;
    /* background-image: var(--bg-img); */
    /* can't use this as relative path until it's fixed in Chrome https://bugs.chromium.org/p/chromium/issues/detail?id=618165 */
    background-position: 50% 50%;
    background-size: cover;
}

.marazago .content--fixed {
    background-color: #f5dad3;
}

.content__inner {
    width: 100%;
    height: 100vh;
    position: relative;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content--intro .content__inner {
    background: #d3b4aa;
    background-repeat: no-repeat;
    background-position: center;
}

.content h2 {
    margin: 0;
}

.shape-wrap {
    position: relative;
    z-index: 10;
    margin: -5px 0 0 0;
    /* Hide the gap */
}

.shape {
    height: 100vh;
    width: 100%;
    display: block;
    fill: #d3b4aa;
}

.content__title {
    font: var(--font-alt);
    color: var(--color-title);
    margin: 0;
    line-height: 1;
}

.content__title--filled {
    background: var(--color-content);
    padding: 0.25em 0.5em;
}

.content__title span {
    display: inline-block;
}

.content__subtitle {
    font: var(--font-alt);
    font-size: 1.5em;
    color: var(--color-subtitle);
    padding: 0.5em 0 0 0;
    margin: 0;
}

.enter,
.explore {
    margin: 0 0 0 0;
    font-size: 1em;
    letter-spacing: 3px;
    cursor: pointer;
    font-weight: bold;
    white-space: pre;
    color: var(--color-enter);
    pointer-events: auto;
}

.enter:hover,
.enter:focus {
    color: var(--color-enter);
}

.enter span {
    display: inline-block;
}


/* MAIN PAGE */

h1 {
    font-family: 'Roboto-Light';
    font-size: 2.5vw;
    margin-bottom: 0.5vw;
    margin-top: 0;
    font-weight: 300;
    line-height: 1.2;
    color: #3f0d01;
}

ul {
    list-style-type: circle;
}

#mainlogo.marazagologo {
    margin-top: 17.5vh;
    cursor: auto;
    font-size: 1.42vw;
}

.main-text {
    width: 50vw;
    margin-left: 25vw;
    text-align: center;
    line-height: 1.4;
}

.socialmedia {
    width: 50vw;
    height: 4vh;
    position: fixed;
    left: 25vw;
    bottom: 0.5vw;
    color: #9a7a6f;
    font-size: 1.43vw;
}

#pinterest {
    position: absolute;
    width: auto;
    height: auto;
    left: 0;
}

#pinterest:hover {
    color: #3f0d01;
    transition-duration: 0.5s;
}

#facebook {
    position: absolute;
    width: 10vw;
    height: auto;
    right: 20vw;
    text-align: center;
}

#facebook:hover {
    color: #3f0d01;
    transition-duration: 0.5s;
}

#instagram {
    position: absolute;
    width: auto;
    height: auto;
    right: 0;
}

#instagram:hover {
    color: #3f0d01;
    transition-duration: 0.5s;
}


/* OFF CANVAS ELEMENTS */

.banner {
    position: fixed;
    margin-left: 5.4vw;
    margin-right: 4vw;
    padding-top: 7.8vh;
    padding-bottom: 7.8vh;
    overflow: hidden;
    overflow-y: scroll;
    height: 100vh;
    z-index: auto;
    width: 35vw;
}

.banner.banner-left {
    padding-right: 1.5vw;
}

#banner-text-left {
    position: fixed;
    text-align: center;
    color: black;
    top: 0;
    left: 40vw;
    width: 10vw;
    height: 100vh;
    z-index: 103;
    cursor: pointer;
}

#ourapproach {
    background-image: url('/img/marazago_approach.svg');
    height: 100vh;
    width: 2vw;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 3.9vw;
}


/* left */

.foo {
    z-index: 110 !important;
}

nav#offcanvas-menuleft {
    /* Full screen nav menu */
    width: 50vw;
    height: 100vh;
    /* this is for browsers that don't support CSS3 translate3d */
    -moz-transform: translate3d(-40vw, 0, 0);
    -webkit-transform: translate3d(-40vw, 0, 0);
    transform: translate3d(-40vw, 0, 0);
}

input[type="checkbox"]#toggleboxleft:checked~div#banner-left {
    -moz-transform: translate3d(0, 50vw, 0);
    -webkit-transform: translate3d(0, 50vw, 0);
    transform: translate3d(0, 50vw, 0);
}

nav#offcanvas-menuleft {
    left: 0vw;
}


/*SIDEBAR LEFT*/

input[type="checkbox"]#toggleboxleft {
    /* checkbox used to toggle menu state */
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
}

nav#offcanvas-menuleft label#closex {
    /* Large x close button inside nav */
    width: auto;
    height: auto;
    overflow: hidden;
    display: block;
    position: absolute;
    cursor: pointer;
    text-indent: -10000px;
    line-height: 1.1;
    z-index: 10;
    top: 0;
    right: 0;
}

input[type="checkbox"]#toggleboxleft:checked~nav#offcanvas-menuleft {
    /* nav state when corresponding checkbox is checked */
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
    /* this is for browsers that don't support CSS3 translate3d in showing the menu */
    -moz-transition-delay: 0s;
    /* No delay for applying "visibility:visible" property when menu is going from "closed" to "open" */
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

nav#offcanvas-menuleft {
    top: 0;
    z-index: 104;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #f9ebed;
    display: block;
    position: fixed;
    color: #000;
    overflow: auto;
    -moz-transition: -moz-transform 0.5s, visibility 0s 0.5s;
    /* transition settings */
    -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
    transition: transform 0.5s, visibility 0s 0.5s;
}


/* OFF CANVAS RIGHT */

.banner.banner-right {
    margin-left: 10vw;
    width: 38.6vw;
    padding-right: 4vw;
}

#banner-text-right {
    position: fixed;
    text-align: center;
    color: black;
    top: 0;
    right: 40vw;
    width: 10vw;
    height: 100vh;
    z-index: 103;
    cursor: pointer;
}

#why-us {
    background-image: url('/img/marazago_whyus.svg');
    height: 100vh;
    width: 2vw;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 3.9vw;
}

nav#offcanvas-menuright {
    /* Full screen nav menu */
    width: 50vw;
    height: 100vh;
    /* this is for browsers that don't support CSS3 translate3d */
    -moz-transform: translate3d(40vw, 0, 0);
    -webkit-transform: translate3d(40vw, 0, 0);
    transform: translate3d(40vw, 0, 0);
}

input[type="checkbox"]#toggleboxright:checked~div#banner-right {
    -moz-transform: translate3d(0, 50vw, 0);
    -webkit-transform: translate3d(0, 50vw, 0);
    transform: translate3d(0, 50vw, 0);
}

nav#offcanvas-menuright {
    right: 0vw;
}


/*SIDEBAR right*/

input[type="checkbox"]#toggleboxright {
    /* checkbox used to toggle menu state */
    position: absolute;
    right: 0;
    top: 0;
    visibility: hidden;
}

nav#offcanvas-menuright label#closex {
    /* Large x close button inside nav */
    width: auto;
    height: auto;
    overflow: hidden;
    display: block;
    position: absolute;
    cursor: pointer;
    text-indent: -10000px;
    line-height: 1.1;
    z-index: 10;
    top: 0;
    left: 0;
}

input[type="checkbox"]#toggleboxright:checked~nav#offcanvas-menuright {
    /* nav state when corresponding checkbox is checked */
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
    /* this is for browsers that don't support CSS3 translate3d in showing the menu */
    -moz-transition-delay: 0s;
    /* No delay for applying "visibility:visible" property when menu is going from "closed" to "open" */
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

nav#offcanvas-menuright {
    top: 0;
    z-index: 104;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #f7f3f3;
    ;
    display: block;
    position: fixed;
    color: #000;
    overflow: auto;
    -moz-transition: -moz-transform 0.5s, visibility 0s 0.5s;
    /* transition settings */
    -webkit-transition: -webkit-transform 0.5s, visibility 0s 0.5s;
    transition: transform 0.5s, visibility 0s 0.5s;
}


/* Open Close button */

#closebuttonright {
    position: fixed;
    top: 2vw;
    right: 2vw;
    z-index: 610;
    height: 2vw;
    width: 2vw;
    background-image: url(/img/marazago_close.svg);
    cursor: pointer;
    opacity: 0.5;
}

#closebuttonleft {
    position: fixed;
    top: 2vw;
    left: 2vw;
    z-index: 610;
    height: 2vw;
    width: 2vw;
    background-image: url(/img/marazago_close.svg);
    cursor: pointer;
    opacity: 0.5;
}


/* CONTACT PAGE */

.back {
    position: absolute;
    top: 2em;
    right: 2em;
    z-index: 100;
    color: #222;
    text-decoration: none;
    transition: color .3s;
}

.back:hover {
    color: #aaa;
}

.overlay-trigger button {
    font-family: 'PlayfairDisplay-Black';
    border: none;
    padding-top: 1.35vw;
    padding-bottom: 1.35vw;
    width: 16vw;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 2vw;
    cursor: pointer;
    border-radius: 0.3vw;
    transition-duration: 0.5s;
    margin-left: 42vw;
    margin-top: 10vh;
    margin-bottom: 10vh;
    background-color: #ebb6ad;
    color: #f7f3f3;
}

.overlay-trigger button:hover {
    background-color: #f7f3f3;
    color: #ebb6ad;
}

.overlay-close {
    position: fixed;
    top: 4vw;
    right: 4vw;
    z-index: 610;
    height: 4vw;
    width: 4vw;
    background-image: url('/img/marazago_close.svg');
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid transparent;
    background-color: transparent;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .2s ease-in-out;
}

.overlay-close.is-open {
    opacity: 1;
    visibility: visible;
}

.overlay01 {
    position: fixed;
    top: 0vw;
    left: 0;
    z-index: 600;
    width: 100vw;
    height: 100vh;
    background: rgba(211, 180, 170, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: .3s linear;
    color: white;
}

.overlay01.is-open {
    opacity: 1;
    visibility: visible;
}


/* Contact page information */

.contact-photo {
    width: 17vw;
    height: 17vw;
    margin-left: 41.5vw;
    background: url('/img/mz-portrait.png');
    background-repeat: round;
    background-position: initial;
    border-radius: 100%;
    margin-top: 4vw;
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: pixelated;
}

.contact-text {
    width: 50vw;
    margin-left: 25vw;
    text-align: center;
    color: #3f0d01;
    margin-bottom: 0vw;
    margin-top: 8vh;
    line-height: 1.4;
}

h3 {
    margin-top: 0;
    margin-bottom: 0;
}

h3 a {
    color: #f7f3f3;
    font-family: 'PlayfairDisplay-Black';
    font-size: 2.3vw;
    margin-bottom: 0vw;
    margin-top: 0vw;
    cursor: pointer;
    line-height: 1;
}

h3 a:hover {
    opacity: 0.5;
    transition-duration: 0.2s;
}

.contact-socialmedia {
    position: absolute;
    width: 17vw;
    bottom: 0;
    margin-left: 41.5vw;
    margin-bottom: 1.5vw;
    height: auto;
}

#contact-pinterest {
    display: inline-block;
    width: 4vw;
    height: 4vw;
    bottom: 0;
    background-image: url('/img/marazago-pinterest.svg');
    background-repeat: no-repeat;
    background-position: center;
    float: left;
    border-radius: 100%;
}

#contact-pinterest:hover {
    opacity: 0.5;
    transition-duration: 0.2s;
}

#contact-facebook {
    display: inline-block;
    width: 4vw;
    height: 4vw;
    bottom: 0;
    background-image: url('/img/marazago-fb.svg');
    background-repeat: no-repeat;
    background-position: center;
    float: left;
    margin-left: 2.5vw;
    border-radius: 100%;
}

#contact-facebook:hover {
    opacity: 0.5;
    transition-duration: 0.2s;
}

#contact-instagram {
    display: inline-block;
    width: 4vw;
    height: 4vw;
    bottom: 0;
    background-image: url('/img/marazago-insta.svg');
    background-repeat: no-repeat;
    background-position: center;
    float: right;
    border-radius: 100%;
}

#contact-instagram:hover {
    opacity: 0.5;
    transition-duration: 0.2s;
}


/* phone website */
@media(min-height: 600px) and (min-width: 1000px) {
    #mainlogo.marazagologo {
        margin-top: 14.5vh;
        cursor: auto;
            height: 20vh;
            width: 50vw;
    }
}

@media(max-width: 600px) {
    .content--intro {
        position: fixed;
        overflow: hidden;
    }
    .marazagologo {
        background: url('/img/marazago_logo.svg') no-repeat top center;
        height: 23.5vw;
        width: 75vw;
        margin-left: 12.5vw;
    }
    #moreinfo {
        width: 10vw;
        height: 10vw;
        margin-top: 7vw;
        margin-left: 45vw;
    }
    #moreinfo:before {
        position: absolute;
        content: '';
        top: -5vh;
        right: -5vh;
        left: -5vh;
        bottom: -5vh;
        z-index: 40;
    }
    .splash a {
        margin-top: 3vh;
        margin-bottom: 0;
        font-size: 3.7vw;
    }
    .splash-mail,
    .splash-call {
        width: 100vw;
        padding-bottom: 3vw;
        padding-top: 3vw;
        font-family: 'Roboto-Light';
        text-decoration: none;
        bottom: 0;
        text-align: center;
        font-size: 3.7vw;
        transition-duration: 0.5s;
        cursor: pointer;
        display: inline-block;
        background-color: #d4b4a9;
        color: #3f0d01;
        z-index: 50;
    }
    .splash-call {
        left: 0;
        position: fixed;
        bottom: 0;
    }
    .splash-mail {
        right: 0;
        top: 0;
        bottom: auto;
        position: fixed;
    }
    .splash-mail:hover {
        background-color: #3f0d01;
        color: #d4b4a9;
    }
    .splash-call:hover {
        background-color: #3f0d01;
        color: #d4b4a9;
    }
    a {
        margin-bottom: 3.7vw;
        font-size: 4vw;
    }
    /* MAIN PAGE */
    h1 {
        font-family: 'Roboto-Light';
        font-size: 6.5vw;
        margin-bottom: 0.5vw;
    }
    #mainlogo.marazagologo {
        margin-top: 8.5vh;
        background: url('/img/marazago_logo.svg') no-repeat top center;
        width: 50vw;
        margin-left: 25vw;
        height: 16.5vw;
        margin-bottom: 13vh;
    }
    .main-text {
        width: 50vw;
        margin-left: 25vw;
        text-align: center;
        line-height: 1.4;
        font-size: 4vw;
    }
    .socialmedia {
        display: none;
    }
    /* left */
    .foo {
        z-index: 110 !important;
    }
    .banner {
        position: fixed;
        margin-left: 8.5vw;
        margin-right: 4vw;
        padding-top: 8.5vw;
        padding-bottom: 30.5vw;
        overflow: hidden;
        overflow-y: scroll;
        height: 100vh;
        z-index: auto;
        width: 75vw;
    }
    .banner.banner-left {
        padding-right: 5.5vw;
        margin-left: 11.5vw;
        width: 74vw;
    }
    #banner-text-left {
        position: fixed;
        text-align: center;
        color: black;
        top: 0;
        left: 80vw;
        width: 20vw;
        height: 100vh;
        z-index: 103;
        cursor: pointer;
    }
    #ourapproach {
        width: 6.5vw;
        margin-left: 6.8vw;
    }
    nav#offcanvas-menuleft {
        /* Full screen nav menu */
        width: 100vw;
        height: 100vh;
        /* this is for browsers that don't support CSS3 translate3d */
        -moz-transform: translate3d(-80vw, 0, 0);
        -webkit-transform: translate3d(-80vw, 0, 0);
        transform: translate3d(-80vw, 0, 0);
    }
    input[type="checkbox"]#toggleboxleft:checked~div#banner-left {
        -moz-transform: translate3d(0, 100vw, 0);
        -webkit-transform: translate3d(0, 100vw, 0);
        transform: translate3d(0, 100vw, 0);
    }
    /* OFF CANVAS RIGHT */
    .banner.banner-right {
        margin-left: 20vw;
        width: 75vw;
        padding-right: 4vw;
    }
    #banner-text-right {
        right: 80vw;
        width: 20vw;
    }
    #why-us {
        height: 100vh;
        width: 6.5vw;
        background-repeat: no-repeat;
        background-position: center;
        margin-left: 6.8vw;
    }
    nav#offcanvas-menuright {
        /* Full screen nav menu */
        width: 100vw;
        height: 100vh;
        /* this is for browsers that don't support CSS3 translate3d */
        -moz-transform: translate3d(80vw, 0, 0);
        -webkit-transform: translate3d(80vw, 0, 0);
        transform: translate3d(80vw, 0, 0);
    }
    input[type="checkbox"]#toggleboxright:checked~div#banner-right {
        -moz-transform: translate3d(0, 100vw, 0);
        -webkit-transform: translate3d(0, 100vw, 0);
        transform: translate3d(0, 100vw, 0);
    }
    nav#offcanvas-menuright {
        right: 0vw;
    }
    /* Overlay button */
    .overlay-trigger button {
        padding-top: 2.5vw;
        padding-bottom: 2.5vw;
        width: 50vw;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 6vw;
        cursor: pointer;
        border-radius: 0.3vw;
        transition-duration: 0.5s;
        margin-left: 25vw;
        margin-top: 10vh;
        bottom: 0;
        position: fixed;
        margin-bottom: 17vh;
    }
    /* Contact page information */
    .overlay01 {
        background: #d4b4a9;
    }
    .overlay-close {
        position: fixed;
        top: 5vw;
        right: 5vw;
        z-index: 610;
        height: 10vw;
        width: 10vw;
    }
    .contact-photo {
        width: 44vw;
        height: 44vw;
        margin-left: 28vw;
        margin-top: 5vw;
    }
    .contact-text {
        width: 90vw;
        margin-left: 5vw;
        text-align: center;
        color: #3f0d01;
        margin-bottom: 0vw;
        margin-top: 5vh;
        line-height: 1.4;
        font-size: 3.4vw;
    }
    h3 {
        font-size: 0vw;
        line-height: 1;
    }
    h3 a {
        font-size: 6vw;
    }
    .contact-socialmedia {
        width: 90vw;
        margin-left: 5vw;
        margin-bottom: 5vw;
        height: 10vw;
        position: fixed;
    }
    #contact-pinterest {
        width: 10vw;
        height: 10vw;
    }
    #contact-facebook {
        width: 10vw;
        height: 10vw;
        margin-left: 30vw;
    }
    #contact-instagram {
        width: 10vw;
        height: 10vw;
    }
    
    /* Open Close button */

#closebuttonright {
    top: 4vw;
    right: 4vw;
    height: 5vw;
    width: 5vw;
}

#closebuttonleft {
    top: 4vw;
    left: 4vw;
    height: 5vw;
    width: 5vw;
}
    
    /* Mobile only */
    .mobile-socialmedia {
        position: fixed;
        width: 50vw;
        bottom: 0;
        margin-left: 25vw;
        margin-bottom: 5vw;
        height: 10vw;
    }
    #mobile-pinterest {
        display: inline-block;
        width: 10vw;
        height: 10vw;
        bottom: 0;
        background-image: url('/img/marazago-pinterest.svg');
        background-repeat: no-repeat;
        background-position: center;
        float: left;
        border-radius: 100%;
    }
    #mobile-facebook {
        display: inline-block;
        width: 10vw;
        height: 10vw;
        bottom: 0;
        background-image: url('/img/marazago-fb.svg');
        background-repeat: no-repeat;
        background-position: center;
        float: left;
        margin-left: 10vw;
        border-radius: 100%;
    }
    #mobile-instagram {
        display: inline-block;
        width: 10vw;
        height: 10vw;
        bottom: 0;
        background-image: url('/img/marazago-insta.svg');
        background-repeat: no-repeat;
        background-position: center;
        float: right;
        border-radius: 100%;
    }
}


/* IE PAGE */

.main-ie-text {
    width: 80%;
    margin-left: 10%;
    text-align: center;
    font-size: 1.3em;
    color: #3f0d01;
}

.main-ie-text a {
    color: #9a7a6f;
}

.main-ie-text a:hover {
    color: #3f0d01;
    transition-duration: 0.5s;
}
