* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "TTFirsTextTrial", sans-serif;
}
@font-face {
    font-family: 'TTFirsTextTrial';
    src: url('../font/TTFirsTextTrialRegular.ttf') format('truetype');
}

@font-face {
    font-family: 'TTFirsTextTrial';
    src: url('../font/TTFirsTextTrialBold.ttf') format('truetype');
}

@font-face {
    font-family: 'TTFirsTextTrialDemibold';
    src: url('../font/TTFirsTextTrialDemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'TTFirsTextTrial';
    src: url('../font/TTFirsTextTrialExtraBlack.ttf') format('truetype');
}

@font-face {
    font-family: 'TTFirsTextTrial';
    src: url('../font/TTFirsTextTrialExtraBold.ttf') format('truetype');
}

@font-face {
    font-family: 'TTFirsTextTrial';
    src: url('../font/TTFirsTextTrialMedium.ttf') format('truetype');
}

html,
body {
    overflow-x: hidden;
    overflow-y: auto;
}

:root {
    --main-color: #6FC2C4;
    --second-color: #18344A;
    --third-color: #68CCCC;
    --page-width: 40vw;
    --demibold-font:"TTFirsTextTrialDemibold", sans-serif;

}

.herosection {
    min-height: 100vh;
    background-image: url('../image/herosection/herobg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    overflow-x: hidden;
}

.herosection::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.379);
    z-index: 1;
}

.herosection .herosectiondetails {
    z-index: 2;
    position: relative;
    margin-top: 30%;
}

.herosection .topanimatedwaves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.herosection .topanimatedwaves img {
    width: 100%;
}

.herosection .herosectiondetails .logo .title {
    padding-top: 25px;
}

.herosection .herosectiondetails .logo .title h2 {
    font-size: 19px;
    color: var(--main-color);
    font-weight: 550;
    font-family: var(--demibold-font);
}

.herosection .herosectiondetails .mainherotitle {
    color: #fff;
    padding-top: 25px;
}

.herosection .herosectiondetails .mainherotitle h2 {
    font-size: 35px;
    font-weight: 500;
    font-family: var(--demibold-font);
}

.herosection .herosectiondetails .mainherotitle p {
    font-size: 15px;
    padding-top: 10px;
    line-height: 20px;
    font-weight: 500;
}

.herosection .herosectiondetails .bottomarrow {
    padding-top: 30px;
}

.heroregisterbutton {
    position: absolute;
    top: 17%;
    right: 7%;
    z-index: 2;
}

.heroregisterbutton button {
    background-color: var(--main-color);
    font-size: 15px;
    border: none;
    padding: 10px 20px;
    color: #fff;
    font-family: var(--demibold-font);
    cursor: pointer;
}

.waves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;

}

.ocean {
    height: 30px;
    width: 100%;
    overflow: hidden;
}

.wave {
    background: url('../image/herosection/waves.png') repeat-x;
    position: absolute;
    width: 6400px;
    height: 20px;

}

.wave:nth-of-type(2) {
    top: -90px;
    animation: wave 14s linear infinite, swell 6s ease-in-out infinite;
   
}

/* .wave1 {
    animation: wave-left 40s linear infinite;
}

.wave2 {
    animation: wave-right 40s linear infinite;
}

.wave3 {
    animation: wave-left 40s linear infinite;
}

.wave4 {
    animation: wave-right 40s linear infinite;
}

.wave5 {
    animation: wave-left 40s linear infinite;
} */

/* @keyframes wave-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1600px);
    }
}

@keyframes wave-right {
    0% {
        transform: translateX(-1600px);
    }

    100% {
        transform: translateX(0);
    }
} */

/* herosection */
/* herosection */
/* navbar  */
.navbarmain .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 85px;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.navbarmain {
    width: 100%;
    background-color: white;
    transition: all 0.3s ease;
    z-index: 999;
}

.navbarmain.fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbarmain .navbar .navbutton button {
    padding: 10px 25px;
    border: none;
    background-color: var(--main-color);
    color: #fff;
    font-weight: 550;
}

/* navbar  */
/* modern living  */
.modern-living {
    padding: 100px 0 0;
}

.modern-living .maintitle h2 {
    font-weight: 550;
    font-size: 27px;
    color: var(--second-color);
    text-align: center;
    padding-bottom: 50px;
}

.modern-living .modenlivingsec {
    display: flex;
    width: 100%;

}

.modern-living .modenlivingsec .left-living {
    width: 100%;

}

.modern-living .modenlivingsec .left-living .desc {
    display: flex;
    gap: 25px;
    flex-direction: column;
    padding: 50px 100px;
}

.modern-living .modenlivingsec .left-living .desc p {
    line-height: 28px;
    font-size: 15px;
}

.modern-living .modenlivingsec .left-living .left-bottomsec {
    display: flex;
    flex-direction: column;
}

.modern-living .modenlivingsec .left-living .left-bottomsec .wavediv {
    padding: 0 100px 0 0;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.modern-living .modenlivingsec .left-living .left-bottomsec .wavediv canvas {
    width: 100%;
    height: 100%;
}

.modern-living .modenlivingsec .left-living .left-bottomsec .imgsec {
    padding: 0 100px;
    margin-top: -10%;
    z-index: -1;
}

.modern-living .modenlivingsec .left-living .details {
    margin-left: 40px;
    border-left: 3px solid var(--main-color);
}

.modern-living .modenlivingsec .left-living .details p {
    padding-left: 20px;
    font-size: 22px;
    color: var(--main-color);
    line-height: 30px;
}

.modern-living .modenlivingsec .left-living .imgsec {
    padding-top: 30px;
}

.modern-living .modenlivingsec .right-living {
    width: 100%;
}

.modern-living .modenlivingsec .right-living .rightimg {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.modern-living .modenlivingsec .right-living .rightimg .modern-livingimg img {
    width: 100%;
    height: auto;
}

.modern-livingimg.rightcircleimg {
    width: 400px;
    height: 400px;
}

.modern-living .modenlivingsec .right-living .rightimg img {
    width: 100%;
}

.right-mainimg {
    width: 100%;

}

.modern-livingimg {
    visibility: hidden;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.modern-livingimg .left-mainimg {
    width: 100%;
}

.modern-livingimg .right-mainimg {
    width: 100%;
}

/* modern living  */

/* private-escape */
.private-escape {
    padding: 0px 0 100px;
}

.private-escape .maintitle {
    text-align: center;
}

.private-escape .maintitle h2 {
    font-weight: 550;
    font-size: 27px;
    color: var(--second-color);
    text-align: center;
    padding-bottom: 50px;
}

.private-escape .private-escapesectop {
    padding: 0 100px;
    width: 100%;
    position: relative;
}

.private-escape .private-escapesectop img {
    width: 100%;
}

.private-escape .private-escapesecbottom {
    display: flex;
    width: 100%;
}

.private-escape .private-escapesecbottom .wavediv {
    margin-top: -5%;
    z-index: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.private-escape .private-escapesecbottom .wavediv canvas {
    width: 100%;
    height: 100%;
}

.private-escape .private-escapesecbottom .desc {
    width: 100%;
    padding: 60px 40px 0;
}

.private-escape .private-escapesecbottom .desc p {
    font-size: 15px;
    font-weight: 450;
    line-height: 27px;
}

/* private-escape */

/* amenities  */
.amenities .amenities-section {
    position: relative;
}

.amenities .amenities-section .maintitle {
    text-align: center;
    padding-bottom: 50px;
}

.amenities .amenities-section .maintitle h3 {
    color: var(--third-color);
    font-weight: 500;
    font-size: 21px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.amenities .amenities-section .maintitle h2 {
    font-weight: 550;
    font-size: 27px;
    color: var(--second-color);
    text-align: center;
    padding-bottom: 50px;
}

.amenitiesbg {

    height: 100%;
    position: relative;
}

.amenities .wavediv .wavedivimgbg{
    left: 0;
    right: 0;
    background-color: #70c3c469;
    z-index: -1;
    position: absolute;
}

.amenitiesbg .wavediv canvas {
    width: 100%;
}

.amenitiesbg .desc {
    padding: 80px 100px;
    width: 100%;
    height: 100%;
}

.amenitiesbg .rightimg {
    width: 100%;
    padding: 0 100px 0 0;
}

.amenitiesbg .desc p {
    font-size: 15px;
    font-weight: normal;
    line-height: 27px;
    margin-top: 4%;
}

.amenities .amenities-section .amenitiesbottomimages .leftimg {
    margin-top: -30%;
    width: 100%;
}

.amenities .amenities-section .amenitiesbottomimages .leftimg img {
    width: 100%;
}

.amenities .amenities-section .mainimages {
    top: 0;
    display: flex;
}

.amenities .amenities-section .rightimg {
    margin-top: -3%;
}

.amenities .amenities-section .rightimg img {
    width: 100%;
}

.amenities .amenities-section .amenitiesbottomimages .leftimg {
    width: 50%;
    padding: 30px 0 0 100px;
}

.amenities .amenities-section .amenitiesbottomimages .leftimg img {
    width: 100%;
}

/* amenities  */
/* neighbourhood  */
.neighborhood {
    padding: 100px 0;
}

.neighborhood .neighborhood-section .maintitle {
    text-align: center;
    padding-bottom: 50px;
}

.neighborhood .neighborhood-section .maintitle h3 {
    color: var(--third-color);
    font-weight: 500;
    font-size: 21px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.neighborhood .neighborhood-section .maintitle h2 {
    font-weight: 550;
    font-size: 27px;
    color: var(--second-color);
    text-align: center;
}

.neighborhood .neighborhood-section .neighborhood-main {
    width: 100%;
    padding: 0 100px;
}

.neighborhood .neighborhood-section .neighborhood-main img {
    width: 100%;
}

.neighborhood .neighborhood-section .neighborhoodbg .wavediv {
    background-color: #70c3c469;
    width: 100%;
    margin-top: -10%;
    z-index: -1;
    position: relative;
}

.neighborhood .neighborhood-section .neighborhoodbg .wavediv canvas {
    width: 100%;
}

.neighborhood .neighborhood-section .details {
    text-align: center;
    padding: 0 100px;
    margin-top: -11%;
}

.neighborhood .neighborhood-section .details .paragraph {
    padding: 0px 100px 50px;
}

.neighborhood .neighborhood-section .details .paragraph p {
    font-size: 15px;
    font-weight: 500;
    line-height: 27px;
}

.neighborhood .neighborhood-section .details .images {
    display: flex;
    gap: 20px;
}

.neighborhood .neighborhood-section .details .images .neightbour-img {
    width: 100%;
}

.neighborhood .neighborhood-section .details .images .neightbour-img img {
    width: 100%;
}

/* neighbourhood  */
/* register  */
.register {
    padding:0;
}

.register .registertopsec {
    text-align: center;
    padding: 0 180px 50px;
}

.register .registertopsec .firsttitle h2 {
    text-transform: uppercase;
    color: var(--main-color);
    font-size: 21px;
    font-weight: 550;
    padding-bottom: 5px;
}
.separate-line{border: 0!important;opacity: 0 !important;}
.register .registertopsec .maintitle h2 {
    font-weight: 550;
    font-size: 27px;
    color: var(--second-color);
}

.register .registertopsec .paragraph {
    padding-top: 20px;
    font-size: 15px;
}
.register .registertopsec .paragraph p{margin-bottom: 0;}
.register .bottomsec {
    background-image: url('../image/register/bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px;
}

.register .bottomsec .registerform_main {
    background-color: #fff;
    padding: 30px;
    width: 80%;
}

.register .bottomsec .registerform_main form .ginput_container {
    width: 100%;
    padding-bottom: 15px;
}
.gform-loader{
    border-block-end-color: var(--main-color);
    border-block-start-color: var(--main-color);
}
.gform-footer {justify-content: center !important;}
.gform-footer input{background-color: var(--main-color) !important;padding: 10px 30px !important; border-radius: 0 !important; font-size: 16px !important;}
.gform-footer input:focus{outline:none !important;}
.register .bottomsec .registerform_main form .section_1 .ginput_container input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #000;
    padding: 8px 0;
    background-color: transparent;
    border-radius: 0;
    box-shadow: unset !important;
}
.register .bottomsec .registerform_main form .gform_fields{
    gap: 5px;
} 
.copyrightfooterp .requirecopyright{display:block;padding-bottom:20px}
.register .bottomsec .registerform_main form .gfield_required{display: none;}
/*.register .bottomsec .registerform_main form .gfield-choice-input{border: 1px solid #342F1F !important;border-radius: 25px !important;padding: 0 !important;font-weight: 550 !important;}*/
.register .bottomsec .registerform_main form .gfield-choice-input::before{
    
}
.register .bottomsec .registerform_main form .brokerdiv .gfield_radio{display: flex; flex-direction: unset;}
.register .bottomsec .registerform_main form .ginput_container input::placeholder {
    text-transform: uppercase;
    font-size: 15px;
    color: #000;
}

.register .bottomsec .registerform_main form .ginput_container input:focus {
    outline: none;
}

.register .broker-section {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    flex-direction: row;
    padding: 8px 0;
}

.register .broker-section>label {
    font-size: 15px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.register .broker-name-inline {
    display: none;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    white-space: nowrap;
    width: 100%;
}

.register .broker-name-inline label {
    font-size: 15px;
    margin: 0;
}

.register .broker-name-input {
    border: none;
    border-bottom: 1px solid #000;
    outline: none;
    font-size: 15px;
    padding: 0 !important;
}

.register .checkbox-group {
    display: flex;
    justify-content: space-between;
    gap: 0px;
    flex-wrap: wrap;
}

.register .checkbox-column {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.register .checkbox-column .checkbox-flex {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}

.register .checkbox-column .group-title {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.register .checkbox-column label {
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.register .checkbox-column input[type="checkbox"] {
    margin: 0;
}

.register .bottomsec .registerform_main form .required-p h2 {
    font-weight: 400;
    font-size: 15px;
    text-transform: uppercase;
}

.register .bottomsec .registerform_main form .required-p .para {
    margin-top: 15px;
}

.register .bottomsec .registerform_main form .required-p .para p {
    font-size: 15px;
    line-height: normal;
}

.register .bottomsec .registerform_main form .registersubmitbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
}

.register .bottomsec .registerform_main form .registersubmitbtn input {
    padding: 8px 40px;
    background-color: var(--main-color);
    color: #fff;
    border: none;
    font-size: 17px;
}

/* register  */

/* thank you model  */
.thankyoumodel {
    position: fixed;
    inset: 0;
    background-color: #00000038;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.thankyoumodel .model {
    background-color: #fff;
    padding: 70px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1px solid #000;
}

.thankyoumodel .model .thankyoucloseicon {
    position: absolute;
    top: 15px;
    right: 15px;
}

.thankyoumodel .model .details h2 {
    color: var(--main-color);
    font-size: 35px;
    font-weight: 550;
}

.thankyoumodel .model .details p {
    font-size: 18px;
}

/* thank you model  */
/* footer  */
.footersection {
    padding: 50px 100px;
}

.footersection .footersectop {
    display: flex;
    justify-content: space-between;
}

.footersection .footersectop .leftside .title h2 {
    font-size: 16px;
    font-weight: 550;
    padding-bottom: 20px;
}

.footersection .footersectop .rightside .title h2 {
    font-size: 18px;
    font-weight: 550;
    padding-bottom: 20px;
}

.footersection .footersectop .rightside .contactdetails {
    display: flex;
    gap: 30px;
    align-items: center;
    position: relative;
}

.contactdetails .logo {
    position: relative;
}

.contactdetails .logo:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -25px;
    /* half of gap */
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #000;
    /* or any color you want */
}

.footersection .bottom {
    padding-top: 50px;
    text-align: center;
    display: flex;
    align-items: end;
}

.footersection .bottom .logopara {
    display: flex;
    gap: 7px;
    margin-top: 15px;
}

.footersection .bottom p {
    padding: 0;
}

.footer-disclaimer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 15px;
    line-height: 27px;
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.footer-disclaimer .disclaimer-text {
    margin-bottom: 5px;
}

.footer-disclaimer .disclaimer-icons {
    position: absolute;
    right: 5%;
    top: 90%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}

/* footer  */
.resident-highlight {
    padding: 100px 0;
}

.resident-highlight .maintitle {
    text-align: center;
}

.resident-highlight .maintitle h3 {
    color: var(--third-color);
    font-weight: 500;
    font-size: 21px;
    padding-bottom: 5px;
    text-transform: uppercase;
}

.resident-highlight .maintitle h2 {
    font-weight: 550;
    font-size: 27px;
    color: var(--second-color);
    text-align: center;
    padding-bottom: 50px;
}




/* new flipbook  */

.resident-highlight .flipbook {
    margin: 0;
    display: flex;
    perspective: 1000px;
    color: hsl(180 68% 5%);
}

.resident-highlight .book {
    position: relative;
    display: flex;
    margin: auto;
    width: 75cqmin;
    height: 50vh;
    pointer-events: none;
    transform-style: preserve-3d;
    transition: translate 1s;
    translate: calc(min(var(--c), 1) * 50%) 0%;

}

.resident-highlight .page {
    --thickness: 4;
    flex: none;
    display: flex;
    width: 100%;
    font-size: 2cqmin;
    pointer-events: all;
    user-select: none;
    transform-style: preserve-3d;
    transform-origin: left center;
    transition:
        transform 1s,
        rotate 1s ease-in calc((min(var(--i), var(--c)) - max(var(--i), var(--c))) * 50ms);
    translate: calc(var(--i) * -100%) 0px 0px;
    transform: translateZ(calc((var(--c) - var(--i) - 0.5) * calc(var(--thickness) * .23cqmin)));
    rotate: 0 1 0 calc(clamp(0, var(--c) - var(--i), 1) * -180deg);
}

.resident-highlight .front,
.resident-highlight .back {
    position: relative;
    flex: none;
    width: 100%;
    backface-visibility: hidden;
    overflow: hidden;
    background-color: #fff;
    translate: 0px;
}

.resident-highlight .back {
    translate: -100% 0;
    rotate: 0 1 0 180deg;
}

.resident-highlight .book {
    counter-reset: page -1;
}

.resident-highlight .book a {
    color: inherit;
}

.resident-highlight .front,
.resident-highlight .back {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.resident-highlight .front img,
.resident-highlight .back img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.resident-highlight .front.has-img,
.resident-highlight .back.has-img {
    padding: 0;
}

.resident-highlight .front::after,
.resident-highlight .back::after {
    position: absolute;
    bottom: 1em;
    counter-increment: page;
    content: counter(page) ".";
    font-size: 0.8em;
    display: none;
}

.resident-highlight .cover::after {
    content: "";
}

.resident-highlight .front::after {
    right: 1em;
}

.resident-highlight .back::after {
    left: 1em;
}

.resident-highlight .cover {
    background: radial-gradient(circle farthest-corner at 80% 20%,
            hsl(150 80% 20% / 0.3) 0%,
            hsl(170 60% 10% / 0.1) 100%),
        hsl(231, 32%, 29%) url("https://picsum.photos/id/984/800/900") 50% / cover;
    color: hsl(200 30% 98%);
}

.resident-highlight .flipbook-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
    pointer-events: all;
}


.resident-highlight .flipbook-controls button {
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    background-color: transparent;
}

.resident-highlight .flipbook-controls button .righticon{
    transform: rotate(180deg);
  
}
.resident-highlight .flipbook-controls .leftbtn{
    margin-left: 10%;
}

.resident-highlight .flipbook-controls  .rightbtn{
    margin-right: 10%;
}
.resident-highlight .book .page .back h2{
    padding-bottom: 20px;
    font-weight: 550;
}
.resident-highlight .book .page .back p{
    font-size: 15px;
    line-height: 27px;
}
.resident-highlight .book .page .back.page-color-first{
    background-color: #18344a;
    color: #fff;
}
.resident-highlight .book .page .back.page-color-second{
    background-color: #c4a492;
    color: #fff;
}
.resident-highlight .book .page .back.page-color-third{
    background-color: #a4c0be;
    color: #fff;
}
.resident-highlight .book .page .back.page-color-forth{
    background-color: #70c2c4;
    color: #fff;
}
.resident-highlight .book .page .back.page-color-fifth{
    background-color: #d96c45;
    color: #fff;
}
.amenitiesbg .desc p{margin-bottom: 0;}
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--main-color);
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 18px;
  display: none; /* Hidden by default */
  transition: opacity 0.3s ease;
}
.gform-theme--foundation .gfield .ginput_password.large, .gform-theme--foundation .gfield input.large, .gform-theme--foundation .gfield select.large:focus{
    outline:none !important;
    border:1px solid #000;
    
}
