@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&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: 10px 2%;
    background-color: #0a1c32;
    position: fixed;
    width: 100%;
    z-index: 10;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.logo {
    width: 150px;
    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: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
    padding: 10px 8px;
}

.brochure {
    border: 1px solid #9c7c44;
    border-radius: 5px;
    padding: 6px !important;
    margin-right: 5px;
    text-decoration: none;
}

.brochure i {
    margin-right: 5px;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    80% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }

    80% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

/*Broucher animated button end*/



.nav-links li a:hover {
    color: #9c7c44;
}

.phone-no {
    background-color: #9c7c44;
    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: #9c7c44;
    padding: 10px;
    border-radius: 50%;
}

.mobile-no {
    display: none;
}

.fa-bars {
    display: none !important;
}

/*--Banner--*/

/*-------------Banner Section Start----------*/
.banner-section {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner-image {
    height: 100%;
    width: 100%;
    position: relative;
}

.mySlides {
    display: none;
    height: 100%;
    overflow: hidden;
}

.slideshow-container {
    width: 100%;
    position: relative;
    margin: auto;
    height: 100%;
}

.mySlides img {
    height: 100%;
}

.slider-dots {
    position: absolute;
    margin-top: -25px;
    left: 46%;
}

.dot {
    height: 5px;
    width: 25px;
    margin: 0 2px;
    background-color: #f9f9f9;
    border-radius: 10px;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active {
    background-color: #9c7c44;
}


.banner-image::after {
    content: '';
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    z-index: 9;
}

.banner-patch {
    position: absolute;
    left: 5%;
    top: 25vh;
    background-color: #fff;
    border-radius: 5px;
    width: 290px;
    padding: 10px 10px 15px;
    text-align: center;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    color: #2d2b2bf9;
}

.banner-patch h1 {
    font-size: 23px;
    line-height: 30px;
    font-weight: 550;
}

.banner-patch h3 {
    color: #000;
    line-height: 20px;
    font-weight: 550;
    font-size: 16px;
    margin-top: 5px;
}

.patch-text {
    color: white;
    text-align: left;
    margin-top: 5px;
}

.patch-text p {
    color: #000;
    text-align: center;
    margin-top: 5px;
    font-size: 18px;
}

.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 {
    padding: 0px;
    border-radius: 5px;
}

.patch-text ul li {
    list-style: none;
    font-size: 14px;
    line-height: 22px;
    border-bottom: 1px solid #fff;
    padding: 10px;
    font-weight: 400;
    background-color: #9c7c44;
    margin: 0;
}

.patch-text ul li:last-child {
    border-bottom: none;
}

.banner-text-btn {
    padding: 10px;
    border: none;
    width: 80%;
    margin: auto;
    display: block;
    margin-top: 15px;
    background-color: #0a1c32;
    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: rgba(252, 249, 249, 0.432);
    border-radius: 5px;
    width: 270px;
    padding-bottom: 15px;
    text-align: center;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 20px;
}

.banner-form h2 {
    color: white;
    margin-bottom: 5px;
    background-color: #9c7c44;
    font-weight: 500;
    padding: 5px;
    border-radius: 20px 20px 0 0;
}

.banner-form form {
    padding: 0 15px;
}

.banner-form p {
    color: #fff;
}

.banner-form form input {
    width: 100%;
    padding: 12px;
    border: none;
    border: 1px solid #dedede;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);

}

.banner-form form .mobile-input {
    height: auto;
    border: 1px solid #dedede;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    margin: 10px 0;
    background-color: #fff;
}

.banner-form form .mobile-input input {
    box-shadow: none;
    border: none;
}

.banner-form .mobile-input select {
    margin: 0;
}

.mobile-input {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    overflow: hidden;
}

.mobile-input select {
    max-width: 33%;
    flex-basis: 33%;
    height: 100%;
    padding: 12px;
    border: none;
    border-right: none;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    margin: 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: 12px;
}

.banner-form-btn {
    padding: 10px;
    width: 70%;
    margin: 10px 0 10px;
    background-color: #0a1c32;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 17px;
    transform: 0.4s;
}

button {
    transition: .3s;
}

button:hover {
    background-color: #2d2b2bf9;
}

.banner-form h5 {
    font-weight: 550;
    color: #fff;
    width: 90%;
    margin: 0 auto;
}

.banner-form-call {
    padding: 8px 20px;
    background-color: #fff;
    margin-top: 0px;
    text-decoration: none;
    color: #0a1c32;
    font-weight: 550;
    border-radius: 5px;
    display: inline-block;
}

.banner-form-call:hover {
    color: #9c7c44;
}

/*--Details--*/
.details {
    padding: 0px 10px;
    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,
.details-flex-col p {
    color: #000;
}

.details-flex-col p {
    color: #3e3f3f;
}

.details-flex-col p {
    font-weight: 500;
    color: #9c7c44;
}

.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: 35px;
    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 h2 {
    font-weight: 500;
    color: #000;
}

.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: #9c7c44;
    color: #fff;
    border: none;
}

.body {
    padding: 0 10px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

/*--Highlights--*/
.highlights {
    margin-top: 20px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    background-color: #fff;
}

.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 h2 {
    font-weight: 500;
}

.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: #474545;
    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: #f8f8f8;
}

.amenities h2 {
    color: #9c7c44;
    font-weight: 500;
}

.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;
    font-size: 17px;
    font-weight: 500;
    background-color: #9c7c44;
    color: #fff;
    border: none;
}--*/


/*--Amenities--*/

.amenities {
    margin-top: 20px;
    padding: 20px;
}

.amenities h2 {
    font-weight: 500;
}

.amenities-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.amenities-headline h4 {
    padding: 10px 0;
    display: block;
    font-weight: 500;
}

.amenities-flex-col {
    max-width: 20%;
    flex-basis: 20%;
    margin: 0 auto;
}

.amenities-flex-col ul li {
    list-style: none;
    display: flex;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    align-items: center;
    width: 90%;
    margin: 10px auto;
}

.amenities-flex-col ul li p {
    font-size: 13px;
}

.amenities-flex-col ul li:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.amenities-flex-col ul li img {
    width: 25px;
    margin: 0 10px 0;
    filter: brightness(0.70);
}

.amenities-headline {
    border-top: 1px solid #e3e3e3;
}

#AmenitiesBtn {
    padding: 8px 15px;
    margin: 12px 0 0 0;
    background-color: #9c7c44;
    border: none;
    color: #fff;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

#more_2 {
    display: none;
}


.gallery {
    margin-top: 15px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
    padding: 20px;
    background-color: #f8f8f8;
}

.gallery h2 {
    font-weight: 500;
    color: #000;
}

.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;
}

/*----------Payment & Flor Plan----------*/
.payment-plan {
    width: 100%;
}

.payment-plan-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.payment-plan-flex-left {
    flex-basis: 50%;
    max-width: 50%;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
}

.payment-plan-flex-right {
    flex-basis: 50%;
    max-width: 50%;
}

.payment-plan-table {
    width: 80%;
    margin: auto;
}

.payment-plan-table table {
    width: 100%;
    max-width: 480px;
}

.payment-plan-table h3 {
    padding: 10px 0;
    color: white;
    font-size: 25px;
    font-weight: 500;
}

.payment-plan-flex-left table,
tr,
th,
td {
    border: 2px solid #fff;
    border-collapse: collapse;
    padding: 8px 15px;
    font-size: 15px;
    color: white;
}

.get-price-btn {
    padding: 3px 5px;
    border: none;
    background-color: #eae6e6;
    color: #9c7c44;
    border-radius: 3px;
}

.get-price-btn:hover {
    background-color: #fff;
}

.payment-plan-btn {
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 10px;
    width: 180px;
    border: none;
    background-color: #fff;
    color: #9c7c44;
    font-size: 17px;
}



.floor-plan-images-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
}

.floor-plan-image {
    flex-basis: 48%;
    max-width: 48%;
    margin: auto;
    border: 1px solid #777;
    margin-bottom: 10px;
    cursor: pointer;
}

.floor-plan-image p {
    text-align: center;
    padding: 2px;
    background-color: #9c7c44;
    color: white;
}

.floor-plan-image img {
    width: 100%;
    margin: auto;
    height: 160px;
    filter: blur(1.5px);
}



/*----------About Developer----------*/
.about-developer {
    width: 100%;
    padding: 20px;
    background-color: #9c7c44;
    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: #9c7c44;
    background-color: white;
    border: none;
    font-size: 15px;
}

/*--Footer--*/
.contact-us {
    padding: 20px 0;
    width: 95%;
    margin: auto;
}

.contact-us h2 {
    color: #9c7c44;
    font-family: sans-serif;
    font-size: 27px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 10px;
}

.contact-us-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.contact-us-flex-col {
    max-width: 48%;
    flex-basis: 48%;
    height: 100%;
}

.contact-us-flex-col h3 {
    color: #9c7c44;
    font-family: sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 10px;
}

.contact-us-flex-col form input,
textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #777;
    border-radius: 5px;
}

.contact-us-btn {
    padding: 12px 15px;
    border: none;
    background-color: #9c7c44;
    color: #fff;
    font-size: 16px;
    display: block;
    width: 200px;
    background: #9c7c44;
    font-size: 17px;
}

footer {
    padding: 10px 20px;
}

footer p {
    font-size: 10px;
}

footer h5 {
    text-align: center;
    color: #3f3d3d;
    font-weight: 400;
    padding: 7px 0 0;
    font-size: 12px;
}



/*--Brochuer--*/


.virtual-tour {
    margin-top: 15px;
    padding: 20px;
    background: #9c7c44;
    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: #fff;
    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: #fff;
    color: #000;
    border: none;
    font-size: 17px;
    border-radius: 4px;
}

.virtual-btn:hover {
    color: #fff;
}

#location {
    margin-top: 0;
    background-color: #2a2a2a;
    color: #fff;
}

#location .highlights-flex-col.left {
    background-color: #ebbec4;
}

#location h2 {
    font-weight: 500;
}

#location .highlights-flex-col ul li::before {
    color: #fff;
}

#location .common-button {
    background-color: #fff;
    color: #000;
}

#location .common-button:hover {
    background-color: #2d2b2bf9;
    color: #fff;
}

/*---Desclaimer--*/
.desclaimer {
    padding: 10px;
    background-color: #d5dada;
}

.desclaimer p {
    font-size: 11px;
}

.desclaimer h5 {
    color: #474545;
    font-weight: 450;
    padding: 5px 0 0;
    text-align: center;
}

.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: #181717ac;
    z-index: 100;
    display: none;
}

.enquire-popup-form {
    width: 400px;
    margin: auto;
    margin-top: 20vh;
    padding: 20px 15px;
    background-color: #fff;
    position: relative;
    background-position: center;
    background-size: cover;
    border-radius: 5px;
}

.enquire-popup-form h2 {
    font-weight: 550;
    color: #9c7c44;
}

.enquire-popup-form form {
    padding: 10px 0;
}

.enquire-popup-form form input {
    width: 100%;
    padding: 12px;
    border: solid 1px #dedede;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.enquire-popup-form .mobile-input {
    margin-top: 15px;
    border: solid 1px #dedede;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.enquire-popup-form .mobile-input input,
.enquire-popup-form .mobile-input select {
    border: none;
    box-shadow: none;
}

.enquire-popup-form form div .mobile-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: solid 1px #dedede;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.enquire-popup-form select {
    border: solid 1px #dedede;
    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%;
    padding: 12px;
    margin-bottom: 15px;
    border: solid 1px #dedede;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.enquire-popup-btn {
    padding: 12px;
    width: 50%;
    background-color: #9c7c44;
    color: white;
    border: none;
    font-size: 17px;
}

.enquire-popup-form i {
    position: absolute;
    right: -15px;
    top: -15px;
    background-color: #9c7c44;
    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: #9c7c44;
}

.popup-form-flex-left img {
    width: 100%;
    height: 100%;
}

.popup-logo {
    width: 150px;
    margin: auto;
    display: block;
    border-radius: 5px;
}

.popup-form-flex-right form {
    margin: 5px 0;
}

.popup-form-flex-right form input {
    width: 100%;
    padding: 12px;
    border: solid 1px #dedede;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);

}

.popup-form-flex-right form .mobile-input {
    width: 100%;
    border: solid 1px #dedede;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    margin-top: 20px;
}

.popup-form-flex-right form input::placeholder {
    color: #9c7c44;
    font-size: 17px;
}

.popup-form-flex-right form .mobile-input select {
    background-color: transparent;
    color: #9c7c44;
}

.popup-form-btn {
    padding: 12px;
    width: 100%;
    margin-top: 22px;
    border: none;
    font-size: 17px;
    border-radius: 5px;
    transition: .3s;
    background-color: #9c7c44;
    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;
}


/*-----------Sidebar Fix Form------------*/
.sidebar-form-fix {
    position: fixed;
    right: -270px;
    top: 20vh;
    transition: .3s;
    z-index: 10;
}

.sidebar-form {
    background-color: #fff;
    width: 270px;
    padding: 10px 20px 15px;
    border-radius: 5px;
    color: #9c7c44;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.sidebar-form input:first-child {
    margin-top: 10px;
}

.sidebar-form input {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: solid 1px #dedede;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.sidebar-form .mobile-input {
    border: solid 1px #dedede;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    margin-bottom: 16px;
}

.sidebar-form .mobile-input input {
    border: none;
    margin: 0;
}

.sidebar-form input::placeholder {
    color: #777;
    font-size: 17px;
}

.side-btn {
    position: absolute;
    left: -70px;
    top: 40px;
    transform: rotate(90deg);

}

.side-btn button {
    padding: 10px;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 17px;
    border-radius: 5px;
    transition: .3s;
    box-shadow: rgba(82, 81, 81, 0.24) 0px 3px 8px;
}

.side-btn button:hover {
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.sidebar-form-sub-btn {
    padding: 9px 20px;
    width: 80%;
    margin: auto;
    color: #fff;
    background-color: #9c7c44;
    border: none;
    font-size: 17px;
    margin-top: 0px;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 5px;
    transition: .3s;
}

.sidebar-form-sub-btn:hover {
    border-radius: 30px;
}

.sidebar-form-sub-btn a {
    color: #fff;
    text-decoration: none;
}

.sidebar-form .fa-x {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.sidebar-form .fa-x:hover {
    color: rgb(255, 115, 0);
}


/*--------Download Brochure---------*/
.download-brochure-form {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background-color: #181717ac;
    z-index: 11;
    height: 100%;
    display: none;
}

.download-brochure {
    width: 400px;
    margin: auto;
    margin-top: 10%;
    background-color: #fff;
    padding: 20px 20px 30px;
    position: relative;
    border-radius: 4px;
}

.download-brochure h2 {
    text-align: center;
    padding: 10px;
    font-weight: 550;
    font-size: 26px;
}

.download-brochure i {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    transition: .2s;
}

.download-brochure i:hover {
    color: rgb(227, 45, 45);
}

.download-brochure form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: solid 1px #dedede;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.download-brochure form .mobile-input {
    border: solid 1px #dedede;
    height: auto;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.download-brochure form .mobile-input select {
    margin: 0;
    box-shadow: none;
}

.download-brochure form .mobile-input input {
    border: none;
    margin: 0;
}

.download-brochure .enquire-popup-btn {
    margin-top: 2px;
    font-size: 16px;
    width: 100%;
    border-radius: 5px;
}

/*---------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: 13px;
        padding: 5px;
    }

    .phone-no {
        padding: 10px 10px 10px 5px !important;
    }

    .details {
        padding: 0 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:986px) {
    .banner-section {
        height: auto;
    }

    .logo {
        width: 110px !important;
    }

    .nav-links li a {
        font-size: 12px;
    }

    .banner-form,
    .banner-patch {
        position: unset;
        width: 95%;
        margin: 20px auto;
        padding: 20px 10px;
    }

    .highlights-flex-col {
        padding: 10px;
    }

    .highlights-flex-col ul li {
        line-height: 26px;
    }


    .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: 895px) {

    /*-- .mobile-no {
        background-color: #9c7c44;
        color: #fff !important;
        padding: 8px !important;
        border-radius: 30px;
        transition: .3s;
        font-size: 15px;
    }--*/
    .download-brochure {
        width: 95%;
        margin-top: 45%;
        z-index: 11;
    }

    .amenities-flex-col {
        max-width: 30%;
        flex-basis: 30%;
    }

    .nav-links li a {
        color: #9c7c44;
    }

    .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: #fff;
        padding: 30px 20px;
        height: 100%;
        transition: .4s;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        z-index: 10;
    }

    .nav-links li {
        display: block;
        padding: 10px;
    }

    .mobile-no {
        color: #9c7c44;
        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: #9c7c44;
        padding: 0 10px 0;
        display: inline-block !important;
        cursor: pointer;
    }

    nav .fa-x {
        color: #9c7c44;
        transition: .4s;
    }

    .open-nav {
        right: 0;
    }

    header {
        padding: 10px 4%;
    }
}

@media screen and (max-width:500px) {
    .overview-flex-col {
        padding: 0;
    }

    .sidebar-form {
        width: 270px;
    }

    .patch-text p span {
        display: block;
    }

    .logo {
        width: 120px !important;
    }

    .overview-flex-col p {
        padding: 10px 10px 0;
    }

    .highlights-flex-col h2,
    .overview-flex-col h2 {
        padding: 10px;
        background-color: #9c7c44;
        color: #fff;
    }

    .banner-form h2 {
        border-radius: 5px 5px 0 0;
    }

    .banner-form {
        border-radius: 5px;
    }

    .amenities-flex-col {
        max-width: 48%;
        flex-basis: 48%;
    }

    .nav-links li a {
        font-size: 16px;
    }

    .banner-image::after {
        display: none;
    }

    .logo {
        width: 141px;
    }

    .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: 13px;
        font-weight: 500;
        padding: 5px 6px !important;
    }


    .banner-section {
        height: auto;
    }

    .banner-image {
        height: auto;
        margin-top: 50px;
    }

    .banner-image img {
        height: 40vh;
    }

    .patch-text ul li {
        line-height: 26px;
    }

    .patch-text {
        margin-top: 10px;
    }

    .slider-dots {
        left: 37%;
    }

    .banner-form,
    .banner-patch {
        position: unset;
        width: 95%;
        margin: 25px auto;
    }

    .banner-form-call {
        background-color: #9c7c44;
        color: #fff;
    }

    .mobile-input input {
        border-bottom: none !important;
    }

    .banner-form p {
        color: #9c7c44;
    }

    .details {
        margin: 10px 0 20px;
    }

    .overview-flex-col {
        padding: 20px 0;
    }

    .overview-flex-col.left {
        display: none;
    }

    .details-flex-col {
        max-width: 100%;
        flex-basis: 100%;
        border: none;
        margin: 0;
        border-bottom: 1px solid #808080;
        display: flex;
        align-items: center;
    }

    .details-flex-col img {
        margin-right: 10px;
    }

    .details-flex-col h3 {
        margin-right: 10px;
    }


    .highlights-flex-col.left {
        height: 300px;
        max-width: 100%;
        flex-basis: 100%;
    }

    .highlights-flex-col {
        padding: 0 0 10px 0;
    }

    .highlights-flex-col ul {
        padding: 20px 10px;
    }

    .payment-plan-table h3,
    h2 {
        text-align: center;
    }

    .virtual-tour-flex {
        width: 100%;
    }

    .contact-us-flex-col,
    .highlights-flex-col {
        max-width: 100%;
        flex-basis: 100%;
    }

    .contact-us-flex-col {
        margin: 10px 0;
    }

    .contact-us {
        padding: 0;
    }

    .payment-plan-btn,
    #AmenitiesBtn,
    .common-button {
        margin: 15px 10px;
    }

    .payment-plan-table h3,
    .gallery h2,
    .amenities h2 {
        background-color: #9c7c44;
        padding: 10px;
        color: #fff;
    }

    .gallery-flex {
        margin-top: 0;
    }

    .amenities {
        padding: 0;
    }

    .amenities-headline {
        padding: 10px;
    }

    .enquire-popup-form {
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery {
        padding: 0px;
    }

    .gallery,
    .virtual-tour-flex-text h3,
    .floor-plan-flex,
    .price-list-flex {
        margin-top: 10px;
    }

    .payment-plan-flex-right,
    .payment-plan-flex-left {
        max-width: 100%;
        flex-basis: 100%;
    }

    .floor-plan-images-flex {
        padding: 30px 10px 20px 10px;
    }

    .payment-plan-table {
        width: 100%;
        margin: 0px;
        padding: 0 0 20px 0;
        margin-top: 25px;
    }

    .payment-plan-flex-left {
        background-color: transparent;
    }

    .payment-plan-btn {
        margin-top: 25px;
    }

    .payment-plan-table {
        background-color: #2a2a2a;
    }

    .payment-plan-table table {
        width: 98%;
        margin: auto;
    }

    .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%;
    }

    .virtual-btn {
        width: 60%;
    }

    .virtual-tour {
        margin: 30px 0 15px;
    }

    .keywords {
        margin-top: 15px;
    }

    .gallery-flex-col {
        max-width: 49%;
        flex-basis: 49%;
        margin: 3px auto;
        height: 190px;
    }

    .overview-flex-col .common-button {
        margin: 15px 10px;
    }

    .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,
    .footer-flex-col-mid iframe {
        height: 280px;
    }

    .footer-flex {
        margin-top: 10px;
        flex-direction: column-reverse;
    }

    .footer-flex-col-right p {
        margin-top: 10px;
    }

    .body {
        padding: 0;
    }
}