*,*:before,*:after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'TRJN DaVinci Text';
    src: url('/assets/fonts/TRJNDaVinci-Text.woff2') format('woff2'),
        url('/assets/fonts/TRJNDaVinci-Text.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TRJN DaVinci Display';
    src: url('/assets/fonts/TRJNDaVinci-Display.woff2') format('woff2'),
        url('/assets/fonts/TRJNDaVinci-Display.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TRJN DaVinci Italic Display';
    src: url('/assets/fonts/TRJNDaVinciItalic-Display.woff2') format('woff2'),
        url('/assets/fonts/TRJNDaVinciItalic-Display.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'ABCGravity';
    src: url('/assets/fonts/197ab8c5ccd452c1b8cefad23452e44e.woff2') format('woff2'),
        url('/assets/fonts/197ab8c5ccd452c1b8cefad23452e44e.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Haas Grot Disp R Web 75 Bd';
    src: url('/assets/fonts/HaasGrotDispRWeb-75Bold.woff2') format('woff2'),
        url('/assets/fonts/HaasGrotDispRWeb-75Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body,html { min-height: 100%; height: 100%;  }

body {
    background: #000;
    color: #fff;
    font-family: 'Haas Grot Disp R Web 75 Bd';
    font-weight: 300;
    margin: 0;
    padding: 0;
    opacity: 0;
    overscroll-behavior: none;
    overflow: hidden;
    transition: opacity 0.5s linear 0.25s;
}

body.loaded {
    opacity: 1;
}


/* ---------------------------------------------------------------- */
/* Logo / Coming Soon --------------------------------------------- */
/* ---------------------------------------------------------------- */
.logo {
    height: calc(47.5vw * 0.318);
    left: 50%;
    opacity: 0;
    position: fixed;
    top: calc(50% - (47.5vw * 0.318 / 2));
    transform: translateX(-50%);
    transition: opacity 0.5s linear,height 0.5s ease, top 0.5s ease, width 0.5s ease;
    transition-delay: 1.75s;
    width: 47.5vw;
    z-index: 101;
}

body.loaded .logo {
    opacity: 1;
}

body.past-splash .logo {
    top: 40px;
    transition-delay: 0s;
}

body.show-form .logo {
    height: 99px;
    top: 39px;
    transition-delay: 0s;
    width: 312px;
}

.coming-soon {
    align-items: center;
    background: #E1FEA8;
    border-radius: 50px;
    color: #000;
    display: flex;
    font-family: 'ABCGravity';
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
    height: 47px;
    justify-content: center;
    left: 40px;
    letter-spacing: 1.32px;
    opacity: 0;
    position: fixed;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    top: 40px;
    transition: opacity 0.5s linear 0.5s;
    width: 238px;
    z-index: 1;
}

body.past-splash .coming-soon {
    opacity: 1;
}

@media (max-width: 1200px) {
    .coming-soon {
        height: calc(47px * 0.80);
        width: calc(238px * 0.80);
    }
}

@media (max-width: 900px) {
    .coming-soon {
        font-size: 11px;
        height: 30px;
        letter-spacing: 1px;
        width: 175px;
    }
}

@media (max-width: 768px) {
    .coming-soon {
        bottom: 250px;
        left: 50%;
        top: auto;
        transform: translateX(-50%);
    }
}

@media (max-width: 500px) {
    .logo {
        height: 27vw;
        width: 86vw;
    }

    .coming-soon {
        bottom: auto;
        top: calc(20% + 205px);
    }
}

@media (max-width: 375px) {
    .coming-soon {
        top: calc(20% + 180px);
    }
}


/* ---------------------------------------------------------------- */
/* Main Heading --------------------------------------------------- */
/* ---------------------------------------------------------------- */
h1,
h2 {
    bottom: 85px;
    font-family: 'TRJN DaVinci Display';
    font-size: 52px;
    font-weight: 400;
    left: 0;
    line-height: 109.412%;
    opacity: 0;
    position: fixed;
    right: 0;
    text-align: center;
    transition: opacity 0.5s linear 0.25s;
    z-index: 1;
}

h2 {
    bottom: 77px;
}

body.past-splash h1.active,
body.past-splash h2.active {
    opacity: 1;
}

@media (max-width: 500px) {
    h1,
    h2 {
        bottom: auto;
        font-size: 38px;
        margin-left: auto;
        margin-right: auto;
        max-width: 280px;
        top: 20%;
    }

    h2 {
        top: calc(20% - 6px);
    }
}


/* ---------------------------------------------------------------- */
/* Footer --------------------------------------------------------- */
/* ---------------------------------------------------------------- */
.footer {
    align-items: flex-end;
    bottom: 40px;
    display: flex;
    justify-content: space-between;
    left: 40px;
    opacity: 0;
    position: fixed;
    right: 40px;
    transition: opacity 0.5s linear 0.5s;
    z-index: 1;
}

body.past-splash .footer {
    opacity: 1;
}

.footer p {
    font-size: 13.18px;
    font-weight: 700;
    letter-spacing: 1.45px;
    line-height: 130.501%;
    margin: 0 0 15px 0;
    padding: 0;
    text-transform: uppercase;
}

.footer .col:last-child {
    text-align: right;
}

.footer ul {
    align-items: flex-end;
    display: flex;
    gap: 6px;
    line-height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer ul img {
    display: block;
}

/*
.footer .col:first-child ul li:not(:first-child) {
    opacity: 0.5;
}
*/

.footer ul a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    /* opacity: 0.5; */
    text-decoration: none;
    text-transform: uppercase;
}

.footer ul a:hover {
    opacity: 1;
}

.footer .col:first-child ul {
    gap: 5px;
}

.footer .col:first-child ul li:nth-child(3),
.footer .col:first-child ul li:nth-child(4) {
    margin-left: 14px;
}

.footer .col:last-child ul {
    justify-content: flex-end;
    text-align: right;
}

.footer ul li.social-links {
    align-items: flex-end;
    color: #FFF;
    display: flex;
    font-size: 8.18px;
    font-weight: 700;
    gap: 7px;
    letter-spacing: 0.9px;
    line-height: 100%;
    margin-left: 15px;
    text-transform: uppercase;
}

.footer ul li.social-links ul {
    gap: 7px;
}

.footer ul li.social-links a {
    opacity: 1;
}

.footer ul li.social-links a:hover {
    opacity: 0.7;
}

.footer ul li.social-links a img {
    display: block;
}

@media (max-width: 768px) {
    .footer {
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}

#mobile-check-element { display: none; }
@media (max-width: 500px) {
    #mobile-check-element {
        display: block;
        position: fixed;
        pointer-events: none;
        z-index: -999;
    }

    .footer {
        bottom: 0;
        flex-wrap: wrap;
        left: 0;
        right: 0;
    }

    .footer p {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .footer ul {
        height: 16px;
    }

    .footer ul a {
        font-size: 10px;
    }

    .footer .col:last-child {
        padding: 0 20px 14px 0;
    }

    .footer .col:last-child p {
        margin-bottom: 10px;
    }

    .footer .col:last-child ul {
        gap: 6px;
    }

    .footer .col:last-child img {
        height: 16px;
        width: 16px;
    }

    .footer .col.first {
        background: #E1FEA8;
        order: 99;
        padding: 20px 20px 10px 20px;
        width: 100%;
    }

    .footer .col.first img {
        filter: invert(1);
    }

    .footer .col.first > ul {
        gap: 0px;
    }

    .footer .col.first > ul > li:not(.social-links) {
        margin-right: 9px;
    }

    .footer .col.first > ul > li:not(.social-links):first-child {
        margin-right: 5px;
    }

    .footer ul li.social-links {
        color: #000;
        margin-left: auto;
    }

    #footer-address {
        margin-bottom: 40px;
        padding-left: 20px;
    }
}


/* ---------------------------------------------------------------- */
/* Background Carousel -------------------------------------------- */
/* ---------------------------------------------------------------- */
.background-carousel {
    height: 100dvh;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 0;
}

.background-carousel:before {
    background: linear-gradient(0deg, rgba(7, 7, 7, 0.25) 29.19%, rgba(255, 255, 255, 0.25) 146.38%);
    bottom: 0;
    content: '';
    left: 0;
    mix-blend-mode: multiply;
    position: fixed;
    pointer-events: none;
    right: 0;
    top: 0;
    z-index: 10;
}

.background-carousel .slide {
    height: 100vh;
    width: 100%;
}  

.background-carousel .slide img {
    height: 100vh;
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
}

.slick-dots {
    align-items: center;
    bottom: 48px;
    display: flex;
    gap: 20px;
    left: 50%;
    list-style: none;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    transform: translateX(-50%);
    transition: opacity 0.5s linear 0.25s;
    z-index: 10;
}

.slick-dots button {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 0;
    height: 30px;
    position: relative;
    text-indent: -9999px;
    width: 40px;
}

.slick-dots button:after {
    background: #E1FEA8;
    border-radius: 5px;
    content: '';
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    transition: width 0.5s ease, height 0.5s ease;
    width: calc(100% - 10px);
}

.slick-dots li.slick-active button:after {
    height: 10px;
    width: 100%;
}

@media (min-width: 1024.5px) {
    .slick-dots button:hover:after {
        height: 10px;
        width: 100%;
    }
}

body.past-splash .slick-dots {
    opacity: 1;
}

@media (max-width: 500px) {
    .slick-dots {
        bottom: 133px;
        gap: 12px;
    }
    
    .slick-dots button {
        width: 30px;
    }

    .slick-dots button:hover:after, 
    .slick-dots li.slick-active button:after {
        height: 7px;
    }
}


/* ---------------------------------------------------------------- */
/* Legal Overlay -------------------------------------------------- */
/* ---------------------------------------------------------------- */
body.show-overlay {
    overflow: hidden;
    position: relative;
}

body.show-overlay:before {
    background: rgba(0,0,0,0.5);
    bottom: 0;
    content: '';
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}

.overlay {
    background: #fff;
    color: #000;
    left: 50%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 45px 80px;
    position: fixed;
    text-align: center;
    top: 50%; 
    transform: translate(-50%,-50%);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    width: 520px;
    max-width: 100%;
    z-index: 101;
}

.overlay:not(.visible) {
    display: none;
    pointer-events: none;
}

body:not(.show-overlay) .overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.close-overlay-link {
    background: url(/assets/images/close-x.svg) 50% 50% no-repeat;
    background-size: 12.5px auto;
    cursor: pointer;
    height: 16px;
    position: absolute;
    right: 30px;
    top: 30px;
    width: 16px;
}

.overlay h3 {
    font-size: 18px;
    font-style: normal;
    letter-spacing: 2.062px;
    margin: 0 0 27px;
    text-transform: uppercase;
}

.overlay p {
    font-family: 'TRJN DaVinci Text';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 137.5%;
    margin: 0;
    padding: 0;
}

.overlay p:not(:last-child) {
    margin-bottom: 20px;
}



/* ---------------------------------------------------------------- */
/* Form Overlay --------------------------------------------------- */
/* ---------------------------------------------------------------- */
body.show-form .coming-soon {
    opacity: 0;
}

.form-underlay {
    background: rgba(0,0,0,0.75);
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: background-position 0.5s ease, opacity 0.5s ease;
    z-index: 100;
}

body.show-form .form-underlay {
    opacity: 1;
}

.form-overlay {
    align-items: center;
    background: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    bottom: calc((100% - 180px) * -1);
    color: #000;
    display: flex;
    height: calc(100% - 180px);
    justify-content: center;
    left: 39px;
    padding-left: calc(50% - 39px);
    position: absolute;
    right: 39px;
    transition: bottom 0.5s ease;
    z-index: 101;
}

body.show-form .form-overlay {
    bottom: 0;
}

.form-overlay:before {
    background: url(/assets/images/form-image.webp) 50% 50% no-repeat;
    background-size: cover;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    width: 50%;
}

body.show-thank-you .form-overlay:before {
    background-image: url(/assets/images/thank-you-image.webp)
}

.inquire-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
    max-width: 750px;
    padding: 30px;
    text-align: center;
}

.form-overlay h3 {
    font-family: 'TRJN DaVinci Display';
    font-size: 85px;
    font-weight: 400;
    line-height: 106.667%;
    margin: 0 0 30px 0;
    padding: 0;
    text-align: center;
    width: 100%;
}

body:not(.show-thank-you) h3 {
    margin-bottom: 60px;
}

.field-wrap:not(.full) {
    width: calc(50% - 10px);
}

.field-wrap.full {
    width: 100%;
}

.field-wrap label {
    display: none;
}

.field-wrap input {
    -webkit-appearance: none;
	appearance: none;
    background: #eee;
    border-radius: 30px;
    border: 0;
    color: rgba(0, 0, 0, 0.40);
    font-family: 'Haas Grot Disp R Web 75 Bd';
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.1px;
    line-height: 120%;
    outline: none;
    padding: 15px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.field-wrap input::placeholder { color: rgba(0, 0, 0, 0.40); }
.field-wrap input::-webkit-input-placeholder { color: rgba(0, 0, 0, 0.40); }
.field-wrap input:-moz-placeholder { color: rgba(0, 0, 0, 0.40); }
.field-wrap input:-ms-input-placeholder { color: rgba(0, 0, 0, 0.40); }

.field-wrap.error input {
    background: #FFD6D6;
    color: #FF0000;
}

.submit-wrap {
	margin-top: 50px;
}

.submit-wrap .submit {
    -webkit-appearance: none;
	appearance: none;
	background: #E1FEA8;
	border-radius: 25px;
	border: 0;
    color: #000;
	cursor: pointer;
	display: block;
    font-family: 'ABCGravity';
    font-size: 12px;
    font-weight: 900;
	height: 47px;
    letter-spacing: 1.32px;
	line-height: 47px;
	outline: none;
	padding: 0 15px;
	text-align: center;
	text-transform: uppercase;
	transition: background 0.15s ease, color 0.15s ease;
	width: 238px;
}

.submit-wrap .submit:hover {
    background: #000;
    color: #E1FEA8;
}

.inquire-form .loader {
    background: #fff;
    bottom: 0;
    left: 0;
    opacity: 0.6;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 0.3s linear;
    z-index: 5;
}

.thank-you {
    display: none;
    font-family: 'TRJN DaVinci Text';
    font-size: 24px;
    margin: 0 auto;
    max-width: 70%;
    padding: 30px;
    text-align: center;
    width: 100%;
}

body.show-thank-you .thank-you {
    display: block;
}

.close-form-overlay-link {
    background: url(/assets/images/close-form-overlay.svg) 50% 50% no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 40px;
    outline: none;
    position: absolute;
    right: 39px;
    top: 41px;
    transition: opacity 0.2s ease;
    width: 40px;
    z-index: 101;
}

.close-form-overlay-link:hover {
    opacity: 0.7;
}

@media (max-width: 1768px) {
    .thank-you {
        font-size: 16px;
        max-width: 70%;
    }

    .form-overlay h3 {
        font-size: 64px;
    }
}

@media (max-width: 1470px) {
    .thank-you {
        font-size: 14px;
    }

    .form-overlay h3 {
        font-size: 54px;
    }
}

@media (max-width: 768px) {
    .form-overlay {
        bottom: calc((100% - 160px) * -1);
        flex-direction: column;
        height: calc(100% - 160px);
        left: 10px;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        padding: 0;
        right: 10px;    
    }
    
    .form-overlay:before {
        display: block;
        height: 250px;
        min-height: 250px;
        position: static;
        width: 100%;
    }

    .form-overlay h3 {
        font-size: 35px;
    }

    body:not(.show-thank-you) h3 {
        margin-bottom: 30px;
    }

    .inquire-form {
        gap: 10px;
        padding: 30px 20px;
    }

    .field-wrap:not(.full) {
        width: 100%;
    }

    .field-wrap input {
        font-size: 16px;
    }

    .submit-wrap {
        margin-top: 30px;
    }

    .submit-wrap .submit {
        font-size: 16px;
    }

    .form-underlay {
        background-position: 50% 29px;
        background-size: 212px auto;
    }

    .close-form-overlay-link {
        height: 30px;
        right: 15px;
        top: 15px;
        width: 30px;
    }

    .thank-you {
        max-width: 100%;
    }
}