:root {
    /* colors */
    --clr-main: #007cba;
    --clr-main-trans: #4e576ed9;
    /* --clr-main-dark: #333476; */
    --clr-main-dark: #4e576e;
    --clr-pink-accent: #f7ab9c;
    --clr-b-yellow: #DEDEB6;
    --clr-dark-yellow: #bdbd7b;
    --clr-beige: #f7f4ed;

    /* font-sizes */
    --fs-900: 9.375rem;
    --fs-800: 6.25rem;
    --fs-750: 4.7rem;
    --fs-700: 3.2rem;
    --fs-650: 2.4rem;
    --fs-600: 2.5rem;
    --fs-550: 2.0rem;
    --fs-500: 1.75rem;
    --fs-450: 1.35rem;
    --fs-400: 1.125rem;
    --fs-300: 1rem;
    --fs-250: 0.9rem;
    --fs-200: 0.875rem;



    /* font families */
    --fs-100: 0.8rem;
    --ff-main:
    'main', serif;
    --transition: all 0.7s ease-in-out 0s;
    --ff-secondary:
    'sec', sans-serif;
    --ff-exp:
    'experiment', sans-serif;
    /* --ff-p: 'Quattrocento Sans', sans-serif; */
    --ff-p:
    'third',
    sans-serif;

    /* columns */
    --col:
    calc((100%/12) - calc(var(
    --col-padding)/2));
    --col-padding: 15px;
    --gap: 2rem;
    --border-radius: 3px;
    --container-padding: 5vw;
    --container-padding-mobile: 8%;
    --button-pad: 8px 20px;
    --bg-y-offset:0px;
--nav-h: 100px;
}

@font-face {
    font-family: 'main';
    src: url('../fonts/ivy.ttf');
}

@font-face {
    font-family: 'sec';
    src: url('../fonts/OptimaLTStd.otf');
}

@font-face {
    font-family: 'third';
    src: url('../fonts/Manrope-Light.ttf');
}

@font-face {
    font-family: 'experiment';
    src: url('../fonts/Quentin.otf');
}



#burger-menu {
        width: 100%;
        justify-content: space-between;
        /* background-color: var(--clr-main-trans); */
        backdrop-filter: blur(7px);
    }

#burger-menu [data-burger-open="1"]{
        left: 0;
        top: 0;
        margin-top: 0;
        gap: 0;
        display: flex;
        padding: 2vh 15vw;
    }

    #burger-menu ul li::before{
        display: none;
    }

    #burger-menu [data-burger-open="1"] > *{
        width: 100%;
    }

    #burger-menu ul li a {
        font-family: var(--ff-secondary);
        color: #111111;
        font-size: var(--fs-400);
        display: block;
        text-decoration: underline;
        /* width: max-content; */
        padding: 10px var(--container-padding-mobile);
        transition: all 0.3s;
    }
    #burger-menu ul li:hover ul a {
    /* color: black; */
}

    #burger-menu ul li a:hover::after {
        left: 0;
    }

    #burger-menu ul li a::after {
        content: none;
        position: absolute;
        z-index: -1;
        left: -100%;
        right: 100%;
        bottom: 2px;
        background: var(--clr-b-yellow);
        height: 2px;
        width: 100%;
        transition: all .3s;
        transition-timing-function: ease-out;
    }

    #burger-menu ul li a:hover::before {
        right: 0;
    }

    #burger-menu ul li a::before {
        content: none;
        position: absolute;
        z-index: -1;
        /* left: 100%; */
        right: -100%;
        bottom: 0px;
        background: var(--clr-b-yellow);
        height: 2px;
        width: 100%;
        transition: all .3s;
        transition-timing-function: ease-out;
    }

    #burger-menu ul li:hover{
    /* margin-bottom: var(--gap); */
    /* padding-left: 20px; */
    /* border-width: 2px; */
}
    #burger-menu ul.sub-menu li:hover a{
    /* margin-bottom: var(--gap); */
    /* padding-left: 20px!important; */
    /* border-width: 2px; */
    padding-left: 10px;
    background-color: var(--clr-b-yellow);
    /* border-left: solid 1px var(--clr-dark-yellow); */
}

    #burger-menu ul li:last-of-type{border-bottom:none;}
    #burger-menu ul li {
        position: relative;
        height: max-content;
        display: grid;
        align-items: center;
        /* width: -webkit-fill-available; */
        overflow: initial;
        width: 100%;
        padding: 0px 0px;
        border-bottom: solid 1px var(--clr-dark-yellow);
        margin-bottom: 0;
        transition: all 0.5s;
    }

    #burger-menu .sub-menu {
        /* display: none; */
        position: initial;
        /* top: 100%; */
        height: 0;
        width: 100%;
        max-height: 0;
        /* opacity: 0.5; */
        /* background-color: white; */
        top: 0;
        position: inherit;
        gap: 0;
        justify-content: space-between;
        padding: 0;
    }
    #burger-menu ul li:hover .sub-menu {
    max-height: 0;
    height: 0;
    /* padding: 0; */
    --underline: var(--clr-main-dark);
    border-bottom: none;
    }

    #burger-menu ul li:hover ul {
        /* display: flex; */
    }

    #burger-menu ul li[data-burger-open="1"] ul a {
        padding: 10px 0px;
    }
    
    
    
    #burger-menu[data-burger-open="1"]{
        left: 0;
        display: flex;
    }

    #burger-menu ul {
    /* position: fixed; */
    z-index: 2;
    top: 0;
    display: flex;
    flex-direction: column;
    /* height: 100vh; */
    /* background-color: var(--clr-main-dark); */
    /* background-color: #4e576ef0; */
    /* backdrop-filter: blur(105px); */
    color: #000;
    top: 70px;
    width: 100%;
    justify-content: flex-start;
    left: -100%;
    padding: 4vh 0;
    transition: all 0.2s;
    }

    #burger-menu ul a {
        text-decoration: none;
    }



    #burger-menu ul li[data-burger-open="1"] .sub-menu {
    max-height: 100vh;
    height: 100%;
    }

	#burger-menu [data-burger-open="1"] ul {
    left: 0;
}

/* RESETS */

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

html{
    scroll-behavior: smooth;
    position: relative;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

/* RESET MARGINS */
body,h1,h2,h3,h4,h5,h6,p,figure,picture{
    margin: 0;
    line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    font-weight:100;
}
h4{
    font-family: var(--ff-secondary);
    font-size: var(--fs-400);
}
h5{
    font-family: var(--ff-secondary);
    font-size: var(--fs-300);
    color: white;
}
p a{font-family:var(--ff-p);}
p{
    font-family: var(--ff-p);
    line-height: 1.7;
}
small{font-family: var(--ff-p);}
p.pad-l{
    padding-left: 3rem;
}
body{
    line-height: 1.5;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    /* position: fixed; */
    /* top: var(--bg-y-offset); */
}

img,picture{
    max-width: 100%;
    /* height: max-content; */
    height: auto;
}

.main-logo{
    height: 100%;
    width: auto;
    padding: 4%;
    min-width: 100px;
    }

/* forms */
input,button,textarea,select{font-family: inherit;}

/* Disable animatinos for people who chose to turn them off */
@media (prefers-reduced-motion: reduce){
    *,*::before,*::after{
        /* animation-duration: 0.01ms!important; */
        /* animation-iteration-count: 1 !important; */
        /* transition-duration: 0.01ms !important; */
        /* scroll-behavior: auto !important; */
    }
}




/* ------------------------------ */
a{
    font-family: var(--ff-secondary);
}
ul{
    font-family: var(--ff-p);
    list-style: none;
    padding-left: 1rem;
}

footer ul li::before{content:none;}
.sub-title-options li::before{content:none;}
ul li::before{
    color: azure;
    content: "⬖";
    color: var(--clr-dark-yellow); /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
    padding-right: 1.5em;
}

.header .header-wrapper .sliding-menu-content::-webkit-scrollbar-thumb {
    background: #ffffffc4;
}
.header .header-wrapper .sliding-menu-content::-webkit-scrollbar-thumb {
    background: var(--clr-pink-accent);
    /* border: solid 1px #fff; */
    /* border-radius: 60px; */
}
.header .header-wrapper .sliding-menu-content::-webkit-scrollbar-track {
    background: #ffffff26;
}

/* /* width */
.header .header-wrapper .sliding-menu-content::-webkit-scrollbar {
  width: 12px;
}

/* Track */
*::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* height: 10px; */
}

/* Handle */
*::-webkit-scrollbar-thumb {
  /* background: #888; */
}

/* Handle on hover */
*::-webkit-scrollbar-thumb:hover {
  background: #555;
} */


main{
    min-height: 100vh;
}
.taly section{
    min-height: 60vh;
    position: relative;
}
main.taly{
    /* overflow-x: hidden; */
    /* position: relative; */
}
.tb{
    
padding: 6rem 0;
}
/* RESETS */

/* ------------------- */
/* Text */
/* ------------------- */
.text-white{color:white;}
.text-center{text-align:center;}


/* ---------------- */
/* Utility classes  */
/* ---------------- */

.relative{position:relative;}

section{position:relative;overflow-y: hidden;/* min-height: 60vh; */height: auto;/* background-color: #fff; */overflow-x: hidden;}
footer{background-color: var(--clr-main-dark);}
footer p{
    color: white;
    font-size: var(--fs-100);
}
::-webkit-calendar-picker-indicator{
    width:10px;
    flex:0.3;
    padding:0;
}
footer .main-logo{
    margin-bottom: 40px;
    padding: 0;
    max-width: 200px;
}
footer li{
    color:white;
    font-family: var(--ff-p);
    font-weight: 100;
    font-size: var(--fs-200);
    /* display: flex; */
    /* justify-content: space-between; */
}

footer a{
    color: var(--clr-b-yellow);
}
footer ul{
    list-style: none;
    padding: 0;
}
footer .row div{
    position: relative;
}
.h-100{min-height:100vh;}
.h-20{min-height:20vh;}
.center-xy{display: flex;flex-direction: column;align-items: center;width: 100%;justify-content: center;height: 100vh;}
.center-y{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.bottom-left{
        display: flex;
        flex-direction: column;
        width: fit-content;
        justify-content: end;
        height: 100vh;
        padding: var(--container-padding);
}
.center-x{
    width: 100%;
    text-align: center;
}
.center-img{
    margin: auto;
    display: block;
}
#creds .row{
    justify-content: center;
    gap: 4vw;
    padding-top: 0;
}
#creds{
    padding: 20px 0;
    border-bottom: solid 2px var(--clr-dark-yellow);
    background-color: #fff;
}
#creds img{
    width: 125px;
    image-rendering: auto;
    /* height: 125px; */
    height: auto;
}
button a{
    width: 100%;
    display: block;
    /* text-decoration: none; */
    padding: var(--button-pad);
    color: inherit;
transition: all 0.5s;}
button{
    height: fit-content;
    /* padding: 10px 20px!important; */
    font-family: var(--ff-secondary);
    border: solid 2px;
    font-size: var(--fs-400);
    background: none;
    padding: 0;
position: relative;/* border: none!important; */}

.btn-third {
    color: #ffffff;
    background-color: #fff3;
    width: max-content!important;
}

button:hover svg rect{
    stroke: var(--clr-b-yellow);
      /* stroke-width: 5; */
      stroke-dasharray: 322, 0;
      stroke-dashoffset: 0;
stroke-aligment: initial;/* paint-order: stroke; *//* outline-style: solid; */
  /* outline-width: 10px; */
  /* outline-offset: -10px; */}

button svg rect{
        stroke-dasharray: 210, 492;
    stroke-dashoffset: 227;
    /* stroke-dasharray: 0, 0; */
      /* stroke-dashoffset: 0; */width: 100%;
    height: 100%;
    fill: none;
    stroke-width: 2px;
    stroke: rgb(255 255 255 / 22%);
    transition: all 0.5s ease-out;
}
button svg{
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

button:hover a{
    
}

button::after{
/* content: url('data:image/svg+xml; utf8, <svg> <rect x="0" y="0" fill="none" width="130" height="55" /> </svg>'); */
    /* content: url("data:image/svg+xml; %3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' fill='none' width='130' height='85' style='stroke: %23ff0000;stroke-width: 5;stroke-dasharray: 110, 312;stroke-dashoffset: 227;'%3E%3C/rect%3E%3C/svg%3E"); */
  /* display: block; */
  /* content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='50' r='40' stroke='black' stroke-width='2' fill='red'/%3E%3Cpolyline points='20,20 40,25 60,40 80,120 120,140 200,180' style='fill:none;stroke:black;stroke-width:3'/%3E%3C/svg%3E "); *//* width: 100%; */
  /* height: 50px; */
  /* margin: 10px 5px 0 10px; */
/* background: aqua; *//* position: absolute; *//* top: 0; *//* left: 0; *//* z-index: 2; */}

#synxis-trigger{
    padding: var(--button-pad);
}
.btn-questions{
    color: #fff;
    border: solid 1px #ffffff4f;
    text-decoration: underline;
    display: flex;
    align-items: center;
    position: relative;
    padding: 13px 20px;
}
.main-book{
    font-family: var(--ff-secondary);
    background: #c8c8a1;
    font-size: var(--fs-450);
    color: white;
    border-color: var(--clr-b-yellow);
    /* border-radius: var(--border-radius); */
    padding: var(--button-pad);
}
.main-book.trigger-active{
    background-color: var(--clr-dark-yellow);
    color: white!important;
}


.flex{
    display: flex;
    gap:var(--gap,1rem);
    flex-direction: row;
}
.flex-even >*{
    flex-basis: 100%;
}
.inline-links li{padding:0 5px;font-size: var(--fs-400);}
.inline-links li::after{content:" | ";color:#232323;}
.inline-links li:last-child::after{content:"";}
.vertical-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#login-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    gap: 30px;
    font-family: sans-serif;
}
#login-form img{
    width: clamp(70px,20vw,80px);
}
#login-form form input{
    height: 40px;
    font-family: sans-serif;
}
#login-form form{
    flex-direction: column;
    width: clamp(270px,50vw,500px);
    gap: 20px;
}
ul.inline-links{
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}
.wrap{flex-wrap: wrap;}
.grid{
    display: grid;
    gap:var(--gap,1rem);
}
.flex--center{}
.text--center{
    text-align: center;
}
.title-center{
    width: 100%;
    text-align: center;
}
nav .container > *{
    /* height: 60px; */
}
nav a{display:block;height: inherit;}
#cta{
    display: flex;
    align-items: center;
gap: 10px;}
.menu-button:hover{
    background-color: #ffffff26;
}
.menu-button{
    width: 50px;
    cursor: pointer;
    padding: 15px 10px;
    /* border-radius: 3px; */
    height: 50px;
    transition: all 0.3s;
    border: solid 1px #ffffff47;
}
.menu-button.trigger-active{
    filter: invert(1);
    background-color: black;
}
.exit:hover{
    background-color: var(--clr-main-trans);
    color: white;
    border-radius: 50px;
}
.exit{
    position:absolute;
    z-index: 10;
    cursor: pointer;
    transition: all 0.5s;
    padding: 5px 9px;
}
nav .container {
    justify-content: space-between;
    align-items: center;
    height: var(--nav-h);
    gap: 1vw;
}
.loader{
    width: 30px;
    opacity: 0;
    transition: all 0.2s;
    position: absolute;
    left: -10px;
}
.loading{opacity: 1;}

.container {
    padding: 0px var(--container-padding);
    width: 100%;
    height: max-content;
}

.flex-center{justify-content: center;height: 100vh;/* max-height: 600px; *//* min-height: 500px; */height: clamp(500px,100vh,600px);}
.cards-container #card{height: auto;}
.row{
    /* padding: 3rem 0; */
    /* max-width: 80rem; */
    /* margin:0 auto; */
    justify-content: space-between;
    display: flex;
    gap: var(--gap);
}
main .row:first-of-type{
    padding-top: var(--nav-h);
}
.row>*{
    flex: 1;
}
.pad-y-20{padding: 20vh 0px;}
.pad-y-10{padding: 10vh 0px;}
.pad-y-5{padding: 5vh 0px;}

.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow:hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.col-md-1,
.col-1 {
    -ms-flex: 0 0 calc(var(--col)*1);
    flex: 0 0 calc(var(--col)*1);
    max-width: calc(var(--col)*1);
}

.col-md-2,
.col-2 {
    -ms-flex: 0 0 calc(var(--col)*2);
    flex: 0 0 calc(var(--col)*2);
    max-width: calc(var(--col)*2);
}

.col-md-3,
.col-3 {
    -ms-flex: 0 0 calc(var(--col)*3);
    /* flex: 0 0 calc(var(--col)*3); */
    /* max-width: calc(var(--col)*3); */
}

.col-md-4,
.col-4 {
    -ms-flex: 0 0 calc(var(--col)*4);
    /* flex: 0 0 calc(var(--col)*4); */
    /* max-width: calc(var(--col)*4); */
}

.col-md-5,
.col-5 {
    -ms-flex: 0 0 calc(var(--col)*5);
    flex: 0 0 calc(var(--col)*5);
    max-width: calc(var(--col)*5);
}

.col-md-6,
.col-6 {
    -ms-flex: 0 0 calc(var(--col)*6);
    flex: 0 0 calc(var(--col)*6);
    max-width: calc(var(--col)*6);
}

.col-md-7,
.col-7 {
    -ms-flex: 0 0 calc(var(--col)*7);
    flex: 0 0 calc(var(--col)*7);
    max-width: calc(var(--col)*7);
}

.col-md-8,
.col-8 {
    -ms-flex: 0 0 calc(var(--col)*8);
    flex: 0 0 calc(var(--col)*8);
    max-width: calc(var(--col)*8);
}

.col-md-9,
.col-9 {
    -ms-flex: 0 0 calc(var(--col)*9);
    flex: 0 0 calc(var(--col)*9);
    max-width: calc(var(--col)*9);
}

.col-md-10,
.col-10 {
    -ms-flex: 0 0 calc(var(--col)*10);
    flex: 0 0 calc(var(--col)*10);
    max-width: calc(var(--col)*10);
}

.col-md-11,
.col-11 {
    -ms-flex: 0 0 calc(var(--col)*11);
    flex: 0 0 calc(var(--col)*11);
    max-width: calc(var(--col)*11);
}

.col-md-12,
.col-12 {
    -ms-flex: 0 0 calc(var(--col)*12);
    flex: 0 0 calc(var(--col)*12);
    /* max-width: calc(var(--col)*12); */
}


/* FAQS START */
.faq:last-child {
    border-bottom: none;
}
.faq {
    border-bottom: solid 1px #e8e8e8;
    animation-name: faq;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.03, 0.66, 0.58, 1);
    animation-fill-mode: forwards;
    /* padding: 20px 0; */
    opacity: 0;
}

h1{font-family: var(--ff-main);font-weight: 100;font-size: var(--fs-700);line-height: 1.1;}
.main-section h1{
    font-size: var(--fs-750);
    line-height: 1.1;
    filter: drop-shadow(0px 4px 4px rgb(0,0,0,0.2));
}
.main-section h2{
    font-size: var(--fs-600);
    line-height: 1.1;
    color: var(--clr-b-yellow);
    font-family: 'experiment';
}
h2{font-family: var(--ff-main);font-weight: 100;font-size: var(--fs-750);line-height: 1.5ch;margin-bottom: 1.5rem;}
h3{
    font-weight: 100;
    font-family: var(--ff-main);
    font-size: var(--fs-600);
    color: black;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
h3.pre-title{
    font-family: 'experiment';
    /* text-transform: uppercase; */
    color: var(--clr-dark-yellow);
    font-size: var(--fs-600);
    margin-bottom: unset;
}
.blog-grid{display: grid;grid-template-columns: repeat(2, 1fr);gap: var(--gap);padding: 10vh;/* grid-template-rows: auto; */}
.post-preview a{text-decoration: none;color: #000;}
.post-preview .info{background-color: #fff;padding: 30px;height: 100%;}
.post-preview{/* min-height: 40vh; *//* height: 100%; *//* margin: 5vh 0; */border: solid 2px var(--clr-dark-yellow);filter: drop-shadow(3px 4px 5px rgb(0,0,0,0.2));display: flex;flex-direction: column;/* border:  solid; */}
.post-preview img{height: 250px;min-height: 250px;width: auto;object-fit: cover;}
.post-preview h2{font-size: var(--fs-500);line-height: 1.3;/* min-height: 4ch; */}
.post-preview > * {/* flex-basis: 100%; */}
.taly h1{
    font-size: var(--fs-600);
    line-height: 1.4;
}
.taly h2{
    font-size: var(--fs-500);
}

.taly h4 {
    font-family: 'Quattrocento Sans',
        sans-serif;
    font-family: 'Quattrocento Sans', sans-serif;
    /* font-size: clamp(1rem, 4vh, 1px)!important; */
    font-size: clamp(1rem, 1rem, 1.5rem);
    line-height: 28px;
    letter-spacing: 1.94px;
    text-transform: none;
    color: #475970;
}
.gform-body .gfield_label, .gform-body label, .gform-body select, .gform-body option {
    font-family: var(--ff-p);
    font-weight: 100!important;
}

.taly [data-status="1"] h4 {
    padding-left: 50px !important;
    transition: all 1s;
}

.faqs-container input {}

.faq-header:hover h4 {
    padding-left: 45px;
}

.faq h4 {
    /* padding-left: 32px; */
    line-height: inherit;
    /* transition: all 1s; */
    transition: all 0.2s;
    width: 100%;
    padding: 10px 0;
    padding-left: 32px;
    font-size: var(--fs-300);
    font-family: var(--ff-secondary);
}

.faq h4:before {
    content: '';
    background-color: var(--clr-dark-yellow);
    width: 20px;
    height: 2px;
    display: block;
    position: absolute;
    top: calc(50% - 1px);
    left: 0px;
}


.faqs-container a{
    text-decoration:underline;
    color: var(--clr-dark-yellow);
}
.faqs-container h3{
    /* font-size: var(--fs-600); */
    font-size: var(--fs-500);
    font-family: var(--ff-main);
    margin: 0;
}
.faqs-container {
    /* width: 80vh; */
    /* margin: 10vh auto; */
    position: relative;
    height: inherit;
}

.faq-content {
    height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
}

.openFAQ {
    height: -webkit-fill-available !important;
    padding: 15px 0;
    -webkit-transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -ms-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    opacity: 1;
    transition: all 150ms ease-in-out;
}

.faq-header {
    display: flex;
    flex-flow: row-reverse;
    justify-content: flex-end;
    align-items: baseline;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    position: relative;
}

.taly p {
    /* font-family: 'Quattrocento Sans',
        sans-serif; */
    /* font-size: 16px; */
    /* font-weight: normal; */
    /* line-height: 28px; */
    /* letter-spacing: 1.94px; */
    /* text-transform: none; */
    /* color: #5c5c5c; */
}

@keyframes faq {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.faqs-container input[type="text"] {
    margin: 20px 0;
    width: 90%;
    border: none !important;
    border: solid 1px #ffffff;
    border-bottom: solid 2px #a0b6d1 !important;
    font-size: var(--fs-300);
    transition: all 0.5s;
    font-family: 'Quattrocento Sans', sans-serif;
}

.faqs-container input[type="text"]:focus-visible {
    outline: none;
    border: solid 1px #cacaca;
    border-bottom: solid 2px var(--clr-dark-yellow) !important;
}

.sticky{
    position: sticky;
    top: var(--sticky,20vh);
}

/* FAQS END */

.locked{
    overflow:hidden;
}


/* --------------------------------- */
/* MEAL MENUS */
/* --------------------------------- */

.menu-container h2 {
    /* border-bottom: solid 2px var(--clr-pink-accent); */
    width: fit-content;
    font-size: var(--fs-550);
}
.menu-container {
    /* justify-content: space-between; */
    /* display: grid; */
    /* grid-template-columns: 50% 50%; */
    /* width: 50%; */
}

.menu-section {
    display: grid;
    grid-template-columns: 49% 49%;
    column-gap: var(--gap);
    margin-bottom: 10vh;
}

@media only screen and (max-width: 1280px) {
    .menu-container .menu-item > div{
        width: 60%!important;
    }
}
@media only screen and (max-width: 1000px) {
    .menu-section {
        grid-template-columns: 100%;
    }
}

.menu-container .menu-item {
    border-bottom: solid 1px var(--clr-dark-yellow);
    padding: 20px 0;
    justify-content: space-between;
    align-self: center;
    /* width: 59%; */
}
.menu-container .menu-item > div{
    width: 70%;
}

.menu-item label{
    font-family: var(--ff-p);
    font-weight: bold;
}
.menu-item ol li{}
.menu-item .price {
    /* flex-basis: max-content; */
    display: flex;
    align-items: center;
    font-family: var(--ff-secondary);
    justify-content: end;
}
.menu-item ol{
    margin: 0;
    font-family: var(--ff-p);
}
.header-slider{
    padding: 0;
}
.lt-form input {color: rgb(15, 15, 15) !important;font-family: sans-serif;}
.lt-form input[type="submit"] {
    color: #fff !important;
    background-color: var(--clr-dark-yellow);
    width: 100%;
    padding: 10px 0;
    font-family: var(--ff-secondary);
    font-size: var(--fs-400);
    border: solid 2px #ffffff6e;
    border-radius: var(--border-radius);
}
.sign-up form input {color: rgb(0, 0, 0) !important;}
.lt-form{padding: 2rem 0;max-width:800px;}
h3.key {
    font-size: clamp(20px, 1.0rem, 5rem);
    line-height: normal;
}

nav{
    
}
header {
    position: fixed;
    z-index: 20;
    width: 100%;
}
#main-menu {
    width: 100%;
    justify-content: space-between;
    background-color: var(--clr-main-trans);
    backdrop-filter: blur(7px);
    z-index: 10;
}

#main-menu ul li a{
    font-family:var(--ff-p);
    color:#fff;
    font-size: var(--fs-300);
    height: 100%;
    display: flex;
    align-items: center;
}

#main-menu ul li:hover::after {
    left: 0;
}
#main-menu ul li::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -100%;
    right: 100%;
    bottom: 2px;
    background: var(--underline);
    height: 2px;
    width: 100%;
    transition: all .3s;
    transition-timing-function: ease-out;
}

#main-menu ul li:hover::before {
    right: 0;
}
#main-menu ul li::before {
    content: "";
    position: absolute;
    z-index: -1;
    /* left: 100%; */
    right: -100%;
    bottom: 0px;
    background: var(--underline);
    height: 2px;
    width: 100%;
    transition: all .3s;
    transition-timing-function: ease-out;
}

#main-menu ul li{position: relative;height: inherit;display: flex;align-items: center;/* width: -webkit-fill-available; */overflow: hidden;padding: 0 1vw;min-width: max-content;transition: all 0.2s;}
#main-menu .sub-menu{
    display: none;
    position:absolute;
    top: 100%;
    height: 100%;
    width: 100%;
}
#main-menu ul li:hover ul{/* display: flex; */background-color: #ffffff;}
#main-menu ul li:hover ul a{
    color: black;
}
#main-menu ul{
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    /* width: 50%; */
    justify-content: center;
    height: 100%;
    --underline: var(--clr-b-yellow);
    gap: 0;
}
#main-menu ul a{
    text-decoration: none;
}

#main-menu .sub-menu {
    position: fixed;
    max-height: 0;
    height: 0;
    left: 0;
    overflow: hidden;
    transition: all 0.5s!important;
    z-index: 999999;
    gap: 40px;
    width: 100vw;
    display: flex;
    padding: 0px 0px;
    transition: all 0.2s;
}

#main-menu ul li:hover .sub-menu {
    max-height: 60px;
    height: 60px;
    padding: 10px 25px;
    --underline: var(--clr-main-dark);
    border-bottom: solid 1px #ececec;
}

.vid-container .video-placeholder{
    width: 100%;
}
.vid-container{
    position: fixed;
    z-index: -1021;
    height: 100%;
    background-color: var(--clr-main-trans);
}
.vid-container.flip{transform:scaleX(-1);}
.unit-page .page-cover{}
.page-cover{
    position: relative;
    height: 70vh;
    overflow: hidden;
    padding-top: 80px;
}
.page-cover .info h1{
    color: white;
    font-size: var(--fs-800);
    filter: drop-shadow(0px 4px 4px rgb(0,0,0,0.2));
}
.page-cover .info h3{
    color: var(--clr-b-yellow);
}
.page-cover .info{
    left: var(--container-padding);
    bottom: var(--container-padding);
}
.page-cover>*{
    position: absolute;
}
.page-cover img.cover{
    position: absolute;
    z-index: -1;
}
.cover{
    /* position: absolute; */
    /* top: 0; */
    height: 100vh;
    max-height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: left;
}
.vid-container video{
    width: auto;
    min-width: 100vw;
    height: 100%;
    transform: scale(1.2);
}
.ly-03 #booking-widget button{
    width: 100%;
}
.btn-main{
    background-color: var(--clr-main-dark);
    border: solid 2px #ffffff21;
    color: white;
    /* border-radius: var(--border-radius); */
    /* padding: var(--button-pad); */
}
button[disabled='true']{background-color: #aeaeae;}
.btn-async{padding: var(--button-pad);}
.btn-sec{
    background-color: #ffffff;
    color: #4e576e;
    /* border-radius: var(--border-radius); */
}
.btn-ter{
    background-color: #fafafa;
    color: #4e576e;
    border-radius: var(--border-radius);
}
header #booking-widget{
    background-color: #fff;
}
#booking-widget{
    background-color: #fff;
    padding: 15px 30px;
    margin-top: 30px;
    border-radius: var(--border-radius);
    background-color: #22212669;
    border: double #e2e2e2 3px;
    /* backdrop-filter: blur(7px); */
    /* max-width: 1200px; */
    /* width: 90vw; */
}
#book-now .qty{
    color: black;
}
#booking-widget form{
    gap: 30px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
#booking-widget label{
    font-family: var(--ff-p);
    font-size: var(--fs-200);
    color: white;
}
#booking-widget .spec::after{content: "";width: 1px;background-color: var(--clr-dark-yellow);height: 77%;position: absolute;left: -20px;top: 50%;transform: translateY(-50%);}
footer .row div::after{content: "";width: 1px;background-color: var(--clr-dark-yellow);height: 100%;position: absolute;right: 10%;top: 50%;transform: translateY(-50%);}
#booking-widget .spec:last-child::after{}
footer .row div:last-of-type::after{
    display: none;
}
#booking-widget .spec:first-of-type::after{
    display: none;
}
#booking-widget .spec{
    display: flex;
    flex-direction: column;
    /* border-right: solid; */
    position: relative;
    /* max-width: 22ch; */
}
#booking-widget input{
    font-family: var(--ff-secondary);
    font-size: var(--fs-450);
    border: none;
    background: none;
    color: white;
    outline: none;
}
#booking-widget input[type="number"]{
    width: 2ch;
}
/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.qty:hover{
    background-color: #d7d7d752;
}
.sticky #room-booking .qty{
    color: black;
}
.sticky #room-booking .spec>div{width: 100%;}
.qty{
    font-size: 20px;
    font-weight: 100;
    line-height: 1;
    /* border: solid 1px; */
    padding: 0px 6px;
    border-radius: 5px;
    cursor: pointer;
    color: white;
    transition: all 0.2s;
    user-select: none;
    border: solid 1px #ffffff42;
}
.bg-pattern{
    background-repeat: initial;
} 
.pattern-01{
    background-image: url('/wp-content/themes/las_terrazas/dist/images/patterned_wooden_wall.webp');
    background-size: 30vw;
    background-position-y: calc( var(--bg-y-offset) * 0.3 );
}

.pattern-03{
    background-image: url('/wp-content/themes/las_terrazas/dist/images/wooden_fence_47_85_ao.webp');
    background-size: 20vw;
}

.pattern-02{
    background-image: url('/wp-content/themes/las_terrazas/dist/images/marble.webp');
    background-size: 20vw;
    background-position-y: calc( var(--bg-y-offset) * 0.35 );
}

.pattern-04{
    background-image: url('/wp-content/themes/las_terrazas/dist/images/spa/bg.webp');
    background-size: 100vw;
    background-position-x: calc( var(--bg-y-offset) * 0.1 );
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ----------------------- */
/*  ACCOMODATION CARDS     */
/* ----------------------- */


.accom-card{
            border: solid 2px;
            border-color:#cacaca;
            background-color: white;
            width: clamp(430px,24vw,40vw);
            filter: drop-shadow(3px 4px 5px rgb(0,0,0,0.2));
            border-radius: var(--border-radius);
            /* transform: scale(0.96); */
            min-height: 0;
            height: clamp(500px,100%,600px);
            height: 100%;transition: var(--transition);
display: flex;flex-direction: column;justify-content: space-between;}
.card-container[active="1"]{
    /* padding: 0; */
    /* padding-left: 0px; */
}
.card-container[active="1"] .accom-card{
    border-color:var(--clr-dark-yellow);
    /* transform: scale(1); */
    /* min-height: 100%; */
    /* transition-delay: var(--slide-speed-delay); */
    /* filter: drop-shadow(2px 2px 2px rgb(0,0,0,0.2)); */
}

.accom-card h4, .dishes h4{
    font-size: var(--fs-500);
    position:relative;
    /* margin-bottom: 10px; */
    text-align: center;
    line-height: 1.2;
    font-family: var(--ff-main);
}
.accom-card h4::after, .dishes h4::after{content:'';width: 90px;position: absolute;height: 2px;background-color: var(--clr-dark-yellow);bottom: -10px;left: 50%;transform: translateX(-50%);}
.accom-card #mini-slide-show img:first-of-type{
    z-index: 1;
animation: mini-slide 0.5s;animation-fill-mode: forwards;}
@keyframes mini-slide{
    0%{opacity:0;transform:translate(-10px,0);}
    100%{opacity:1;transform:translate(0px,0);}
}
.accom-card #mini-slide-show img{
    width: auto;
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.benefits{
    font-family: 'third';
}
.accom-card #mini-slide-show{
    height: 100%;
    min-height: 100px;gap: 0;
    position: relative;
    overflow: hidden;
/* max-height: 170px; */}
#mini-slide-show .slider-nav > *{background-color: var(--clr-main-trans);border-radius: var(--border-radius);transform: none;color: #fff;}
#mini-slide-show .slider-nav{
    bottom: 45%;
    width: 100%;
    justify-content: space-between;
    color: white;
    left: 0;
    z-index: 9999;
    /* position: fixed; */
/* mix-blend-mode: exclusion; */}
.slider-nav{
    position: absolute;
    display: flex;
    gap: 30px;
    font-size: var(--fs-500);
    z-index: 1;
    color: var(--clr-dark-yellow);
    bottom: -7%;
    left: 20%;
    cursor: pointer;
    align-items: center;
    z-index: 2;
/* pointer-events: none; */}
.slider-left .slider-nav{
    bottom: 0;
    left: unset;
    right: 40%;
}
.slider-nav .left, .slider-nav .right{
    padding: 5px 10px;
    line-height: 1;
    user-select: none;
}
.dark .slider-nav{
    color: var(--clr-b-yellow);
}
.dark .slider-nav .count{
    color: white;
}
.slider-nav .count{
    color: #000;
    font-family: var(--ff-secondary);
    font-size: var(--fs-400);
}
ul.benefits{
    margin: 0;
    /* padding: 0; */
}
#grid{display: grid;grid-template-columns: repeat(auto-fit, minmax(350px,1fr));gap: var(--gap);grid-auto-rows: 70vh;}
#grid .accom-card{width: 100%;transform: translate(0px, 0px);}

.card-container{
    /* height: 100%; */
    width: 100%;
    animation-delay: 5000ms;
    padding-top: var(--slide-pad);
    padding-right: var(--slide-pad);
    padding-bottom: var(--slide-pad);
    padding-left: var(--slide-pad);
    transition: all 0.5s;
    /* max-height: 980px; */
    }
.accom-card #info, .dishes #info{
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;
    /* height: 100%; */
    /* min-height: 45vh; */
}
.card-container .accom-card button{
    width: 100%;
}
.card-container #info>*{
    width: 100%;
}
.card-container #info>a{
   text-align: center;
}
.accom-card .ammenities{
    /* display: grid; */
    /* grid-template-rows: repeat(3, 1fr); */
    /* grid-template-columns:  repeat(3, 1fr); */
    column-gap: 2%;
    /* row-gap: 10px; */
    /* height: 120px; */
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
    padding: 10px 10px 0 10px;
}
.room-ammenitie div{
    font-size: small;
}
.room-ammenitie{
    gap: 5%;
    font-family: var(--ff-p);
    align-items: center;
    width: 32%;
}
.room-ammenitie img{
    width: auto;
    height: 24px;
}
#more-details{
    font-size: var(--fs-400);
}
[id*="slider"]{
    position: relative;
    /* height: calc( var(--slider-height) * 1); */
    height: clamp(550px,var(--slider-height),800px);
    min-height: 500px;
}

.dark:has([id*="slider"]){
    background-color:unset;
}

tr:has(.month-02,.month-04,.month-06,.month-08,.month-10){
  background-color:#f2f2f2;
}

.slider-left .slider-container{
    /* flex-direction: row-reverse; */
}
.slider-container{
    height: inherit;
    z-index: 2;
    transition: transform var(--slide-speed) cubic-bezier(0.74, 0.01, 0.58, 1);
    justify-content: space-evenly;
    gap: 0;
}
.slider{
    position: absolute;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}
.slider-left .slider{
    right: 0;
}
.slider-right{
    left: 0;
}
.slider-center .slider{
    left: 50%;
    transform: translateX(-50%);
}
#overflowing-img-container{
    position: relative;
    width: 125px;
}
#overflowing-img-container img{
    /* position: fixed; */
    /* width: 50%; */
    transform: scale(1);
    z-index: 71;
    bottom: 0;
}

.bg-image{
    background-size: auto;
}
.bg1{
    background-image: url(/wp-content/themes/las_terrazas/dist/images/blue_ombre.webp);
}
.bg3{
    background-image: url(/wp-content/themes/las_terrazas/dist/images/blue_ombre2.webp);
    background-size: 50vw;
    background-position-y: calc( var(--bg-y-offset) * 0.35 );
}
.bg2{
    background-image: url(/wp-content/themes/las_terrazas/dist/images/palm.webp);
    background-repeat: no-repeat;
    background-position-y: calc( var(--bg-y-offset) * -0.1 );
    background-size: contain;
}
.dark{
    background-color: var(--clr-main-dark);
}
.dark h2{
    color: white;
}
.dark h3{
    color: var(--clr-b-yellow);
}
.dark p{
    color: white;
}

.food{
    position: relative;
    height: 100%;
    width: 45vw;
}
.dishes{
    position: relative;
    height: 100%;
    width: 45vw;
}
.dishes #info{
    position: absolute;
    z-index: 1;
    width: 15vw;
    max-width: 20vw;
    min-width: 200px;
    background-color: white;
    /* left: -70px; */
    padding: 15px;
    max-height: 90%;
    height: auto;
    top: 50%;
    transform: translate(0% ,-20%);
    border-radius: var(--border-radius);
    gap: 15px;
    /* border: solid 1px #f6f6f6; */
    filter: drop-shadow(2px 4px 6px hsl(0deg 0% 0% / 10%));
    transition: all calc(var(--slide-speed) * 2);
    opacity: 0;
}
.dishes #info h4{
    /* font-size: var(--fs-450); */
}
.dishes #info p{
    color: black;
    /* font-size: var(--fs-100); */
}
.food .img-container{
    height: 100%;
    width: 100%;
    position: relative;
    /* transform: translateX(70px); */
}
.dishes .img-container{
    height: 100%;
    width: 100%;
    position: relative;
    transform: translateX(70px);
    overflow: hidden;
    border-radius: var(--border-radius);
}
.dishes .img-container img{
    position: absolute;
    top: 0;
    width: 110%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2) translate(30px, 0);
    transition: all calc(var(--slide-speed) * 1.75);
}
.card-container[active="1"] .dishes #info {
    transform: translate(0% ,-50%);
    opacity: 1;
}
.card-container[active="1"] .dishes img {
    transform: scale(1) translate(0px, 0);
}

.experience .filter{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00000036;
    z-index: 1;
}
.experience{
    position: relative;
    height: 100%;
    width: 25vw;
    min-width: 330px;
--scale: 1.2;
    cursor: pointer;
}
.experience:hover{
--scale: 1.1;
}
.experience #info{
    position: absolute;
    z-index: 2;
    width: 100%;
    padding: 30px;
    /* height: 100%; */
    max-height: 60%;
    /* top: 50%; */
    color: white;
    bottom: 0;
    margin-bottom: 0%;
}
.experience #info h4{
    font-size: var(--fs-600);
    line-height: 1;
}
.experience #info p{
    color: white;
    margin-bottom: 20px;
}
.spa-rates{
    font-family: var(--ff-p);
    display: flex;
    gap: var(--gap);
}
.experience .img-container{
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}
.experience .img-container img{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* transition: var(--transition); */
    transition-duration: var(--slide-speed);
    transition-timing-function: ease-in-out;
    transform: scale(1.2) translateX(-20px);
}
.card-container[active="1"] .experience {
    /* border-color: var(--clr-dark-yellow); */
    /* transform: scale(1); */
    /* transition-delay: var(--slide-speed-delay); */
    /* filter: drop-shadow(2px 2px 2px rgb(0,0,0,0.2)); */
    /* opacity: 0; */
    /* z-index: 2; */
}
.card-container[active="1"] .experience .img-container img{
    transform: scale(var(--scale)) translateX(20px);
}
.card-container .experience .img-container img{
    transform: scale(var(--scale));
}

/* DYNAMIC TABLE */

#dynamic-table{
}
#dynamic-table table{
    background-color: #ffffffeb;
    color: #000;
    width: 100%;
    border-collapse: collapse;
    font-family: var(--ff-p);
    /* border-color: #7a36f7!important; */
    border-radius: 0;
}

#dynamic-table th{
    font-family: var(--ff-secondary);
    font-size: var(--fs-400);
}

#dynamic-table table, #dynamic-table th, #dynamic-table td {
  border: 1px solid;
  border-color: #dfdfdf!important;
}
#dynamic-table td, #dynamic-table th{
    padding: 13px;
    text-align: center;
}

#dynamic-table-dial{margin-bottom:10px;}
#dynamic-table-dial h4, #dynamic-table-dial span{
    color:#fff;
    font-size:var(--fs-500);
}

#dynamic-table-dial span{
    margin-right: 9px;
}


#dynamic-table td span{
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: var(--d,0s);
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-name: masonry-item;
    opacity: 0;
    transform: translate(0px, -20px);
}

/* @keyframes masonry-item{
    0%{opacity:0;transform: translate(0px, -10px);}
    100%{opacity:1;transform: translate(0px, 0px);}
} */

/* TABS */
.tabs-container{
    display: flex;
    /* gap: 10px; */
    border-bottom: solid 1px #cacaca;
    justify-content: center;
}
#tab:hover{
  background-color: #efefef;
}
#tab{
    font-family: var(--ff-secondary);
    font-size: var(--fs-300);
    padding: 5px 15px;
    position: relative;
    border-top: solid 2px #ffffff;
    cursor: pointer;
    background-color: #fafafa;
    transition: background-color 0.2s;
}
#tab[data-active="0"]{}
#tab[data-active="1"]{
    border-top: solid 2px var(--clr-main-dark);
    border-left: solid 1px #cacaca;
    border-right: solid 1px #cacaca;
    background-color: white;
}
#tab[data-active="1"]::after{
    content:" ";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -5px;
    height: 6px;
    background-color: white;
    z-index: 1;
}

#tab-container[data-active="0"]{
    display: none;
}
#tab-container[data-active="1"]{}
#book-now[data-open="0"]{/* display:none; */max-height: 0px;height: 0;min-height: 0;border: none;}
#book-now{
    position: fixed;
    width: 100%;
    background-color: white;
    height: 12vh;
    max-height: 
70px;min-height: 70px;/* max-height: 100%; */
    overflow: hidden;
    transition: all 0.5s;
    border-bottom: solid 1px var(--clr-b-yellow);
}
#book-now #booking-widget{
    margin-top: 0;
    width: 100%;
    padding: 10px 0px;
    border: none;
}
#book-now #booking-widget form{width: 100%;justify-content: space-between;}

nav #book-now .container{
    height: 100%;
    padding: 0 var(--container-padding-mobile);
}
#book-now form input{
    color: #000;
    font-size: var(--fs-400);
}
#book-now form label{
    color: #000;
}
#book-now .exit{
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
}
#pop-up-bar.right .pop-up-container{
    right: -100%;
    padding: 3rem;
    animation: pop-up-container 0.7s ease-in-out forwards;
}
@keyframes pop-up-container{
    0%{right:-100%;}
    100%{right:0%;}
}
#pop-up-bar{
    position: fixed;
    top: 0;
    z-index: 30;
    width: 100%;
    /* background-color: #00000059; */
    height: 100vh;
    animation: pop-up-bg 1s forwards;
}
@keyframes pop-up-bg{
    0%{background-color: #00000000}
    100%{background-color: #ffffff8f}
}
#pop-up-bar .exit{
    right: 3rem;
    top: 3rem;
}
.pop-up-container>*{
}
.pop-up-container{
    background-color: white;
    width: 45vw;
    position: absolute;
    height: 100vh;
    /* overflow-y: scroll; */
border-left: solid 1px var(--clr-dark-yellow);}
.pop-up-container .body{overflow-y: scroll;height: 75vh;padding: 0 1rem 0 0;}

.pop-up-container .body::-webkit-scrollbar {
    width: 5px;
    height: 10px;
    margin-right: 5px;
}

.pop-up-container .body::-webkit-scrollbar-thumb {
    background: var(--clr-main-dark);
    /* border: solid 1px #fff; */
    border-radius: 60px;
}
.pop-up-container .body::-webkit-scrollbar-track {
    background: #e9e9e9;
    /* border: solid 1px #fff; */
    /* margin: 10px; */
    border-radius: 60px;
}

/* HORIZONTAL GALLERY */
.page-cover .body::-webkit-scrollbar {
    width: 5px;
    height: 10px;
    margin-right: 5px;
}

.page-cover .body::-webkit-scrollbar-thumb {
    background: var(--clr-main-dark);
    /* border: solid 1px #fff; */
    border-radius: 60px;
}
.page-cover .body::-webkit-scrollbar-track {
    background: #e9e9e9;
    /* border: solid 1px #fff; */
    /* margin: 10px; */
    border-radius: 60px;
}

.col-body .container{
    padding: 0px calc( var(--container-padding) * 0.6);
}
.col-body{
    /* position: relative; */
    /* min-height: 349vh; */
    background-color: #fafafa;
    /* height: max-content; */
}

.masonry{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px 0;
}
.masonry .item{
    overflow: hidden;
    cursor: pointer;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: var(--d,0s);
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-name: masonry-item;
    opacity: 0;
    transform: translate(0px, -10px);
}

@keyframes masonry-item{
    0%{opacity:0;transform: translate(0px, -20px);}
    100%{opacity:1;transform: translate(0px, 0px);}
}

.masonry .item:nth-child(odd){
    grid-row-end: span 2;
}
.change-gallery img{
    height: var(--h);
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.change-gallery-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
--h: 200px;
    max-height: calc(var(--h) * 3);
    overflow-y: scroll;
    padding-right:10px;
}

/* width */
.change-gallery-container::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Track */
.change-gallery-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* height: 10px; */
}
 
/* Handle */
.change-gallery-container::-webkit-scrollbar-thumb {
  background: #6a668c;
  height: 10px;
}

/* Handle on hover */
.change-gallery-container::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.change-gallery{flex: 100%;font-family: var(--ff-secondary);position: relative;cursor: pointer;height: var(--h);}
.change-gallery p{font-family: var(--ff-secondary);position: absolute;height: var(--h);width: 100%;top: 0;display: flex;justify-content: center;align-items: center;color: #fff;font-size: x-large;background-color: #0000002b;border-radius: 5px;}
.masonry .item img{
    height: 110%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s;
}
.masonry .item img:hover{
    height: 100%;
}

#single-excursion{
    padding-bottom:20px;
}


.container-left{
    padding-left: var(--container-padding);
}
.post-content{}
.post-content h3{margin-top: 7vh;}
.post-content img{margin-top: 5vh;width: 100%;max-height: 50vh;object-fit: cover;}
.post-content p{margin-bottom: 20px;}
.post-content ol{}
.post-content ol li{font-family: var(--ff-p);}
.img-col img.cover{
    position: fixed;
    left: 0;
    z-index: -1;
}
.container-right{}
.extra-menu{
    /* padding-top: var(--nav-h); */
    position: fixed;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1;
    padding: 15px 0;
    border-bottom: solid 1px #cacaca;
    display: flex;
    /* justify-content: center; */
    font-family: var(--p);
    font-family: var(--ff-p);
    font-size: var(--fs-400);
    gap: var(--gap);
    padding-left: var(--container-padding);
    font-size: medium;
    align-items: center;
    line-height: 1.2;
}
.extra-menu a{color: var(--clr-dark-yellow);}
.sticky-col{padding-right: 3rem;}
.transform-fix-top{
    transform: translateY(-10px);
}
.bg-white{background: white!important;}
.white-text{color: white!important;}
.sub-title-options{
    display: flex;
    list-style: none;
    padding: 0;
    gap: 1rem;
    flex-wrap: wrap;
}
.dark .sub-title-options a{
    color: var(--clr-b-yellow);
}
.sub-title-options a{
    color: var(--clr-dark-yellow);
    font-size: var(--fs-300);
}

.image-container{
    position: relative;
    overflow: hidden;
}
.image-container img{
    height: 100%;
    width: auto;
    min-width: 100%;
    position: absolute;
    object-fit: cover;
    transform: scale(1.2) translateY(var(--offset-y));
}
.h-30{height:30vh;width: auto;/* object-fit: cover; */}
.h-40{height:40vh;width: auto;object-fit: cover;}
.h-50{height:50vh;width: auto;object-fit: cover;}
.h-60{height:60vh;width: auto;object-fit: cover;}
.h-70{height:70vh;width: auto;object-fit: cover;}
img.fill{object-fit: cover;}

hr{
    background-color: var(--clr-dark-yellow);
    height: 1px;
    border: none;
    margin: 0;
}
.home section .sub-title-options.menu,
.dine .sub-title-options.menu
{justify-content: flex-start;gap: 1rem;}
.sub-title-options.menu{justify-content: center;gap: 1rem;}
.sub-title-options.menu li::before{/* content:''; */}

.ly-03 h1{
    font-size: var(--fs-750);
    line-height: 1;
    margin-bottom: 1rem;
}
.ly-03 h2{
    font-size: var(--fs-700);
}

.ly-03 .room-ammenities{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.ly-03 .room-ammenitie{
    width: auto;
}
.ly-03 .room-ammenities.general{font-family: var(--ff-secondary);font-size: var(--fs-400);margin-bottom: 1rem;}
.ly-03 .room-ammenities.general >*{
    gap: 5px;
    align-items: center;
}
.ly-03 .room-ammenities.general img{width: 50px;}
.ly-03 .room-ammenitie img {
    width: auto;
    height: 30px;
}
.ly-03 .room-ammenitie div {
    font-size: var(--fs-200);
}
.ly-03 #tab{font-size: var(--fs-400);}
.ly-03 h4{font-size: var(--fs-500);font-family: var(--ff-main);margin-bottom: 1rem;}


#room-booking #booking-widget{
    background-color: #fff;
    padding: 1rem;
    margin-top: 0;
    border-radius: var(--border-radius);
    border: double var(--clr-dark-yellow) 3px;
    filter: drop-shadow(2px 4px 6px hsl(0deg 0% 0% / 10%));
}
#room-booking #booking-widget form{
    gap: 1rem;
    align-items: baseline;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
}
#room-booking #booking-widget label{
    font-family: var(--ff-p);
    font-size: var(--fs-200);
    color: #696969;
}
#room-booking #booking-widget .spec::after{content: none;}
footer .row div::after{content: "";width: 1px;background-color: var(--clr-dark-yellow);height: 100%;position: absolute;right: 0%;top: 50%;transform: translateY(-50%);}
#room-booking #booking-widget .spec:last-child::after{}
footer .row div:last-of-type::after{
    display: none;
}
#room-booking #booking-widget .spec:first-of-type::after{
    display: none;
}
#room-booking #booking-widget .spec{
    display: flex;
    flex-direction: column;
    /* border-right: solid; */
    position: relative;
    /* max-width: 22ch; */
    width: 45%;
}
#room-booking #booking-widget input{
    color: #000;
    font-size: var(--fs-400);
}
#room-booking #booking-widget input[type="number"]{
    /* width: 75%; */
}
#booking-widget h4{
    margin-bottom: 1rem;
    font-family: var(--ff-main);
}
.ly-03 .sticky{
    /* top: 0; */
}
.ly-03 .sticky-col{
    padding: 0;
/* display: none; */}
.ly-03 .extra-info{
    column-count: 2;
    margin: 0;
}
.ly-03 .extra-info>*{
    padding: 5px 0;
}

#popImage{height: 90vh;width: auto;position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);/* border: solid 10px #debc73; */animation: pop;animation-duration: 1s;}
@keyframes pop{
    0%{opacity:0%;}
    100%{opacity:100%;}
}

.even-split .half{
    width: 100%;
    padding: 4%;
}


.nextIMG{
    filter: brightness(4.5);
    transform: rotate(90deg);
}
.prevIMG{
    filter: brightness(5.5);
    transform: rotate(-90deg);
}
.project:nth-last-child(2) img, .two-vertical img{
    object-position: 50%!important;
}
.email-sent-pop{
    position: fixed;
    z-index: 5;
    top: 30px;
    right: 110px;
    background-color: #debc73;
    /* border: solid 5px; */
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 20px;
    animation-name: TB;
    animation-duration: 0.5s;
}

#ltninja{
    position:
    fixed;
    top: 0;
    height: 100%;
    z-index: 30;
    width: 100%;
    background-color: #e0e0e036;
    backdrop-filter: blur(7px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-name: ninjaContainer;
    /* padding-top: 5vw; */
}
@keyframes ninjaContainer{
    0%{opacity:0;}
    100%{opacity:1;}
}

#ninCard{
    --w:0%;
    position: relative;
    background-color: #fffc;
    border-radius: 5px;
    min-height: 60vh;
    height: 65vh;
    min-width: 0;
    /* max-height: 800px; */
    width: var(--w);
    max-width: 900px;
    overflow: hidden;
    transition: 0.8s;
    transform: translate(0px, 40px);
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.3));
}

#ninCard.open{
    --w:50%;
    animation-delay: 0.5s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: ninCard;
    animation-timing-function: cubic-bezier(0, 0, 0.3, 1);
    transform: translate(0px, 0px);
}

@keyframes ninCard{
    0%{width: calc( var(--w) / 2);}
    100%{width: var(--w);}
}

#ninCard > .flex{
    gap:0;
    height: 100%;
}

#pop-content{
    display: flex;
    flex-direction: column;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s;
    transition-delay: 0.5s;
}

#ninCard.open #pop-content{
    padding: 50px;
    opacity: 1;
    /* background-color: #fff; */
}
#pop-content p{
    margin-top:10px;
}

#pop-content h4{
   font-size:var(--fs-450);
}

#pop-image{
    width: 100%;
    height: 100%;
}
#pop-image img, #pop-image video{
    height:100%;
    width:100%;
    object-fit: cover;
}

#burger-menu{
    top: 10vh;
    position: absolute;
    /* background-color: #315a7dcf; */
    height: 100vh;
    width: 100vw;
    /* left: -110%; */
    display: none;
    overflow-y: scroll;
    background-color: #ffffffed;
    backdrop-filter: blur(7px);
    z-index: -1;
}


#adv-slider {
                /* display: flex; */
                /* flex-wrap: wrap; */
                overflow-x: hidden;
                position: fixed;
                top: 0;
                z-index: -1;
                height: 100vh;
            }

            #controllers > * {
                width: 13px;
                height: 13px;
                background-color: #ffffffd9;
                border: solid #b7bc72 2px;
                cursor: pointer;
                /* transform: rotateZ(45deg); */
                border-radius: 9px;
                transition: all 0.3s;
                filter: drop-shadow(0px 3px 6px black);
            }

            #controllers {
                display: flex;
                /* flex-direction: column; */
                width: 100%;
                justify-content: center;
                gap: 20px;
                padding: 20px 0;
                position: absolute;
                bottom: 1%;
                /* right: 3%; */
                align-items: center;
            }

            .slider-wagon.moving .slide {
                scroll-snap-align: none!important;
            }

            .slider-wagon {
                text-align: left;
                width: 100vw;
                height: 100%;
                overflow-x: scroll;
                display: flex;
                box-sizing: border-box;
                /* border: 1px solid #000; */
                /* flex-wrap: wrap; */
                scroll-snap-type: x mandatory;
                overflow-y: hidden;
            }

            #adv-slider .slide img {
                width: 100%;
                height: 100%;
                object-position: top;
                object-fit: cover;
            }

            #adv-slider .slide {
                width: 100vw;
                height: 100%;
                flex: 0 0 100vw;
                width: 100vw;
                background-color: #ffffff;
                color: #fff;
                font-size: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                scroll-snap-align: start;
                position: relative;
            }

            /* width */
            .slider-wagon::-webkit-scrollbar {
                height: 1px;
                border: solid 2px #ff8800;
            }

            /* Track */
            .slider-wagon::-webkit-scrollbar-track {
                background: #f1f1f1;
            }

            /* Handle */
            .slider-wagon::-webkit-scrollbar-thumb {
                background: #3e3c8f;
            }

            /* Handle on hover */
            .slider-wagon::-webkit-scrollbar-thumb:hover {
                background: #555;
            }

            [data-tab-trigger="1"]{
                background-color: #bdbd7b!important;
                /* border: solid; */
                border: none!important;
                width: 13px!important;
                height: 13px!important;
                transform: rotateZ(45deg);
                border-radius: 0!important;
            }

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 800px) {
    :root {
        --gap: 1rem;
    --nav-h: 70px;
    }

    .col,
    .col-1,
    .col-10,
    .col-11,
    .col-12,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-auto,
    .col-lg,
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-auto,
    .col-md,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-auto,
    .col-sm,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-auto,
    .col-xl,
    .col-xl-1,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-auto {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row {
        padding: initial;
        max-width: initial;
    }

    section {
        padding: 0rem 0rem;
    }

    .flex {
    }

    .flex>* {
        flex-basis: 100%;
        max-width: 100%;
    }

    .tb {
        padding: 2rem 1rem;
    }

    .taly h1 {
        font-size: var(--fs-600);
    }

    .taly .faq h4:before {
        width: 10px;
    }

    .taly .faq h4 {
        padding-left: 20px;
    }

    .taly [data-status="1"] h4 {
        padding-left: 20px !important;
        transition: all 1s;
    }

    .taly .faq-header:hover h4 {
        padding-left: 20px;
    }

    .menu-item {
        flex-direction: row;
    }

    .menu-item .price {
        justify-content: flex-start;
    }

    .header-booking-wrapper .booking-widget-container,
    .accom-booking-wrapper .booking-widget-container {
        overflow-y: scroll;
    }

    ul.inline-links {
        padding: 0;
        list-style: none;
        flex-direction: column;
    }

    .inline-links li::after {
        content: "";
    }

    .inline-links li {
        border-bottom: solid 1px #cacaca;
        padding: 10px 0;
    }

    /* RESETS */

    /* BOX SIZING */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }
    main{
        padding-top: 60px;
        padding-top: var(--nav-h);
    }
    main.home{
        padding-top: 0px!important;
    }
    .main-section .bottom-left{
    padding: 15vh calc(var(--container-padding) * 0.5);
}

    [type=button]:not(:disabled),
    [type=reset]:not(:disabled),
    [type=submit]:not(:disabled),
    button:not(:disabled) {
        cursor: pointer;
    }
    .card-container .accom-card button a {
    width: 100%;
    padding: 10px 5px;
    }

    #burger-menu [data-burger-open="1"] {padding: 2vh 0vw;}

    

    /* RESET MARGINS */
    body,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    figure,
    picture {
        margin: 0;
        line-height: 1.1;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        overflow-wrap: break-word;
        font-weight: 100;
    }

    h4 {
        /* font-family: var(--ff-main); */
        line-height: 1.1;
    }

    h5 {
        font-family: var(--ff-secondary);
        font-size: var(--fs-300);
        color: white;
    }
    .ly-03 h3{
    font-size: var(--fs-450);
}

    p {
        font-family: var(--ff-p);
        line-height: 1.7;
    }

    p.pad-l {
        padding-left: 0;
    }

    body {
        line-height: 1.5;
        min-height: 100vh;
        overflow-x: hidden;
        position: relative;
        height: 200vh;
    }

    img,
    picture {
        max-width: 100%;
        /* height: max-content; */
        height: auto;
    }
    .page-cover>* {
        position: inherit;
    }
    #current-picture img{
    height: 40vh;
    width: auto;
    object-fit: cover;
    overflow: hidden;
}
    #current-picture{
    /* position: absolute; */
    max-height: 40vh;
    /* z-index: 1; */
    /* top: 0; */
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-color: var(--clr-main-dark);
}
    .property img{/* width: 100%; *//* height: auto; */}

    /* forms */
    input,
    button,
    textarea,
    select {
        font-family: inherit;
    }

    /* Disable animatinos for people who chose to turn them off */
    @media (prefers-reduced-motion: reduce) {

        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }



    .main-logo {
        height: 100%;
        width: auto;
        padding: 4%;
    }
    /* ------------------------------ */
    a {
        font-family: var(--ff-secondary);
    }

    ul {
        font-family: var(--ff-p);
    }

    .header .header-wrapper .sliding-menu-content::-webkit-scrollbar-thumb {
        background: #ffffffc4;
    }

    .header .header-wrapper .sliding-menu-content::-webkit-scrollbar-thumb {
        background: var(--clr-pink-accent);
        /* border: solid 1px #fff; */
        /* border-radius: 60px; */
    }

    .header .header-wrapper .sliding-menu-content::-webkit-scrollbar-track {
        background: #ffffff26;
    }

    /* /* width */
    .header .header-wrapper .sliding-menu-content::-webkit-scrollbar {
        width: 12px;
    }

    /* Track */
    *::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    *::-webkit-scrollbar-thumb {
        /* background: #888; */
    }

    /* Handle on hover */
    *::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    */ main {
        min-height: 100vh;
    }

    .taly section {
        min-height: 60vh;
        position: relative;
    }

    main.taly {
        /* overflow-x: hidden; */
        /* position: relative; */
    }

    .tb {

        padding: 6rem 0;
    }

    /* RESETS */

    /* ------------------- */
    /* Text */
    /* ------------------- */
    .text-white {
        color: white;
    }

    .text-center {
        text-align: center;
    }


    /* ---------------- */
    /* Utility classes  */
    /* ---------------- */

    .relative {
        position: relative;
    }

    section {
        position: relative;
        overflow-y: hidden;
        /* min-height: 60vh; */
        height: auto;
        overflow-x: hidden;
    }

    footer {
        /* min-height: 60vh; */
        background-color: var(--clr-main-dark);
        /* padding: 15vh 0px!important; */
        padding-bottom: 15vh!important;
    }

    footer p {
    }

    footer .main-logo {
        margin-bottom: 40px;
        margin: 30px auto;
        display: block;
    }

    footer li {
        color: white;
        font-family: var(--ff-p);
        font-weight: 100;
        font-size: var(--fs-200);
    }

    footer .container {
        /* padding: 0 15%; */
    }

    footer a {
        color: var(--clr-b-yellow);
    }

    footer ul {
        list-style: none;
        padding: 0;
    }

    footer .row div {
        position: relative;
    }

    .h-100 {
        min-height: 100vh;
    }

    .h-20 {
        min-height: 20vh;
    }

    .center-xy {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        justify-content: center;
        height: 100vh;
    }

    .center-y {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .center-x {
        width: 100%;
        text-align: center;
    }

    #creds .row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    }

    #creds {
        padding: 20px 0;
        border-bottom: solid 2px var(--clr-dark-yellow);
    }

    #creds img {
        width: 80px;
        image-rendering: auto;
        /* height: 125px; */
        height: auto;
    }

    button {
        height: fit-content;
        /* padding: 10px 20px; */
        font-family: var(--ff-secondary);
        border: solid 2px;
        font-size: var(--fs-300);
    }

    .main-book {
        font-family: var(--ff-secondary);
        background: none;
        /* font-size: var(--fs-400); */
        color: white;
        border-color: var(--clr-b-yellow);
    }


    .flex {
    }
    .flex-center{flex-direction: column;height: unset;max-height: none;min-height: unset;}
    .flex>* {
        flex-basis: auto;
        /* width: 50px; */
    }

    .menu-container .menu-item > div {
        width: 100%;
    }

    .sub-title-options {
        /* display: flex; */
        /* list-style: none; */
        /* padding: 0; */
        /* gap: 1rem; */
        /* flex-direction: column; */
    }

    .inline-links li {
        padding: 0 5px;
        font-size: var(--fs-400);
    }

    .inline-links li::after {
        content: " | ";
        color: #232323;
    }

    .inline-links li:last-child::after {
        content: "";
    }
    #grid{grid-auto-rows: auto;}

    .vertical-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    ul.inline-links {
        padding: 0;
        list-style: none;
        display: flex;
        justify-content: center;
    }

    .wrap {
        flex-wrap: wrap;
    }

    .grid {
        display: grid;
        gap: var(--gap, 1rem);
    }

    .flex--center {}

    .text--center {
        text-align: center;
    }

    .title-center {
        width: 100%;
        text-align: center;
    }

    nav .container>* {
        /* height: 60px; */
    }

    nav .container {
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }

    .container {
        padding: 0 var(--container-padding-mobile);
        width: 100%;
        height: max-content;
    }

    .row {
        /* padding: 3rem 0; */
        /* max-width: 80rem; */
        /* margin:0 auto; */
        justify-content: space-between;
        display: flex;
        gap: var(--gap);
        flex-direction: column;
    }
    main#site-content:not(.home) .row:first-of-type {
        padding-top: 0px;
        /* padding-top: var(--nav-h); */
    }

    .extra-menu {
    position: initial;
    overflow-x: scroll;
    width: 100vw;
    padding: 10px 30px;
    }
    .extra-menu .flex div{
    width: max-content;
    }
    .extra-menu div{
    width: max-content;
    }
    .reverse{
    flex-direction: column-reverse;
}

    .row>* {
        flex: none;
    }

    .pad-y-20 {
        padding: 8vh 0px;
    }

    .pad-y-10 {
        padding: 8vh 0px;
    }

    .ly-03 .container .pad-y-5 {
    padding: 3vh 0px;
}
    .pad-y-5 {
        padding: 5vh 0px;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }


    /* FAQS START */
    .taly .faq:last-child {
        border-bottom: none;
    }

    .taly .faq {
        border-bottom: solid 1px #e8e8e8;
        animation-name: faq;
        animation-duration: 1s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        /* padding: 20px 0; */
        opacity: 0;
    }

    h1 {
        font-family: var(--ff-main);
        font-weight: 100;
        line-height: 1.1;
        font-size: var(--fs-600);
    }

    .main-section h1 {
        font-size: var(--fs-550);
    }

    .main-section h2 {
        font-size: var(--fs-450);
        line-height: 1.1;
        padding: 0;
        text-align: left;
    }

    h2 {
        font-family: var(--ff-main);
        font-weight: 100;
        font-size: var(--fs-650);
        line-height: 1.5ch;
        margin-bottom: 1rem;
    }

    h3 {
        font-weight: 100;
        margin-bottom: 1rem;
    }

    h3.pre-title {
        /* font-family: var(--ff-secondary); */
        /* text-transform: uppercase; */
        color: var(--clr-dark-yellow);
        font-size: var(--fs-500);
    }

    /* DYNAMIC TABLE */

#dynamic-table{
    overflow: scroll;
}
#dynamic-table .hide-cell{display:none;}
#dynamic-table table{
    background-color: #ffffffeb;
    color: #000;
    width: 100%;
    border-collapse: collapse;
    font-family: var(--ff-p);
    /* border-color: #7a36f7!important; */
    border-radius: 0;
}

#dynamic-table th{
    font-family: var(--ff-secondary);
    font-size: var(--fs-400);
}

#dynamic-table table, #dynamic-table th, #dynamic-table td {
  border: 1px solid;
  border-color: #dfdfdf!important;
}
#dynamic-table td, #dynamic-table th{
    padding: 5px;
    text-align: center;
    font-size: 13px;
}

#dynamic-table-dial{margin-bottom:10px;}
#dynamic-table-dial h4, #dynamic-table-dial span{
    color:#fff;
    font-size: var(--fs-300);
}

#dynamic-table-dial span{
    margin-right: 9px;
    padding: 3px 7px;
}


#dynamic-table td span{
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: var(--d,0s);
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-name: masonry-item;
    opacity: 0;
    transform: translate(0px, -20px);
}

.dynamic-table-cities li a{
    color: white;
}

    .taly h1 {
        font-size: var(--fs-600);
        line-height: 1.4;
    }

    .taly h2 {
        font-size: var(--fs-500);
    }

    .taly h4 {
        font-family: 'Quattrocento Sans',
            sans-serif;
        font-family: 'Quattrocento Sans', sans-serif;
        /* font-size: clamp(1rem, 4vh, 1px)!important; */
        font-size: clamp(1rem, 1rem, 1.5rem);
        line-height: 28px;
        letter-spacing: 1.94px;
        text-transform: none;
        color: #475970;
    }

    .taly [data-status="1"] h4 {
        padding-left: 50px !important;
        transition: all 1s;
    }

    .taly .faqs-container input {}

    .taly .faq-header:hover h4 {
        padding-left: 45px;
    }

    .taly .faq h4 {
        /* padding-left: 32px; */
        line-height: inherit;
        /* transition: all 1s; */
        transition: all 0.2s;
        width: 100%;
        padding: 20px 0;
        padding-left: 32px;
    }

    .taly .faq h4:before {
        content: '';
        background-color: #fdae9d;
        width: 20px;
        height: 2px;
        display: block;
        position: absolute;
        top: calc(50% - 1px);
        left: 0px;
    }


    .taly .faqs-container a {
        text-decoration: underline;
    }

    .taly .faqs-container {
        /* width: 80vh; */
        /* margin: 10vh auto; */
        position: relative;
    }

    .taly .faq-content {
        height: 0;
        overflow: hidden;
        padding: 0;
        opacity: 0;
    }

    .taly .openFAQ {
        height: -webkit-fill-available !important;
        padding: 15px 0;
        -webkit-transition: all 100ms ease-in-out;
        -moz-transition: all 100ms ease-in-out;
        -ms-transition: all 100ms ease-in-out;
        -o-transition: all 100ms ease-in-out;
        opacity: 1;
        transition: all 150ms ease-in-out;
    }

    .taly .faq-header {
        display: flex;
        flex-flow: row-reverse;
        justify-content: flex-end;
        align-items: baseline;
        cursor: pointer;
        width: 100%;
        border-radius: 5px;
        position: relative;
    }

    .taly p {
        /* font-family: 'Quattrocento Sans',
            sans-serif; */
        /* font-size: 16px; */
        /* font-weight: normal; */
        /* line-height: 28px; */
        /* letter-spacing: 1.94px; */
        /* text-transform: none; */
        /* color: #5c5c5c; */
    }

    @keyframes faq {
        0% {
            transform: translateX(-50px);
            opacity: 0;
        }

        100% {
            transform: translateX(0px);
            opacity: 1;
        }
    }

    .taly .faqs-container input[type="text"] {
        margin-bottom: 20px;
        width: 90%;
        border: none !important;
        border: solid 1px #ffffff;
        border-bottom: solid 2px #a0b6d1 !important;
        font-size: medium;
        transition: all 0.5s;
        font-family: 'Quattrocento Sans', sans-serif;
    }

    .taly .faqs-container input[type="text"]:focus-visible {
        outline: none;
        border: solid 1px #cacaca;
        border-bottom: solid 2px #fdae9d !important;
    }

    .sticky {
        position: sticky;
        top: 200px;
    }

    /* FAQS END */

    .locked {
        overflow: hidden;
    }


    /* --------------------------------- */
    /* MEAL MENUS */
    /* --------------------------------- */

    .menu-container h2 {
        /* border-bottom: solid 2px var(--clr-pink-accent); */
        width: fit-content;
    }

    .menu-container {
        justify-content: space-between;
        gap: 4rem;
    }

    .menu-container .menu-item {
        /* border-bottom: solid 2px #eeeeee; */
        /* padding: 20px 0; */
        /* flex-direction: column; */
    }

    .menu-item .price {
        flex-basis: max-content;
        display: flex;
        align-items: center;
    }

    .menu-item ol {
        margin: 0;
    }

    .header-slider {
        padding: 0;
    }

    .lt-form input {
        color: rgb(15, 15, 15) !important;
    }

    .lt-form input[type="submit"] {
        color: #fff !important;
/*         background-color: #fdae9d !important; */
    }

    .sign-up form input {
        color: rgb(0, 0, 0) !important;
    }

    .lt-form {
/*         padding: 5rem 0; */
        max-width:800px;
    }

    h3.key {
        font-size: clamp(20px, 1.0rem, 5rem);
        line-height: normal;
    }

    nav {
        position: fixed;
        z-index: 10;
    }

    #main-menu {
        width: 100%;
        justify-content: space-between;
        background-color: var(--clr-main-trans);
        backdrop-filter: blur(7px);
    }

    #burger-menu{
        top: 6vh;
        z-index: 9;
    }

    #main-menu ul li a {
        font-family: var(--ff-p);
        color: #ffffff;
        font-size: var(--fs-400);
        display: block;
        /* text-decoration: underline; */
        /* width: max-content; */
        padding: 10px var(--container-padding-mobile);
    }
    #main-menu ul li:hover ul a {
    color: black;
}

    #main-menu ul li a:hover::after {
        left: 0;
    }

    #main-menu ul li a::after {
        content: none;
        position: absolute;
        z-index: -1;
        left: -100%;
        right: 100%;
        bottom: 2px;
        background: var(--clr-b-yellow);
        height: 2px;
        width: 100%;
        transition: all .3s;
        transition-timing-function: ease-out;
    }

    #main-menu ul li a:hover::before {
        right: 0;
    }

    #main-menu ul li a::before {
        content: none;
        position: absolute;
        z-index: -1;
        /* left: 100%; */
        right: -100%;
        bottom: 0px;
        background: var(--clr-b-yellow);
        height: 2px;
        width: 100%;
        transition: all .3s;
        transition-timing-function: ease-out;
    }

    #main-menu ul li:hover{
    /* margin-bottom: var(--gap); */
}
    #main-menu ul li:last-of-type{border-bottom:none;}
    #main-menu ul li {
        position: relative;
        height: max-content;
        display: grid;
        align-items: center;
        /* width: -webkit-fill-available; */
        overflow: initial;
        width: 100%;
        padding: 0px 0px;
        border-bottom: solid 1px var(--clr-b-yellow);
        margin-bottom: 0;
    }

    #main-menu .sub-menu {
        /* display: none; */
        position: initial;
        /* top: 100%; */
        height: 0;
        width: 100%;
        max-height: 0;
        /* opacity: 0.5; */
        background-color: white;
        top: 0;
        position: inherit;
        gap: 0;
        justify-content: space-between;
    }
    #main-menu ul li:hover .sub-menu {
    max-height: 0;
    height: 0;
    padding: 0;
    --underline: var(--clr-main-dark);
    border-bottom: none;
    }

    #main-menu ul li:hover ul {
        /* display: flex; */
    }

    #main-menu ul li[data-open="1"] ul a {
        color: black;
        padding: 10px 50px;
    }
    
    #menu{
        overflow-y:scroll;
    }
    
    #menu[data-open="1"]{
        left: 0;
    }
    #main-menu ul {
    position: fixed;
    z-index: 2;
    top: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--clr-main-dark);
    /* background-color: #4e576ef0; */
    backdrop-filter: blur(105px);
    color: #000;
    top: 70px;
    width: 100%;
    justify-content: flex-start;
    left: -100%;
    padding: 4vh 0;
    transition: all 0.2s;
    }

    #main-menu ul a {
        text-decoration: none;
    }

    .sub-menu li{
    padding: 10!important;
}
    .sub-menu li a{}

    #main-menu ul li[data-open="1"] .sub-menu {
    max-height: 60vh;
    height: 100%;
    }

    .vid-container {
        position: fixed;
        z-index: -1;
        /* width: 100%; */
        height: 100%;
    }

    .vid-container video {
    width: 60%;
    top: 0;
    height: auto;
    }

    #booking-widget button {
    width: 100%;
    grid-column: span 2;
}

    .btn-main {
        background-color: var(--clr-main-dark);
        /* border: none; */
        color: white;
        border-radius: var(--border-radius);
    }

    #booking-widget {
        padding: 15px 15px;
        width: 90%;
        /* height: 100%; */
    }

    #booking-widget form {
        align-items: baseline;
        grid-template-columns: repeat(1, 48%);
        display: block;
        row-gap: 21px;
        column-gap: 0px;
    }

    #booking-widget label {
        font-family: var(--ff-p);
        font-size: var(--fs-200);
        color: white;
    }

    #booking-widget .spec::after {
        content: none;
        width: 1px;
        background-color: var(--clr-dark-yellow);
        height: 77%;
        position: absolute;
        right: -15px;
        top: 50%;
        transform: translateY(-50%);
    }

    footer .row div::after {
        content: "";
        width: 90%;
        background-color: var(--clr-dark-yellow);
        height: 2px;
        position: absolute;
        right: unset;
        top: unset;
        bottom: 0;
        transform: translateY(-50%);
    }

    #booking-widget .spec:last-child::after {}

    #booking-widget .spec:last-of-type::after,
    footer .row div:last-of-type::after {
        display: none;
    }

    #booking-widget .spec {
        width: 100%;
        padding: 10px 0;
    }

    #booking-widget input {
        font-family: var(--ff-secondary);
        font-size: var(--ff-secondary);
        border: none;
        background: none;
        color: white;
        outline: none;
    }

    #booking-widget input[type="number"] {
        width: 100%;
    }

    .bg-pattern {
    }

    .pattern-01 {
        background-size: contain;
    }

    .pattern-03 {
        background-image: url('/wp-content/themes/las_terrazas/dist/images/test.webp');
        background-size: 20vw;
    }

    .pattern-02 {
        background-size: auto;
    }
    .pattern-04{
    background-image: url('/wp-content/themes/las_terrazas/dist/images/spa/bg.webp');
    background-size: auto;
    background-position-y: calc( var(--bg-y-offset) * -0.1 );
    background-position-x: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    }


    /* ----------------------- */
    /*  ACCOMODATION CARDS     */
    /* ----------------------- */


    .accom-card {
        border: solid 2px;
        border-color: #cacaca;
        background-color: white;
        min-height: 90%;
        height: auto;
        width: 100%;
        min-width: 22vw;
        filter: drop-shadow(3px 4px 5px rgb(0, 0, 0, 0.2));
        border-radius: var(--border-radius);
        transform: translate(-10px, 0px);
        transition: var(--transition);
    }

    .card-container[active="1"] .accom-card {
        border-color: var(--clr-dark-yellow);
        /* transform: scale(1); */
        /* transition-delay: var(--slide-speed-delay); */
        /* filter: drop-shadow(2px 2px 2px rgb(0,0,0,0.2)); */
    }

    .accom-card h4,
    .dishes h4 {
        font-size: var(--fs-500);
        position: relative;
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .accom-card h4::after,
    .dishes h4::after {
        content: '';
        width: 90px;
        position: absolute;
        height: 2px;
        background-color: var(--clr-dark-yellow);
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
    }

    .accom-card #mini-slide-show img {
        width: 100%;
        position: absolute;
        height: 100%;
        object-fit: cover;
    }
    #grid .accom-card #mini-slide-show{height: 40vh;}
    .accom-card #mini-slide-show {
        height: 180px;
        gap: 0;
        position: relative;
        overflow: hidden;
    }

    ul.benefits li{
    font-size: var(--fs-200);
}
    ul.benefits {
        margin: 0;
        /* padding: 0; */
    }

    .card-container {
        height: 100%;
        width: 90vw;
        animation-delay: 5000ms;
        flex: 1;
        padding: var(--slide-pad);
    }

    .accom-card #info,
    .dishes #info {
        padding: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        /* min-height: 100%; */
        /* justify-content: center; */
    }

    .accom-card .ammenities {
    display: block;
    padding: 10px 0px 0 0px;
    gap: 2px;
    column-count: 2;
    }

    .room-ammenitie div {
        font-size: small;
    }

    .room-ammenitie {
        gap: 3%;
        font-family: var(--ff-p);
        align-items: center;
        width: 100%;
    }

    .room-ammenitie img {
        width: 30px;
        height: 30px;
        display: none;
        aspect-ratio: 1/1;
    }

    #more-details {
        font-size: var(--fs-400);
    }

    [id*="slider"] {
        position: relative;
        height: 80vh;
        max-height: none;
        min-height: none;
    }

    .slider-left .slider-container {
        /* flex-direction: row-reverse; */
    }

    .slider-container {
    }

    .slider {
    /* height: inherit; */
    /* left: 0; */overflow-x: hidden;
    overflow-y: hidden;
    }
    .slider-nav{pointer-events: none;}
    .slider-nav,.slider-left .slider-nav{
    top: 50%;
    transform: translate(0%, -50%);
    /* bottom: 0%; */
    width: 100%;
justify-content: space-between;left: unset;right: unset!important;}
    .slider-nav .count{display: none;}
    .slider-nav .left, .slider-nav .right{background-color: #ffffff;color: #4e576e;border-radius: var(--border-radius);border: solid 1px var(--clr-dark-yellow);pointer-events: all;}
    .slider-nav .left{transform: translate(-20px, 0);}
    .slider-nav .right{transform: translate(20px, 0);}
    .slider-left {
        right: 0;
    }

    .slider-right {
        left: 0px;
    }

    .slider-center {
        left: 0%;
        transform: translateX(0%);
    }

    #overflowing-img-container {
        position: relative;
        width: 125px;
    }

    #overflowing-img-container img {
        /* position: fixed; */
        /* width: 50%; */
        transform: scale(1);
        z-index: 71;
        bottom: 0;
    }

    .bg-image {
        background-size: contain;
    }

    .bg1 {
        background-image: url(/wp-content/themes/las_terrazas/dist/images/blue_ombre.webp);
    }

    .dark {}

    .dark h2 {
        color: white;
    }

    .dark h3 {
        color: #dedeb1;
    }

    .dark p {
        color: white;
    }

    .dishes {
        position: relative;
        height: 100%;
        width: 75vw;
    }

    .dishes #info {
        transform: translateY(0%);
        min-height: 40px;
        /* max-height: 42vh; */
        /* top: 10%; */
        left: -7%;
        width: 23vw;
        max-width: 25vw;
        min-width: 60vw;
        height: auto;
        /* background-color: #ffffffe8; */
    }

    .dishes #info h4 {}

    .dishes #info p {
        color: black;
        line-height: 1.4;
        font-size: var(--fs-250);
    }

    .dishes .img-container {
        height: 100%;
        width: 100%;
        position: relative;
        transform: translateX(10px);
    }

    .dishes .img-container img {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card-container[active="1"] .dishes {
        /* border-color: var(--clr-dark-yellow); */
        /* transform: scale(1); */
        /* transition-delay: var(--slide-speed-delay); */
        /* filter: drop-shadow(2px 2px 2px rgb(0,0,0,0.2)); */
        /* opacity: 0; */
        /* z-index: 2; */
    }

    .experience .filter {
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #00000036;
        z-index: 1;
    }

    .experience {
        position: relative;
        height: 100%;
        width: 80vw;
        margin: 0px;
        min-width: initial;
    transform: translate(-10px, 0px);}

    .experience #info {
        position: absolute;
        z-index: 2;
        width: 100%;
        padding: 30px;
        /* height: 100%; */
        max-height: 60%;
        /* top: 50%; */
        color: white;
        bottom: 0;
    }

    .experience #info h4 {
        font-size: var(--fs-600);
    }

    .experience #info p {
        color: white;
        margin-bottom: 10%;
    }

    .experience .img-container {
        height: 100%;
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .experience .img-container img {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        /* transition: var(--transition); */
        transition-duration: var(--slide-speed);
        transition-timing-function: ease-in-out;
        transform: scale(1.2) translateX(-20px);
    }

    .card-container[active="1"] .experience {
        /* border-color: var(--clr-dark-yellow); */
        /* transform: scale(1); */
        /* transition-delay: var(--slide-speed-delay); */
        /* filter: drop-shadow(2px 2px 2px rgb(0,0,0,0.2)); */
        /* opacity: 0; */
        /* z-index: 2; */
    }

    .card-container[active="1"] .experience .img-container img {
        transform: scale(1.2) translateX(20px);
    }
    /* TABS */
.tabs-container{
    display: flex;
    /* gap: 10px; */
    border-bottom: solid 1px #cacaca;
    justify-content: space-between;
}
#tab:hover{
  background-color: #efefef;
}
#tab{
    padding: 6px;
    font-size: var(--fs-200);
    flex: 1;
    text-align: center;
}
#tab[data-active="0"]{}
#tab[data-active="1"]{
}
#tab[data-active="1"]::after{
    content:" ";
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -5px;
    height: 6px;
    background-color: white;
    z-index: 1;
}

#tab-container[data-active="0"]{
    display: none;
}
#tab-container[data-active="1"]{}

.slider-center .slider {
    left: 0;
    transform: translateX(0%);
}

.container-left {
    padding: 0;
}

.cover {
    /* position: absolute; */
    /* top: 0; */
    height: 40vh;
    max-height: 100vh;
    width: 100%;
    object-fit: cover;
    object-position: left;
}
.img-col img.cover {
    position: initial;
    left: 0;
    z-index: -1;
}
    
.sticky-col {
    padding-right: var(--container-padding-mobile);
    padding-left: var(--container-padding-mobile);
}
.sticky-col-gallery{
    padding-bottom: 0;
}
#cta{
    position: fixed;
    bottom: 0;
    background-color: #ffffff;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    padding: 6px 20px;
    z-index: 10;
    border-top: solid 1px #cacaca;
}
.mobile-cta .loader{
    filter: invert(1);
    position: absolute;
    left: -15px;
}
#cta button{color: #000;position: relative;flex: 1;}
#pop-up-bar.right .pop-up-container{
    width: 100vw;
    padding: 2rem;
}
#book-now{
    height: auto;
    padding: 0;
    max-height: 100vh;
}
    .pop-up-container .body{
    height: 65vh;
}
.blog-grid{display: block;padding: 10% 0%;}
.post-preview{margin: 6vh;}
.bg2 {
    /* background-image: url(/wp-content/themes/las_terrazas/dist/images/palm.webp); */
    /* background-repeat: no-repeat; */
    background-size: 1000px;
    background-position-x: center;
}
.page-cover {
    height: inherit;
    padding: 5px;
    overflow-x: initial;
}
.page-cover img.cover {
    position: absolute;
    z-index: -1;
    height: 60vh;
}

.ly-03 h1 {
    font-size: var(--fs-600);
    margin-bottom: 0;
}

.ly-03 .room-ammenities {
    /* display: block; */
    grid-template-columns: repeat(2, 1fr);
}

.ly-03 .room-ammenitie img {
    width: auto;
    height: 23px;
    display: block;
    aspect-ratio: inherit;
}
.ly-03 .extra-info {
    column-count: 1;
    margin: 0;
    font-size: var(--fs-200);
}
.property-projects{
    /* grid-template-columns: repeat(4, 1fr)!important; */
    /* grid-auto-rows: 55px!important; */
    display: flex!important;
    min-height: inherit!important;
    position: relative!important;
    height: 10vh;
    /* flex-wrap: wrap; */
    overflow-x: scroll;
    /* gap: 0!important; */
    /* padding: 0px 20px; */
    width: max-content!important;
}

.property-projects [data-count]{
    /* grid-column: span 1; */
    /* grid-row: span 1!important; */
}
#main-menu ul li::after {
    content: none;
    position: absolute;
    z-index: -1;
    left: -100%;
    right: 100%;
    bottom: 2px;
    background: var(--underline);
    height: 2px;
    width: 100%;
    transition: all .3s;
    transition-timing-function: ease-out;
}
#main-menu ul li::before {
    content: none;
    position: absolute;
    z-index: -1;
    /* left: 100%; */
    right: -100%;
    bottom: 0px;
    background: var(--underline);
    height: 2px;
    width: 100%;
    transition: all .3s;
    transition-timing-function: ease-out;
}
#book-now .exit {
    right: var(--container-padding-mobile);
    top: 2%;
    transform: translateY(0%);
}
    .page-cover .property-projects .property:first-child {
    /* grid-row: span 5!important; */
    /* grid-column: span 4!important; */
    z-index: 1;
    /* flex-basis: 100%; */
}
.property{
    /* position: absolute; */
    width: auto;
    height: 100%;
}

#ninCard h3{
    font-size:var(--fs-500);
    /* margin-bottom: 7px; */
}

    
#ninCard{
    --w:0%;
    position: relative;
    background-color: #fff;
    border-radius: 5px;
    min-height: 60vh;
    height: 90vh;
    min-width: 0;
    /* max-height: 800px; */
    width: var(--w);
    max-width: 800px;
    overflow: hidden;
    transition: 0.8s;
    transform: translate(0px, 40px);
}

#ninCard.open{
    --w: 90%;
    animation-delay: 0.5s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: ninCard;
    animation-timing-function: cubic-bezier(0, 0, 0.3, 1);
    transform: translate(0px, 0px);
}

@keyframes ninCard{
    0%{width: calc( var(--w) / 2);}
    100%{width: var(--w);}
}

#ninCard > .flex{
    gap:0;
    height: 100%;
    flex-direction: column;
}

#pop-content{
    display: flex;
    flex-direction: column;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s;
    transition-delay: 0.5s;
    height: 100%;
}

#ninCard.open #pop-content{
    padding: 20px;
    opacity: 1;
}
#pop-content p{
    margin-top:10px;
}

#pop-content h4{
   font-size: var(--fs-400);
}
#pop-content h4,#pop-content p{
   line-height:1.3
    ;
}

#pop-content p{
   font-size:var(--fs-250);
}

#pop-image{
    width: 100%;
    height: 40%;
}
#pop-image img{
    height:100%;
    width:100%;
    object-fit: cover;
    object-position: center;
}

   .change-gallery{flex: none;font-family: var(--ff-secondary);position: relative;cursor: pointer;height: var(--h);width: 45vw!important;}
.change-gallery p{font-family: var(--ff-secondary);position: absolute;height: var(--h);width: 100%;top: 0;display: flex;justify-content: center;align-items: center;color: #fff;font-size: larger;background-color: #0000002b;}
.masonry .item img{
    height: 110%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s;
}
.masonry .item img:hover{
    height: 100%;
}

    .change-gallery img{
    height: var(--h);
    width: 100%;
    object-fit: cover;
}
.change-gallery-container{
    display: flex;
    flex-direction: row;
    gap: 10px;
--h: 120px;
    max-height: unset;
    /* max-width: 50%; */
    overflow-x: scroll;
    overflow-y: hidden;
    padding-bottom: 10px;
    flex-wrap: nowrap;
}

    .masonry{
    display:grid;
    grid-template-columns: auto;
    gap: 10px;
    padding: 10px;
}
.masonry .item{
    overflow: hidden;
    height: 40vh;
    cursor: pointer;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-delay: var(--d,0s);
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
    animation-name: masonry-item;
    opacity: 0;
    transform: translate(0px, -10px);
}

@keyframes masonry-item{
    0%{opacity:0;transform: translate(0px, -10px);}
    100%{opacity:1;transform: translate(0px, 0px);}
}

.masonry .item:nth-child(odd){
    grid-row-end: span 2;
}

#adv-slider {
                /* display: flex; */
                /* flex-wrap: wrap; */
                overflow-x: hidden;
                position: fixed;
                top: 0;
                z-index: -1;
                height: 100vh;
            }

            #controllers > * {
                width: 15px;
                height: 15px;
                background-color: #ffffffd9;
                border: solid #b7bc72 2px;
                cursor: pointer;
                /* transform: rotateZ(45deg); */
                border-radius: 9px;
                transition: all 0.3s;
            }

            #controllers {
                display: flex;
                /* flex-direction: column; */
                width: 100%;
                gap: 11px;
                padding: 20px 0;
                position: absolute;
                bottom: 9%;
                /* right: 3%; */
                align-items: center;
            }

            .slider-wagon.moving .slide {
                scroll-snap-align: none!important;
            }

            .slider-wagon {
                text-align: left;
                width: 100vw;
                height: 100%;
                overflow-x: scroll;
                display: flex;
                box-sizing: border-box;
                /* border: 1px solid #000; */
                /* flex-wrap: wrap; */
                scroll-snap-type: x mandatory;
                overflow-y: hidden;
            }

            #adv-slider .slide img {
                width: 100%;
                height: 100%;
                object-position: top;
                object-fit: cover;
            }

            #adv-slider .slide {
                width: 100vw;
                height: 100%;
                flex: 0 0 100vw;
                width: 100vw;
                background-color: #ffffff;
                color: #fff;
                font-size: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                scroll-snap-align: start;
                position: relative;
            }

            /* width */
            .slider-wagon::-webkit-scrollbar {
                height: 1px;
                border: solid 2px #ff8800;
            }

            /* Track */
            .slider-wagon::-webkit-scrollbar-track {
                background: #f1f1f1;
            }

            /* Handle */
            .slider-wagon::-webkit-scrollbar-thumb {
                background: #3e3c8f;
            }

            /* Handle on hover */
            .slider-wagon::-webkit-scrollbar-thumb:hover {
                background: #555;
            }

          
    
    
}
