

@font-face { font-family: 'CormorantMedium'; src: url("../webfonts/CormorantGaramond-Medium.ttf") format("truetype"); font-weight: bold; font-style: normal; }
/* @font-face { font-family: 'CormorantRegular'; src: url("../webfonts/CormorantGaramond-Regular.ttf") format("truetype"); font-weight: lighter; font-style: normal; } */
@font-face { font-family: 'CormorantLight'; src: url("../webfonts/CormorantGaramond-Light.ttf") format("truetype"); font-weight: light; font-style: normal; }
/* @font-face { font-family: 'AgathoMedium'; src: url("../webfonts/AgathoMedium.otf") format("truetype"); font-weight: bold; font-style: normal; }
@font-face { font-family: 'AgathoRegular'; src: url("../webfonts/AgathoRegular.otf") format("truetype"); font-weight: lighter; font-style: normal; }
@font-face { font-family: 'AgathoLight'; src: url("../webfonts/AgathoLight.otf") format("truetype"); font-weight: light; font-style: normal; }
 */
@font-face { font-family: Inter; font-style: normal; font-weight: 100 900; font-display: swap; src: url("../webfonts/Inter.woff2") format("woff2"); }
@font-face { font-family: Inter-Italic; font-style: italic; font-weight: 100 900; font-display: swap; src: url("../webfonts/Inter-Italic.woff2") format("woff2"); }

:root{
    --light: #ffffff;
    --dark: #1b2232;
    --text: #333438;
    --gold: #C4A964;
    --blue: #172636
}
.gold{
    color: var(--gold);
}
.my-10{
    margin-top: 10em;
    margin-bottom: 10em;
}
.py-7{
    padding-top: 7em;
    padding-bottom: 7em;
}
.py-10{
    padding-top: 10em;
    padding-bottom: 10em;
}
a{
    text-decoration: none;
    color: inherit;}

.title {
    font-family: 'CormorantMedium', sans-serif;
    font-size: 4em;
    margin-bottom: 1em;
    position: relative;
    color: var(--blue);
}
.subtitle{
    font-family: 'CormorantMedium', sans-serif;
    font-size: 1.8rem;
    margin-top: 1.6rem;
    position: relative;
    color: var(--blue);
}
.gold_spaced{
    font-size: 1.1em;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 0.2em;
}
.btn{
    border-radius: 1px;
    padding-top: 0.75em;
    padding-bottom: 0.75em;
    font-size: 0.9rem;
}
.gold_btn {
    background-color: var(--gold);
    color: #fff;
}

.gold_btn_outline {
    /* background-color: #fff; */
    border: 1px solid var(--gold);
    color: var(--gold);
}

.gold_btn:hover,
.gold_btn:active,
.gold_btn:focus {
    background-color: var(--gold);
    color: #ffffff;
    outline: none;
    text-decoration: none;
}

.gold_btn_outline:hover,
.gold_btn_outline:active,
.gold_btn_outline:focus {
    background-color: var(--gold);
    color: #ffffff;
    outline: none;
    text-decoration: none;
}

body{
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    color: var(--text);
    text-align: justify;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

#smooth-wrapper,
#smooth-content {
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

#loader {
    position: fixed;
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    z-index:777;
    opacity: 1;
    background-color: var(--dark);
    color: transparent;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
}
  #loader span {
        font-size: 2.5rem;
        color: #fff;
        font-weight: 300;
        letter-spacing: 2px;
        display: inline-block;
    }

     #loader .char {
        display: inline-block;
        perspective: 1000px;
        transform-style: preserve-3d;
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }

    #loader .char.bold {
        font-weight: 700;
        color: var(--gold);
    }




header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 7777;
    background: transparent;
    padding: 10px 0 2px 0;
    transition: transform 0.4s ease, background-color 0.4s ease;
}

header.hide {
    transform: translateY(-100%);
}

header.header-fixed {
    background-color: var(--dark) !important;
}


/* When the user scrolls down, hide it */
/* .scrolling-down header {
    transform: translateY(-100%);
}
 */
/* When the user is not at the very top, give it a background */
.scrolled header {
    background: #292930;
}

#nav-logo {
    font-size: 1.4em;
    font-weight: 200;
    text-decoration: none;
    color: var(--light);
}

#nav-logo span {
    font-weight: 700;
    color: var(--gold);
}

.nav .nav-link {
    position: relative;
    color: #ffffff;
    font-weight: 400;
    background-image: -webkit-linear-gradient(left,var(--gold) 50%,var(--light) 0);
    background-position: 100% 0;
    background-size: 200% 100%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-transition: background-position 1s cubic-bezier(.19,1,.22,1)!important;
    -moz-transition: background-position 1s cubic-bezier(.19,1,.22,1)!important;
    -o-transition: background-position 1s cubic-bezier(.19,1,.22,1)!important;
    transition: background-position 1s cubic-bezier(.19,1,.22,1)!important;
}
.nav .nav-link:hover {
    background-image: -webkit-linear-gradient(left,var(--gold) 50%,var(--light) 0);
    color: var(--light);
    text-decoration: none;
    background-position: 0 0;
}
.nav .nav-link:hover:after {
    width: calc(100% - 30px);
}
.nav .nav-link:after {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background-color: var( --gold );
    position: absolute;
    bottom: 8px;
    left: 15px;
    -webkit-transition: width 1s cubic-bezier(.19,1,.22,1)!important;
    -moz-transition: width 1s cubic-bezier(.19,1,.22,1)!important;
    -o-transition: width 1s cubic-bezier(.19,1,.22,1)!important;
    transition: width 1s cubic-bezier(.19,1,.22,1)!important;
}


#top_banner {
    position: relative;
    overflow: hidden;   /* important */
    height: 100vh;
    color: var(--light);
}

.parallax-bg {
    position: absolute;
    inset: 0;
    background-image: url('/images/header.webp');
    background-size: cover;
    background-position: center top;
    will-change: transform;
}

/* #top_banner{
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--dark);
    background-color: #000000;
    
    background-image: url('/images/header.webp');
    background-size: cover;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    background-position: center 100%;  */

    /* background-blend-mode: difference;
    background-attachment: fixed; 
    */
    /* transition: all 40s ease-in-out; */
    /* animation: mv_bg 15s ease-in-out forwards; 
}*/

/* @keyframes mv_bg {
    0% { background-position: center 100%; }
    100% { background-position: center 0%; }
} */
 #top_video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 1;
    filter: brightness(0.5);
    /* display: none; */
 }


#top_banner_text {
    display: flex;
    flex-flow: column;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#top_banner_text h1 {
    font-size: 5em;
    font-family: 'CormorantLight', sans-serif;
}
#top_banner_text h1 span, #top_banner_text .lead{
    clip-path: polygon(0% 90%, 100% 90%, 100% 100%, 0% 100%);
    animation: open 2s ease-out forwards;
    animation-delay: 3.5s;
    opacity: 0;
}
#top_banner_text h1 span:last-child{ animation-delay: 3.7s; }
#top_banner_text .lead{ animation-delay: 3.9s; }

@keyframes open {
    0% { clip-path: polygon(0% 0%, 100% 0%, 100% 10%, 0% 10%);opacity: 0; }
    100% { clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);opacity: 1; }
}

#top_banner_text h3 {
    font-size: 1.6em;
    line-height: 1.4;
    /* font-family: 'Inter-Italic', sans-serif; */
    font-weight: 200;
}

#top_banner_text button {
    animation: slide_up 1s ease-in-out forwards;
    animation-delay: 1s;
    opacity: 0;
    transition: all 0.5s ease;
}
@keyframes slide_up {
    0% { transform: translateY(-20px);opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

#about{
    display: grid;
    place-items: center;
    min-height: 100vh;
}

.fluid_img{
    position: absolute;
    top:0;
    left: 0;
    bottom: 0;
    right: 0;
}

.parallax-img-wrap {
    overflow: hidden;
    height: 600px;
    max-height: 80vh;
}

.why-img {
    width: 100%;
    height: 120%;        /* taller than container so movement doesn't gap */
    object-fit: cover;
    will-change: transform;
    display: block;
}


#designing{
    background-color: #F5F7F8;
    display: grid;
    place-items: center;
    min-height: 100vh;
}

.commitment_item{
    padding: 10px 25px;
}
.commitment_item img{
    transition: all 0.5s ease;
}
.commitment_item:hover img{
    transform: scale(1.3);
}

.commitment_item h4{
    /* min-height: 97px; */
    padding: 20px 0;
}
.title_underline::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 1px;
    background-color: var(--gold);
    bottom: -10px;
}

#partners{
    background-color: var(--blue);
}
#partners_title{
    color: #ffffff;
    font-size: 2em;
    letter-spacing: 6%;
    position: relative;
}

#partners_title::before, #partners_title::after{
    content: '';
    position: absolute;
    left: 0;
    width: calc(50% - 170px);
    height: 1px;
    background-color: #ffffff98;
    bottom: 20px;
}
#partners_title::after{
    left: unset;
    right: 0;
 }

.partner_logo img{
    max-height: 60px;
    max-width: 120px;
    height: auto;
    margin: 0 15px;
}

.img_bg{
    width: 100%;
    min-height: 30vh;
    background-color: var(--light);
    background-image: url('/images/trust.webp');
    background-size: cover;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    background-position: center 100%;
    background-attachment: fixed;
}
#become.img_bg{
    background-color: var(--dark);
    background-image: url('/images/become.webp');
    color: var(--light);
}

.review_item{
    text-align: center;
    padding: 0 60px;
    cursor:grab
}
.review_item p{
    font-family: 'Inter-Italic', sans-serif;
    opacity: 0.2;
}
.slick-current .review_item p{
    opacity: 1;
}

/* contact form  */
.input__effect {
    background: #fff;
    display: block;
    height: 46px;
    padding: 22px 10px 12px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    border: 1px solid #cccccc;
    border-radius: 4px;
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}
select.input__effect{ padding: 15px 10px 8px 10px; }
.input__span {
    position: absolute;
    left: 0.75rem;
    top: 12px;
    color: #999999;
    pointer-events: none;
    transition: 0.2s ease all;
}
.input__effect:focus ~ .input__span, .has-content ~ .input__span {
    top: 4px;
    font-size: 11px;
}
textarea.input__effect{
  height: unset;
}
.error_message {
    display: none;
    font-size: 12px;
}

/*popup*/
.thanks_container {
  display: flex;
  justify-content: center;
  align-items: center;
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color: #000000bd;
  animation-name: fadein;
  animation-duration: 1s;
  z-index: 9999;
}
@keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
}
.centered{
    background-color: #fff;
    border-radius: 8px;
    position: relative;
}
.close-popup{
    color: var(--black);
    position: absolute;
    top: 10px;
    right: 0;
}



/* Booking Modal container remove after close */
.form_modal {
    display: none;
    padding: 30px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background-color: #ffffff77;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 1;
    overflow-y: scroll;
    z-index: 1981;
    animation-name: opacity;
    animation-duration: 0.5s;
} 

@keyframes opacity {
    from { opacity: 0; }
    
    to { opacity: 1; }
}

.modal_container 
{
    border-radius: 6px;
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    position: relative;
    padding: 35px 25px 15px;
    background-color: var(--dark);
    display: inline-block;
    vertical-align: middle;
    max-width: 600px;
    width: calc(100% - 6px);
    font-family: Arial, Helvetica, sans-serif;
    margin:15px auto;
}
 .modal_container .form-group{
    align-items:center;
}
.modal_container label{
    text-align: right;
    margin: 0;
}

.form_modal:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
}

.modal_close {
    position: absolute;
    font-size: 2rem;
    right: 2rem;
    top: 0;
    color: var(--gold);
    cursor: pointer;
}
/* end here */


footer{
    background-color: var(--blue);
    color: #ffffff;
    margin-top: 1px;
    text-align: center;
}
footer .row *{
    color: #ffffff;
    text-align: left;
}
footer .nav-link{
    color: #ffffff;
    margin-bottom: 6px;
    opacity: .7;
    transition: all .2s;
}
footer .nav-link:hover{
    opacity: 1;
}






@media (max-width: 768px) {
    .py-10,.py-7{
        padding-top: 5em;
        padding-bottom: 5em;
    }
    .my-10{
        margin-top: 5em;
        margin-bottom: 5em;
    }
    .title{
        font-size: 2.2em;
    }
    .subtitle{
        font-size: 1.4em;
    }

    #smooth-wrapper,
    #smooth-content {
        will-change: unset;
        transform: unset;
        -webkit-transform: unset;
    }
    #loader span{
        font-size: 20px;
    }
    body{font-size: 1rem;}

    header{
        background-color: var(--dark);
        background-color: #1b2232d6;
        backdrop-filter: blur(5px);
        overflow: hidden;
        border-radius: 14px;
        width: 20%;
        left:40%;
        top:0;
        padding-top: 0;
        padding-bottom: 0;
        text-align: center;
        transform: translateY(calc(42px - 100%));
        transition: all 1s ease-in-out;
    }
    
    header.menu_open{
        border-radius: 50%;
        width: 200%;
        left:-50%;
        padding-bottom: 20px;
        padding-top: 300px;
        transform: translateY(-50%);
        top: 20%;
    }

    header .nav{ flex-direction: column; }

    #nav-logo { margin-bottom: 2em; }

    #video_toggle{ display: none; }

    .nav-link{
        font-size: 1.4em;
        font-weight: 200;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    #top_banner_text h1{
        font-size: 3em;
    }
    #top_banner_text h3{
        font-size: 1.2em;
    }
    #top_banner_text h1 span, #top_banner_text .lead{
        animation: none;
        clip-path: none;
        opacity: 1;
        position: relative;
    }

    .fluid_img{
        position: relative;
    }
    .fluid_img img{
        max-height: 200px;
    }
   .review_item{
        padding: 0 10px;
    }
    .partner_logo img {
        max-height: 40px;
        max-width: 100px;
        height: auto;
        margin: 20px;
    }

    footer .nav-link{
        font-size: 14px;
        margin:0;
    }

    footer .subtitle{
        font-size: 1.6rem;
    }





}