* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brown: #ed8438;
    --green: #ffcc70;
    --blue: #ff6f61;
}

body {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #000;
    transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Crimson Text', serif;
    color: #000;
}

.rupee {
    font-family: sans-serif;
}

.h-auto {
    min-height: unset !important;
    height: auto;
}

h2 {
    font-size: 46px;
}

h3 {
    font-size: 34px;
}

a {
    text-decoration: none;
}

ul.list-styled {
    list-style: none;
    padding-left: 0;
}

img.object-cover {
    object-fit: cover;
}

.bg_green {
    background-color: var(--green);
}

.bg_brown {
    background-color: var(--brown);
}

.bg_blue {
    background-color: var(--blue);
}

.text_green {
    color: var(--green);
}

.text_brown {
    color: var(--brown);
}

.text_blue {
    color: var(--blue);
}

main {
    background: #f7f1e6;
}

header {

    z-index: 9;
    background: #ffffff;
    backdrop-filter: blur(2px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
}

header nav .navbar-brand img {
    height: 72px;
}

header nav.navbar-expand-lg .navbar-nav .nav-link {
    color: #000000;
    font-weight: 500;
    padding: 12px 20px;
}

/* .lone_btn,
.theme_btn {
    margin: 0px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 1.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 50px;
    display: inline-block;
    background-image: linear-gradient(to right, #5a6d96,  #a3acc8, #ffffff);
    color: rgb(255, 255, 255);
    font-size: 15px;
}

.lone_btn:hover,
.theme_btn:hover {
    background-position: right center;
    color: #000000;
    text-decoration: none;
} */
.btn-gradient-fill {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 45px;
    text-transform: uppercase;
    font-size: 15px;
    color: #fff;
    border: none;
    border-radius: 50px;
    overflow: hidden;
    background: linear-gradient(90deg, #ed8438 0%, #ff6f61 50%, #ffcc70 100%);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.6s ease, color 0.4s ease;
}

.btn-gradient-fill i {
    transition: transform 0.4s ease, color 0.4s ease;
}

/* Hover states */
.btn-gradient-fill:hover {
    background-position: right center;
    color: #000;
}

.btn-gradient-fill:hover i {
    transform: translateX(6px);
    color: #000;
}


.banner_wrapper {
    height: 100vh;
    background: #000 url('../sobha-town-park-images/banner\ 2.webp') no-repeat left top/ cover;
    padding-bottom: 100px;
    /*    animation: kenburns-bg-zoom 15s ease-in-out forwards;*/
}

@keyframes kenburns-bg-zoom {
    0% {
        background-size: 110%;
        background-position: center;
    }

    100% {
        background-size: 150%;
        /* Zoom in more */
        background-position: 48% 48%;
        /* Optional slight pan */
    }
}

.banner_wrapper .overlay {
    background: rgba(0, 0, 0, 0.4);
}

.banner_wrapper h1 {
    line-height: 1.2;
    font-size: 64px;
    font-weight: 500;
}

.banner_wrapper p {
    line-height: 1.6;
    font-size: 16px !important;
}

.banner_wrapper .blurred {
    background: #ffffff1f;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    font-size: 15px;
}

.banner_wrapper .location {
    border-left: 1px solid #ffffff75;
    margin-left: 15px;
    padding-left: 15px;
}

.banner_wrapper .location i {
    color: #dbc478;
}


.theme_btn:hover {
    scale: 1.08;
}

.line_btn {
    background: #fff0;
    border: 1px solid #fff;
    color: #fff;
    backdrop-filter: blur(2px)
}

.line_btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    scale: 1;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.b_features {
    position: absolute;
    bottom: 30px;
    width: 100%;
}

.b_features_box {
    color: #fff;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.b_features_box span.count {
    font-size: 20px;
}

.b_features_box:hover {
    background: rgb(177 142 78 / 75%);
}

.overview-icons {
    background: linear-gradient(90deg, #ed8438 0%, #ff6f61 50%, #ffcc70 100% 100%);
    border-radius: 8px 8px 8px 8px;
    overflow: hidden;
    padding-top: 13px !important;
    padding-right: 15px !important;
    padding-bottom: 10px !important;
    padding-left: 15px !important;
    box-shadow: 10px 10px 0px 0px rgb(255 184 184 / 30%);
    transition: .4s;
}

.overview-icons:hover {
    transition: .4s;
    transform: translateY(-10px);
}

.overview-icons p {
    font-size: 20px;
    color: white;
    margin-bottom: 0px;
}

.overview-icons img {
    width: 20%;
    height: 100%;
}


.notice {
    padding: 50px;
    border-radius: 30px;
    color: #fff;
    background-image: linear-gradient(to right, #60a734 0%, #b84f8e 51%, #02aab0 100%);
    line-height: 1.5;
}

.notice .theme_btn {
    background: #fff;
    color: #000;
}

.notice .theme_btn:hover {
    color: var(--brown);
}

.section {
    padding: 100px 0px;
    min-height: 500px;
}

.sec_title {
    font-size: 20px;
    color: var(--brown);
    font-weight: 500;
    margin-bottom: 12px;
    display: inline-block;
}

.grd_text {
    background: linear-gradient(to right, #60a734, #b84f8e);
    background: -webkit-linear-gradient(0deg, #60a734, #b84f8e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overview img {
    border-radius: 25px;
}

.overview img.img02 {
    height: 300px;
    margin-top: 30px;
}

.overview_list li:hover i {
    background: #ad4f85;
    outline: 1px solid #ad4f85;
    color: #fff;
}


.highlights,
.offer {
    background: url('../images/Assetz-Codename-Micropolis-4.jpg') no-repeat center / cover;
    background-attachment: fixed;
    min-height: 200px;
}

.highlights .overlay {
    background: #4f4432;
    opacity: 1;
}

.highlights .col-lg-10 .row {
    row-gap: 40px;
}

.highlights .h_box {
    width: 90%;
    margin: auto;
}

.highlights .h_box i {
    background: #fff;
    border-radius: 50%;
    --size: 90px;
    width: var(--size);
    height: var(--size);
    margin: auto;
    margin-bottom: 20px;
    color: #6d5e44;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlights .h_box p {
    margin-bottom: 0px;
}

.offer .overlay {
    background: #000;
    opacity: 0.7;
}

.offer h2.title {
    font-size: 60px;
}

.floor_plans {
    background: url('../images/demo-3-pattern.png') no-repeat center bottom / cover;
}

.fp_box {
    padding: 40px 40px;
    transition: all 0.3s;
    background: #ffffff;
    color: #000000;
    border-radius: 20px;
    box-shadow: 9px 11px 14px 0 #00000009;
}

.fp_box .text {
    font-size: 14px;
}

.count {
    font-size: 16px;
    color: #fff;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
    text-align: start;
    margin: 5px 0px;
    display: inline-block;
}


.fp_box p.type {
    font-size: 30px;
    font-weight: 700;
    margin: 12px 0 20px;
    color: #000000
}

.fp_box li {
    margin-bottom: 12px;
}

.fp_box li i {
    color: var(--brown);
}

.fp_box .theme_btn {
    margin-top: 30px;
    background-image: linear-gradient(to right, #5a6d96, #a3acc8, #ffffff);
    padding: 15px 25px !important;
}

.fp_box .theme_btn:hover {
    background-image: linear-gradient(to right, #5a6d96, #a3acc8, #ffffff);
}

/*
.fp_box.active { background: #4f4432; color: #fff;}
.fp_box.active .type { color: #fff;}
*/
.master-plane-sec img {
    filter: blur(2px);
}



.amenities_list .row {
    row-gap: 30px;
}

.a_box {
    background: #ffffff;
    padding: 25px 18px;
    border-radius: 20px;
    color: black;
    font-weight: 500;
    font-size: 16px;
    border: 1px solid #f8f9fa;
    transition: all 0.3s;
}

.a_box:hover {
    box-shadow: 0 12px 20px -8px #0000003d;
}

.a_box img {
    width: 60px;
    margin-bottom: 20px;

}

.location-advantage-sec {
    background-image: url(../sobha-town-park-images/banner\ 3.webp);
    background-size: cover;

}

.location-advantage-sec h2,
.location-advantage-sec h3,
.location-advantage-sec p {
    color: white;
}

.location-advantage-sec .text-dark {
    color: white !important;
}

.location-advantage-sec p {
    width: 85%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(2px);
    background: rgb(0 0 0 / 5%);
    transition: all 0.3s;
    text-align: start;
    display: inline-block;
}




.e_gallery .col-sm-6 {
    padding: 0;
}

.e_gallery .col-sm-6 a[data-fancybox="gallery"] {
    background: var(--brown);
    display: block
}

.e_gallery img {
    height: 320px;
    object-fit: cover;
    width: 100%;
    transition: all 0.3s;
}

.e_gallery a:hover img {
    opacity: 0.5
}



.CTA {
    background: #f7f1e6;
}

.CTA .location_adv {
    background: var(--brown);
    padding: 20px;
}

.CTA .location_adv ul {
    row-gap: 20px;
}

.CTA .location_adv li {
    flex: 50% 0 0;
}

.CTA .location_adv li i {
    margin-top: 5px;
}

.form_wrapper .form-control {
    background: #ffffff;
    color: #000;
}

.form_wrapper .form-control:not(textarea) {
    height: 52px;
}

.form_wrapper .form-control {
    border: 1px solid #ffffff24;
}

.form_wrapper .form-control:focus {
    border: 2px solid var(--brown);
    box-shadow: none;
}

.form_wrapper .form-control::placeholder {
    color: #a5a5a5;
    font-size: 15px;
}

.form-label {
    margin-bottom: 4px;
    font-size: 14px;
}

.hedder-form {
    padding: 40px 30px 10px 30px !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(30px);
}

.hedder-form h3 {
    color: rgb(255, 255, 255) !important;
}

.form_wrapper {
    background: #0000;
    backdrop-filter: blur(60px);
    padding: 60px;
    border-radius: 00px;
    /*    box-shadow: 0 8px 30px 0 #00000012;*/
}

.modal {
    --bs-modal-width: 65%;
}

.modal-content {
    background: url(../sobha-town-park-images/banner\ 4.webp) no-repeat center / cover;
    border: none;
    overflow: hidden;
}

.modal-content .form_wrapper {
    width: 50%;
    margin-left: auto;
    background: #00000087
}

.modal-content .btn-close {
    right: 8px;
    top: 8px;
    display: block;
    opacity: 1;
    position: absolute;
    z-index: 2;
}


.request-btn {
    position: fixed;
    background: var(--brown);
    right: -44px;
    top: 46%;
    transform: rotate(90deg) translateY(-50%);
    z-index: 2;
    color: #fff;
    padding: 12px 25px;
    border-radius: 0px;
    transition: all 0.3s linear;
    font-size: 18px;
}

.request-btn:hover {
    background: #121212;
    color: #fff;
}

.Sideform {
    width: 375px;
    background: #000000a6;
    backdrop-filter: blur(15px);
    padding: 25px 25px;
    position: fixed;
    right: -380px;
    top: 55%;
    transform: translateY(-50%);
    border-radius: 10px;
    transition: all 0.3s linear;
    z-index: 12;
}

.Sideform.active {
    right: 0;
}

.Sideform .close {
    color: #000;
    position: absolute;
    top: -12px;
    left: -15px;
    background: var(--brown);
    height: 30px;
    width: 30px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    box-shadow: 0 0 15px #00000047;
    opacity: 0;
}

.Sideform.active .close {
    opacity: 1;
}

.connect-icon {
    position: fixed;
    cursor: pointer;
    right: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    z-index: 99;
}

.connect-icon img {
    width: 55px;
    height: 55px;
    cursor: pointer;
}

.footer {
    padding: 90px 0 0px;
}

.f_logo {
    height: 100px;
}

.disclaimer {
    padding: 30px;
    background: #ffffff1f;
    border-radius: 20px;
    line-height: 1.6;
    font-size: 14px;
    font-weight: 300;
    margin: 40px auto;
}

.footer a.text_brown:hover {
    color: var(--brown);
}

.copyrights {
    border-top: 1px solid rgba(255, 255, 255, 0.50);
    padding: 30px;
    display: flex;
    justify-content: space-between;
}

.copyrights .container {
    display: flex;
    justify-content: center;
}


.page_title {
    height: 320px;
    padding-top: 80px;
}

.pp_content h2,
.pp_content h3 {
    font-size: 30px;
    font-weight: 600;
    padding-top: 15px;
}

.embassy-box-sec {
    transition: all 0.3s;
    background: #ffffff;
    border-radius: 20px;
    padding: 0px 0px 20px 0px;
    box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.embassy-box-sec img {
    border-radius: 20px;
}

.boxes-1 {
    padding: 20px;
}

.embassy-box-sec:hover img {
    transform: scale(1.05);
    transition: 0.4s;
}

@media (max-width: 1399px) {
    body {
        font-size: 15px;
    }

    .banner_wrapper h1 {
        font-size: 58px;
    }

    .banner_wrapper .theme_btn {
        padding: 15px 25px;
    }

    h2 {
        font-size: 40px;
    }

    .modal-content .form_wrapper {
        padding: 30px;
    }

    .form_wrapper h3.title {
        font-size: 28px;
    }

    .disclaimer {
        font-size: 13px;
    }

    footer img {
        max-height: 75px;
    }

    .form_wrapper .form-control:not(textarea) {
        height: 45px;
    }

    .advantages ul li.col {
        font-size: 14px;
        padding: 12px 14px;
    }

    .advantages ul li span.d-inline-block {
        padding: 2px 8px;
        font-size: 11px;
        margin-bottom: 5px;
        font-weight: 500;
    }
}

@media (max-width: 1199px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 94%;
    }

    .banner_wrapper h1 {
        font-size: 50px;
    }

    .banner_wrapper p.blurred {
        font-size: 14px;
    }

    .banner_wrapper p.fs-4,
    .fs-4 {
        font-size: 14px !important;
    }

    .fs-5 {
        font-size: 1.05rem !important;
    }

    .modal {
        --bs-modal-width: 880px;
    }

    .request-btn,
    .sec_title {
        font-size: 16px;
    }

    .btn-gradient-fill {
        padding: 15px;
        font-size: 14px;
    }

    #hero_banner .banner_wrapper {
        background-size: 140%;
    }

    @keyframes kenburns-bg-zoom {
        0% {
            background-size: 140%;
        }

        100% {
            background-size: 180%;
        }
    }

    .overview_list li {
        margin-top: 18px;
    }

    .h_box {
        padding: 18px;
    }

    h2 {
        font-size: 34px;
    }

    .e_gallery img {
        height: 250px;
    }

    .form_wrapper {
        padding: 30px;
    }

    .advantages ul {
        gap: 20px;
    }

    .advantages ul li.col {
        font-size: 12px;
        padding: 10px;
    }

    .section {
        padding: 80px 0px;
        min-height: 420px;
    }
}

@media (max-width: 991px) {
    section {
        min-height: 200px;
    }

    .banner_wrapper h1 {
        font-size: 6.2vw;
    }

    .b_features_box span.count,
    .fp_box p.type {
        font-size: 20px;
    }

    .overview img.object-cover {
        margin-top: 30px;
        border-radius: 12px;
    }

    .highlights .row {
        row-gap: 30px;
    }

    .highlights .row:not(:last-child) {
        margin-bottom: 30px;
    }

    .advantages.col-md-12 img {
        width: 80%;
        margin: 0 auto 50px;
        display: block;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler {
        background: #fff;
        margin-left: auto;
        margin-right: 20px;
    }

    #hero_banner .banner_wrapper {
        background-size: cover;
        animation: none;
    }

    header.menu-open {
        backdrop-filter: blur(10px);
    }

    .e_gallery img {
        height: 24vw;
    }

    .a_box {
        font-size: 14px;
        padding: 20px 7px;
    }

    .a_box img {
        width: 45px;
        margin-bottom: 8px;
    }

    .marquee-slider {
        margin-top: 40px;
    }

    .offer h2.title {
        font-size: 38px;
    }

    .fp_box {
        padding: 50px 20px;
    }

    .fp_box .theme_btn {
        padding: 15px 25px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    h2 {
        font-size: 28px;
    }

    .banner_wrapper h1 {
        font-size: 32px;
    }

    .banner_wrapper p {
        font-size: 12px;
    }

    #hero_banner .banner_wrapper {
        flex-direction: column;
        height: auto;
        padding: 130px 0 60px;
    }

    .banner_wrapper .blurred {
        padding: 3px 10px;
        font-size: 12px;
    }

    .b_features_box {
        padding: 12px;
    }

    .b_features {
        position: static;
        margin-top: 30px;
    }

    .b_features .row {
        row-gap: 25px;
    }

    .b_features_box span.count {
        font-size: 15px;
    }

    .banner_wrapper .location {
        margin-left: 8px;
        padding-left: 10px;
    }

    .banner_wrapper .d-flex {
        flex-direction: column;
    }

    .advantages.col-md-12 img,
    .highlights .h_box {
        width: 100%;
    }

    .advantages ul li.col {
        flex: 100% 0 0;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .marquee-slider {
        margin-top: 30px;
    }

    button[type="submit"].theme_btn {
        margin: auto;
        display: block;
    }

    .btn-gradient-fill.lone_btn {
        display: none;
    }

    .navbar-toggler {
        margin-right: 0;
    }

    header .container-fluid {
        padding: 0;
    }

    .connect-icon img {
        width: 45px;
        height: 45px;
    }

    .fs-5 {
        font-size: 0.88rem !important;
    }

    .theme_btn {
        padding: 15px 25px;
    }

    .Sideform {
        width: 94%;
        padding: 25px;
        right: -100%;
    }

    .connect-icon {
        right: 12px;
        bottom: 54px;
    }

    .form_wrapper {
        padding: 20px;
    }

    .disclaimer {
        font-size: 12px;
        padding: 15px;
        border-radius: 14px;
    }
    .connect-icon{
        display: none;
    }
    .footer {
        padding: 50px 0 40px;
    }

    .form_wrapper h3.title {
        font-size: 24px;
        text-align: center;
    }

    .modal-content .form_wrapper {
        width: 100%;
    }

    .h_box {
        padding: 2px;
    }

    .offer h2.title {
        font-size: 34px;
    }

    .floor_plans .row {
        row-gap: 20px;
    }

    .fp_box p.type {
        font-size: 26px;
    }

    .CTA .location_adv.position-absolute {
        position: static !important;
    }

    .e_gallery .col-sm-6 {
        padding: 6px;
    }

    .page_title {
        height: 250px;
        padding-top: 80px;
    }

    .pp_content h2,
    .pp_content h3 {
        font-size: 22px;
    }
}

@media(min-width:500px) and (max-width:992px) {
    .overview-icons img {
        width: 80px;
        height: 100%;
    }
}

@media (max-width:430px) {
    .location-advantage-sec p {
        width: 100% !important;
    }

    .overview-icons p {
        font-size: 17px;
    }
}

.sticky_contact {
    display: none;
}

    @media screen and (max-width: 992px) {
    .sticky_contact {
        display: block;
        background: linear-gradient(90deg, #ed8438 0%, #ff6f61 50%, #ffcc70 100%);
        width: 100vw;
        position: fixed;
        left: 0;
        bottom: -10px;
        z-index: 9;
        padding: 10px 0px;
    }
        .sticky_contact ul.list-styled li {
        margin: 0 24px;
        padding: 3px 5px;
        border: 0;
        font-size: 15px;
        min-width: 108px;
        text-align: center;
        list-style: none;
        margin-bottom: 0;
        text-decoration: none;
    }
     .sticky_contact ul {
        justify-content: center !important;
    }
    .sticky_contact ul.list-styled li:first-child {
        border-right: 1px solid #fff;
        padding-right: 30px;
        margin-right: 0;
    }
}
