:root {
    --green: #355142;
    --white: #FAF9F5;
    --pwhite: #FFFFFF;
    --lgreen: #DAD89F;
    --black: #161616;
}

@font-face {
    font-family: 'IvyMode';
    src: url('../fonts/IvyMode-Regular.ttf') format('ttf'),
        url('../fonts/IvyMode-Regular.woff2') format('woff2'),
        url('../fonts/IvyMode-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'IvyMode';
    src: url('../fonts/IvyMode-SemiBold.ttf') format('ttf'),
        url('../fonts/IvyMode-SemiBold.woff2') format('woff2'),
        url('../fonts/IvyMode-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.ttf') format('ttf'),
        url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.ttf') format('ttf'),
        url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.ttf') format('ttf'),
        url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.ttf') format('ttf'),
        url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}  

body {
    font-size: 18px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    line-height: normal;
    background-color: var(--white) !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'IvyMode', sans-serif;
    font-weight: 600 !important;
    line-height: 1;
}

h1 {
    font-size: 66px !important;
}

h2 {
    font-size: 40px !important;
}
h3 {
    font-size: 36px !important;
}
h4 {
    font-size: 32px !important;
}
h5 {
    font-size: 28px !important;
}

p, a {
    font-family: 'Montserrat', sans-serif;
    color: var(--black);
    line-height: normal;
}

.pb-10 {
    padding-bottom: 10px;
}

.pt-36 {
    padding-top: 36px;
}
.pb-36 {
    padding-bottom: 36px;
}

.pt-40 {
    padding-top: 40px;
}
.pb-40 {
    padding-bottom: 40px;
}

.pt-60 {
    padding-top: 60px;
}
.pb-60 {
    padding-bottom: 60px;
}

.pt-90 {
    padding-top: 90px;
}
.pb-90 {
    padding-bottom: 90px;
}

.mb-10 {
    margin-bottom: 10px;
}


.t-green {
    color: var(--green);
}
.t-wht {
    color: var(--white);
}

.bg-fwhite {
    background-color: var(--white);
}
.bg-lgreen {
    background-color: var(--lgreen);
}
.bg-green {
    background-color: var(--green);
}
.bg-pwhite {
    background-color: var(--pwhite);
}

.t-24 {
    font-size: 24px;
    line-height: normal;
}
.t-42 {
    font-size: 42px;
    font-family: 'IvyMode', sans-serif;
    line-height: normal;
}

.r-10 {
    border-radius: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}


header {
    text-align: center;
    padding: 30px 0;
    background-color: var(--green);
}

nav {
    position: relative;
    padding: 14px 26px;
    z-index: 2;
}

.banner {
    position: relative;
    width: 100%;
    height: calc(90vh);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.banner-content {
    position: absolute;
    width: 100%;
    /* transform: translate(-50%, -50%); */
    color: var(--pwhite);
    text-align: left;
    padding: 130px 0;
    z-index: 1;
}
.banner-content h1 {
    margin-bottom: 36px;
}
.banner-content p {
    max-width: 50%;
}

.slick-slider {
    width: 100%;
    margin: auto;
    position: relative;
}
.slick-slider img {
    width: 100%;
}
.slick-slide {
    margin: 0 10px; /* 20px gap between slides */
}
.slick-list {
    margin: 0 -10px; /* To counteract the margin on slick-slide */
}
.progress-bar {
    width: 100%;
    margin: 34px auto 12px;
    height: 4px;
    background: #D9D9D9;
    border-radius: 10px;
    position: relative;
}
.progress {
    height: 100%;
    background: var(--black);
    width: 0;
}
.test-progress {
    height: 100%;
    background: var(--black);
    width: 0;
}
.navigation-buttons {
    text-align: end;
}
.navigation-buttons button {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
}
.navigation-buttons button:disabled {
    background: transparent;
    cursor: not-allowed;
}

video {
    width: 100%;
    height: auto;
}

.slick-slide img {
    border-radius: 10px 10px 0 0;
}
.slick-slide h4 {
    margin-top: 10px;
}

.sf-div {
    padding-bottom: 20px;
}
.sf-div img {
    width: 100%;
    padding-bottom: 10px;
}
.sf-div h5 {
    margin-bottom: 8px;
}
.sf-div p {
    font-size: 18px;
    line-height: normal;
    max-width: 80%;
}

.rooms img {
    width: 100%;
    border-radius: 10px;
}
.room-notes {
    font-size: 16px;
}
.room-notes .checktime {
    font-weight: 700;
}
.room-notes .tax {
    font-size: 14px;
    font-weight: 600;
}
.btn-whtapp {
    font-size: 14px;
    font-weight: 600;
    color: var(--pwhite);
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    background-color: var(--green);
    margin-top: 12px;
    transition: 0.3s;
}
.btn-whtapp:hover {
   background-color: var(--black);
}
.book-dis {
    text-align: end;
}
.book-dis a {
    font-weight: 600;
    color: var(--green);
}
.book-dis a:hover {
    color: var(--black);
    text-decoration: underline;
}

form label {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
form .form-group {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}
form .form-control {
    font-weight: 600;
    padding: 16px 20px;
    border: 1px solid var(--black);
    border-radius: 10px;
}
/* Custom styles for placeholder text */
input::placeholder,
textarea::placeholder {
    color: var(--black); /* Change to your desired color */
    font-size: 16px;
    font-weight: 400;
    opacity: 0.6 !important; /* Ensure the opacity is 100% */
}
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: initial !important;
}

.btn-submit {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    color: inherit;
    border: none;
    border-radius: 10px;
    background-color: var(--lgreen);
    padding: 14px 120px;
    transition: 0.3s;
}
.btn-submit:hover {
    color: var(--white);
    background-color: var(--green);
}

.amm-div {
    position: relative;
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
}
.amm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}
.amm-cont {
    position: absolute;
    width: 100%;
    /* transform: translate(-50%, -50%); */
    color: var(--pwhite);
    text-align: left;
    padding: 12px;
    z-index: 1;
    bottom: 0px;
}
.amm-cont p {
    color: var(--pwhite);
    margin: 0px;
}

.res-logo {
    width: 25%;
}
.menu-div {
    border: 4px solid var(--green);
    border-radius: 20px;
    padding: 18px 28px;
    text-align: center;
    margin-bottom: 20px;
    min-height: 300px;
}
.menu-div img {
    padding-top: 22px;
}
.m-title {
    font-size: 24px;
    font-family: 'IvyMode', sans-serif;
    font-weight: 600;
    color: var(--green);
    margin: 14px 0 0 12px;
}
.menu-dis {
    font-weight: 500;
    text-align: center;
}


.sus-div {
    border-radius: 20px;
    padding: 28px;
    background-color: var(--lgreen);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    min-height: 156px;
}
.sus-div img {
    margin-right: 36px;
}

.coming-soon {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}


button.accordion-button {
    font-size: 24px;
}
.accordion-button:not(.collapsed) {
    color: var(--green) !important;
    background-color: var(--lgreen) !important;
}
.accordion-body {
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}
.accordion {
    --bs-accordion-border-color: var(--black) !important;
}
.accordion-button:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}


.test-div {
    border: 2px solid var(--green);
    border-radius: 20px;
    padding: 10px 12px;
    min-height: 280px;
    position: relative;
}
.test-cont {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 8; /* Change this number to the desired number of lines */
}
.test-det {
    position: absolute;
    bottom: 10px;
    left: 12px;
}
.test-name {
    margin: 0px;
    text-transform: capitalize;
}
.stars {
    font-size: 16px;
    color: #FFB000;
}

iframe {
    border-radius: 10px;
}

footer {
    color: var(--black);
    background-color: var(--lgreen);
    padding-top: 84px;
}

footer a {
    text-decoration: none;
    color: var(--black);
}

.cont-div {
    display: flex;
    align-items: center;
}
.cont-div img {
    margin-right: 16px;
}
.cont-div p {
    line-height: normal;
    margin: 0px;
}
.cont-div a:hover {
    text-decoration: underline;
    transition: 0.3s;
}

footer .socials {
    margin-top: 12px;
}

footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 15px 0;
    border-top: 1px solid var(--black);
    margin-top: 30px;
}

footer .footer-bottom .privacy a {
    text-decoration: underline;
}

footer .privacy ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
footer .privacy ul li {
    display: inline;
    margin-right: 10px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    width: 50px;
    height: 50px;
    background-color: var(--black);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    z-index: 1000;
}
  
.back-to-top:hover {
    background-color: var(--green);
}  

@media screen and (min-width: 992px) {
    #web-ver {
        display: block !important;
    }
    #mob-ver {
        display: none;
    }

    .youtube iframe {
        width: 100%;
        height: 640px;
    }
}
@media screen and (max-width: 991px) {
    #web-ver {
        display: none !important;
    }
    #mob-ver {
        display: block;
    }
    p {
        font-size: 14px;
    }
    h1 {
        font-size: 40px !important;
        line-height: 1;
    }
    h2 {
        font-size: 30px !important;
    }
    h3 {
        font-size: 26px !important;
    }
    h4 {
        font-size: 24px !important;
    }
    h5 {
        font-size: 22px !important;
    }
    .t-24 {
        font-size: 16px;
    }
    .t-42 {
        font-size: 28px;
    }

    
    .pt-36 {
        padding-top: 16px;
    }
    .pb-36 {
        padding-bottom: 16px;
    }
    .pt-60 {
        padding-top: 30px;
    }
    .pb-60 {
        padding-bottom: 30px;
    }

    .mpb-20 {
        padding-bottom: 20px;
    }
    .m-center {
        text-align: center;
    }

    nav {
        padding: 12px 15px;
    }
    nav img {
        width: 180px;
    }

    .banner-content p {
        max-width: 100%;
    }
    .banner-content h1 {
        margin-bottom: 24px;
    }

    .sf-div p {
        font-size: 16px;
    }

    .amm-div {
        margin-bottom: 20px;
    }

    .book-dis {
        text-align: left;
    }

    .res-logo {
        width: 60%;
    }
    .menu-div {
        padding: 12px 28px;
        min-height: 234px;
    }

    .sus-div {
        padding: 20px;
        min-height: 136px;
    }
    .sus-div img {
        margin-right: 30px;
    }

    .youtube iframe {
        width: 100%;
        height: 206px;
    }

    .back-to-top {
        display: none !important;
    }

    footer .socials {
        margin-bottom: 12px;
    }
    footer .footer-bottom {
        display: block;
        text-align: center;
    }
    footer .cont-div {
        font-size: 14px;
        margin-top: 5px;
    }
}