@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Cera Pro Regular */
@font-face {
    font-family: 'Cera Pro';
    src: url('Fonts/Cera Pro Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Cera Godrej Interio Bold */
@font-face {
    font-family: 'Cera Godrej Interio';
    src: url('Fonts/CeraGodrejInterio-Bold_2_3.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

/* Cera Godrej Interio Medium */
@font-face {
    font-family: 'Cera Godrej Interio';
    src: url('Fonts/CeraGodrejInterio-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Cera Godrej Interio Medium (alt OTF version) */
@font-face {
    font-family: 'Cera Godrej Interio';
    src: url('Fonts/CeraGodrejInterio-Medium_2.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Cera Godrej Interio Regular */
@font-face {
    font-family: 'Cera Godrej Interio';
    src: url('Fonts/CeraGodrejInterio-Regular_2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* WGS Headline Bold */
@font-face {
    font-family: 'WGS Headline';
    src: url('Fonts/WGSHeadline-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    font-size: 77%;

    --sec-pad-lr: 8rem;
    --sec-pad-tb: 6rem;

    --heading-font-s: 2.5rem;

    --body-font-s: 1.2rem;

    --extra-pad: 300;
}

@media (max-width: 1100px) {
    :root {
        font-size: 70%;
    }
}

@media (max-width: 1000px) {
    :root {
        font-size: 65%;
    }
}

@media (max-width: 1000px) {
    :root {
        font-size: 60%;

        --heading-font-s: 2rem;
    }
}

@media (max-width: 700px) {
    :root {
        font-size: 55%;

        --sec-pad-lr: 6rem;
        --sec-pad-tb: 2rem;
    }

}

@media (max-width: 500px) {
    :root {
        font-size: 50%;

        --sec-pad-lr: 4rem;
        --sec-pad-tb: 2rem;
    }

}

body {

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;


    overflow: hidden;
}

.main-dody {
    max-width: 120rem;
    width: 100%;
}

@media (max-width: 700px) {
    .main-dody {
        margin-bottom: 4rem;
    }
}

/* common */
section {
    width: 100%;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

img {
    width: 100%;
}

.heading {
    font-size: var(--heading-font-s);
    font-family: "WGS Headline";
    color: #577640;
}

p {
    font-family: 'Cera Pro';
    font-weight: 400;
    font-size: var(--body-font-s);

    color: #232323;
}

.hero-tag {
    letter-spacing: 1.1px;
}

.desk {
    display: block !important;
}

.mob {
    display: none !important;
}

@media (max-width: 500px) {
    .desk {
        display: none !important;
    }

    .mob {
        display: block !important;
    }
}

/* pre-loader */

.pre-loader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;

    background-color: #dee2cf;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;

    z-index: 100000;
    transition: all 1s;
}

.pre-loader div,
.pre-loader p {
    opacity: 0;
    transition: all 1s;
}

.pre-loader .logo-box {
    opacity: 1 !important;
    width: 25rem;

    transition: all 1s;
}

.pre-loader .btm {
    display: grid;
    justify-items: center;
    align-items: center;
}

.pre-loader .btm .logo {
    width: 20rem;
}

.pre-loader .line {
    padding: 0 3rem;
    height: 2px;
    background-color: #2c5e2e;
}

.pre-loader .tagline {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-family: "WGS Headline";
    color: #577640;
}

/* header */

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1rem var(--sec-pad-lr);
    position: sticky;
    top: 0;

    background-color: #fff;

    z-index: 10000;
}

header .left {
    display: grid;
    justify-items: end;
    align-items: center;
}

header .left .logo,
header .right {
    width: 10rem;
}

header .left p {
    font-size: .8rem;
}


/* fold-1 hero-sec */

.fold-1 {
    /*background-image: url("images/Banner\ Section_1920x900.jpg");*/
    /* background-image: url("images/Worn.webp"); */
    background-image: url("images/REVEALER_1400x700_LP.jpg");
    aspect-ratio: 1920 / 800;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding: var(--sec-pad-tb) var(--sec-pad-lr);
    height: 650px;
}

.fold-1 .left {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    gap: 1rem;
}

.fold-1 .left .col {
    background-color: #fff;
    padding: .3rem .8rem;
    width: 100%;
    text-align: justify;
    text-transform: uppercase;
}

.fold-1 .right {
    display: grid;
    justify-items: end;
    align-items: center;
}

.fold-1 .right .logo {
    width: 20rem;
}

.fold-1 .right p {
    color: #fff;
}

@media (max-width: 600px) {
    .fold-1 {
        /*background-image: url("images/Banner\ Section_720x1600.webp");*/
        /* background-image: url("images/hero-mobi.webp"); */
        background-image: url("images/REVEALER_600x1100_LP.jpg");
        aspect-ratio: 9 / 12;
        background-position: top;
        height: 670px;
    }
}

/* fold-2 */

.fold {
    display: grid;
    justify-items: center;
    align-items: center;

    background-position: bottom;
    background-size: contain;

}

.fold .top {

    width: 100%;

    display: grid;
    grid-template-columns: 30% 70%;

    align-items: center;
    justify-items: center;

    padding: var(--sec-pad-tb) var(--sec-pad-lr);

}

.fold .top .heading {
    border-right: 2px solid #577640;
    padding: 2rem 0;
    padding-right: 4rem;
    padding-left: 0;
    width: 100%;
    text-align: end;
}

.fold .top .fold-txt {
    padding-left: 4rem;
    width: 100%;
    text-align: start;
}

.fold .mdl {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-items: flex-start;
    align-items: center;
    flex-wrap: wrap;

    gap: 4rem;

    padding: var(--sec-pad-tb) var(--sec-pad-lr);

    width: 100%;

}

.fold .mdl .icon-card {
    /* display: flex;
    justify-content: flex-start;
    align-items: center;

    gap: 2rem; */

    display: grid;
    justify-items: start;
    align-items: center;
    gap: 2rem;
    grid-template-columns: 1fr 14fr;
}

.fold .mdl .icon-card .icon-box {
    width: 6rem;
}

@media (max-width: 768px) {

    .fold .mdl {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }
}

@media (max-width: 700px) {
    .fold .top {
        grid-template-columns: 1fr;
    }

    .fold .top .heading {
        padding-right: 0;
        padding-left: 0;
        width: auto;
        border-right: none;
        border-bottom: 2px solid #577640;

        margin-bottom: 2rem;
        text-align: center;
    }

    .fold .top .fold-txt {
        padding-left: 0;
        text-align: center;
    }

}

@media (max-width: 668px) {
    .fold .mdl .icon-card .icon-box {
        width: 5rem;
    }

}


.fold .btm {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
}

/* fold-2 */

.fold-2 .btm {
    /*background-image: url("images/Overview\ Section_1740x810.jpg");*/
    background-image: url("images/Pool to club cam.webp");
    aspect-ratio: 5000 / 2813;
}

/* fold-3 */

.fold-3 .mdl {
    background-color: #dde1ce;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fold-3 .mdl .icon-card:nth-child(4) {
    grid-column: 2/3;
}

.fold-3 .btm {
    background-image: url("images/gallery/Double\ heighted\ lobby\ desk.jpg");
    aspect-ratio: 1310 / 750;
}

@media (max-width: 1200px) {

    .fold-3 .mdl {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 1050px) {

    .fold-3 .mdl {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 900px) {

    .fold-3 .mdl {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 600px) {

    .fold-3 .mdl {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
}

/* fold-4 */

.fold-4 .btm {
    background-image: url("images/map-2.jpg");
    aspect-ratio: 1920 / 1169;
    background-position: center;
}

.fold-4 .mdl {
    gap: 1rem;
}

@media (max-width: 600px) {

    .fold-4 .btm {
        background-image: url("images/Updated LOC MAP.jpg");
        aspect-ratio: 2480 / 3507;
    }
}

/* fold-5 */

.fold-5 .top {
    background-color: #dee2cf;
}

.fold-5 .fold-txt span {
    display: block;
    color: #577640;

    font-weight: 700;

    letter-spacing: 1.1px;

    margin-bottom: .5rem;
}

.fold-5 .amenity-carousel.owl-carousel {
    width: 100vw;
}

/* gallery */

.gallery {
    padding: var(--sec-pad-tb) var(--sec-pad-lr);

    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;

    gap: 2rem;
}

.gallery .top {

    display: flex;
    justify-content: center;
    align-items: center;

    flex-direction: column;
}

.gallery .top .heading {
    padding: 2rem 0;
}

.gallery .top .sub-heading {
    letter-spacing: 1.1px;
    color: #577640;
}

.gallery .owl-carousel .owl-stage-outer {
    width: 90%;
    margin: auto;
}

.gallery .owl-carousel .item {
    transition: transform 0.5s, opacity 0.5s;
    overflow: hidden;
    position: relative;
}

.gallery .owl-carousel .owl-item {
    opacity: 0.4;
    transform: scale(0.9);
}

.gallery .owl-carousel .owl-item.active.center {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.gallery .owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    pointer-events: none;
}

.gallery .owl-carousel .nav-btn {
    font-size: 2rem;
    color: #2c5e2e;
    /* dark green or any color */
    pointer-events: all;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}

.gallery .owl-carousel .prev-slide {
    left: 0%;
    /* push left arrow outside */
}

.gallery .owl-carousel .next-slide {
    right: 0%;
    /* push right arrow outside */
}

.gallery .owl-carousel .owl-dots.disabled,
.gallery .owl-carousel .owl-nav.disabled {
    display: block !important;
}

.gallery .img-tag {
    position: absolute;
    bottom: 2%;
    left: 2%;
    padding: .2rem;
    background-color: #fff;
    font-size: 12px;
}

.gallery .img-dis {
    position: absolute;
    top: 0;
    left: 0;
    color: #ffffffb0;
    font-size: 8px;
    transform-origin: right;
    backdrop-filter: blur(10px);
}

/* disclaimer */

.disclaimer {
    padding: var(--sec-pad-tb) var(--sec-pad-lr);

    background-color: #dee2cf;
}

.disclaimer .heading {
    margin-bottom: 2rem;
    color: #232323;

}

/* footer-form */

.footer-form {
    padding: var(--sec-pad-tb) var(--sec-pad-lr);

    color: #fff;
    background-color: #577640;
}

.footer-form .heading {
    color: #fff;

    margin-bottom: 2rem;
}

.footer-form form {
    display: grid;
    justify-items: center;
    align-items: center;
    gap: 2rem;

    width: 100%;
}

.footer-form form label {
    font-family: 'Cera Pro';
    font-size: 1.2rem;
}

.footer-form form .input-fields,
.footer-form form .others {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;

    width: 100%;
}

.footer-form form .input-fields .field-box {
    display: grid;
    justify-items: start;
    align-items: start;
    gap: 1rem;

    width: 100%;
}

.footer-form form .input-fields .field-box input {
    width: 100%;
    padding: .5rem;

}

.footer-form form .others button {
    padding: 1rem 2rem;
    outline: none;
    border: none;

    color: #577640;
    font-family: 'WGS Headline';
    font-size: 1.5rem;
}

@media (max-width: 500px) {
    .footer-form {
        display: none;
    }
}

/* enq-now */

.enq-now {
    position: fixed;
    transform: rotate(270deg) translate(0%, 65px);
    top: 50%;
    right: 0;
    padding: 1rem 2rem;
    outline: none;
    border: none;

    background-color: #577640;
    color: #fff;

    font-family: "Cera Pro";

    font-size: 1.5rem;
    cursor: pointer;

    z-index: 10000;
}

@media (max-width: 1100px) {
    .enq-now {
        transform: rotate(270deg) translate(0%, 58px);
    }
}

@media (max-width: 999px) {
    .enq-now {
        transform: rotate(270deg) translate(0%, 50px);
    }
}


@media (max-width: 700px) {
    .enq-now {
        transform: rotate(270deg) translate(0%, 45px);
    }
}

@media (max-width: 500px) {
    .enq-now {
        transform: none;
        top: auto;
        right: auto;
        bottom: 0;
        left: 0%;
        width: 100%;

        height: 4rem;
    }
}

/* overlay component */

.modal-box {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100000;

    background-color: #0000009d;
    backdrop-filter: blur(10px);

    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.modal-inner-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    max-width: 640px;
    width: 100%;
    margin: 2vh;
}

.modal-close-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 25px;
    padding: 6px;
    border: 1px solid #969696;
    border-radius: 100px;
    transition: all 0.2s;
    background-color: transparent;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    background: #0000009d;
}

.modal-close-btn:hover {
    transform: translate(50%, -50%) scale(1.05);
}

.hide {
    display: none;
}



/* form related stuff */

.form-box {
    background-color: #577640;

    padding: 20px;

    width: 320px;
    height: 400px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 16px;

    color: #fff;
}

.form-title {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
}

.form-info {
    font-size: 12px;
    letter-spacing: 1.2px;
    text-align: center;
}

.form-fields {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;

    gap: 16px;
}

input {
    width: 100%;

    padding: 10px;

    outline: transparent;

    border: transparent;
}

.phone-ip {
    display: grid;
    grid-template-columns: 20% 80%;
}

.sub-btn {
    padding: 10px 48px;

    font-weight: 700;

    font-size: 16px;

    border: transparent;
    outline: transparent;

    cursor: pointer;
    transition: transform 0.2s;

    color: #577640;
    font-family: 'WGS Headline';
    font-size: 1.5rem;

}

.sub-btn:hover {
    transform: scale(1.03);
}

/* .deskcallnow {
    position: fixed;
    right: -110px;
    top: 20%;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding: 5px 10px 5px 5px;
    background-color: #577640;   
    color: #fff;
} */
.deskcallnow {
    position: fixed;
    /* transform: rotate(270deg) translate(0%, 65px); */
    top: 25%;
    right: -102px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding: 1rem 1.5rem;
    outline: none;
    border: none;
    background-color: #577640;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10000;
}
.deskcallnow:hover {
    right: 0;
}
.deskcallnow i {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    transform: rotate(90deg);
    margin-right: 10px;
}
.deskcallnow button {
    cursor: pointer;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 16px;
    line-height: 21px;
}