@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&amp;display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'poppins', Arial, Helvetica, sans-serif;
}

button {
    cursor: pointer;
    transition: .2s;
}

header {
    padding: 0px 2%;
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 100;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.logo {
    width: 120px;
    padding: 10px 0;
    height: auto;
}

header nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.nav-links li {
    display: inline-block;
    list-style: none;
}

.nav-links li a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 550;
    text-transform: uppercase;
    transition: .3s;
    padding: 10px;
}

.nav-links li a:hover {
    color: #3F983E;
}

.phone-no {
    background-color: #3F983E;
    color: #fff !important;
    padding: 10px 8px 10px 3px !important;
    border-radius: 30px;
    padding-left: 2px;
    transition: .3s;
}

.phone-no:hover {
    background-color: #808080;
}

.phone-no i {
    background-color: #fff;
    color: #3F983E;
    padding: 10px;
    border-radius: 50%;
}

.mobile-no {
    display: none;
}

.fa-bars {
    display: none !important;
}

/*--Banner--*/

/*-------------Banner Section Start----------*/

.banner-section {
    width: 100%;
    height: 100vh;
}

.banner-image {
    height: 100%;
    width: 100%;
    position: relative;
}

.banner-image::after {
    content: '';
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.146);
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    z-index: 9;
}

.banner-patch {
    position: absolute;
    left: 5%;
    top: 22vh;
    background-color: #fff;
    border-radius: 5px;
    width: 290px;
    padding: 15px;
    text-align: center;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #2d2b2bf9;
}

.banner-patch h1 {
    font-size: 28px;
    line-height: 32px;
}

.banner-patch h3 {
    color: #3F983E;
    line-height: 22px;
    font-weight: 550;
    padding: 3px 0;
}

.patch-text {
    color: white;
    text-align: left;
    margin-top: 5px;
}

.patch-text p {
    color: #000;
    text-align: center;
    margin-top: 5px;
    font-size: 17px;
}

.patch-text p span {
    font-weight: 550;
    font-size: 20px;
    animation: blink 1.1s linear infinite;
}

.blink {
    -webkit-animation: blink .75s linear infinite;
    -moz-animation: blink .75s linear infinite;
    -ms-animation: blink .75s linear infinite;
    -o-animation: blink .75s linear infinite;
    animation: blink .75s linear infinite;
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    50.01% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    50.01% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-ms-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    50.01% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@-o-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    50.01% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    50.01% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.patch-text ul {
    background-color: #3F983E;
    padding: 10px;
    border-radius: 5px;
}

.patch-text ul li {
    list-style: none;
    font-size: 15px;
    line-height: 22px;
    border-bottom: 1px solid #fff;
    padding: 5px 0;
    font-weight: 550;
}

.patch-text ul li:last-child {
    border-bottom: none;
}

.banner-text-btn {
    padding: 10px;
    border: none;
    width: 80%;
    margin: auto;
    display: block;
    margin-top: 10px;
    background-color: #3F983E;
    color: white;
    border-radius: 3px;
    font-size: 17px;
}

.banner-text-btn:hover {
    background-color: #2d2b2bf9;
}

.banner-form {
    position: absolute;
    right: 8%;
    top: 25vh;
    background-color: rgb(252 249 249 / 68%);
    border-radius: 5px;
    width: 270px;
    padding-bottom: 15px;
    text-align: center;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 20px;
}

.banner-form h2 {
    color: white;
    margin-bottom: 5px;
    background-color: #3F983E;
    font-weight: 500;
    padding: 5px;
    border-radius: 20px 20px 0 0;
}

.banner-form form {
    padding: 0 15px;
}

.banner-form p {
    color: #000;
}

.banner-form form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.mobile-input {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    height: 37px;
    overflow: hidden;
}

.mobile-input select {
    max-width: 33%;
    flex-basis: 33%;
    height: 100%;
    padding: 10px;
    border: none;
    border-right: none;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    margin: 8px 0;
    color: #808080;
}

.mobile-input input {
    max-width: 67%;
    flex-basis: 67%;
    border-left: none;
    margin-left: -2px;
    border-radius: 0 5px 5px 0 !important;
    height: 100%;
    padding: 10px;
}

.banner-form-btn {
    padding: 10px;
    width: 70%;
    margin: 20px 0 10px;
    background-color: #3F983E;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 17px;
    transform: .4s;
}

button {
    transition: .3s;
}

button:hover {
    background-color: #2d2b2bf9;
}

.banner-form h5 {
    font-weight: 550;
    color: #000;
    width: 90%;
    margin: 0 auto;
}

.banner-form-call {
    padding: 8px 20px;
    background-color: #fff;
    margin-top: 0px;
    text-decoration: none;
    color: #000;
    font-weight: 550;
    border-radius: 5px;
    display: inline-block;
}

.banner-form-call:hover {
    color: #3F983E;
}

/*--Details--*/

.details {
    padding: 0px 4%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.details-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.details-flex-col h3 {
    color: #000;
}

.details-flex-col p {
    color: #203d3b;
}

.details-flex-col p {
    font-weight: 500;
}

.details-flex-col h3 {
    text-transform: uppercase;
    font-weight: 550;
}

.details-flex-col {
    text-align: center;
    border: 1px solid #808080;
    max-width: 16.66666666%;
    flex-basis: 16.66666666%;
    padding: 10px;
    border-top: none;
    border-bottom: none;
}

.details-flex-col img {
    width: 40px;
    margin-bottom: 5px;
}

/*--Overview--*/

.overview {
    width: 100%;
    padding: 0px;
    margin-top: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.overview-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.overview-flex-col {
    flex-basis: 50%;
    max-width: 50%;
    padding: 20px 40px;
}

.overview-flex-col p {
    color: #474545;
    text-align: justify;
    font-size: 15px;
    padding: 2px 0 4px;
    font-weight: 500;
}

.overview-flex-col.left {
    flex-basis: 50%;
    max-width: 50%;
    background-position: center;
    background-size: cover;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    background-position: center;
    background-size: cover;
}

.overview-flex-col .common-button {
    width: 210px;
}

.common-button {
    padding: 10px;
    margin-top: 15px;
    font-size: 17px;
    font-weight: 550;
    width: 170px;
    background-color: #3F983E;
    color: #fff;
    border: none;
}

.body {
    padding: 0 10px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

/*--Highlights--*/

.highlights {
    margin-top: 15px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    background-color: #3F983E;
    color: #fff;
}

.highlights .common-button {
    background-color: #fff;
    color: #3F983E;
}

.highlights-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.highlights-flex-col {
    flex-basis: 50%;
    max-width: 50%;
    padding: 20px 40px;
}

.highlights-flex-col.left {
    flex-basis: 50%;
    max-width: 50%;
    background-position: center;
    background-size: cover;
    background-position: center;
    background-size: cover;
}

.highlights-flex-col ul li {
    list-style: none;
    padding-left: 20px;
    position: relative;
    padding-left: 25px;
    line-height: 28px;
    font-weight: 500;
}

.highlights-flex-col ul li::before {
    color: #fff;
    content: "\f0a9";
    font-family: FontAwesome;
    font-size: 14px;
    left: 0;
    line-height: 28px;
    margin-right: 10px;
    position: absolute;
    top: 4px;
}

/*--Amenities--*/

.amenities {
    margin-top: 15px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    padding: 20px;
    background-color: #3F983E;
}

.amenities h2 {
    color: #fff;
}

.amenities-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.amenities-flex-col {
    flex-basis: 18%;
    max-width: 18%;
    margin: 10px 0;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-radius: 2px;
    overflow: hidden;
    height: 190px;
    background-color: #fff;
}

.amenities-flex-col img {
    width: 100%;
    height: 140px;
}

.amenities-flex-col p {
    color: #474545;
    text-align: center;
    font-size: 14px;
    padding: 2px 0 4px;
    font-weight: 500;
}

.amenities-button {
    margin-top: 10px;
    padding: 10px 15px;
    font-size: 17px;
    font-weight: 500;
    background-color: #fff;
    color: #3F983E;
    border: none;
}

/*--Price List--*/

.price-list {
    margin-top: 15px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    padding: 20px;
    background-color: rgb(17 143 2 / 24%);
}

.price-list-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.price-list-col {
    max-width: 23%;
    flex-basis: 23%;
    border: 1px solid rgba(141, 39, 0, .3);
    background-color: #fff;
    position: relative;
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    padding-top: 5px;
    overflow: hidden;
    margin-right: 15px;
}

.price-list-col::after {
    content: "";
    border-bottom: 45px solid #e9e9e9;
    border-top: 45px solid transparent;
    border-left: 45px solid transparent;
    position: absolute;
    bottom: 0;
    right: 0;
}

.price-list-col h3 {
    font-weight: 500;
}

.price-list-col .price-col {
    border-bottom: 1px solid rgba(163, 66, 23, .15);
    line-height: 160%;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    font-size: .9rem;
    color: #000;
}

.price-btn {
    padding: 10px 20px;
    font-size: 17px;
    margin-top: 15px;
    border: 1.5px solid #3F983E;
    background: transparent;
    border-radius: 5px;
    color: #3F983E;
    transition: .3s;
}

.price-btn:hover {
    background-color: #3F983E;
    color: #fff;
}

.price-color {
    color: #3F983E !important;
}

.price-color h3 {
    font-size: 20px;
}

.gallery {
    margin-top: 15px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    padding: 20px;
    background-color: #f8f8f8;
}

.gallery-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.gallery-flex-col {
    flex-basis: 25%;
    max-width: 25%;
    padding: 0;
    border: 1px dotted white;
    overflow: hidden;
    height: 240px;
}

.gallery-flex-col img {
    height: 200px;
    border: 1px dotted #777;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 100;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Fallback color */
    background-color: rgb(64 60 60 / 95%);
    /* Black w/ opacity */
}

/* Modal Content (image) */

.modal-content {
    margin: auto;
    display: block;
    width: 50%;
    max-width: 50%;
    max-height: 70%;
}

.modal img {
    border-radius: 5px;
}

/* Add Animation */

.modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0.1)
    }
    to {
        transform: scale(1)
    }
}

/* The Close Button */

.close {
    position: absolute;
    top: 25px;
    right: 45px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/*--Floor Plan--*/

.floor-plan {
    margin-top: 15px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    padding: 20px;
    background-color: #3F983E;
}

.floor-plan h2 {
    color: #fff;
}

.floor-plan-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.floor-plan-flex-col {
    max-width: 23%;
    flex-basis: 23%;
    background-color: #fff;
    color: #474545;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    cursor: zoom-in;
    margin-left: 14px;
}

.floor-plan-flex-col p {
    padding-bottom: 5px;
    font-weight: 500;
}

.floor-plan-flex-col img {
    width: 100%;
    height: 180px;
    filter: blur(1.8px);
}

/*----------About Developer----------*/

.about-developer {
    width: 100%;
    padding: 20px;
    background-color: #3F983E;
    margin-top: 15px;
}

.about-developer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: auto;
    flex-wrap: wrap;
}

.about-developer-flex-left {
    flex-basis: 75%;
    max-width: 75%;
    color: white;
}

.about-developer-flex-left p {
    font-size: 15px;
}

.about-developer-flex-right {
    flex-basis: 25%;
    max-width: 25%;
}

.about-developer-btn {
    width: 70%;
    margin-left: 15%;
    padding: 10px;
    color: #3F983E;
    background-color: white;
    border: none;
    font-size: 15px;
}

/*--Footer--*/

footer {
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    padding: 20px;
    background-color: rgb(17 143 2 / 24%);
}

footer h2 {
    text-align: center;
    font-weight: 500;
    color: #3F983E;
    font-size: 35px;
}

footer h5 {
    color: #7a7171;
    font-size: 17px;
    font-weight: 400;
}

.footer-flex {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: auto;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-flex-col-left,
.footer-flex-col-mid,
.footer-flex-col-right {
    max-width: 33%;
    flex-basis: 33%;
}

.footer-flex-col-mid {
    border: 1px solid #aba7a7;
}

.footer-flex-col-left {
    padding: 10px;
    max-width: 29%;
    flex-basis: 29%;
    border: 2px solid #aba7a7;
}

.footer-flex-col-left ul li i {
    font-size: 28px;
    color: #474545;
    margin-right: 10px;
}

.footer-flex-col-left ul li {
    list-style: none;
    padding: 10px;
    font-size: 20px;
    text-align: left;
}

.footer-flex-col-left ul li a {
    color: #000;
    text-decoration: none;
}

.footer-flex-col-right form input {
    padding: 10px;
    width: 100%;
    margin: 0px 0 20px 0;
    border: none;
    border-radius: 0;
}

.footer-flex-col-right form .mobile-input select,
.footer-flex-col-right form .mobile-input {
    border-radius: 0 !important;
    border: none;
}

.footer-flex-col-right form .mobile-input input {
    margin: 0 !important;
    border-radius: 0 !important;
}

.footer-flex-col-right p {
    font-size: 10px;
    margin-top: 5px;
    text-align: justify;
}

.footer-btn {
    padding: 10px;
    width: 100%;
    background-color: #3F983E;
    color: #fff;
    font-size: 17px;
    border: none;
    margin-top: 20px;
}

/*--Brochuer--/

/*--Virtual Tour--*/

.virtual-tour {
    margin-top: 15px;
    padding: 20px;
    background: rgb(17 143 2 / 24%);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.virtual-tour-flex {
    width: 80%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #393838;
    flex-wrap: wrap;
}

.virtual-tour-flex-img {
    max-width: 40%;
    flex-basis: 40%;
}

.virtual-tour-flex-img img {
    width: 80%;
}

.virtual-tour-flex-text {
    max-width: 60%;
    flex-basis: 60%;
}

.virtual-tour-flex-text h3 {
    font-weight: 500;
    font-size: 25px;
    margin-top: 40px;
}

.virtual-tour-flex-text h4 {
    font-size: 20px;
    font-weight: 400;
}

.virtual-btn {
    margin: 15px 0;
    padding: 10px 20px;
    background-color: #3F983E;
    color: #fff;
    border: none;
    font-size: 17px;
    border-radius: 4px;
}

.virtual-btn:hover {
    color: #fff;
}

#location {
    background-color: #3F983E;
    color: #fff;
}

#location .highlights-flex-col ul li::before {
    color: #fff;
}

#location .common-button {
    background-color: #fff;
    color: #3F983E;
}

#location .common-button:hover {
    background-color: #2d2b2bf9;
    color: #fff;
}

/*---Desclaimer--*/

.desclaimer {
    padding: 10px;
    background-color: #d5dada;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.desclaimer p {
    font-size: 11px;
}

.desclaimer h5 {
    color: #474545;
    font-weight: 450;
    padding: 5px 0 0;
}

.keywords {
    background-color: #b7bab9;
    border-bottom: 1px solid #777;
}

.keywords ul {
    line-height: 10px;
    padding: 10px;
}

.keywords ul li {
    display: inline-block;
    font-size: 11px;
    list-style: circle;
}

/*--------------Popup Form--------------*/

.enquire-popup-form-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000b8;
    z-index: 100;
    display: none;
}

.enquire-popup-form {
    width: 400px;
    margin: auto;
    margin-top: 20vh;
    border: 3px solid #3F983E;
    padding: 20px 15px;
    background-color: #fff;
    position: relative;
    background-position: center;
    background-size: cover;
}

.enquire-popup-form h2 {
    font-weight: 550;
    color: #000;
}

.enquire-popup-form form {
    padding: 10px 0;
}

.enquire-popup-form form input {
    border: 2px solid #777;
    padding: 10px;
    width: 100%;
    margin: 9px 0;
}

.enquire-popup-form form div .mobile-input {
    border: 2px solid #777;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
}

.enquire-popup-form select,
.enquire-popup-form .mobile-input input {
    border-radius: 0 !important;
    padding-left: 5px;
    padding-right: 0;
    border: 2px solid #777;
}

.enquire-popup-form select {
    border-right: none;
}

.input-flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.input-flex div {
    flex-basis: 48%;
    max-width: 48%;
}

.enquire-popup-form textarea {
    width: 100%;
    border: 2px solid #777;
    padding: 10px;
}

.enquire-popup-btn {
    padding: 9px;
    margin-top: 10px;
    width: 50%;
    background-color: #3F983E;
    color: white;
    border: none;
}

.enquire-popup-form i {
    position: absolute;
    right: -15px;
    top: -15px;
    background-color: #3F983E;
    padding: 10px;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    text-align: center;
    margin-top: -5px;
    cursor: pointer;
    color: #fff;
}

/*-----------Auto Popup Form-------------*/

.popup-form-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3b3838a4;
    display: none;
    z-index: 100;
}

.popup-form-main {
    width: 550px;
    margin: auto;
    margin-top: 11%;
}

.popup-form-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 280px;
}

.popup-form-flex-left,
.popup-form-flex-right {
    flex-basis: 50%;
    max-width: 50%;
    height: 100%;
}

.popup-form-flex-right form .mobile-input input {
    border: none;
}

.popup-form-flex-right {
    background-color: #fff;
    height: 100%;
    padding: 20px;
    color: #3F983E;
}

.popup-form-flex-left img {
    width: 100%;
    height: 100%;
}

.popup-logo {
    width: 150px;
    margin: auto;
    display: block;
}

.popup-form-flex-right form {
    margin: 5px 0;
}

.popup-form-flex-right form input {
    padding: 15px 0;
    width: 100%;
    margin: 10px 0;
    border: none;
    background-color: transparent;
    border-bottom: 2px solid #777;
}

.popup-form-flex-right form .mobile-input {
    border-bottom: 2px solid #777;
    border-radius: 0;
}

.popup-form-flex-right form input::placeholder {
    color: #777;
    font-size: 17px;
}

.popup-form-btn {
    padding: 10px;
    width: 100%;
    margin-top: 25px;
    border: none;
    font-size: 17px;
    border-radius: 5px;
    transition: .3s;
    background-color: #3F983E;
    color: #fff;
}

.popup-form-btn:hover {
    border-radius: 30px;
}

.popup-form-flex-right {
    position: relative;
}

.popup-form-flex-right i {
    position: absolute;
    right: -15px;
    top: -15px;
    background-color: #000000;
    padding: 10px;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    text-align: center;
    margin-top: -5px;
    cursor: pointer;
    color: #fff;
}

/*---------Whatsapp Fix Button---------*/

/*-------Whatsapp--------*/

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 24px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
    z-index: 100;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse-border {
    bottom: 20px;
    right: 20px;
    animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 20px;
        opacity: 0.75;
    }
    75% {
        padding: 36px;
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/*---------Call Button Fix---------*/

/*-------------Call BTN wave----------*/

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    font-size: 28px;
    margin-top: 10px;
}

.wave {
    animation: waveIn 1.2s infinite ease-out;
    transform-origin: 50% 50%;
}

.wave-sm {
    animation-delay: .3s;
}

.wave-md {
    animation-delay: .45s;
}

.wave-lg {
    animation-delay: .6s;
}

@keyframes waveIn {
    from {
        opacity: 0;
        transform: scale(.3) translate(-20px, 10px);
    }
    50% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.fix-mobile-btn {
    background: #005aab;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 28px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
    z-index: 100;
}

/*--Media Screen--*/

@media screen and (max-width:1030px) {
    header {
        padding: 5px 10px;
    }
    .nav-links li a {
        font-size: 14px;
        padding: 5px;
    }
    .phone-no {
        padding: 10px 10px 10px 5px !important;
    }
    .details {
        padding: 246px 10px 10px 10px;
    }
    .virtual-tour-flex {
        width: 90%;
    }
    .gallery-flex-col {
        height: 220px;
    }
    .desclaimer-flex-left {
        max-width: 70%;
        flex-basis: 70%;
    }
    .desclaimer-flex-right {
        max-width: 30%;
        flex-basis: 30%;
    }
    .footer-flex {
        width: 100%;
    }
    .footer-flex-col-left ul li {
        font-size: 19px;
    }
    .footer-flex-col-left ul li {
        padding: 10px 5px;
    }
}

@media screen and (max-width:950px) {
    .banner-section {
        height: 60vh;
    }
    .banner-form,
    .banner-patch {
        top: 24%;
    }
    .highlights-flex-col {
        padding: 10px;
    }
    .highlights-flex-col ul li {
        line-height: 26px;
    }
    .amenities-flex-col img {
        height: 120px;
    }
    .virtual-tour,
    .price-list-col {
        padding: 10px;
    }
    .gallery-flex-col {
        height: 200px;
    }
    .footer-flex {
        width: 100%;
    }
    .footer-flex-col-left ul li {
        font-size: 17px;
    }
}

@media screen and (max-width: 850px) {
    .mobile-no {
        background-color: #3F983E;
        color: #fff !important;
        padding: 8px !important;
        border-radius: 30px;
        transition: .3s;
        font-size: 15px;
    }
    .mobile-no i {
        background-color: #fff;
        color: #3F983E;
        padding: 8px;
        border-radius: 50%;
    }
    .icon {
        margin-bottom: -8px;
        margin-top: 0;
    }
    .fa-bars {
        flex-basis: 12%;
        max-width: 12%;
        display: block !important;
    }
    .nav-links {
        position: fixed;
        right: -250px;
        top: 0;
        width: 250px;
        background-color: white;
        padding: 30px 20px;
        height: 100%;
        transition: .4s;
    }
    .nav-links li {
        display: block;
        padding: 10px;
    }
    .mobile-no {
        color: #3F983E;
        font-size: 18px;
        text-decoration: none;
        font-weight: 600;
        display: inline-block;
        text-align: center;
    }
    .icon {
        margin-bottom: -8px;
    }
    .fa-bars {
        z-index: 100;
        font-size: 30px;
        color: #3F983E;
        padding: 0 10px 0;
        display: inline-block !important;
        cursor: pointer;
    }
    nav .fa-x {
        color: #3F983E;
        transition: .4s;
    }
    .open-nav {
        right: 0;
    }
    header {
        padding: 10px 4%;
    }
}

@media screen and (max-width:500px) {
    .modal {
        padding-top: 20vh;
    }
    .close {
        top: 35px;
        right: 30px;
    }
    .modal-content {
        height: 40vh !important;
        width: 95% !important;
        max-width: 100%;
    }
    .popup-form-main {
        margin-top: 40%;
        width: 93%;
    }
    .popup-form-flex-left {
        display: none;
    }
    .popup-form-flex-right {
        max-width: 100%;
        flex-basis: 100%;
    }
    .enquire-popup-form select {
        border-bottom: none;
    }
    header {
        padding: 10px;
    }
    .mobile-no {
        font-size: 14px;
        font-weight: 500;
        padding: 6px 7px !important;
    }
    .banner-section {
        height: 147vh;
    }
    .banner-image {
        height: 40vh;
    }
    .banner-image::after {
        display: none;
    }
    .banner-image img {
        margin-top: 70px;
    }
    .banner-form,
    .banner-patch {
        position: unset;
        width: 95%;
        margin: 10px auto 15px;
    }
    .banner-form-call {
        background-color: #3F983E;
        color: #fff;
    }
    .mobile-input,
    .banner-form form input {
        border-bottom: 2px solid #474545;
    }
    .mobile-input input {
        border-bottom: none !important;
    }
    .banner-form p {
        color: #3F983E;
    }
    .details-flex-col {
        max-width: 50%;
        flex-basis: 50%;
        margin: 10px 0;
        border: 1px solid #808080;
    }
    .overview-flex-col.left,
    .highlights-flex-col.left {
        height: 300px;
        max-width: 100%;
        flex-basis: 100%;
    }
    .highlights-flex-col {
        max-width: 100%;
        flex-basis: 100%;
    }
    .enquire-popup-form {
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }
    .amenities-flex-col {
        max-width: 49%;
        flex-basis: 49%;
        margin: 6px 0;
    }
    .desclaimer,
    footer,
    .overview-flex-col,
    .gallery,
    .floor-plan,
    .price-list,
    .amenities {
        padding: 10px;
    }
    .gallery,
    .virtual-tour-flex-text h3,
    .floor-plan-flex,
    .price-list-flex {
        margin-top: 10px;
    }
    .price-list-col {
        max-width: 49%;
        flex-basis: 49%;
        margin-bottom: 10px;
    }
    .price-list-col .price-col {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .floor-plan-flex-col {
        max-width: 48%;
        flex-basis: 48%;
        height: 230px;
        margin: 10px auto;
    }
    .floor-plan-flex-col img {
        height: 170px;
    }
    .overview-flex-col,
    .virtual-tour-flex-text,
    .virtual-tour-flex-img {
        max-width: 100%;
        flex-basis: 100%;
    }
    .amenities-flex-col {
        height: 170px;
    }
    .virtual-btn {
        width: 60%;
    }
    .gallery-flex-col {
        max-width: 49%;
        flex-basis: 49%;
        margin: 3px auto;
        height: 190px;
    }
    .overview-flex-col .common-button {
        margin: 15px 0;
    }
    .about-developer {
        padding: 10px;
    }
    .about-developer-flex {
        width: 100%;
    }
    .about-developer-flex-right,
    .about-developer-flex-left {
        max-width: 100%;
        flex-basis: 100%;
    }
    .about-developer-btn {
        width: 50%;
        margin: 15px 0 10px;
    }
    .footer-flex {
        width: 100%;
    }
    .desclaimer-flex-left,
    .desclaimer-flex-right,
    .footer-flex-col-left,
    .footer-flex-col-right,
    .footer-flex-col-mid {
        max-width: 100%;
        flex-basis: 100%;
        margin: 10px 0;
    }
    .footer-flex-col-mid {
        height: 280px;
    }
    .footer-flex {
        margin-top: 10px;
    }
    .body {
        padding: 0;
    }
}