/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800;9..40,900;9..40,1000&display=swap');

/* General */

:root {
    --beige: #CDB27E;
    --black-chinese-two: #141414;
    --black-chinese: #171717;
    --black-chinese-three: #161616;
    --black-chinese-four: #181818;
    --black-chinese-five: #121212;
    --black-four: #212121;
    --black-five: #201F1F;
    --black-six: #232323;
    --black-smoky: #0D0d0d;
    --black-three: #383838;
    --black-seven: #272727;
    --black-two: #1c1c1c;
    --black: #000000;
    --blue: #2AA6FF;
    --dark: #1B1B1B;
    --dark-gray: #5A5A5A;
    --dark-vanilla: #CCBDA2;
    --gray-light: #D4D4D4;
    --gray-light-two: #d2d2d2;
    --gray-three: #aaaaaa;
    --gray-five: #dddddd;
    --gray-four: #767676;
    --gray-two: #808080;
    --gray-six: #424242;
    --gray: #989898;
    --gray-light-three: #C4C4C4;
    --gray-light-four: #A8A8A8;
    --green: #00E842;
    --green-two: #4BE082;
    --oxford-blue: #002642;
    --primary: #C6A66C;
    --red: #FF2A2A;
    --secondary: #2b2b2b;
    --silver: #A6A6A6;
    --tan: #D6BF97;
    --white: #ffffff;
    --white-two: #F4F4F4;
}

html {
    font-size: 62.5%;
}

body {
    background: var(--secondary);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
p {
    margin: 0;
}

a {
    text-decoration: none;
}

.mb-20 {
    margin-bottom: 2rem;
}

.mt-20 {
    margin-top: 2rem;
}

.mt-50 {
    margin-top: 5rem;
}

.mb-50 {
    margin-bottom: 5rem;
}

.mb-60 {
    margin-bottom: 6rem;
}

.btn-control {
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}

.my-50 {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.section_my {
    margin: 6rem 0;
}

.bg-bl-c {
    background: var(--black-chinese-four);
}

@media (max-width:1500px) {
    .ms-lg-60 {
        margin-left: 6rem;
    }
    .me-lg-60 {
        margin-right: 6rem;
    }
    .mx-lg-60 {
        margin-right: 6rem;
        margin-left: 6rem;
    }
    .img-lg-ty {
        transform: translateY(4rem);
    }
    .section_my {
        margin: 10rem 0;
    }
}

@media screen and (min-width:1200px) {
    /* .ms-xl-60 {
        margin-left: 6rem;
    } */
    .me-xl-60 {
        margin-right: 6rem;
    }
}


/* Topbar */

.topbar {
    padding: 1.4rem 0 0;
}

.topbar .dropdown-item.active,
.topbar .dropdown-item:active {
    background: var(--black);
}

.topbar .topbar_social {
    align-items: center;
    display: flex;
    gap: 5rem;
}

.topbar .topbar_lang .btn-secondary {
    background: transparent;
    border-radius: 0;
    border: none;
    outline: none;
    padding: 0;
}

.topbar .topbar_lang .btn-secondary .flag_text,
.topbar .topbar_lang .dropdown-menu .flag_text {
    font-size: 1.6rem;
    margin-left: 0.8rem;
}

.topbar .topbar_content {
    display: flex;
    align-items: center;
}

.topbar .topbar_content .phone_box a {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 400;
}


/* Navbar */

.navbar {
    margin-top: 3rem;
}

.navbar .navbar-toggler {
    border: 0.1rem solid var(--white);
}

.navbar .navbar-toggler .navbar-toggler-icon {
    filter: invert(1);
}

.cross-icon {
    display: none;
}


/* Show the cross icon when the menu is expanded */

.navbar-toggler[aria-expanded="true"] #togglerIcon {
    display: none;
}

.navbar-toggler[aria-expanded="true"] .cross-icon {
    display: block;
    font-size: 1.8rem;
}

.navbar .navbar-nav {
    gap: 1rem;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.32px;
    padding: 0;
    text-transform: capitalize;
}

.navbar .navbar-nav .nav-item .nav-link:hover {
    color: var(--primary);
}

.navbar .navbar-nav .nav-item .nav-link.active {
    color: var(--primary);
    font-weight: 700;
}

.navbar .navbar-nav .nav-item .dropdown-menu {
    border-radius: 0;
    text-align: center;
    border-color: var(--beige);
    padding: 0.7rem 0.3rem 0;
    background: var(--black-smoky);
}

.navbar .navbar-nav .nav-item .dropdown-item {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.navbar .navbar-nav .nav-item .dropdown-item:active,
.navbar .navbar-nav .nav-item .dropdown-item:focus {
    background: var(--beige);
    color: var(--black);
}

.navbar .navbar-nav .nav-item .dropdown-item:hover {
    background: var(--beige);
    color: var(--black-smoky);
}

.navbar .navbar-nav .nav-item .dropdown-toggle::after {
    border: none;
    background: url('../images/arrow_down.png') center no-repeat;
    background-size: cover;
    width: 1.2rem;
    height: 0.6rem;
    vertical-align: middle;
}

.navbar .btn {
    border-radius: 1rem;
    border: 1.9px solid var(--beige);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1.2rem 0;
    text-align: center;
}

.navbar .btn.btn-list {
    background: transparent;
    color: var(--beige);
    width: 12rem;
}

.navbar .btn.btn-login {
    background: var(--beige);
    color: var(--black-smoky);
    width: 9.5rem;
}

.navbar .btn.btn-list:hover {
    background: var(--beige);
    color: var(--black-smoky);
}

.navbar .btn.btn-login:hover {
    background: transparent;
    color: var(--beige);
}

@media screen and (min-width:1200px) {
    .navbar .navbar-nav {
        gap: 1.4rem;
    }
    .navbar .navbar-nav .nav-item .dropdown-menu {
        text-align: start;
    }
    .navbar .navbar-nav .nav-item .nav-link {
        font-size: 1.4rem;
    }
}


/* Hero */

.hero {
    margin-top: 4rem;
}

.hero .hero_content {
    border-radius: 4rem;
    padding: 9rem 1rem 4.5rem;
}

.hero .hero_content.bg_hero_content {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 25.46%, rgba(0, 0, 0, 0.00) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0.13) 17.65%, rgba(255, 255, 255, 0.00) 89.3%), url('../images/bg_hero.png') top center no-repeat;
    background-size: cover;
}

.hero .hero_content.bg_property_content {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0.25%, rgba(0, 0, 0, 0.50) 100.2%, rgba(0, 0, 0, 0.00) 169.65%), linear-gradient(90deg, rgba(255, 255, 255, 0.13) 17.65%, rgba(255, 255, 255, 0.00) 89.3%), url('../images/bg_property.png') center no-repeat;
    background-size: cover;
}

.hero .hero_content.bg_contact_content {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(250deg, #C6A66C -2.82%, rgba(200, 167, 106, 0.85) 102.25%, #A4A3A2 102.26%), url("../images/bg_contact.png") center left no-repeat;
    background-size: cover;
    padding: 0;
    height: 100%;
}

.hero .hero_content.bg_services_content {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0.25%, rgba(0, 0, 0, 0.30) 49.16%, rgba(0, 0, 0, 0.00) 169.65%), linear-gradient(90deg, rgba(255, 255, 255, 0.13) 17.65%, rgba(255, 255, 255, 0.00) 89.3%), url("../images/bg_services.png") center no-repeat;
    background-size: cover;
    padding: 15rem 1.2rem;
}

.hero .hero_content.bg_area_content {
    background: linear-gradient(1deg, rgba(0, 0, 0, 0.50) 0.8%, rgba(0, 0, 0, 0.50) 64.56%, rgba(0, 0, 0, 0.00) 202.61%), linear-gradient(90deg, rgba(255, 255, 255, 0.13) 17.65%, rgba(255, 255, 255, 0.00) 89.3%), url("../images/bg_contact.png") center no-repeat;
    background-size: cover;
    padding: 15rem 1.2rem;
}

.hero .hero_content.bg_about_content {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0.25%, rgba(0, 0, 0, 0.40) 100.2%, rgba(0, 0, 0, 0.00) 169.65%), linear-gradient(90deg, rgba(255, 255, 255, 0.13) 17.65%, rgba(255, 255, 255, 0.00) 89.3%), url('../images/bg_about.png') center no-repeat;
    background-size: cover;
}

.hero .hero_content .hero_box .hero_title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 500;
    line-height: 116.7%;
    margin-bottom: 1rem;
}

.hero .hero_content.bg_contact_content .hero_box .hero_title {
    color: var(--black-four);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 116.7%;
    margin-bottom: 1rem;
}

.hero .hero_content.bg_contact_content .emmar_sub {
    color: var(--black-four);
    font-size: 2rem;
    font-weight: 500;
    text-transform: capitalize;
}

.hero .hero_content.bg_contact_content .developers_meta .content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 1rem;
}

.hero .hero_content.bg_contact_content .developers_meta .content:last-of-type {
    margin-bottom: 0;
}

.hero .hero_content.bg_contact_content .developers_meta .title {
    color: var(--black-four);
    font-size: 1.6rem;
    font-weight: 500;
}

.hero .hero_content.bg_contact_content .developers_meta .text {
    color: var(--black-four);
    font-size: 2rem;
    font-weight: 600;
}

.hero .hero_content .hero_box .hero_desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 169.2%;
    margin-bottom: 4rem;
}

.hero .hero_content .hero_box .search_box {
    background: var(--black-smoky);
    border-radius: 1.5rem;
    box-shadow: 0px 2rem 4rem 0px rgba(0, 0, 0, 0.10);
    margin-bottom: 4rem;
    padding: 2rem;
}

.hero .search_box .select_box {
    align-items: center;
    background: var(--secondary);
    border-radius: 2rem;
    display: flex;
    padding: 0.4rem 1.2rem;
}

.hero .search_box .select_box .form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--white);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: url('../images/angle_down.png');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.8rem 0.6rem;
    border: none;
    border-radius: 0;
}

.hero .search_box .select_box .form-select option {
    color: var(--secondary);
}

.hero .search_box .select_box .form-select:focus {
    box-shadow: none;
}

.hero .search_box .form-control {
    background: var(--secondary);
    border-radius: 2rem;
    border: none;
    color: rgba(255, 255, 255, 0.60);
    font-size: 1.4rem;
    font-weight: 400;
    padding: 0.8rem 2.4rem;
}

.hero .search_box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.60);
}

.hero .search_box .form-control:focus {
    box-shadow: none;
}

.hero .search_box .result_count {
    color: var(--white);
    font-size: 2rem;
    font-weight: 500;
}

.hero .search_box .result_text {
    color: var(--gray);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.hero .search_box .btn-search {
    border-radius: 1rem;
    background: var(--beige);
    color: var(--black-smoky);
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 183.2%;
    padding: 0.4rem 2.4rem;
}

.hero .hero_content .stat_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero .hero_content .stat_box .stats {
    width: 18rem;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.50);
    padding-bottom: 1rem;
}

.hero .hero_content .stat_box .stats:last-of-type {
    border-right: none;
}

.hero .hero_content .stat_box .number {
    color: var(--beige);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero .hero_content .stat_box .text {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 400;
    text-transform: capitalize;
}

.hero .hero_content .irs--round .irs-bar {
    background: var(--beige);
}

.hero .hero_content .irs--round .irs-handle {
    border: 4px solid var(--beige);
    background: var(--black-smoky);
    width: 1.6rem;
    height: 1.6rem;
    top: 3rem;
}

.hero .hero_content .irs-from,
.hero .hero_content .irs-to {
    top: 0.4rem;
}

.hero .hero_content .irs--round {
    margin-bottom: 2rem;
}

.hero .hero_content .irs--round .irs-from,
.hero .hero_content .irs--round .irs-to,
.hero .hero_content .irs--round .irs-single {
    background: var(--beige);
    color: var(--black-smoky);
}

.hero .hero_content .irs--round .irs-from:before,
.hero .hero_content .irs--round .irs-to:before,
.hero .hero_content .irs--round .irs-single:before {
    border-top-color: var(--beige);
}

.hero .hero_content .irs--round .irs-line {
    background: var(--secondary);
}

.hero .irs-min,
.hero .irs-max {
    display: none;
}

@media screen and (min-width:768px) {
    .hero .search_box .border-e {
        border-right: 0.2rem solid var(--black-chinese);
    }
    .hero .hero_content .stat_box {
        flex-direction: row;
        gap: 3.2rem;
    }
    .hero .hero_content .stat_box .number {
        margin-bottom: 1.4rem;
    }
    .hero .hero_content .stat_box .stats {
        border-bottom: none;
        border-right: 0.1rem solid rgba(255, 255, 255, 0.50);
        padding-bottom: 0;
    }
    .hero .hero_content.bg_contact_content .border-e {
        border-right: 0.1rem solid rgba(0, 0, 0, 0.30);
    }
    .hero .hero_content.bg_contact_content {
        height: 65vh;
    }
}

@media screen and (min-width:992px) {
    .hero .hero_content {
        padding: 9rem 0 4.5rem;
    }
    .hero .hero_content .hero_box {
        margin-left: 6rem;
    }
    .hero .hero_content .hero_box .hero_title,
    .hero .hero_content.bg_contact_content .hero_box .hero_title {
        font-size: 5rem;
    }
    .hero .hero_content .irs--round {
        margin-bottom: 0;
    }
    .hero .hero_content.bg_contact_content .developers_meta .content {
        justify-content: start;
    }
}


/* Card */

.card.property {
    background: none;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease-in-out;
}

.card.property:hover {
    transform: translateY(1rem);
}

.card.property .card-title {
    color: var(--gray-light);
    font-size: 2rem;
    font-weight: 500;
}

.card.property .card-text {
    color: var(--gray-light);
    font-size: 1.6rem;
    font-weight: 400;
    opacity: 0.8;
}

.card.property .card-footer {
    border: none;
}

.card.property .card-footer .price {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
}

.card.property .card-footer .area {
    border-radius: 5.281px;
    background: rgba(255, 255, 255, 0.10);
    padding: 0.6rem 0.9rem;
    color: var(--silver);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.037px;
}


/* Card Second */

.card.propertySecond {
    background: none;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease-in-out;
}

.card.propertySecond:hover {
    transform: translateY(1rem);
}

.card.propertySecond .card-title {
    color: var(--gray-light);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.card.propertySecond .card-text {
    color: var(--gray-two);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.7rem;
}

.card.propertySecond .card-price {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.card.propertySecond .property_feature .features {
    color: var(--gray-light);
    font-size: 1.6rem;
    font-weight: 400;
    vertical-align: middle;
    margin-left: 1rem;
}

.card.propertySecond .card-header {
    border: none;
    position: relative;
    padding: 0;
}

.card.propertySecond .property_tag {
    align-items: center;
    border-radius: 2rem;
    display: flex;
    font-size: 1.6rem;
    font-weight: 500;
    gap: 1rem;
    padding: 1rem 2rem;
    text-transform: capitalize;
    position: absolute;
    bottom: 3rem;
    left: 3rem;
}

.card.propertySecond .property_tag.popular {
    background: var(--black-two);
    color: var(--red);
}

.card.propertySecond .property_tag.new {
    background: var(--oxford-blue);
    color: var(--blue);
}

.card.propertySecond .property_tag.disounted {
    background: var(--black-chinese-two);
    color: var(--green);
}


/* Card Testimonial */

.card.cardTestimonial {
    border: none;
    border-radius: 3rem;
    background: var(--black-smoky);
    padding: 3rem;
    max-width: 26rem;
}

.card.cardTestimonial .img-quote {
    height: auto;
    max-width: 4rem;
}

.card.cardTestimonial .card-body {
    padding: 0;
}

.card.cardTestimonial .card-footer {
    padding: 2rem 0;
    background: none;
    border-color: var(--black-three);
}

.card.cardTestimonial .card-text {
    color: var(--gray-light);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 3.2rem;
    margin: 0.5rem 0 1.4rem;
}

.card.cardTestimonial .card-footer .person {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card.cardTestimonial .card-footer .person .name {
    color: var(--gray-light);
    font-size: 1.5rem;
    font-weight: 500;
}

.card.cardTestimonial .card-footer .person .designation {
    color: var(--gray-four);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}


/* Card Blog */

.card.cardBlog {
    border: none;
    border-radius: 3.4rem;
    background: none;
    overflow: hidden;
    position: relative;
}

.card.cardBlog .blog_date {
    border-radius: 0px 0px 1rem 1rem;
    background: var(--black-smoky);
    box-shadow: 4px 4px 15px 0px rgba(0, 0, 0, 0.25);
    position: absolute;
    top: 0;
    left: 5rem;
    padding: 1.2rem 1.5rem;
}

.card.cardBlog .blog_date .date {
    color: var(--gray-light);
    text-align: center;
    font-weight: 500;
    font-size: 1.4rem;
}

.card.cardBlog .blog_date .date span {
    color: var(--gray-two);
    text-transform: capitalize;
}

.card.cardBlog .card-footer {
    background: transparent;
    padding: 1rem 2rem 0 0;
    border: 0;
    text-align: end;
}

.card.cardBlog .card-footer img {
    height: auto;
    max-width: 4rem;
}

.card.cardBlog .card-title {
    color: var(--black-smoky);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.card.cardBlog .card-text {
    color: var(--black-smoky);
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.8;
}

.swiperBlog .swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: relative;
    bottom: 0 !important;
}

.swiperBlog .swiper-pagination {
    margin-top: 4rem;
}

.swiperBlog .swiper-pagination .swiper-pagination-bullet {
    background: rgba(250, 250, 250, 0.4);
    border: none;
    border-radius: 0;
    height: 0.2rem;
    opacity: 1;
    width: 4rem;
}

.swiperBlog .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--black-smoky);
}

.testimonial_wrapper,
.swiperTestimonial {
    position: relative;
}

.testimonial_wrapper .img-grad {
    height: auto;
    max-width: 100%;
    position: absolute;
    top: -3rem;
    left: -2rem;
}

.swiperTestimonial .swiperTestimonial .swiper-horizontal>.swiper-pagination-bullets,
.swiperTestimonial .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: auto;
    left: unset;
}

.swiperTestimonial .swiper-wrapper {
    padding: 3rem;
}

.swiperTestimonial .swiper-pagination {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    position: absolute;
    top: 40%;
    right: 0;
}

.swiperTestimonial .swiper-pagination .swiper-pagination-bullet {
    background: var(--gray-three);
    border: none;
    border-radius: 0;
    height: 0.2rem;
    opacity: 1;
    width: 4rem;
    transform: rotate(90deg);
}

.swiperTestimonial .swiper-pagination .swiper-pagination-bullet-active {
    background: var(--beige);
}

.swiperTestimonial .swiper-btn-next:after,
.swiperTestimonial .swiper-btn-prev:after {
    content: '';
}

.swiperTestimonial .swiper-btn-prev .swipe-arrow,
.swiperTestimonial .swiper-btn-next .swipe-arrow {
    height: auto;
    max-width: 4rem;
}

.swiperControls {
    display: none;
}

@media screen and (min-width:768px) {
    .card.cardTestimonial {
        max-width: 100%;
    }
    .swiperTestimonial {
        padding: 0 3rem 0 0;
    }
}

@media screen and (min-width:992px) {
    .card.cardTestimonial {
        max-width: 35rem;
    }
    .swiperControls {
        display: block;
        margin-top: 5rem;
    }
    .swiperControls button {
        background: transparent;
        border: none;
        margin-right: 1rem;
        padding: 0;
    }
    .swiperControls button:last-of-type {
        margin-right: 0;
    }
    .swiperControls button img {
        height: auto;
        max-width: 3rem;
    }
}

@media screen and (min-width:1200px) {
    .card.cardTestimonial {
        max-width: 47rem;
    }
}


/* Section Block */

.block {
    margin: 7rem 0;
}

.block .block_subtitle {
    color: var(--beige);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
}

.block .block_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.block .block_text,
.block .block_desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    font-weight: 400;
}

.block .block_link {
    color: var(--beige);
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: capitalize;
}

.block .img-arrow {
    height: auto;
    max-width: 3rem;
}

@media screen and (min-width:992px) {
    .block {
        margin: 13rem 0;
    }
    .block .block_subtitle {
        font-size: 2rem;
    }
    .block .block_title {
        font-size: 3.4rem;
    }
}


/* Town */

.town .town_main_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
}

.town .town_desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2rem;
    margin-bottom: 3rem;
}

.town .nav-pills .nav-link {
    border-radius: 0.7rem;
    border: 0.1rem solid var(--beige);
    color: var(--beige);
    font-size: 1.6rem;
    font-weight: 500;
}

.town .nav-pills .nav-link.active {
    background: var(--beige);
    color: var(--black-smoky);
}

.town .town-box {
    box-shadow: 4px 10px 30px 0px rgba(0, 0, 0, 0.06);
}

.town .town-box .img-town {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.town .town-box {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    max-height: 30rem;
    width: 100%;
}

.town .town-box::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
    width: 100%;
    height: 100%;
}

.town .town-box .content {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 1;
}

.town .town-box .content .town_title {
    color: var(--white);
    text-shadow: 2px 10px 30px rgba(0, 0, 0, 0.25);
    font-size: 4rem;
    font-style: normal;
    font-weight: 700;
    opacity: 0.6;
    mix-blend-mode: hard-light;
}

.town .town-box .content .town_text {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 500;
    text-transform: capitalize;
}
#exampleModalLabel {
    color: #000;
    text-align: center;
    align-items: center;
}

.modal-header {
    border-bottom: 0px;
}

.modal-header .modal-title {
    margin: auto;
    font-size: 18px;
}

.btn-search {
    border-radius: 1rem;
    background: #cdb27e;
    color: #000;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 183.2%;
    padding: 0.4rem 2.4rem;
}
@media screen and (min-width:992px) {
    .town .nav-pills .nav-link {
        padding: 1.5rem 3rem;
    }
    .town .town_main_title {
        font-size: 3.4rem;
    }
}


/* About Top */

.about_top .about_box {
    position: relative;
}

.about_top .about_box .img-gradient {
    display: none;
}

.about_top .about_box .rating_box {
    border-radius: 1rem;
    background: var(--black);
    padding: 1.2rem;
    text-align: center;
}

.about_top .about_box .rating_box .img-tick {
    margin-top: -4.5rem;
}

.about_top .about_box .rating_box .title {
    color: var(--gray-light);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 0.18px;
}

.about_top .about_box .rating_box .sub_title {
    color: var(--gray-two);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.04px;
    margin-top: 1.2rem;
    text-transform: capitalize;
}

.about_top .about_box .rating_box .reviews {
    color: var(--beige);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.04px;
}

.about_top .about_box .about_stats {
    border-radius: 1rem;
    background: var(--black-smoky);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0rem;
    align-items: center;
}

.about_top .about_box .about_stats .statOne,
.about_top .about_box .about_stats .statTwo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about_top .about_box .about_stats .count {
    color: var(--beige);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.12px;
}

.about_top .about_box .about_stats .item {
    color: var(--silver);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.04px;
    text-transform: capitalize;
}

.about_top .btn-learn {
    background: var(--beige);
    border-radius: 1rem;
    color: var(--black-smoky);
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    margin-top: 2rem;
    padding: 1rem 0;
    text-align: center;
    text-transform: capitalize;
    width: 18rem;
}

@media screen and (min-width:992px) {
    .about_top {
        margin-top: 18rem;
    }
    .about_top .about_box .about_stats {
        padding: 3rem;
        width: 90%;
        flex-direction: row;
        gap: 2.4rem;
        position: absolute;
        bottom: -5rem;
        left: 5%;
        z-index: 1;
    }
    .about_top .about_box .about_stats .count {
        font-size: 3rem;
    }
    .about_top .about_box .about_stats .item {
        font-size: 1.6rem;
    }
    .about_top .about_box .rating_box {
        padding: 2.5rem;
        position: absolute;
        top: -5rem;
        left: 6rem;
    }
    .about_top .about_box .rating_box .img-tick {
        margin-top: -7rem;
    }
    .about_top .about_box .rating_box .title {
        font-size: 4rem;
    }
    .about_top .about_box .img-gradient {
        display: block;
        height: auto;
        max-width: 100%;
        position: absolute;
        bottom: -5rem;
        right: -3rem;
    }
}

@media screen and (min-width:1140px) {
    .about_top .about_box .about_stats .count {
        font-size: 4rem;
    }
    .about_top .about_box .about_stats .item {
        font-size: 2rem;
    }
}


/* About Two */

.about_two .about_img_wrapper {
    position: relative;
}

.about_two .about_img_wrapper .img-est {
    height: auto;
    max-width: 18rem;
}

@media screen and (min-width:768px) {
    .about_two .about_img_wrapper .img-est {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}


/* About Media */

.about_media {
    align-items: center;
    background: var(--black-smoky);
    border-radius: 3rem;
    box-shadow: 4px 10px 30px 0px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 2.5rem;
    margin-top: 2.6rem;
    max-width: 40rem;
    overflow: hidden;
    padding: 3rem;
}

.about_media .content .title {
    color: var(--beige);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.about_media .content .desc {
    color: rgba(250, 250, 250, 0.60);
    font-size: 1.6rem;
    font-weight: 400;
}


/* Blog */

.blog {
    background: var(--dark-vanilla);
    padding: 9rem 0 0;
}

.blog .blog_subtitle {
    color: var(--black-smoky);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.blog .blog_title {
    color: var(--black-smoky);
    font-size: 2.4rem;
    font-weight: 700;
    margin: 1rem 0;
}

@media screen and (min-width:992px) {
    .blog .blog_subtitle {
        font-size: 2rem;
    }
    .blog .blog_title {
        font-size: 3.4rem;
        margin: 1rem 0 3rem;
    }
}


/* Contact */

.contact.bg_contact {
    background: linear-gradient(180deg, #CCBDA2 18%, rgba(201, 186, 160, 0.02) 100%), url('../images/bg_map.png') center no-repeat;
    background-size: cover;
    padding: 12rem 0;
}

.contact .contact_details {
    border-radius: 1.5rem 0 0 1.5rem;
    background: var(--tan);
    color: var(--black);
    padding: 4rem;
}

.contact .contact_details .title {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.contact .contact_details .desc {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.4rem;
    margin-bottom: 1rem;
}

.contact .contact_details .desc a {
    color: var(--black);
}

.hero .hero_content.bg_contact_content .btn-contact,
.contact .contact_details .btn-contact {
    background: var(--black-chinese);
    border-radius: 1rem;
    border: 1.056px solid var(--black-chinese);
    color: var(--white);
    display: inline-block;
    font-size: 1.6rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
}

.experts .btn-experts,
.ceo_msg .btn-ceo,
.agents .btn-meet,
.hero .hero_content.bg_about_content .btn-discover,
.hero .hero_content.bg_property_content .btn-discover,
.hero .hero_content.bg_area_content .btn-discover,
.inner_testi .btn-sell,
.hero .hero_content.bg_services_content .btn-discover,
.about_community .btn-discover,
.find_places .btn-find,
.best_architecture .btn-best {
    background: var(--beige);
    border-radius: 1rem;
    border: 1.056px solid var(--beige);
    color: var(--black-smoky);
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    text-transform: capitalize;
}

.hero .hero_content.bg_property_content .btn-discover {
    margin: 4rem 0;
}

.contact .contact_form {
    border-radius: 1.5rem;
    background: var(--black-smoky);
    color: var(--black);
    padding: 4rem;
}

.contact .contact_form .contact_above {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 1.7rem;
    margin: 3rem 0;
}

.contact .contact_form .contact_above .content {
    padding: 1rem 1.5rem;
    border-radius: 3.884px;
    border: 0.971px solid var(--dark-gray);
}

.contact .contact_above .content>p {
    color: var(--gray-light);
    font-size: 1.6rem;
    font-weight: 400;
}

.contact .contact_form .title {
    color: var(--gray-light);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.contact .contact_form .desc {
    color: var(--gray-light);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.contact .contact_form .form-control {
    border-radius: 0.7rem;
    border: 1px solid var(--black-chinese);
    background: var(--black-chinese);
}

.contact .contact_form .form-control {
    margin-bottom: 1.2rem;
    padding: 1.2rem 1.5rem;
}

.contact .contact_form .form-control {
    box-shadow: none;
}

.contact .contact_form textarea.form-control {
    resize: none;
}

.contact .contact_form .form-control,
.contact .contact_form .form-control::placeholder {
    color: var(--gray-three);
    font-size: 1.6rem;
    font-weight: 400;
}

.contact .contact_form .btn-submit {
    background: var(--beige);
    border-radius: 1rem;
    border: 0.1rem solid var(--beige);
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    outline: none;
    padding: 1rem 1.5rem;
}

.contact iframe {
    max-width: 100%;
}

@media screen and (min-width: 992px) {
    .contact .contact_details .title {
        font-size: 3.2rem;
    }
    .experts .btn-experts,
    .ceo_msg .btn-ceo,
    .agents .btn-meet,
    .hero .hero_content.bg_about_content .btn-discover,
    .hero .hero_content.bg_area_content .btn-discover,
    .hero .hero_content.bg_property_content .btn-discover,
    .hero .hero_content.bg_services_content .btn-discover,
    .inner_testi .btn-sell,
    .hero .hero_content.bg_contact_content .btn-contact,
    .contact .contact_details .btn-contact,
    .about_community .btn-discover,
    .find_places .btn-find,
    .best_architecture .btn-best {
        padding: 1rem 0;
        text-align: center;
        width: 18rem;
    }
    .hero .hero_content.bg_contact_content .btn-contact,
    .contact .contact_details .btn-contact,
    .contact .contact_form .btn-submit {
        padding: 1rem 0;
        text-align: center;
        width: 16rem;
    }
    .contact .contact_form .contact_above {
        flex-direction: row;
    }
}


/* Footer */

.footer {
    background: var(--dark-vanilla);
    padding: 5rem 1rem;
}

.footer .address_text {
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 500;
    margin: 2rem 0 3rem;
}

.footer .contact_media {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer .contact_media:last-of-type {
    margin-bottom: 0;
}

.footer .contact_media a {
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 500;
}

.footer .footer_head {
    color: var(--black);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.footer .footer_list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer .footer_list .footer_list_item {
    margin-bottom: 0.7rem;
}

.footer .footer_list .footer_list_item:last-of-type {
    margin-bottom: 0;
}

.footer .footer_list .footer_list_item a {
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 400;
}

@media screen and (min-width:768px) {
    .footer {
        padding: 5rem;
    }
}


/* Copyright */

.copyright {
    padding: 1rem 0;
    background: var(--black);
    text-align: start;
}

.copyright .footer_links {
    display: flex;
    justify-content: space-between;
    margin-right: 1rem;
    margin-left: 1rem;
}

.copyright .copyright_text {
    margin-left: 1rem;
}

.copyright .copyright_text,
.copyright .footer_links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
}

@media screen and (min-width:768px) {
    .copyright .footer_links {
        gap: 3rem;
        margin-left: 0rem;
    }
    .copyright .copyright_text,
    .copyright .footer_links a {
        font-size: 1.6rem;
    }
    .copyright .copyright_text {
        margin-left: 0;
    }
}

@media screen and (min-width:992px) {
    .copyright {
        text-align: start;
    }
    .copyright .footer_links {
        justify-content: end;
    }
}

@media screen and (min-width:1200px) {
    /* .copyright .copyright_text {
        margin-left: 6rem;
    } */
    .copyright .footer_links {
        margin-right: 6rem;
    }
}


/* Contact Us Box */

.contact_us_box {
    border-radius: 1.4rem;
    background: var(--black-five);
    padding: 2rem 1.5rem;
}

.contact_us_box .title {
    color: var(--white-two);
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.contact_us_box .text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.contact_us_box .media {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact_us_box .media p {
    color: var(--white-two);
    font-size: 1.6rem;
    font-weight: 500;
}

@media screen and (min-width:768px) {
    .contact_us_box {
        text-align: center;
    }
    .contact_us_box .media {
        justify-content: center;
    }
}

@media screen and (min-width:992px) {
    .contact_us_box {
        padding: 5rem 2rem;
    }
    .contact_us_box .title {
        font-size: 3.4rem;
    }
}

@media screen and (min-width:1200px) {
    .contact_us_box {
        padding: 5rem 10rem;
    }
}


/* Blog Page */

.blog_page {
    margin-bottom: 8rem;
}

.blog_page .title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.blog_page .desc {
    color: var(--white);
    opacity: 0.7;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.4rem;
    margin-bottom: 2rem;
}

.blog_page .desc:last-of-type {
    margin-bottom: 0;
}

.blog_page .blog_table_content {
    background: var(--black-smoky);
    border-radius: 2rem;
    box-shadow: 1rem 1rem 3rem 0 rgba(0, 0, 0, 0.10);
    padding: 2rem 1.2rem;
    margin-top: 4rem;
}

.blog_page .blog_table_content .title {
    color: var(--gray-light);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.blog_page .blog_table_content .table_list {
    margin: 0;
}

.blog_page .blog_table_content .table_list .item {
    margin-bottom: 1.5rem;
}

.blog_page .blog_table_content .table_list .item:last-of-type {
    margin-bottom: 0;
}

.blog_page .blog_table_content .table_list a {
    color: var(--gray-light);
    font-size: 1.5rem;
}

.blog_page .blog_table_content .social_links {
    margin-top: 7rem;
}

.blog_page .blog_table_content .social_links .share_text {
    color: var(--gray-light);
    font-size: 1.5rem;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.blog_page .blog_table_content .social_links .links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

@media screen and (min-width:768px) {
    .blog_page .blog_table_content {
        margin-top: 0;
    }
}

@media screen and (min-width:992px) {
    .blog_page .title {
        font-size: 4rem;
    }
    .blog_page .blog_table_content {
        padding: 5rem 3rem;
    }
    .blog_page .blog_table_content .social_links .share_text,
    .blog_page .blog_table_content .title {
        font-size: 1.8rem;
    }
}


/* Services */

.services_stripe {
    background: var(--black-chinese-three);
    padding: 2rem 0;
    margin-top: 4rem;
}

.services_stripe .services_icon {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media screen and (min-width:992px) {
    .services_stripe {
        padding: 2rem 0;
    }
}


/* Consultation Services */

.consultation_services {
    margin: 8rem 0 3rem;
}

.consultation_services .main_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: capitalize;
}

.property_services .section_title,
.consultation_services .section_title {
    color: var(--gray-light);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: capitalize;
}

.property_services .section_text,
.consultation_services .section_text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.5rem;
    margin-bottom: 1.2rem;
}

.property_services .btn-service,
.consultation_services .btn-service {
    background: transparent;
    border-radius: 1rem;
    border: 1.056px solid var(--beige);
    color: var(--beige);
    display: inline-block;
    font-size: 1.6rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
}

.consultation_services .img-clip {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}

.consultation_services .img-clip-alt {
    clip-path: polygon(0 0, 80% 1%, 100% 100%, 0 100%);
}

.property_services .img-clipped {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
}

.property_services {
    background: var(--black-chinese);
    padding: 6rem 0;
}

@media screen and (min-width:992px) {
    .consultation_services .main_title {
        font-size: 3.4rem;
    }
    .property_services .section_title,
    .consultation_services .section_title {
        font-size: 3rem;
    }
    .property_services .btn-service,
    .consultation_services .btn-service {
        padding: 1rem 0;
        text-align: center;
        width: 18rem;
    }
}


/* Our Mission & Vision */

.mission_vision {
    margin: 8rem 0 12rem;
}

.mission_vision .mission_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.mission_vision .mission_text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    font-weight: 400;
}

@media screen and (min-width:992px) {
    .mission_vision .mission_title {
        font-size: 3.4rem;
    }
}


/* Why Choose */

.why_choose {
    margin-bottom: 7rem;
}

.why_choose .why_choose_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.why_choose .why_choose_box {
    align-items: center;
    background: var(--black-chinese);
    border-radius: 2rem;
    display: flex;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
}

.why_choose .why_choose_box .title {
    color: var(--gray-light);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.why_choose .why_choose_box .text {
    color: var(--gray-two);
    font-size: 1.6rem;
}

@media screen and (min-width:992px) {
    .why_choose {
        margin-bottom: 12rem;
    }
    .why_choose .why_choose_title {
        font-size: 3.4rem;
    }
    .why_choose .why_choose_box {
        padding: 1.8rem 2.4rem;
    }
    .why_choose .why_choose_box .title {
        font-size: 2rem;
    }
}


/* About Testimonial */

.about_testimonial {
    margin-bottom: 7rem;
}

.about_testimonial .title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: capitalize;
}

.about_testimonial .learn_more {
    color: var(--beige);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media screen and (min-width:992px) {
    .about_testimonial {
        margin-bottom: 12rem;
    }
    .about_testimonial .learn_more {
        font-size: 1.8rem;
    }
    .about_testimonial .title {
        font-size: 3.4rem;
    }
}


/* Experts */

.experts {
    margin-bottom: 7rem;
}

.experts .title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 1rem;
}

.experts .subtitle {
    color: var(--beige);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 2.9px;
    text-transform: uppercase;
}

@media screen and (min-width:992px) {
    .experts {
        margin-bottom: 12rem;
    }
    .experts .subtitle {
        font-size: 1.8rem;
    }
    .experts .title {
        font-size: 3.4rem;
    }
}


/* Our Comapny */

.our_company {
    margin-bottom: 7rem;
}

.our_company .title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 1rem;
}

.our_company .subtitle {
    color: var(--beige);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 2.9px;
    text-transform: uppercase;
}

@media screen and (min-width:992px) {
    .our_company {
        margin-bottom: 12rem;
    }
    .our_company .subtitle {
        font-size: 1.8rem;
    }
    .our_company .title {
        font-size: 3.4rem;
    }
}


/* Cards Expert */

.card.cardExperts {
    background: none;
    position: relative;
    overflow: hidden;
    border: none;
    max-height: 37rem;
}

.card.cardExperts .expert_info {
    position: absolute;
    bottom: -5rem;
    width: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.card.cardExperts .expert_info .expert_name {
    color: var(--white-two);
    font-size: 1.2rem;
    font-weight: 700;
}

.card.cardExperts .expert_info .expert_designation {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.card.cardExperts .expert_info .experts_social {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.card.cardExperts:hover::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(205, 178, 126, 0.4);
    border-radius: 1rem;
    position: absolute;
    top: 0;
    left: 0;
}

.card.cardExperts:hover .expert_info {
    position: absolute;
    bottom: 0;
    left: 50%;
}


/* About Stats */

.about_statistics {
    margin-bottom: 7rem;
}

.about_statistics .box {
    border-radius: 2.4rem;
    background: var(--black-chinese-four);
    padding: 3rem 2.4rem;
}

.about_statistics .box .number,
.about_statistics .box .text {
    color: var(--gray-light);
    font-weight: 400;
    text-transform: uppercase;
}

.about_statistics .box .number {
    font-size: 2.8rem;
}

.about_statistics .box .text {
    font-size: 1.8rem;
    padding-bottom: 1rem;
    border-bottom: 0.2rem solid var(--beige);
}

@media screen and (min-width:992px) {
    .about_statistics {
        margin-bottom: 12rem;
    }
    .about_statistics .box {
        padding: 5rem 6rem;
    }
    .about_statistics .box .number {
        font-size: 5rem;
    }
    .about_statistics .box .text {
        font-size: 2.4rem;
    }
}


/* CEO Message */

.ceo_msg {
    margin-bottom: 7rem;
}

.ceo_msg .box,
.ceo_msg_alt .box {
    border-radius: 2.4rem;
    background: var(--black-chinese-four);
    padding: 3rem 2.4rem;
}

.ceo_msg .box .title,
.ceo_msg_alt .box .title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.ceo_msg .box .text,
.ceo_msg .box .feature-list .item,
.ceo_msg_alt .box .text,
.ceo_msg_alt .box .feature-list .item {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.4rem;
    margin-bottom: 1.5rem;
}

.ceo_msg .box .feature-list,
.ceo_msg_alt .box .feature-list {
    margin: 0;
}

.ceo_msg .img-ceo {
    height: auto;
    max-width: 100%;
}

@media screen and (min-width:992px) {
    .ceo_msg,
    .ceo_msg_alt {
        margin-bottom: 12rem;
        position: relative;
    }
    .ceo_msg .box,
    .ceo_msg_alt .box {
        padding: 12rem 1rem 12rem 12rem;
    }
    .ceo_msg_alt .box {
        padding: 12rem 6rem;
    }
    .ceo_msg .box .title,
    .ceo_msg_alt .box .title {
        font-size: 3.4rem;
    }
    .ceo_msg .img-ceo {
        position: absolute;
        top: 50%;
        left: 25%;
        transform: translate(-50%, -50%);
        max-width: 30rem;
    }
}

@media screen and (min-width:1200px) {
    .ceo_msg .img-ceo {
        position: absolute;
        top: 50%;
        left: 24%;
        transform: translate(-50%, -50%);
        max-width: 40rem;
    }
    .ceo_msg .box {
        padding: 14rem 16rem;
    }
}

@media screen and (min-width:1920px) {
    .ceo_msg .img-ceo {
        position: absolute;
        top: 50%;
        left: 27%;
        transform: translate(-50%, -50%);
        max-width: 40rem;
    }
}

@media screen and (min-width:2000px) {
    .ceo_msg .img-ceo {
        position: absolute;
        top: 50%;
        left: 31%;
        transform: translate(-50%, -50%);
        max-width: 40rem;
    }
    .ceo_msg .box {
        padding: 14rem 16rem;
    }
}


/* About CTA */

.about_cta {
    margin-bottom: 7rem;
}

.about_cta .cta_box {
    border-radius: 3rem;
    background: var(--beige);
    padding: 3rem 2.4rem;
}

.about_cta .title {
    color: var(--black-smoky);
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.about_cta .text {
    color: var(--black-smoky);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2rem;
    margin-bottom: 3rem;
}

.about_cta .btn-cta {
    background: var(--black-chinese);
    border-radius: 1rem;
    border: 1.056px solid var(--black-chinese);
    color: var(--white);
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    text-transform: capitalize;
}

@media screen and (min-width:992px) {
    .about_cta .cta_box {
        padding: 6rem 8rem;
    }
    .about_cta .title {
        font-size: 4rem;
    }
    .about_cta .btn-cta {
        padding: 1rem 0;
        text-align: center;
        width: 18rem;
    }
}


/* Agents */

.agents .agents_subtitle {
    color: var(--beige);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 2.91px;
    text-transform: uppercase;
}

.agents .agents_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

@media screen and (min-width:992px) {
    .agents .agents_title {
        font-size: 3.4rem;
    }
}


/* Card Agent */

.card.cardAgent {
    background: var(--black-smoky);
    border-radius: 2.4rem;
    box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.10);
    border: none;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.card.cardAgent:hover {
    transform: scale(1.05);
}

.card.cardAgent .card-body,
.card.cardAgent .card-footer {
    padding: 0;
    border: none;
}

.card.cardAgent .card-body .card-title {
    margin-top: 2rem;
    color: var(--gray-light);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: normal;
}

.card.cardAgent .card-body .card-text {
    margin: 0 0 2rem;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: normal;
}

.card.cardAgent .card-body .card-text span {
    color: var(--beige);
}

.card.cardAgent .card-footer .btn-agent {
    background: var(--green-two);
    border-radius: 0.7rem;
    border: 1.056px solid var(--green-two);
    color: var(--black);
    display: inline-block;
    font-size: 1.5rem;
    padding: 1.2rem;
}

@media screen and (min-width:992px) {
    .card.cardAgent .card-footer .btn-agent {
        padding: 0.6rem 0;
        width: 16rem;
    }
}


/* Area CTA */

.area_cta .area_cta_box {
    border-radius: 3rem;
    background: var(--beige);
    padding: 1.2rem 3rem;
    position: relative;
}

.area_cta .area_cta_box .ceo-img {
    height: auto;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.area_cta .cta_heading {
    color: var(--black-smoky);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.area_cta .cta_description {
    color: var(--black-smoky);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.2rem;
}

.area_cta .cta-btns {
    border-radius: 0.8rem;
    color: var(--black);
    display: inline-block;
    font-size: 1.5rem;
    padding: 1rem 0;
    text-align: center;
    width: 18rem;
}

.area_cta .cta-btns.whatsapp {
    border: 1.056px solid var(--green-two);
    background: var(--green-two);
}

.area_cta .cta-btns.contact {
    border: 1.056px solid var(--black);
    background: transparent;
}

.area_cta .grad-alt {
    height: auto;
    max-width: 100%;
    position: absolute;
    bottom: 3rem;
    right: 0;
}

.area_cta .area_cta_box .img-grad-outer {
    position: absolute;
    top: -3rem;
    left: -4rem;
}

@media screen and (min-width:768px) {
    .area_cta .area_cta_box .ceo-img {
        margin-top: -5rem;
    }
}

@media screen and (min-width:992px) {
    .area_cta .cta_heading {
        font-size: 3rem;
    }
}


/* DEV Palm */

.dev_palm {
    background: var(--black-chinese-three);
    padding: 3rem 0;
}

.dev_palm .title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-transform: capitalize;
}

.dev_palm .gap-img {
    gap: 3rem;
}

@media screen and (min-width:768px) {
    .dev_palm .title {
        text-align: center;
    }
}

@media screen and (min-width:992px) {
    .dev_palm .title {
        font-size: 2.8rem;
    }
    .dev_palm .gap-img {
        gap: 10rem;
    }
}


/* Infrastructure */

.infrastructure {
    margin-top: 5rem;
}

.infrastructure .infrastructure_title {
    margin-bottom: 2rem;
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
}

.infrastructure .infrastructure_text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 4rem;
}

.infrastructure .infrastructure_text:last-of-type {
    margin-bottom: 0;
}

@media screen and (min-width:992px) {
    .infrastructure .infrastructure_title {
        font-size: 3.4rem;
    }
    .ceo_msg .imgs-box {
        position: absolute;
        top: 50%;
        left: 26%;
        transform: translate(-50%, -50%);
        max-width: 48rem;
    }
    .ceo_msg_alt .imgs-box {
        position: absolute;
        top: 50%;
        right: -12%;
        transform: translate(-50%, -50%);
        max-width: 40rem;
    }
}

@media screen and (min-width:1200px) {
    .ceo_msg .imgs-box {
        position: absolute;
        top: 50%;
        left: 27%;
        transform: translate(-50%, -50%);
        max-width: 45rem;
    }
    .ceo_msg_alt .imgs-box {
        position: absolute;
        top: 50%;
        right: 0%;
        transform: translate(-50%, -50%);
        max-width: 45rem;
    }
}

@media screen and (min-width:1440px) {
    .ceo_msg .imgs-box {
        position: absolute;
        top: 50%;
        left: 30%;
        transform: translate(-50%, -50%);
        max-width: 55rem;
    }
    .ceo_msg_alt .imgs-box {
        position: absolute;
        top: 50%;
        right: -12%;
        transform: translate(-50%, -50%);
        max-width: 60rem;
    }
}

@media screen and (min-width:1800px) {
    .ceo_msg_alt .imgs-box {
        position: absolute;
        top: 50%;
        right: 0%;
        transform: translate(-50%, -50%);
        max-width: 60rem;
    }
}

@media screen and (min-width:2000px) {
    .ceo_msg .imgs-box {
        position: absolute;
        top: 50%;
        left: 38%;
        transform: translate(-50%, -50%);
        max-width: 40rem;
    }
    .ceo_msg_alt .imgs-box {
        position: absolute;
        top: 50%;
        right: 20%;
        transform: translate(-50%, -50%);
        max-width: 40rem;
    }
}


/* Emmar Projects */

.emmar_projects {
    margin: 6rem 0;
}

.emmar_projects .emmar_subtitle {
    color: var(--beige);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
}

.emmar_projects .emmar_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin: 2rem 0;
    text-transform: uppercase;
}

.emmar_projects .emmar_text {
    color: rgba(250, 250, 250, 0.7);
    font-size: 1.6rem;
    font-weight: 400;
}

.emmar_projects .pagination {
    --bs-pagination-border-color: unset;
    gap: 1rem;
    flex-wrap: wrap;
}

.emmar_projects .pagination .page-item {
    border-radius: 50%;
    overflow: hidden;
    width: 4.2rem;
    height: 4.2rem;
    border: 0.1rem solid var(--beige);
}

.emmar_projects .pagination .page-link {
    font-size: 1.6rem;
    background: transparent;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige);
}

.emmar_projects .pagination .page-link:hover {
    background: var(--beige);
    color: var(--black-smoky);
}

.emmar_projects .pagination .page-link:hover img {
    filter: brightness(0) invert(0);
}

@media screen and (min-width:992px) {
    .emmar_projects {
        margin: 8rem 0;
    }
    .emmar_projects .emmar_title {
        font-size: 3.4rem;
    }
}


/* About Company */

.about_company .text_content {
    margin-bottom: 5rem;
}

.about_company .text_content .title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about_company .text_content .text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.4rem;
}

@media screen and (min-width:992px) {
    .about_company .text_content .title {
        font-size: 3.4rem;
    }
}


/* About Community */

.about_community {
    background: var(--black-chinese-three);
    margin: 8rem 0;
    padding: 7rem 0;
}

.about_community .community_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
}

.about_community .community_text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.4rem;
    margin: 1.5rem 0 2.5rem;
}

@media screen and (min-width:992px) {
    .about_community {
        margin: 12rem 0;
    }
    .about_community .community_title {
        font-size: 3.4rem;
    }
}


/* Property Details */

.property_details {
    margin: 8rem 0;
}

.property_details .property_details_title {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: capitalize;
}

.property_details .detail_box {
    padding: 1.5rem 0;
}

.property_details .detail_box .title {
    color: var(--beige);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.08px;
    margin-bottom: 0.3rem;
}

.property_details .detail_box .text {
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
}

.property_details .bg-col-s {
    background: var(--black-six);
    padding: 4rem 2rem;
}

.property_details .bg-col-e {
    background: var(--black-chinese-three);
}

.property_details .btn-download {
    border-radius: 0.8rem;
    border: 0.1rem solid var(--primary);
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 400;
    padding: 1.2rem 2.4rem;
    text-transform: uppercase;
}

.property_details .form-box {
    padding: 3rem 1rem;
}

.property_details .form-box .text-brought {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.property_details .form-media {
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    font-size: 1.4rem;
    font-weight: 400;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.property_details .form-media:last-of-type {
    margin-bottom: 0;
}

.property_details .form-box .form-control {
    background: none;
    border: none;
    border-bottom: 0.1rem solid rgba(255, 255, 255, 0.40);
    border-radius: 0;
    color: rgba(255, 255, 255, 0.40);
    font-size: 1.4rem;
    padding: 0 0 1rem;
    margin-bottom: 2rem;
}

.property_details .form-box textarea.form-control {
    resize: none;
}

.property_details .form-box .form-control:focus {
    box-shadow: none;
}

.property_details .form-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.40);
}

.property_details .form-box .btn {
    border-radius: 1rem;
    border: 0.1rem solid var(--primary);
    font-size: 1.4rem;
    font-weight: 400;
    padding: 1rem 2.4rem;
    text-transform: uppercase;
    width: 100%;
    margin-top: 4rem;
}

.property_details .form-box .btn-submit {
    color: var(--primary);
}

@media screen and (min-width:768px) {
    .property_details .detail_box {
        padding: 2rem 0;
        text-align: center;
    }
    .property_details .border-eb {
        border-right: 0.1rem solid rgba(255, 255, 255, 0.7);
        border-bottom: 0.1rem solid rgba(255, 255, 255, 0.7);
    }
    .property_details .border-e-none {
        border-right: none;
    }
    .property_details .border-se {
        border-right: 0.1rem solid rgba(255, 255, 255, 0.7);
        border-bottom: none;
        border-left: 0.1rem solid rgba(255, 255, 255, 0.7);
    }
    .property_details .form-box {
        padding: 3rem 2rem;
    }
}

@media screen and (min-width:768px) {
    .property_details .property_details_title {
        text-align: center;
    }
}

@media screen and (min-width:992px) {
    .property_details {
        margin: 12rem 0;
    }
    .property_details .property_details_title {
        font-size: 3.4rem;
    }
    .property_details .bg-col-s {
        border-radius: 2.4rem 0 0 2.4rem;
    }
    .property_details .detail_box .title {
        font-size: 3rem;
    }
    .property_details .detail_box {
        padding: 3rem 0;
    }
}


/* Community Swiper */

.community_swiper {
    margin: 8rem 0;
}

.community_swiper .community_swiper_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.community_swiper .community_swiper_text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-size: 1.6rem;
    font-weight: 400;
}

.community_swiper .img-community {
    height: auto;
    max-width: 100%;
}

.community_swiper .communityswiper .max-h-850 {
    max-height: 85rem;
}

@media screen and (min-width:992px) {
    .community_swiper {
        margin: 12rem 0;
        padding: 4rem 0;
    }
    .community_swiper .community_swiper_title {
        font-size: 3.4rem;
    }
    .community_swiper .img-community {
        height: 30rem;
        max-width: 100%;
    }
}


/* Community Features */

.community_features {
    background: var(--black-chinese);
    padding: 8rem 0;
}

.community_features .community_features_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
}

.community_features .community_features_text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    font-weight: 400;
}

.community_features .feature-box {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.community_features .feature-box .text {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media screen and (min-width:992px) {
    .community_features {
        padding: 12rem 0;
    }
    .community_features .community_features_title {
        font-size: 3.4rem;
    }
    .community_features .community_features_text {
        font-size: 1.8rem;
    }
}


/* Community CTA */

.community_cta {
    margin: 6rem 0;
}

.community_cta .community_cta_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.community_cta .form-control {
    background: var(--black-chinese);
    border-radius: 0.8rem;
    border: 0.1rem solid var(--black-chinese);
    color: var(--gray-three);
    font-size: 1.6rem;
    font-weight: 400;
    padding: 0.7rem 1.2rem;
}

.community_cta .form-control:focus {
    box-shadow: none;
}

.community_cta .form-control::placeholder {
    color: var(--gray-three);
}

.community_cta .btn-send {
    background: var(--beige);
    border-radius: 10.562px;
    border: 1.056px solid var(--beige);
    color: var(--black-smoky);
    font-size: 1.6rem;
    font-weight: 500;
    text-transform: capitalize;
    outline: none;
    padding: 0.7rem 1.2rem;
}

@media screen and (min-width:992px) {
    .community_cta .community_cta_title {
        font-size: 3rem;
        line-height: 4.5rem;
    }
    .community_cta .form-control {
        width: 30rem;
    }
    .community_cta .btn-send {
        width: 18rem;
    }
}


/* Payment Plan */

.payment_plan {
    background: var(--black-chinese);
    padding: 8rem 0;
}

.payment_plan .payment_plan_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.payment_plan .payment_plan_text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.6rem;
    font-weight: 400;
}

.payment_plan .payment_box {
    border-radius: 2.4rem;
    background: var(--black-smoky);
    box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.10);
    padding: 4rem 0;
    text-align: center;
}

.payment_plan .payment_box .percentage {
    align-items: center;
    background: var(--primary);
    border-radius: 50%;
    color: var(--black-smoky);
    display: flex;
    font-size: 2rem;
    font-weight: 700;
    height: 6.4rem;
    justify-content: center;
    margin: 0 auto 1.5rem;
    width: 6.4rem;
}

.payment_plan .payment_box .type {
    color: var(--gray-two);
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.payment_plan .payment_box .installment {
    color: var(--gray-light);
    font-size: 2rem;
    font-weight: 700;
    text-transform: capitalize;
}

@media screen and (min-width:992px) {
    .payment_plan {
        padding: 12rem 0;
    }
    .payment_plan .payment_plan_title {
        font-size: 3.4rem;
    }
    .payment_plan .payment_box .type {
        font-size: 1.8rem;
    }
}


/* Find Places */

.find_places .find_places_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
}

.find_places .find_places_text {
    color: var(--gray-two);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.6rem;
    margin: 2.5rem 0;
}

@media screen and (min-width:992px) {
    .find_places .find_places_title {
        font-size: 3.4rem;
    }
}


/* Floor Plans */

.floor_plans .floor_plans_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.floor_plans .floor_plans_text {
    color: var(--gray-two);
    font-size: 1.6rem;
    margin-bottom: 4rem;
}

.floor_plans .table {
    --bs-table-bg: none;
    --bs-table-striped-bg: var(--black-chinese);
    margin-bottom: 0;
    border: none;
}

.floor_plans .table>:not(caption)>*>* {
    border: none;
    color: var(--gray-five);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 2.5rem 3rem;
}

.floor_plans .table tbody tr th {
    border-radius: 2rem 0 0 2rem;
}

.floor_plans .table tbody tr td:last-of-type {
    border-radius: 0 2rem 2rem 0;
}

.floor_plans .table .plan_tag {
    border-radius: 1rem;
    color: var(--gray-five);
    font-weight: 600;
}

@media screen and (min-width:992px) {
    .floor_plans .floor_plans_title {
        font-size: 3.4rem;
    }
    .floor_plans .table .plan_tag {
        border-radius: 1rem;
        background: var(--primary);
        padding: 1rem 0;
        color: var(--black-smoky);
        font-weight: 600;
        width: 12rem;
        display: inline-block;
        text-align: center;
    }
}


/* Best Architecture */

.best_architecture .architecture_title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.best_architecture .architecture_text {
    color: var(--gray-two);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.6rem;
    margin-bottom: 4rem;
}

.best_architecture .contact_card {
    background: linear-gradient(120deg, #474747 4.14%, #222 44.22%);
    border-radius: 2rem;
    box-shadow: 0px 10px 15px 0px rgba(151, 151, 151, 0.12);
    padding: 3rem 5rem 3rem 0;
}

.best_architecture .contact_card .architecture_name {
    color: var(--white);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: capitalize;
}

.best_architecture .contact_card .architecture_intro {
    color: var(--gray-two);
    font-size: 1.4rem;
    font-weight: 400;
}

.best_architecture .contact_card .content {
    padding: 0 3rem;
}

@media screen and (min-width:992px) {
    .best_architecture .architecture_title {
        font-size: 3.4rem;
        line-height: 4.2rem;
    }
    .best_architecture .contact_card .content {
        padding: 0;
    }
}


/* Property Gallery */

.property_gallery {
    margin: 4rem 0 4rem;
}

.photos-grid-container {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-gap: 1rem;
    align-items: start;
}

@media (max-width: 580px) {
    .photos-grid-container {
        grid-template-columns: 1fr;
    }
}

.photos-grid-container .img-box {
    position: relative;
}

.photos-grid-container .img-box:hover .transparent-box {
    background-color: rgba(0, 0, 0, 0.6);
}

.photos-grid-container .img-box:hover .caption {
    transform: translateY(-5px);
}

.photos-grid-container .main-photo.img-box .grids-main-image {
    width: 100%;
    height: 26.5rem;
    object-fit: cover;
}

.photos-grid-container .img-box .grids-images {
    width: 100%;
    height: 14.2rem;
    object-fit: cover;
}

.photos-grid-container img {
    max-width: 100%;
    display: block;
    height: auto;
    border-radius: 1.2rem;
    height: 100%;
}

.photos-grid-container .caption {
    color: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 1.5rem;
}

.photos-grid-container .transparent-box {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.2rem;
}

.photos-grid-container .main-photo {
    grid-row: 1;
    grid-column: 1;
    height: 94%;
}

.photos-grid-container .sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-gap: 1rem;
    height: 100%;
    align-items: baseline;
}

.photos-grid-container .sub:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.photos-grid-container .sub:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.photos-grid-container .sub:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.photos-grid-container .sub:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.hide-element {
    border: 0;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

@media screen and (min-width:768px) {
    .photos-grid-container .main-photo.img-box .grids-main-image {
        height: 100%;
    }
    .photos-grid-container .img-box .grids-images {
        width: 30.1rem;
        height: 100%;
        object-fit: cover;
    }
}

@media screen and (min-width:1400px) {
    .photos-grid-container .main-photo.img-box .grids-main-image {
        height: 96%;
    }
}


/* Property Head */

.property_head {
    background: var(--black-chinese-three);
    margin-bottom: 5rem;
    padding: 2rem;
}

.property_head .property_head_title {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 500;
}

@media screen and (min-width:992px) {
    .property_head .property_head_title {
        font-size: 3.4rem;
    }
}


/* Property Info */

.property_info .property_facilities {
    border-top: 0.1rem solid var(--gray-light-two);
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.property_info .property_facilities .facility_box {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: start;
}

.property_info .property_facilities .facility_box .title {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 700;
}

.property_info .property_facilities .facility_box .text {
    color: var(--gray-light-three);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-transform: capitalize;
}

.property_info .property_share {
    border-top: 0.1rem solid var(--gray-light-two);
    padding: 3rem 0;
}

.property_info .property_share .title {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.property_info .property_share .btn-group,
.property_info .property_share .social {
    border: 1.5px solid rgba(255, 255, 255, 0.13);
    border-radius: 0.7rem;
}

.property_info .property_share .social {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
}

.property_info .property_share .btn-group .btn {
    color: var(--white);
    padding: 1rem;
    font-size: 1.6rem;
    border: none;
    text-transform: capitalize;
}

.property_info .property_share .btn-group .group-text {
    background: var(--black-chinese-five);
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 400;
}

.property_info .property_share .btn-group .btn-primary {
    background: transparent;
}

.property_info .property_about {
    border-top: 0.1rem solid var(--gray-light-two);
    padding: 3rem 0;
}

.property_info .property_about .title {
    color: var(--gray-light);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.property_info .property_about .subtitle {
    color: var(--white);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.property_info .property_about .text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.6rem;
    margin-bottom: 2rem;
}

.property_info .property_about .text:last-of-type {
    margin-bottom: 0;
}

.property_info .dt_fl {
    margin-bottom: 3rem;
}

.property_info .dt_fl .title {
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.property_info .dt_fl .dt_fl_list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.property_info .dt_fl .dt_fl_list li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.property_info .dt_fl .dt_fl_list li:last-of-type {
    margin-bottom: 0;
}

.property_info .dt_fl .dt_fl_list .main {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.property_info .mortage_calculator {
    margin-top: 6rem;
}

.property_info .mortage_calculator .mortage_calculator_title {
    color: var(--white);
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 700;
}

.property_info .mortage_calculator .calc_box {
    background: var(--dark);
    border-radius: 0.8rem;
    border: 0.8px solid rgba(255, 255, 255, 0.60);
    box-shadow: 12.321px 12.321px 36.964px 0px rgba(0, 0, 0, 0.10);
    padding: 0.8rem 1.4rem;
}

.property_info .mortage_calculator .calc_box .text {
    color: rgba(255, 255, 255, 0.80);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 24.643px;
}

.property_info .mortage_calculator .img-arrow {
    height: auto;
    max-width: 4rem;
    position: relative;
    z-index: 1;
    margin: 0 -1rem;
    transform: rotate(90deg);
}

.property_info .mortage_result .text {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 400;
}

.property_info .mortage_result .text span {
    color: var(--primary);
    margin-left: 2rem;
}

.property_info .mortage_result .btn-approved {
    background: var(--primary);
    border-radius: 0.8rem;
    border: 0.8rem solid var(--primary);
    color: var(--black);
    font-size: 1.4rem;
    padding: 0 1.5rem;
}

.property_info .est_box {
    border: 0.2rem solid var(--white);
    text-align: center;
    border-radius: 50%;
    width: 19rem;
    height: 19rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.property_info .est_box .text {
    color: var(--white);
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
}

.property_info .est_box .text_aed {
    color: var(--primary);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.72px;
    margin: 1rem 0;
}

.property_info .section_qr {
    margin-top: 3rem;
}

.property_info .section_qr .box {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.property_info .section_qr .text {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1rem;
}

.property_info .section_qr .img-qr {
    height: auto;
    max-width: 13rem;
}

.property_info .price-card {
    border-radius: 1.5rem;
    background: var(--black-chinese-three);
    overflow: hidden;
}

.property_info .price-card .card-head {
    padding: 1.5rem 2rem 0.5rem;
}

.property_info .price-card .card-head .text {
    color: var(--gray-light-three);
    font-size: 1.4rem;
    font-weight: 400;
    text-transform: capitalize;
}

.property_info .price-card .card-head .icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.property_info .price-card .card-head .icons .icon-link {
    background: var(--gray-six);
    height: 4rem;
    width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.property_info .price-card .card-body {
    padding: 0 2rem 2rem;
}

.property_info .price-card .card-body .price-text {
    color: var(--primary);
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.property_info .price-card .card-body .form-check-input {
    background-color: var(--black-chinese);
}

.property_info .price-card .card-body .form-check-input:checked {
    background-color: var(--black-chinese);
    border-color: var(--white);
}

.property_info .price-card .card-body .form-check-input:focus {
    box-shadow: none;
    border-color: var(--white);
}

.property_info .price-card .card-body .ref-text {
    color: var(--gray-light-four);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    text-transform: capitalize;
}

.property_info .price-card .card-body .ref-no {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.property_info .price-card .card-footer {
    background: var(--gray-six);
    padding: 2rem 2rem;
}

.property_info .price-card .card-footer .link {
    align-items: center;
    border-radius: 0.8rem;
    color: var(--black);
    display: flex;
    font-size: 1.4rem;
    font-weight: 500;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    text-transform: capitalize;
}

.property_info .price-card .card-footer .link-beige {
    background: var(--primary);
    border: 1.056px solid var(--primary);
}

.link-whatsapp {
    background: var(--green-two);
    border: 1.056px solid var(--green-two);
}

.property_info .booking-card {
    border-radius: 1.5rem;
    background: var(--black-chinese-three);
    overflow: hidden;
    margin-top: 3rem;
}

.property_info .booking-card .card-header {
    background: var(--gray-six);
    padding: 2rem;
}

.property_info .booking-card .card-header .agent-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.property_info .booking-card .card-header .agent-box .content .sub-text {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.2px;
    margin-bottom: 0.7rem;
}

.property_info .booking-card .card-header .agent-box .content .text {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.property_info .booking-card .card-body {
    padding: 2rem;
}

.property_info .booking-card .card-body .title {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.4px;
}

.property_info .booking-card .card-body .form-control {
    background: none;
    border-radius: 0.8rem;
    border: 0.5px solid rgba(255, 255, 255, 0.60);
    padding: 0.8rem 1.2rem;
    font-size: 1.5rem;
    color: var(--gray-three);
    margin-bottom: 1.5rem;
}

.property_info .booking-card .card-body .form-control:focus {
    box-shadow: none;
}

.property_info .booking-card .card-body .form-control::placeholder {
    color: var(--gray-three);
}

.property_info .booking-card .card-body textarea.form-control {
    resize: none;
}

.property_info .booking-card .card-body .btn-submit {
    background: var(--primary);
    border-radius: 0.7rem;
    border: 1.056px solid var(--Primary-Color, #C6A66C);
    outline: none;
    width: 100%;
    padding: 0.7rem 0;
    font-size: 1.4rem;
}

.property_info .booking-card .card-body .form-check {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.property_info .booking-card .card-body .form-check .form-check-label {
    border-radius: 0.7rem;
    border: 0.1rem solid rgba(255, 255, 255, 0.50);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 0.32px;
    padding: 1.2rem 0.4rem;
    text-align: center;
    text-transform: uppercase;
}

.property_info .booking-card .card-body .form-check .form-check-input {
    visibility: hidden;
}

.property_info .booking-card .card-body .form-check-input:checked+.form-check-label {
    border: 0.1rem solid #D4BD91;
}

@media screen and (min-width:768px) {
    .property_info .booking-card .card-body .form-check .form-check-label {
        padding: 1.2rem 0.8rem;
    }
    .property_info .property_share .btn-group .btn {
        padding: 1.5rem;
    }
    .property_info .section_qr .box {
        align-items: center;
    }
    .property_info .section_qr {
        padding: 0 3rem;
    }
    .property_info .booking-card.posSticky {
        position: sticky;
        top: 2rem;
    }
}

@media screen and (min-width:992px) {
    .property_info .property_facilities .facility_box .title,
    .property_info .property_share .title,
    .property_info .property_about .title,
    .property_info .mortage_calculator .mortage_calculator_title {
        font-size: 3.4rem;
    }
    .property_info .dt_fl .title {
        font-size: 2.4rem;
    }
    .property_info .property_about .subtitle {
        font-size: 1.8rem;
    }
    .property_info .mortage_calculator {
        margin-top: 12rem;
    }
    .property_info .mortage_result {
        margin-left: 5rem;
    }
    .property_info .est_box {
        margin-right: 5rem;
    }
    .property_info .property_facilities {
        align-items: center;
        flex-direction: row;
        gap: 7rem;
    }
    .property_info .mortage_calculator .img-arrow {
        transform: rotate(0);
    }
    .property_info .property_share .btn-group .group-text {
        padding: 1.5rem;
    }
}


/* Nearby Schools */

.nearby_schools {
    margin-top: 6rem;
    background: var(--black-chinese);
    border-radius: 2rem;
    padding: 6rem 3rem;
}

.nearby_schools .title {
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.nearby_schools .card_nearby_schools {
    border-radius: 2rem;
    background: var(--black-seven);
    box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.10);
    padding: 1.6rem;
}

.nearby_schools .card_nearby_schools .card-head {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.4px;
    margin-bottom: 3.5rem;
}

.nearby_schools .card_nearby_schools .media {
    display: flex;
    gap: 1.3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.nearby_schools .card_nearby_schools .media .text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.32px;
}

.nearby_schools .card_nearby_schools .media .light-text {
    color: var(--gray-light-three);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.32px;
    opacity: 0.5;
}


@media screen and (min-width:992px) {
    .nearby_schools {
        margin-top: 12rem;
    }
    .nearby_schools .title {
        font-size: 3.4rem;
    }
}

@media screen and (min-width: 1400px) {
    .ceo_msg .img-ceo {
        position: absolute;
        top: 50%;
        left: 19%;
        transform: translate(-50%, -50%);
        max-width: 40rem;
    }
    .mission_vision .img-fluid {
        width: 100%;
    }
}

@media (max-width:767px) {
    .hero .hero_content {
        padding: 3rem 2rem 4.5rem;
    }
    .hero .hero_content .stat_box {
        align-items: start;
    }
    .hero .hero_content .hero_box .hero_desc {
        margin-bottom: 2rem;
    }
    .ms-lg-60 {
        margin-left: 1rem;
    }
    .navbar {
        margin-top: 1rem;
    }
    .hero {
        margin-top: 2rem;
    }
    .block {
        margin: 2rem 0;
    }
    .mx-10 {
        margin-right: 1rem;
        margin-left: 1rem;
    }
    .ms-10 {
        margin-left: 1rem;
    }
    .me-10 {
        margin-right: 1rem;
    }
    .max-x-10 {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .img-lg-ty {
        transform: translateY(0);
        height: 28.5rem !important;
    }
    .hero .hero_content.bg_contact_content .h-285 {
        height: 16.5rem !important;
    }
    .hero .hero_content.bg_contact_content .h-170 {
        height: 17.2rem !important;
    }
}