@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color--: #d3a243;
    /* --secondary-color--: #122b31;   */
    --secondary-color--: #192a24;  
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #000;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "Poppins", serif;
}

h1,h2,h3,h4,h5,h6{
    color: #000;
    margin-bottom: 0;
}

p{
    font-size: 16px;
    margin: 0;
    color: #000;
}

section{
    overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.prealoader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    background-color: #fff;
    display: grid;
    place-items: center;
}

.prealoader img{
    width: 200px;
    animation: zoomInOut 3s infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.2); /* Zoomed in */
    }
    100% {
        transform: scale(1); /* Back to original size */
    }
}

header{
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 10px 4%;
    align-items: center;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    transition: 0.3s;
}

header.active{
    background: #fff;
}

header .logo{
    flex: 1;
}

header .logo img{
    width: 120px;
    transition: 0.3s;
}

header.active .logo img{
    width: 80px;
}

header nav ul{
    display: flex;
    gap: 20px;
}

header nav ul li a{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
    position: relative;
    padding: 5px 10px;
}

header.active nav ul li a{
    color: var(--secondary-color--);
}

header nav ul li a:hover::before{
    transform: scale(1);
}

header nav ul li a::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color--);
    bottom: 0;
    left: 0;
    transform: scale(0);
    transition: 0.3s;
}

header nav ul li a:hover{
    color: var(--primary-color--);
}

header .right_side{
    flex: 1;
    text-align: end;
}

header .menu_btn{
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 100;
    cursor: pointer;
    /* background: var(--primary-color--); */
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin-left: 20px;
}
  
header .menu_btn span{
    width: 25px;
    height: 3px;
    background: #fff;
    display: inline-block;
    transition: 0.3s;
}

header.active .menu_btn span{
    transition: 0.3s;
    background: var(--primary-color--);
}
  
header .menu_btn.active span{
    background: none;
}
  
header .menu_btn span.cross{
    position: relative;
}
  
header .menu_btn span.cross::before,header .menu_btn span.cross::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    /* transform: rotate(-45deg); */
    opacity: 0;
    transition: 0.3s;
}

header.active .menu_btn span.cross::before, header.active .menu_btn span.cross::after{
    background: var(--primary-color--);
}
  
header .menu_btn.active span.cross::before{
    transform: rotate(-45deg);
    opacity: 1;
}
  
header .menu_btn.active span.cross::after{
    transform: rotate(45deg); 
    opacity: 1;
}

.know_more_btn{
    display: inline-block;
    padding: 15px 20px;
    border-radius: 50px;
    background: var(--primary-color--);
    color: #fff !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s;
}

.know_more_btn:hover{
    transform: scale(1.1);
}

.connect_us_btn{
    display: inline-block;
    padding: 15px 20px;
    border-radius: 50px;
    background: var(--primary-color--);
    color: #fff !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s;
}

/* .connect_us_btn:hover{
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--secondary-color--);
} */

.connect_us_btn::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color--);
    z-index: -2;
    left: 0;
    top: 0;
}

.connect_us_btn::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--secondary-color--);
    z-index: -1;
    left: 0;
    top: 0;
    transform: scale(0);
    transition: 0.3s;
    border-radius: 50px;
}

.connect_us_btn:hover:after{
    transform: scale(1);
}

.banner{
    position: relative;
}

.banner::before{
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: var(--secondary-color--);
    opacity: 0.7;
    z-index: 1;
}

.banner .content{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.banner .content h2{
    font-size: 70px;
    color: var(--primary-color--);
    font-weight: bold;
}

.banner .content p{
    color: #fff;
    font-size: 20px;
}

.our_expertise_card img{
    width: 60px;
    margin: 0 auto;
}

.our_expertise_card p{
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
}

.heading h2{
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color--);
}

.bg_secondary{
    background: var(--secondary-color--);
}

.our_expertise_slider{
    position: relative;
}

.our_expertise_slider .slick-arrow{
    position: absolute;
    z-index: 2; 
    color: var(--primary-color--);
    border: none;
    transition: 0.3s;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: none;
    font-size: 20px;
}

.our_expertise_slider .slick-arrow.slick-disabled{
    display: none !important;
}

.our_expertise_slider .slick-arrow:hover{
    color: #fff;
}

.our_expertise_slider .slick-arrow.slick-prev{
    left: -10px;
}

.our_expertise_slider .slick-arrow.slick-next{
    right: -10px;
}

.our_expertise_bg{
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.05);
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.4); */
    border: 1px solid #d3a24359;
    border-radius: 15px;
    padding: 25px 20px;
    transform: translateY(-30%);
    z-index: 3;
    position: relative;
}

.content p:not(:last-child){
    margin-bottom: 10px;
}

.about_us_img{
    position: relative;
    z-index: 1;
}

.about_us_img::before{
    content: '';
    background: var(--secondary-color--);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -3;
}

.about_us_img img{
   mix-blend-mode: darken;
}

.about_us_img .about_us_img_shape{
    position: absolute;
    width: 65%;
    height: 85%;
    background: #fff;
    border-radius: 20px;
    z-index: -2;
}

.about_us_img .about_us_img_shape.about_us_img_shape_1{
    left: 0;
    bottom: 0;
}

.about_us_img .about_us_img_shape.about_us_img_shape_2{
    top: 0;
    right: 0;
}

.about_us_img .about_us_small_shape{
    position: absolute;
    width: 35%;
    height: 15%;
    background: #fff;
    /* border-radius: 20px; */
    z-index: -1;
}

.about_us_img .about_us_small_shape::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color--);
    z-index: 1;
}

.about_us_img .about_us_small_shape.about_us_img_shape_1::before{
    border-radius: 0 0 20px 0;
}

.about_us_img .about_us_small_shape.about_us_img_shape_2::before{
    border-radius: 20px 0 0 0;
}

.about_us_img .about_us_small_shape.about_us_img_shape_1{
    left: 0;
    top: 0;
}

.about_us_img .about_us_small_shape.about_us_img_shape_2{
    bottom: 0;
    right: 0;
}

.our_services_card{
    display: flex;
    gap: 20px;
    padding: 30px;
    border-radius: 20px;
    align-items: center;
    background: #192a241c;
    position: relative;
    height: 100%;
}

.our_services_card:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    border-radius: 20px;
    /* background: linear-gradient(90deg, #D54A3D 0%, #F3CA46 100%); */
    /* background: linear-gradient(90deg, var(--secondary-color--) 0%, var(--primary-color--) 100%); */
    background: var(--primary-color--);
    transition: all 500ms ease;
    z-index: 1;
}

.our_services_card:hover:after {
    width: 100%;
}

.our_services_card .icon{
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
}

.our_services_card .icon svg{
    width: 60px;
    height: 60px;
    fill: var(--primary-color--);
}

.our_services_card:hover .icon svg{
    fill: #fff;
}

.our_services_card .icon::before{
    content: '';
    position: absolute;
    /* top: 50%;
    left: 50%;
    margin-top: -62px;
    margin-left: -59.5px; */
    animation: fa-spin 15s linear infinite;
    transition: all 300ms ease;
    width: 119px;
    height: 124px;
    background-image: url(../images/icon-seven.png);
}

.our_services_card:hover .icon::before{
    background-image: url(../images/icon-eight.png);
}

.our_services_card .content{
    position: relative;
    z-index: 2;
}
.our_services_card .content h3{
    font-size: 22px;
    font-weight: 600;
    transition: all 300ms ease;
    margin-bottom: 10px;
}

.our_services_card:hover .content h3{
    color: #fff;
}

.our_services_card .content p{
    font-size: 14px;
    transition: all 300ms ease;
}

.our_services_card:hover .content p{
    color: #fff;
}

.our_commitment{
    background: var(--secondary-color--);
    padding: 20px 50px;
    border-radius: 20px
}

.our_commitment_flex{
    display: flex;
    gap: 20px;
    align-items: center;
}

.our_commitment_flex .know_more_btn{
    white-space: nowrap;
    flex: 0 0 auto;
}

.our_commitment_flex .content p{
    font-size: 18px;
}

.bg_gray{
    background: #eee;
}

.why_choose_card{
    /* background: #fff; */
    padding: 20px;
    /* border-radius: 20px; */
    position: relative;
    height: 100%;
    z-index: 1;
    transition: 0.5s ease-in;
}

.why_choose_card::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    z-index: -2;
    transition: 0.5s ease-in;
}

.why_choose_card:hover::before{
    transform: skew(-5deg, 0deg);
    background: var(--secondary-color--);
}

.why_choose_card img{
    width: 80px;
}

.why_choose_card h3{
    font-size: 22px;
    margin: 10px 0;
    transition: 0.5s ease-in;
}

.why_choose_card:hover h3{
    color: #fff;
}

.why_choose_card p{
    font-size: 16px;
    transition: 0.5s ease-in;
}


.why_choose_card:hover p{
    color: #fff;
}

.hot_properties{
    width: 100%;
    height: auto;
}

.hot_properties .hot_properties_img{
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 10px 0;
}

.hot_properties .hot_properties_img .sale, .hot_properties .hot_properties_img .hot{
    position: absolute;
    top: 13%;
    font-weight: 500;   
}

.hot_properties .hot_properties_img .sale{
    background: #fff9;
    left: 0;
    border-radius: 0 5px 5px 0;
    padding: 0px 7px 0px 10px;
}

.hot_properties .hot_properties_img .hot{
    right: 0;
    background: var(--primary-color--);
    padding: 0px 10px 0px 7px;
    border-radius: 5px 0 0 5px;
    color: #fff;
}

.hot_properties .hot_properties_img .commercial{
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary-color--);
    color: #fff;
    padding: 2px 10px;
    font-size: 14px;
}

.hot_properties .content .location{
    display: inline-block;
    color: #000;
    font-size: 14px;
    padding: 10px 0;
    transition: 0.3s;
    padding-bottom: 5px;
}

.hot_properties:hover .content .location{
    color: var(--primary-color--);
}

.hot_properties .content h3{
    font-size: 20px;
    font-weight: 600;
}

.hot_properties .content p{
    font-size: 14px;
    font-weight: 500;
}

.hot_properties .content .read_more{
    display: inline-block;
    color: #b4b0b0;
    font-size: 14px;
    transition: 0.4s;
    font-weight: 600;
}

.hot_properties .content .read_more:hover{
    color: var(--primary-color--);
}

.hot_properties .content .read_more i{
    transition: 0.4s;
}

.hot_properties .content .read_more:hover i{
    padding-left: 10px;
}

.border_1{
    border: 1px solid #b4b0b0 !important;
    margin: 8px 0;
}

.review_card{
    width: 100%;
}

.review_card .content{
    background: #f3f4f6;
    padding: 30px 20px;
    border-radius: 20px 20px 0 20px;
}

.review_card .content i{
    font-size: 52px;
    color: #d1d5d9;
}

.review_card .content p{
    font-weight: 600;
    font-size:18px;
}

.review_card .review_img{
    display: flex;
}

.review_card .review_img .info{
    display: flex;
    width: 50%;
    align-items: center;
    gap: 20px;
    padding: 10px;
    position: relative;
}

.review_card .review_img .info::before, .review_card .review_img .info::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.review_card .review_img .info::before{
    background: #fff;
    z-index: -1;
    border-radius: 0 20px 0 0;
}

.review_card .review_img .info::after{
    background: #f3f4f6;
    z-index: -2;
}

.review_card .review_img .info img{
    width: 60px;
    height: 60px;
    flex: 0 0 auto;
    border-radius: 50%;
}

.review_card .review_img .info .name p{
    font-weight: 600;
}

.review_card .review_img .info .name span{
    font-size: 14px;
    color: #aeaeae;
}

.review_card .blank_part{
    background: #f3f4f6;
    width: 50%;
    border-radius: 0 0 20px 20px;
}

.review_card_slider{
    position: relative;
}

.review_card_slider .slick-arrow{
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary-color--);
    color: #fff;
    border: none;
    transition: 0.3s;
    border: 2px solid transparent;
    z-index: 2;
    margin: auto 0;
    top: 50%;
    transform: translateY(-50%);
}

.review_card_slider .slick-arrow:hover{
    /* transform: scale(1.1); */
    background: none;
    border-color: var(--primary-color--);
    color: var(--primary-color--);
}

.review_card_slider .slick-arrow.slick-prev{
    left: -20px;
}

.review_card_slider .slick-arrow.slick-next{
    right: -20px;
}

footer {
    background: var(--secondary-color--);
    padding-top: 25px;
}

footer p{
    color: #fff;
}

footer .footer-menu{
    width: 100%;
}

footer .footer-menu h3{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

footer .footer-menu ul li{
    margin-bottom: 5px;
}

footer .footer-menu ul li a{
    color: #fff;
    transition: 0.3s;
    font-weight: 500;
}

footer .footer-menu ul li a:hover{
    color: var(--primary-color--);
}

footer .footer-contact h3{
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

footer .footer-contact ul li{
    padding-left: 25px;
    position: relative;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500;
}

footer .footer-contact ul li i{
    position: absolute;
    top: 5px;
    left: 0;
    color: var(--primary-color--);
}

footer .footer-contact ul li a{
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

footer .footer-contact ul li a:hover{
    color: var(--primary-color--);
}

footer .footer-contact span{
    display: block;
    color: #d6d6d6;
    font-size: 16px;
    font-weight: 600;
}

.copy_right_bg{
    background: var(--primary-color--);
    padding: 10px 0;
    margin-top: 20px;
}

.copy_right{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.copy_right p ,.copy_right p a{
    color: #fff;
    margin-bottom: 0;
}

footer .logo img{
    filter: brightness(0) invert(1);
}

.main_heading{
    padding-top: 120px;
}

.main_heading h1{
    font-size: 32px;
    color: #fff;
}

.bread_crumb ul{
    display: flex;
}

.bread_crumb ul li:not(:last-child)::after{
    content: '\f105';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
    padding: 0 10px;
}

.bread_crumb ul li, .bread_crumb ul li a{
    color: #fff;
    font-size: 14px;
}

.bread_crumb ul li a:hover{
    color: var(--primary-color--);
}


.contact_us{
    width: 100%;
    height: 100%;
    padding: 20px;
    text-align: center;
    background: #eee;
    border-radius: 10px;
    /* box-shadow: 0 0 10px #fff; */
    margin-top: 10px;
}

.contact_us i{
    font-size: 42px;
    display: block;
    margin-bottom: 20px;
    color: var(--primary-color--);
}

.contact_us p{
    font-size: 16px;
}

.contact_us a{
    transition: 0.3s;
}

.contact_us a:hover{
    color: var(--primary-color--);
}

.contact_us_form label{
    font-size: 16px;
}

.contact_us_form input, .contact_us_form textarea{
    border: none;
    border-bottom: 1px solid #000;
    padding: 10px 10px;
    padding-left: 0;
    color: #000;
    background: none;
    outline: none;
    width: 100%;
}

.contact_us_form textarea{
    height: 100px;
}

.contact_us_form button{
    background: var(--primary-color--);
    color: #fff;
    border-radius: 50px;
    border: 1px solid var(--primary-color--);
    padding: 10px 25px;
    transition: 0.5s;
}

.contact_us_form button:hover{
    color: var(--primary-color--);
    background: none;
}

.vision_mission{
    text-align: center;
}

.vision_mission img{
    width: 100px;
    margin-bottom: 10px;
}

.vision_mission h3{
    font-size: 24px;
}

.vision_mission p{
    font-size: 16px;
}

.director_card h3{
    font-size: 22px;
    margin-top: 10px;
    color: var(--primary-color--);
}