/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}


/* =========================================================
   FONTS
========================================================= */

@font-face {
    font-family: "metaregular";
    src: url("../Fonts/metasans/FFMetaProRegular.TTF") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "metarthin";
    src: url("../Fonts/metasans/FFMetaProThin.TTF") format("truetype");
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: "metamedium";
    src: url("../Fonts/metasans/FFMetaProMedium.TTF") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "metalight";
    src: url("../Fonts/metasans/FFMetaProLight.TTF") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "metacondregular";
    src: url("../Fonts/metasans/FFMetaProCondRg.TTF") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "metacondmedium";
    src: url("../Fonts/metasans/FFMetaProCondMed.TTF") format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "metacondbold";
    src: url("../Fonts/metasans/FFMetaProCondXBoldIt.TTF") format("truetype");
    font-weight: 800;
    font-style: italic;
}


/* MINERVA */

@font-face {
    font-family: "minregular";
    src: url("../Fonts/minerva/T-26-Minerva-Modern-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "minblack";
    src: url("../Fonts/minerva/MinervaModern Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "minbalckitalic";
    src: url("../Fonts/minerva/MinervaModern BlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: "minbold";
    src: url("../Fonts/minerva/MinervaModern Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "minregular";
    src: url("../Fonts/minerva/T-26-Minerva-Modern-Regular.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "minbolditalic";
    src: url("../Fonts/minerva/MinervaModern BoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: "minitalic";
    src: url("../Fonts/minerva/MinervaModern Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}


@media (min-width:600px) {
    .mobile {
        display: none !important;
    }
}

@media (max-width:600px) {
    .desktop {
        display: none !important;
    }
}

/*-------------------------------------
Header
-------------------------------------*/


.header {
    position: fixed;
    top: 3vw;
    left: 50%;
    transform: translateX(-50%);

    z-index: 1000;

    width: 82vw;
    height: 8vw;

    padding: 0 2.5vw;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, .18);

    border: .08vw solid rgba(255, 255, 255, .65);

    border-radius: 1.2vw;

    backdrop-filter: blur(.3vw);
    -webkit-backdrop-filter: blur(.3vw);

    box-shadow:
        0 .6vw 2vw rgba(0, 0, 0, .12),
        inset 0 .08vw 0 rgba(255, 255, 255, .4);

    transition:
        background .3s ease,
        box-shadow .3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, .28);
}



.header-logo {
    display: flex;
    align-items: center;

    width: 15vw;

    text-decoration: none;
}

.header-logo img {
    display: block;

    width: 100%;
    height: auto;
}



.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 1.8vw;
}

.header-nav-link {
    position: relative;

    padding: .7vw 0;

    color: #111;

    text-decoration: none;

    font-family: "minregular";
    font-size: 1vw;

    white-space: nowrap;

    transition: opacity .3s ease;
}

.header-nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: .08vw;

    background: #111;

    transform: scaleX(0);
    transform-origin: right;

    transition:
        transform .4s cubic-bezier(.22, 1, .36, 1);
}



.header-nav-link:hover::after,
.header-nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}



.menu-button {
    position: fixed;

    top: 3vw;
    left: calc(50% + 43vw);

    z-index: 9999;

    width: 3.5vw;
    height: 8vw;

    padding: 0;

    border: 0;

    background: transparent;

    color: #fff;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
mix-blend-mode: difference;
    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.menu-button.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.menu-icon {
    width: 2vw;

    display: flex;
    flex-direction: column;

    gap: .45vw;
}

.menu-line {
    display: block;

    width: 100%;
    height: .14vw;

    background: currentColor;
}


.mega-menu {
    position: fixed;

    inset: 0;

    z-index: 2000;

    width: 100vw;
    height: 100vh;

    display: grid;
    grid-template-columns: 35vw 65vw;

    overflow: hidden;

    background: #fff;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    clip-path: inset(0 0 0 100%);

    transition:
        opacity .35s ease,
        visibility .35s ease,
        clip-path .8s cubic-bezier(.77, 0, .175, 1);
}

.mega-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    clip-path: inset(0 0 0 0);
}



.mega-menu-image {
    position: relative;

    width: 35vw;
    height: 100vh;

    overflow: hidden;

    background: #777;
}

.mega-menu-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.03);

    transition:
        transform 1.2s cubic-bezier(.22, 1, .36, 1);
}

.mega-menu.open .mega-menu-image img {
    transform: scale(1);
}

.mega-menu-image-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .4);
}



.mega-menu-panel {
    position: relative;

    width: 65vw;
    height: 100vh;

    box-sizing: border-box;

    padding: 3vw 3vw 2vw;

    background: #fff;

    color: #111;

    overflow: hidden;

    transform: translateX(2vw);

    transition:
        transform .8s cubic-bezier(.77, 0, .175, 1);
}

.mega-menu.open .mega-menu-panel {
    transform: translateX(0);
}



.mega-close {
    position: absolute;

    top: 1.2vw;
    right: 1.2vw;

    z-index: 20;

    width: 4vw;
    height: 4vw;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.mega-menu.open .mega-close {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-close span {
    position: absolute;

    display: block;

    width: 1.8vw;
    height: .12vw;

    background: #111;

    transition:
        background .25s ease,
        transform .25s ease;
}

.mega-close span:first-child {
    transform: rotate(45deg);
}

.mega-close span:last-child {
    transform: rotate(-45deg);
}





.mega-menu-links {
    position: relative;

    width: 100%;

    padding-top: .5vw;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mega-menu-link {
    position: relative;

    display: block;

    width: max-content;

    margin: 0 0 0.5vw;

    color: #050505;

    text-decoration: none;

    font-family: "minregular";

    font-size: 4.2vw;


    line-height: .92;


    opacity: 0;

    transform: translateX(2vw);

    transition:
        opacity .55s ease,
        transform .7s cubic-bezier(.22, 1, .36, 1),
        color .25s ease;
}

.mega-menu.open .mega-menu-link {
    opacity: 1;

    transform: translateX(0);
}

.mega-menu.open .mega-menu-link:nth-child(1) {
    transition-delay: .12s;
}

.mega-menu.open .mega-menu-link:nth-child(2) {
    transition-delay: .17s;
}

.mega-menu.open .mega-menu-link:nth-child(3) {
    transition-delay: .22s;
}

.mega-menu.open .mega-menu-link:nth-child(4) {
    transition-delay: .27s;
}

.mega-menu.open .mega-menu-link:nth-child(5) {
    transition-delay: .32s;
}

.mega-menu.open .mega-menu-link:nth-child(6) {
    transition-delay: .37s;
}

.mega-menu.open .mega-menu-link:nth-child(7) {
    transition-delay: .42s;
}

.mega-menu-link:hover {
    color: #c49a35;
}



.mega-menu-contact {
    position: absolute;

    left: 3vw;
    bottom: 9vw;

    width: 38vw;

    display: grid;

    grid-template-columns: 12vw 1fr;

    column-gap: 2vw;

    opacity: 0;

    transform: translateY(1vw);

    transition:
        opacity .6s ease,
        transform .7s cubic-bezier(.22, 1, .36, 1);

    transition-delay: .35s;
}

.mega-menu.open .mega-menu-contact {
    opacity: 1;

    transform: translateY(0);
}


/* LABEL */

.mega-menu-label {
    font-family: "metalight";

    font-size: 1vw;

    line-height: 1.1;

    color: #888;
}


/* CONTACT INFO */

.mega-menu-contact-info {
    display: flex;
    flex-direction: column;

    gap: .65vw;
}

.mega-menu-contact-info a,
.mega-menu-contact-info p {
    margin: 0;

    color: #111;

    text-decoration: none;

    font-family: "metalight";

    font-size: 1.25vw;

    line-height: 1.2;
}

.mega-menu-contact-info a:first-child {
    font-family: "minregular";
}

.mega-menu-contact-info a:hover {
    opacity: .5;
}


/* SOCIALS */

.mega-menu-socials {
    position: absolute;

    left: 3vw;
    bottom: 3vw;

    width: 38vw;

    display: grid;

    grid-template-columns: 12vw 1fr;

    column-gap: 2vw;

    opacity: 0;

    transform: translateY(1vw);

    transition:
        opacity .6s ease,
        transform .7s cubic-bezier(.22, 1, .36, 1);

    transition-delay: .42s;
}

.mega-menu.open .mega-menu-socials {
    opacity: 1;

    transform: translateY(0);
}


/* SOCIAL LINKS */

.mega-menu-social-links {
    display: flex;
    flex-direction: column;

    gap: .55vw;
}

.mega-menu-social-links a {
    color: #111;

    text-decoration: none;

    font-family: "minregular";

    font-size: 1.2vw;

    line-height: 1.1;

    transition: opacity .25s ease;
}

.mega-menu-social-links a:hover {
    opacity: .5;
}


/* BOTTOM */

.mega-menu-bottom {
    position: absolute;

    left: 3vw;
    right: 3vw;
    bottom: 1vw;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family: "metalight";

    font-size: .7vw;

    line-height: 1;

    color: #555;

    opacity: 0;

    transition: opacity .5s ease;

    transition-delay: .5s;
}

.mega-menu.open .mega-menu-bottom {
    opacity: 1;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .header {
        top: 4vw;
        left: 9vw;

        transform: none;

        width: 82vw;
        height: 24vw;

        padding: 0 5vw;

        border-radius: 3vw;
    }



    .header-logo {
        width: 35vw;
    }



    .header-nav {
        display: none;
    }



    .menu-button {
        top: 8vw;
        right: 14vw;
        left: auto;

        width: 9vw;
        height: 16vw;
    }

    .menu-icon {
        width: 8vw;

        gap: 1vw;
    }

    .menu-line {
height: .5vw;
    }



    .mega-menu {
        width: 100vw;
        height: 100dvh;

        display: block;

        overflow-y: auto;
        overflow-x: hidden;

        background: #fff;

        clip-path: inset(0 0 100% 0);
    }

    .mega-menu.open {
        clip-path: inset(0 0 0 0);
    }



    .mega-menu-image {
        position: absolute;

        top: 0;
        left: 0;

        width: 100vw;
        height: 100dvh;

        z-index: 0;
    }

    .mega-menu-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

    .mega-menu-image-overlay {
        background: rgba(0, 0, 0, .45);
    }



    .mega-menu-panel {
        position: relative;

        z-index: 2;

        width: 100vw;
        min-height: 100dvh;
        height: auto;

        box-sizing: border-box;

        padding: 20vw 7vw 8vw;

        background: rgba(255, 255, 255, .96);

        overflow: visible;

        transform: translateX(5vw);
    }

    .mega-menu.open .mega-menu-panel {
        transform: translateX(0);
    }


    /* CLOSE */

    .mega-close {
        top: 4vw;
        right: 4vw;

        width: 12vw;
        height: 12vw;
    }

    .mega-close span {
        width: 9.5vw;
        height: .5vw;
    }


    /* MENU LINKS */

    .mega-menu-links {
        width: 100%;

        padding-top: 5vw;
    }

    .mega-menu-link {
        width: 100%;

        margin-bottom: 4vw;

        font-family: "metalight";

        font-size: 10vw;

        line-height: .9;

        letter-spacing: -.25vw;

        white-space: normal;

        transform: translateX(5vw);
    }


    /* CONTACT */

    .mega-menu-contact {
        position: relative;

        left: auto;
        bottom: auto;

        width: 100%;

        margin-top: 15vw;

        display: grid;

        grid-template-columns: 22vw 1fr;

        column-gap: 4vw;
    }

    .mega-menu-label {
        font-size: 3.5vw;
    }

    .mega-menu-contact-info {
        gap: 2vw;
    }

    .mega-menu-contact-info a,
    .mega-menu-contact-info p {
        font-size: 4vw;

        line-height: 1.25;
    }


    /* SOCIALS */

    .mega-menu-socials {
        position: relative;

        left: auto;
        bottom: auto;

        width: 100%;

        margin-top: 10vw;

        display: grid;

        grid-template-columns: 22vw 1fr;

        column-gap: 4vw;
    }

    .mega-menu-social-links {
        gap: 2vw;
    }

    .mega-menu-social-links a {
        font-size: 4vw;
    }




    .mega-menu-bottom {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        width: 100%;

        margin-top: 12vw;

        padding-top: 5vw;

        border-top: .1vw solid rgba(0, 0, 0, .2);

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 2vw;

        font-size: 2.8vw;

        line-height: 1.2;
    }

}


/*----------------------------------
Home Section 1
-----------------------------------*/

.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #111;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.28);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vw;
    z-index: 3;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-small {
    margin: 0;
    font-family: "minregular";
    font-size: 2vw;
    line-height: 1.15;
    letter-spacing: -0.05vw;
    text-align: center;
    text-shadow: 0 0.15vw 0.5vw rgba(0, 0, 0, 0.25);
}

.hero-title {
    margin: 2vw 0 0;
    font-family: "minregular";
    font-size: 4.5vw;
    line-height: 0.95;
    font-weight: 400;
    letter-spacing: -0.2vw;
    white-space: nowrap;
    text-align: center;
    text-shadow: 0 0.15vw 0.5vw rgba(0, 0, 0, 0.25);
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 2.5vw;
    transform: translateX(-50%);
    z-index: 4;
    width: 3vw;
    height: 6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.scroll-svg {
    display: block;
    width: 2.5vw;
    height: auto;
    animation: scrollFloat 2s ease-in-out infinite;
    filter: brightness(0) invert(1);
}

@keyframes scrollFloat {

    0%,
    100% {
        transform: translateY(0vw);
    }

    50% {
        transform: translateY(0.5vw);
    }

}


/*----------------------------------
Mobile
-----------------------------------*/

@media (max-width: 600px) {

    .hero {
        width: 100vw;
        height: 100vh;
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero-overlay {
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.32);
    }

    .hero-content {
        width: 94vw;
        top: 50%;
    }

    .hero-small {
        font-size: 6.5vw;
        line-height: 1.15;
        letter-spacing: -0.09vw;
    }

    .hero-title {
        margin-top: 5vw;
        font-size: 9vw;
        line-height: 0.92;
        letter-spacing: -0.4vw;
        white-space: normal;
    }

    .hero-scroll {
        bottom: 7vw;
        width: 9vw;
        height: 17vw;
    }

    .scroll-svg {
        width: 9vw;
        height: 17vw;
    }
}


/*----------------------------------
Home Section 2
-----------------------------------*/

.home-section-2 {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fef5f0;
    display: flex;
    align-items: center;
    padding: 5vw 0vw;
}

.home-section-2-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/Asstes/strokelogo.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 52vw auto;
    opacity: 0.9;
    pointer-events: none;
}

.home-section-2-content {
    position: relative;
    z-index: 2;
    width: 55vw;
    margin-left: 16vw;
    padding: 8vw 0;
}

.home-section-2-heading h2 {
    margin: 0;
    font-family: "minregular";
    font-size: 3.2vw;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -0.12vw;
    color: #171717;
}

.home-section-2-line {
    width: 100%;
    height: 0.08vw;
    margin-top: 2.2vw;
    background: rgba(40, 40, 40, 0.18);
}

.home-section-2-subheading {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 1.8vw;
}

.home-section-2-subheading span {
    width: 0.7vw;
    height: 2.8vw;
    margin-right: 1.6vw;
    background: #d6ad42;
}

.home-section-2-subheading p {
    margin: 0;
    font-family: "metalight";
    font-size: 1.55vw;
    color: #222;
}

.home-section-2-text {
    width: 50vw;
    margin-top: 7vw;
}

.home-section-2-text p {
    margin: 0;
    font-family: "metalight";
    font-size: 1.55vw;
    line-height: 1.42;
    letter-spacing: -0.025vw;
    color: #222;
}

.home-section-2-logo {
    position: absolute;
    z-index: 3;
    top: 35%;
    right: 13vw;
    transform: translateY(-50%);
    width: 11vw;
}

.home-section-2-logo img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 600px) {

    .home-section-2 {
        display: block;
    }

    .home-section-2-bg {
        width: 100vw;
        height: 100%;
        background-position: top center;
        background-size: 120vw auto;
        opacity: 0.9;
    }

    .home-section-2-content {
        width: 84vw;
        margin-left: 8vw;
        padding-top: 25vw;
        padding-bottom: 20vw;
    }

    .home-section-2-heading h2 {
        font-size: 8vw;
        line-height: 1.03;
        letter-spacing: -0.25vw;
    }

    .home-section-2-line {
        width: 100%;
        height: 0.15vw;
        margin-top: 6vw;
    }

    .home-section-2-subheading {
        margin-top: 5vw;
        align-items: flex-start;
    }

    .home-section-2-subheading span {
        width: 1.5vw;
        min-width: 1.5vw;
        height: 7vw;
        margin-right: 4vw;
    }

    .home-section-2-subheading p {
        font-size: 4.5vw;
        line-height: 1.12;
        letter-spacing: -0.1vw;
    }

    .home-section-2-text {
        width: 84vw;
        margin-top: 12vw;
    }

    .home-section-2-text p {
        font-size: 4.3vw;
        line-height: 1.38;
        letter-spacing: -0.05vw;
    }

    .home-section-2-logo {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 55vw;
        margin: 0 auto 15vw;
    }

    .home-section-2-logo img {
        width: 100%;
    }
}

/*----------------------------------
Home Section 3
-----------------------------------*/

.home-section-3 {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    display: flex;
    justify-content: center;
}

.home-section-3-content {
    width: 90vw;
    padding: 4vw 0 3vw;
    text-align: center;
}

.home-section-3-small {
    margin: 0;
    font-family: "minregular";
    font-size: 3vw;
    line-height: 1;
    color: #151515;
}

.home-section-3-heading {
    margin: 1.2vw 0 0;
    font-family: "minregular";
    font-size: 6.5vw;
    line-height: 0.88;
    font-weight: 400;
    letter-spacing: 0.05vw;
    color: #a87b20;
}

.home-section-3-description {
    margin: 3.2vw 0 0;
    font-family: "metalight";
    font-size: 1.7vw;
    line-height: 1.2;
    color: #171717;
}

.home-section-3-map {
    width: 82vw;
    margin: 4vw auto 0;
}

.home-section-3-map img {
    display: block;
    width: 100%;
    height: auto;
}

.home-section-3-points {
    width: 80vw;
    margin: -4vw auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 4vw;
    row-gap: 2vw;
    text-align: left;
}

.home-section-3-point {
    display: flex;
    align-items: center;
    gap: 1.5vw;
}

.home-section-3-point svg {
    display: block;
    width: 3vw;
    height: auto;
    fill: #c9a33a;
    flex-shrink: 0;
}

.home-section-3-point p {
    margin: 0;
    font-family: "metalight";
    font-size: 1.7vw;
    line-height: 1.1;
    color: #222;
}


/*----------------------------------
Mobile
-----------------------------------*/

@media (max-width: 600px) {


    .home-section-3-content {
        width: 88vw;
        padding: 12vw 0 12vw;
    }

    .home-section-3-small {
        font-size: 5.5vw;
    }

    .home-section-3-heading {
        margin-top: 3vw;
        font-size: 10vw;
        line-height: 0.9;
        letter-spacing: 0;
    }

    .home-section-3-description {
        margin-top: 7vw;
        font-size: 4.4vw;
        line-height: 1.25;
    }

    .home-section-3-map {
        width: 100vw;
        margin-top: 8vw;
        margin-left: -6vw;
    }

    .home-section-3-map img {
        width: 100%;
        height: auto;
    }

    .home-section-3-points {
        width: 82vw;
        margin: -3vw auto 0;
        display: flex;
        flex-direction: column;
        gap: 5vw;
    }

    .home-section-3-point {
        gap: 4vw;
    }

    .home-section-3-point svg {
        width: 8vw;
        height: auto;
        color: #c9a33a;
    }

    .home-section-3-point p {
        font-size: 5vw;
        line-height: 1.15;
    }
}

/*----------------------------------
Home Section 4
-----------------------------------*/

.home-section-4 {
    position: relative;
    width: 100%;
    height: 50vw;
    overflow: hidden;
    background: #aa842c;
    margin-top: 5vw;
}

.home-section-4-spikes {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 20vw;
    background-image: url("/Asstes/Images/patten\ 02.png");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100vw auto;
    pointer-events: none;
}

.home-section-4-content {
    position: relative;
    z-index: 2;
    width: 78vw;
    min-height: 100vh;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 55vw 23vw;
    align-items: start;
}

.home-section-4-image {
    position: relative;
    width: 50vw;
    height: 50vw;
    margin-top: 1.7vw;
    overflow: hidden;
}

.home-section-4-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.home-section-4-image h2 {
    position: absolute;
    left: 1.5vw;
    right: 1.5vw;
    bottom: 2vw;
    margin: 0;
    font-family: "minregular";
    font-size: 3.5vw;
    color: #fff;
    text-align: center;
}

.home-section-4-text {
    width: 28vw;
    margin-left: 0vw;
    margin-top: 15vw;
}

.home-section-4-text p {
    margin: 0;
    font-family: "metalight";
    font-size: 2vw;
    line-height: 1.35;
    color: #fff;
}

.home-section-4-logo {
    position: absolute;
    z-index: 3;
    right: 3vw;
    bottom: 2.5vw;
    width: 6vw;
    opacity: 1;
}

.home-section-4-logo img {
    display: block;
    width: 100%;
    height: auto;
}


/*----------------------------------
Mobile
-----------------------------------*/

@media (max-width: 600px) {

    .home-section-4 {
        width: 100%;
        height: 100%;
    }

    .home-section-4-spikes {
        width: 100vw;
        height: 55vw;
    }

    .home-section-4-content {
        width: 88vw;
        min-height: auto;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
    }

    .home-section-4-image {
        width: 88vw;
        margin-top: 5vw;
        height: 100%;
    }

    .home-section-4-image img {
        width: 100%;
        height: auto;
    }

    .home-section-4-image h2 {
        left: 2vw;
        right: 2vw;
        bottom: 5vw;
        font-size: 6vw;
    }

    .home-section-4-text {
        width: 78vw;
        margin: 10vw auto 20vw;
    }

    .home-section-4-text p {
        font-size: 4.8vw;
        line-height: 1.35;
        margin-bottom: 10vw;
    }

    .home-section-4-logo {
        right: 5vw;
        bottom: 5vw;
        width: 15vw;
    }
}



/*----------------------------------
Home Section 5
-----------------------------------*/

.home-section-5 {
    position: relative;
    width: 100vw;
    padding: 8vw 0;
    overflow: hidden;
    background: #fdf4ef;
    box-sizing: border-box;
}

.home-section-5-cards {
    width: 90vw;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 2vw;
}

.home-section-5-card {
    position: relative;
    flex: 0 0 22vw;
    min-width: 22vw;
    align-self: stretch;
    display: flex;
    perspective: 150vw;
    transition: flex-basis .8s cubic-bezier(.77, 0, .175, 1);
}

.home-section-5-card.is-open {
    flex-basis: 44vw;
}



.home-section-5-front {
    position: relative;
    width: 22vw;
    min-width: 22vw;
    flex: 0 0 22vw;
    box-sizing: border-box;
    padding: 4vw 0vw 2vw 2vw;
    border: .12vw solid #b98a24;
    border-radius: 1vw;
    background: #fdf7f3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    z-index: 3;
}

.home-section-5-card.is-open .home-section-5-front {
    width: 22vw;
    min-width: 22vw;
    flex: 0 0 22vw;
    border-radius: 1vw 0 0 1vw;
}





.home-section-5-title {
    width: 100%;
    flex-shrink: 0;
}

.home-section-5-title h2 {
    margin: 0;
    font-family: "minregular";
    font-size: 2.8vw;
    line-height: .98;
    color: #ae7e1e;
    margin-bottom: 5vw;
}



.home-section-5-button {
    width: 90%;
    padding: 1.2vw 1.5vw;
    box-sizing: border-box;
    border: .12vw solid #c49a35;
    border-radius: 5vw;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    cursor: pointer;
    color: #1d1d1d;
    font-family: "metalight";
    font-size: 1.35vw;
    line-height: 1;
}

.home-section-5-button span {
    white-space: nowrap;
}

.home-section-5-button i {
    width: .6vw;
    height: .6vw;
    flex: 0 0 .6vw;
    border-radius: 50%;
    background: #c49a35;
}



.home-section-5-open {
    position: absolute;
    top: 0;
    left: 22vw;
    width: 22vw;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 0 1vw 1vw 0;
    background: #8e6b25;
    transform-origin: left center;
    transform: rotateY(90deg);
    opacity: 0;
    visibility: hidden;
    backface-visibility: hidden;
    z-index: 2;
    transition:
        transform .85s cubic-bezier(.77, 0, .175, 1),
        opacity .35s ease,
        visibility 0s linear .85s;
}

.home-section-5-card.is-open .home-section-5-open {
    transform: rotateY(0deg);
    opacity: 1;
    visibility: visible;
    transition:
        transform .85s cubic-bezier(.77, 0, .175, 1),
        opacity .35s ease,
        visibility 0s linear 0s;
}



.home-section-5-open-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.home-section-5-open-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.home-section-5-open-overlay {
    position: absolute;
    inset: 0;
    padding: 3vw 1vw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .05),
            rgba(93, 67, 16, .72));
}

.home-section-5-open-overlay p {
    margin: 0;
    font-family: "metalight";
    font-size: 1.1vw;
    line-height: 1.45;
    color: #fff;
    margin-top: 8vw;
}

.home-section-5-open-logo {
    position: absolute;
    bottom: 2vw;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5vw;
}

.home-section-5-open-logo img {
    display: block;
    width: 100%;
    height: auto;

}

.home-section-5-front::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 8vw;
    background: #f5e8e1;
    z-index: -1;
}


/* MOBILE */

/* MOBILE */

@media (max-width: 600px) {

    .home-section-5 {
        width: 100vw;
        padding: 14vw 0;
        overflow: hidden;
    }

    .home-section-5-cards {
        width: 88vw;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 5vw;
    }

    .home-section-5-card,
    .home-section-5-card.is-open {
        width: 100%;
        min-width: 0;
        flex: none;
        display: block;
        perspective: none;
        transition: none;
    }




    .home-section-5-front {
        position: relative;
        width: 100%;
        min-width: 0;
        flex: none;
        padding: 10vw 7vw 7vw;
        border: .2vw solid #b98a24;
        border-radius: 5vw;
        box-sizing: border-box;
        overflow: hidden;
    }

    .home-section-5-card.is-open .home-section-5-front {
        width: 100%;
        min-width: 0;
        flex: none;
        border-radius: 5vw 5vw 0 0;
    }



    .home-section-5-title {
        width: 100%;
    }

    .home-section-5-title h2 {
        font-size: 12.5vw;
        line-height: .98;
        letter-spacing: -.15vw;
    }



    .home-section-5-button {
        width: 100%;
        margin-top: 12vw;
        padding: 4vw 5vw;
        border: .2vw solid #c49a35;
        border-radius: 5vw;
        font-size: 4vw;
    }

    .home-section-5-button i {
        width: 2vw;
        height: 2vw;
        flex: 0 0 2vw;
    }



    .home-section-5-open {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        min-width: 0;

        height: 0;
        min-height: 0;

        margin-top: 0;

        overflow: hidden;

        border-radius: 0 0 5vw 5vw;

        transform-origin: top center;
        transform: rotateX(-90deg);

        opacity: 0;
        visibility: hidden;

        transition:
            height .7s cubic-bezier(.77, 0, .175, 1),
            transform .7s cubic-bezier(.77, 0, .175, 1),
            opacity .35s ease,
            visibility 0s linear .7s;
    }

    .home-section-5-front::after {

        height: 28vw;

    }




    .home-section-5-card.is-open .home-section-5-open {
        height: 100vw;
        min-height: 70vw;

        transform: rotateX(0deg);

        opacity: 1;
        visibility: visible;

        transition:
            height .7s cubic-bezier(.77, 0, .175, 1),
            transform .7s cubic-bezier(.77, 0, .175, 1),
            opacity .35s ease,
            visibility 0s linear 0s;
    }




    .home-section-5-open-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
    }

    .home-section-5-open-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .home-section-5-open-overlay {
        position: absolute;
        inset: 0;
        padding: 8vw 6vw;
        box-sizing: border-box;
    }

    .home-section-5-open-overlay p {
        font-size: 4.5vw;
        line-height: 1.4;
    }

    .home-section-5-open-logo {
        bottom: 6vw;
        width: 12vw;
    }

}

/*----------------------------------
Home Section 6
-----------------------------------*/

.home-section-6 {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.home-section-6-image {
    position: relative;
    width: 100vw;
    height: 48vw;
    overflow: hidden;
}

.home-section-6-image>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.home-section-6-overlay {
    position: absolute;
    left: 0;
    bottom: 2.5vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}



.home-section-6-title {
    position: relative;
    z-index: 2;
    width: 65vw;
    padding-left: 6vw;
}

.home-section-6-title h2 {
    margin: 0;
    font-family: "minregular";
    font-size: 4vw;

    color: #fff;
    white-space: nowrap;
}

.home-section-6-coming {
    position: relative;
    z-index: 2;
    width: 35vw;
    padding-right: 6vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5vw;
}

.home-section-6-play {
    width: 2.2vw;
    height: 2.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.home-section-6-play svg {
    display: block;
    width: 100%;
    height: 100%;
}

.home-section-6-play svg path {
    fill: currentColor;
}

.home-section-6-coming>span:last-child {
    font-family: "minregular";
    font-size: 2.6vw;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
}

@media (max-width: 600px) {

    .home-section-6 {
        width: 100%;
    }

    .home-section-6-image {
        width: 100vw;
        height: 110vw;
    }

    .home-section-6-image>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .home-section-6-overlay {
        width: 100vw;
        bottom: 3.5vw;

    }



    .home-section-6-title {
        width: 58vw;
        padding-left: 5vw;
    }

    .home-section-6-title h2 {
        font-size: 8vw;
        line-height: .9;
        letter-spacing: -.1vw;
        white-space: normal;
    }

    .home-section-6-coming {
        width: 42vw;
        padding-right: 4vw;
        gap: 2.5vw;
    }

    .home-section-6-play {
        width: 4vw;
        height: 4vw;
    }

    .home-section-6-coming>span:last-child {
        font-size: 4vw;
        white-space: normal;
    }
}

/*----------------------------------
Home Section 7
-----------------------------------*/

.home-section-7 {
    position: relative;
    width: 100vw;
    padding: 7vw 0 8vw;
    overflow: hidden;
    background: #fff;
}

.home-section-7-heading {
    width: 90vw;
    margin: 0 auto;
    text-align: center;
}

.home-section-7-heading h2 {
    margin: 0;
    font-family: "minregular";
    font-size: 4.2vw;
    color: #111;
}

.home-section-7-heading h3 {
    margin: 1vw 0 0;
    font-family: "minregular";
    font-size: 3.5vw;

    color: #111;
}

.home-section-7-heading p {
    margin: 3vw 0 0;
    font-family: "minregular";
    font-size: 1.8vw;
    color: #222;
}

.home-section-7-cards {
    width: 88vw;
    margin: 9vw auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2vw;
    row-gap: 2vw;
    align-items: start;
}

.home-section-7-card {
    position: relative;
    width: 100%;
    height: 25vw;
    padding: 2.5vw 2.5vw;
    box-sizing: border-box;
    border: .12vw solid #c49a35;
    border-radius: 3vw;
    background: #fffdfb;
    color: #c49a35;
}

.home-section-7-card-middle {
    margin-top: -4vw;
}

.home-section-7-icon {
    width: 5vw;
    height: 5vw;
    margin-bottom: 2vw;
    fill: #c49a35;
}

.home-section-7-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.home-section-7-card h4 {
    margin: 0;
    font-family: "minregular";
    font-size: 2.3vw;
    line-height: 1;
    color: #c49a35;
}

.home-section-7-card p {
    width: 90%;
    margin: 2.5vw 0 0;
    font-family: "metalight";
    font-size: 1.45vw;
    line-height: 1.3;
    color: #191919;
}

.home-section-7-lines {
    width: 64vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    margin-top: 15vw;
}

.home-section-7-lines span {
    display: block;
    width: 100%;
    height: .08vw;
    background: #b98a2c;
}

.home-section-7-lines span:nth-child(2) {
    width: 78%;
    margin-left: auto;
    margin-right: auto;
}


@media (max-width: 600px) {

    .home-section-7 {
        width: 100vw;
        padding: 12vw 0 15vw;
    }

    .home-section-7-heading {
        width: 88vw;
    }

    .home-section-7-heading h2 {
        font-size: 8.5vw;
        line-height: .95;
    }

    .home-section-7-heading h3 {
        margin-top: 2vw;
        font-size: 5vw;
        line-height: 1;
    }

    .home-section-7-heading p {
        margin-top: 5vw;
        font-size: 3.4vw;
        line-height: 1.25;
    }

    .home-section-7-cards.mobile {
        display: none;
    }

    @media (max-width: 600px) {

        .home-section-7-cards.desktop {
            display: none;
        }

        .home-section-7-cards.mobile {
            display: block;
            width: 88vw;
            margin: 12vw auto 0;
            overflow: hidden;
        }

        .home-section-7-cards.mobile .swiper-wrapper {
            display: flex;
            align-items: stretch;
        }

        .home-section-7-cards.mobile .home-section-7-card {
            width: 88vw;
            flex-shrink: 0;
            box-sizing: border-box;
            padding: 7vw 6vw;
            border: .2vw solid #c49a35;
            border-radius: 7vw;
            background: #fffdfb;
            margin-top: 0;
        }

        .home-section-7-cards.mobile .home-section-7-card-middle {
            margin-top: 0;
        }

        .home-section-7-cards.mobile .home-section-7-icon {
            width: 13vw;
            height: 13vw;
            margin-bottom: 7vw;
            fill: #c49a35;
            color: #c49a35;
        }

        .home-section-7-cards.mobile .home-section-7-icon svg {
            display: block;
            width: 100%;
            height: 100%;
        }

        .home-section-7-cards.mobile .home-section-7-card h4 {
            margin: 0;
            font-family: "minregular";
            font-size: 7.5vw;
            line-height: 1.02;
            color: #c49a35;
        }

        .home-section-7-cards.mobile .home-section-7-card p {
            width: 92%;
            margin: 7vw 0 0;
            font-family: "metalight";
            font-size: 4.3vw;
            line-height: 1.3;
            color: #191919;
        }

        .home-section-7-mobile-pagination {
            position: relative !important;
            left: auto !important;
            right: auto !important;
            bottom: auto !important;
            width: 100%;
            margin-top: 6vw;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .home-section-7-mobile-pagination .swiper-pagination-bullet {
            width: 2vw;
            height: 2vw;
            margin: 0 1vw !important;
            background: #c49a35;
            opacity: .3;
        }

        .home-section-7-mobile-pagination .swiper-pagination-bullet-active {
            opacity: 1;
        }
    }

    .home-section-7-cards {
        width: 88vw;

        margin: 12vw auto 0;
        display: flex;
        flex-direction: column;
        gap: 6vw;
    }

    .home-section-7-card {
        width: 88vw;
        height: 70vw;
        padding: 7vw 6vw 7vw;
        border: .2vw solid #c49a35;
        border-radius: 7vw;
    }

    .home-section-7-card-middle {
        margin-top: 0;
    }

    .home-section-7-icon {
        width: 13vw;
        height: 13vw;
        margin-bottom: 7vw;
    }

    .home-section-7-card h4 {
        font-size: 7.5vw;
        line-height: 1.02;
    }

    .home-section-7-card p {
        width: 92%;
        margin-top: 7vw;
        font-size: 4.3vw;
        line-height: 1.3;
    }

    .home-section-7-lines {
        width: 76vw;
        margin-bottom: 0vw;
        gap: 2vw;
    }

    .home-section-7-lines span {
        height: .2vw;
    }

    .home-section-7-lines span:nth-child(2) {
        width: 78%;
    }

}

/*----------------------------------
Home Section 8
-----------------------------------*/

.home-section-8 {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f7eae4;
}

.home-section-8-top {
    position: relative;
    width: 100%;

}


.home-section-8-image {
    position: relative;
    width: 61vw;
    margin: 0 auto;
    overflow: hidden;
    z-index: 2;

}

.home-section-8-image>img {
    display: block;
    width: 100%;
    height: auto;
}

.home-section-8-image-content {
    position: absolute;
    left: 0;
    bottom: 2vw;
    width: 100%;
    text-align: center;
    padding: 0 2vw;
    box-sizing: border-box;
    z-index: 2;
}

.home-section-8-image-content h2 {
    margin: 0;
    font-family: "minregular";
    font-size: 3vw;
    line-height: 1;
    color: #c9a33a;
}

.home-section-8-image-content h3 {
    margin: .8vw 0 0;
    font-family: "metalight";
    font-size: 2vw;
    letter-spacing: 0.1vw;
    line-height: 1;
    color: #fff;
}

.home-section-8-bottom {
    position: relative;
    width: 100%;
    padding: 7vw 0 8vw;
    overflow: hidden;
    z-index: 2;
}

.home-section-8-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-image: url("/Asstes/Images/patten\ 02.png");
    background-repeat: repeat-x;
    background-position: center center;
    background-size: 100vw auto;
    opacity: 1;
    pointer-events: none;
}

.home-section-8-text {
    position: relative;
    z-index: 2;
    width: 75vw;
    margin: 0 auto;
    text-align: center;
}

.home-section-8-text p {
    margin: 0;
    font-family: "metalight";
    font-size: 1.7vw;
    line-height: 1.4;
    color: #191919;
}

@media (max-width: 600px) {



    .home-section-8-image {
        width: 90vw;
    }

    .home-section-8-image-content {
        bottom: 5vw;
        padding: 0 4vw;

    }

    .home-section-8-image-content h2 {
        font-size: 6vw;
        line-height: .95;
    }

    .home-section-8-image-content h3 {
        margin-top: 2vw;
        font-size: 3.7vw;
        line-height: 1.1;
        letter-spacing: .12vw;
    }

    .home-section-8-image>img {
        width: 100%;
        height: 53vw;
    }

    .home-section-8-bottom {
        padding: 10vw 0 13vw;
    }

    .home-section-8-pattern {
        background-size: 150vw auto;
        background-position: center center;
        opacity: 1;
    }

    .home-section-8-text {
        width: 86vw;
    }

    .home-section-8-text p {
        font-size: 3.5vw;
        line-height: 1.35;
    }

}


/*----------------------------------
Home Section 9
-----------------------------------*/

.home-section-9 {
    position: relative;
    width: 100%;
    padding-bottom: 5vw;
    background-color: #f7eae4;
    overflow: hidden;
}

.home-section-9-container {
    width: 90vw;
    margin: 0 auto;
    padding: 7vw 3.5vw;
    box-sizing: border-box;
    border: .08vw solid #c49a35;
    border-radius: 3.5vw;
    display: grid;
    grid-template-columns: 1.3fr .08vw 1.3fr;
    column-gap: 3vw;
    align-items: center;
}

.home-section-9-left {
    align-self: center;
}

.home-section-9-left h2 {
    margin: 0;
    font-family: "minregular";
    font-size: 3.4vw;
    line-height: .95;
    color: #c49a35;
}

.home-section-9-copy {
    margin-top: 5vw;
}

.home-section-9-copy p {
    margin: 0;
    font-family: "metalight";
    font-size: 1.75vw;
    line-height: 1.25;
    color: #191919;
}

.home-section-9-copy p+p {
    margin-top: 2.5vw;
    max-width: 32vw;
}

.home-section-9-divider {
    width: 0.2vw;
    align-self: stretch;
    background: #c49a35;
}

.home-section-9-right {
    width: 100%;
}

.home-section-9-form {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2vw;
    row-gap: 4vw;
}

.home-section-9-field {
    width: 100%;
}

.home-section-9-field input,
.home-section-9-field select {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 .8vw;
    border: 0;
    border-bottom: .08vw solid #777;
    border-radius: 0;
    outline: none;
    background: transparent;
    font-family: "metalight";
    font-size: 1.3vw;
    line-height: 1.2;
    color: #222;
}

.home-section-9-field input::placeholder {
    color: #c7c3c0;
    opacity: 1;
}

.home-section-9-field select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    color: #c7c3c0;
    background-image:
        linear-gradient(45deg, transparent 50%, #222 50%),
        linear-gradient(135deg, #222 50%, transparent 50%);
    background-position:
        calc(100% - .8vw) .55vw,
        calc(100% - .3vw) .55vw;
    background-size: .5vw .5vw, .5vw .5vw;
    background-repeat: no-repeat;
}

.home-section-9-field select:valid {
    color: #222;
}

.home-section-9-field select option {
    color: #222;
    background: #fff;
}

.home-section-9-submit {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: .5vw;
}

.home-section-9-submit button {
    min-width: 17vw;
    padding: 1.7vw 3vw;
    border: 0;
    border-radius: 1.5vw;
    background: #c9a34c;
    font-family: "minregular";
    font-size: 1.55vw;
    line-height: 1;
    color: #111;
    cursor: pointer;
    transition: opacity .3s ease;
}

.home-section-9-submit button:hover {
    opacity: .85;
}

.home-section-9-field input:-webkit-autofill,
.home-section-9-field input:-webkit-autofill:hover,
.home-section-9-field input:-webkit-autofill:focus,
.home-section-9-field select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 100vw transparent inset;
    box-shadow: 0 0 0 100vw transparent inset;
    -webkit-text-fill-color: #222;
    background-color: transparent !important;
}

.home-section-9-field input:-webkit-autofill,
.home-section-9-field input:-webkit-autofill:hover,
.home-section-9-field input:-webkit-autofill:focus,
.home-section-9-field input:-webkit-autofill:active {
    transition: background-color 9999s ease-in-out 0s;
    -webkit-box-shadow: 0 0 0 100vw transparent inset;
    box-shadow: 0 0 0 100vw transparent inset;
    -webkit-text-fill-color: #222;
    caret-color: #222;
}

@media (max-width: 600px) {

    .home-section-9 {
        padding: 8vw 0;
    }

    .home-section-9-container {
        width: 88vw;
        padding: 10vw 7vw;
        border: .2vw solid #c49a35;
        border-radius: 7vw;
        display: flex;
        flex-direction: column;
        gap: 9vw;
    }

    .home-section-9-left {
        width: 100%;
        text-align: left;
    }

    .home-section-9-left h2 {
        font-size: 6.8vw;
        line-height: .95;
    }

    .home-section-9-copy {
        margin-top: 9vw;
    }

    .home-section-9-copy p {
        font-size: 3.8vw;
        line-height: 1.3;
    }

    .home-section-9-copy p+p {
        margin-top: 6vw;
        max-width: none;
    }

    .home-section-9-divider {
        width: 100%;
        height: .5vw;
        align-self: auto;
        background: #c49a35;
    }

    .home-section-9-right {
        width: 100%;
    }

    .home-section-9-form {
        display: flex;
        flex-direction: column;
        gap: 7vw;
    }

    .home-section-9-field input,
    .home-section-9-field select {
        padding-bottom: 2vw;
        border-bottom: .2vw solid #777;
        font-size: 4.2vw;
    }

    .home-section-9-field select {
        background-position:
            calc(100% - 2vw) 1.5vw,
            calc(100% - .8vw) 1.5vw;
        background-size: 1.5vw 1.5vw, 1.5vw 1.5vw;
    }

    .home-section-9-submit {
        width: 100%;
        margin-top: 2vw;
    }

    .home-section-9-submit button {
        width: 100%;
        min-width: 0;
        padding: 4.5vw 5vw;
        border-radius: 4vw;
        font-size: 5vw;
    }

}

/*----------------------------------
Footer
-----------------------------------*/

.site-footer {
    width: 100vw;
    background: #050505;
    color: #fff;
    border-top: .08vw solid #777;
    border-bottom: .18vw solid #c9a33a;
    box-sizing: border-box;
}

.site-footer-inner {
    width: 92vw;
    margin: 0 auto;
    padding: 5vw 0 1.5vw;
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    column-gap: 3vw;
    align-items: start;
}

.site-footer-links {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.site-footer-links a,
.site-footer-legal a {
    font-family: "metalight";
    font-size: 1.35vw;
    line-height: 1.1;
    color: #fff;
    text-decoration: none;
}

.site-footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.site-footer-logo {
    display: block;
    width: 21vw;
    height: auto;
    filter: brightness(0) invert(1);
}

.site-footer-contact {
    margin-top: 2.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vw;
    font-family: "metalight";
    font-size: 1.45vw;
    line-height: 1;
}

.site-footer-address {
    margin: 1vw 0 0;
    font-family: "metalight";
    font-size: 1.25vw;
    line-height: 1.2;
}

.site-footer-credit {
    margin: 4vw 0 0;
    font-family: "metalight";
    font-size: .9vw;
    line-height: 1;
}

.site-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.site-footer-rera {
    margin: 1vw 0 0;
    font-family: "metalight";
    font-size: 1.2vw;
    line-height: 1;
}

.site-footer-legal {
    margin-top: 2vw;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.site-footer-legal a {
    font-size: 1vw;
}

.site-footer-follow {
    margin: 3vw 0 0;
    font-family: "metalight";
    font-size: 1.35vw;
    line-height: 1;
}

.site-footer-social {
    margin-top: 1vw;
    display: flex;
    gap: 0.5vw;
}

.site-footer-social a {
    display: block;
    width: 2.3vw;
    height: 2.3vw;
}

.site-footer-social img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}


@media (max-width: 600px) {

    .site-footer-inner {
        width: 86vw;
        padding: 12vw 0 7vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10vw;
    }

    .site-footer-links {
        width: 100%;
        align-items: center;
        gap: 3vw;
        order: 2;
    }

    .site-footer-links a,
    .site-footer-legal a {
        font-size: 4vw;
    }

    .site-footer-center {
        width: 100%;
        order: 1;
    }

    .site-footer-logo {
        width: 55vw;
    }

    .site-footer-contact {
        margin-top: 6vw;
        flex-direction: column;
        gap: 2vw;
        font-size: 4.2vw;
    }

    .site-footer-contact span:nth-child(2) {
        display: none;
    }

    .site-footer-address {
        margin-top: 4vw;
        font-size: 3.8vw;
        line-height: 1.3;
    }

    .site-footer-credit {
        margin-top: 10vw;
        font-size: 3.5vw;
    }

    .site-footer-right {
        width: 100%;
        align-items: center;
        text-align: center;
        order: 3;
    }

    .site-footer-rera {
        margin: 0;
        font-size: 3.7vw;
    }

    .site-footer-legal {
        margin-top: 5vw;
        gap: 3vw;
        align-items: center;
    }

    .site-footer-follow {
        margin-top: 7vw;
        font-size: 4vw;
    }

    .site-footer-social {
        margin-top: 3vw;
        gap: 3vw;
    }

    .site-footer-social a {
        width: 11vw;
        height: 11vw;
    }

}