@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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');

/* Bold */
@font-face {
  font-family: 'Akuina';
  src: url('../fonts/AkuinaPersonaluse-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Bold Slanted */
@font-face {
  font-family: 'Akuina';
  src: url('../fonts/AkuinaPersonaluse-BoldSlanted.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* Extra Bold */
@font-face {
  font-family: 'Akuina';
  src: url('../fonts/AkuinaPersonaluse-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Extra Bold Slanted */
@font-face {
  font-family: 'Akuina';
  src: url('../fonts/AkuinaPersonaluse-ExtBdSlant.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* Extra Light Slanted */
@font-face {
  font-family: 'Akuina';
  src: url('../fonts/AkuinaPersonaluse-ExtLtSlant.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

/* Black */
@font-face {
  font-family: 'Akuina';
  src: url('../fonts/AkuinaPersonaluse-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Black Slanted */
@font-face {
  font-family: 'Akuina';
  src: url('../fonts/AkuinaPersonaluse-BlackSlant.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    --primary-color--: #1b4589;
    --secondary-color--: #d0af87; 
}

a{
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1;
    color: #1E1E1E;
}

ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

body{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

h1,h2,h3,h4,h5,h6{
    color: #1E1E1E;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
}

p{
    font-size: 16px;
    margin: 0;
    color: #1E1E1E;
}

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;
}

#loading {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999;
  margin-top: 0px;
  top: 0px;
}

#loading::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color--);
  z-index: -1;
}

#loading #loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#loading #loading-center #loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 200px;
  width: 200px;
  margin-top: -100px;
  margin-left: -100px;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
#loading #loading-center #loading-center-absolute .object {
  border-radius: 50% 50% 50% 50%;
  position: absolute;
  border-top: 5px solid var(--secondary-color--);
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--secondary-color--);
  border-right: 5px solid transparent;
  -webkit-animation: animate 2s infinite;
  animation: animate 2s infinite;
}
#loading #loading-center #loading-center-absolute .object-1 {
  border-radius: 50% 50% 50% 50%;
  position: absolute;
  border-top: 5px solid var(--secondary-color--);
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--secondary-color--);
  border-right: 5px solid transparent;
  -webkit-animation: animate 2s infinite;
  animation: animate 2s infinite;
}
#loading #loading-center #loading-center-absolute .object-2 {
  border-radius: 50% 50% 50% 50%;
  position: absolute;
  border-top: 5px solid var(--secondary-color--);
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--secondary-color--);
  border-right: 5px solid transparent;
  -webkit-animation: animate 2s infinite;
  animation: animate 2s infinite;
}
#loading #loading-center #loading-center-absolute .object-3 {
  border-radius: 50% 50% 50% 50%;
  position: absolute;
  border-top: 5px solid var(--secondary-color--);
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--secondary-color--);
  border-right: 5px solid transparent;
  -webkit-animation: animate 2s infinite;
  animation: animate 2s infinite;
}
#loading #loading-center #loading-center-absolute #object_one {
  left: 75px;
  top: 75px;
  width: 50px;
  height: 50px;
}
#loading #loading-center #loading-center-absolute #object_two {
  left: 65px;
  top: 65px;
  width: 70px;
  height: 70px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
#loading #loading-center #loading-center-absolute #object_three {
  left: 55px;
  top: 55px;
  width: 90px;
  height: 90px;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
#loading #loading-center #loading-center-absolute #object_four {
  left: 45px;
  top: 45px;
  width: 110px;
  height: 110px;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

#loading #loading-center .closeLoader {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

@-webkit-keyframes animate {
  50% {
    -webkit-transform: rotate(360deg) scale(0.8);
    transform: rotate(360deg) scale(0.8);
  }
}
@keyframes animate {
  50% {
    -webkit-transform: rotate(360deg) scale(0.8);
    transform: rotate(360deg) scale(0.8);
  }
}
/* !END: Theme Preloder CSS */

header{
    display: flex;
    justify-content: space-between;
    padding: 15px 4%;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
    left: 0;
    transition: .5s;
}

header.active{
    background: #fff;
}

header nav{
    display: flex;
    gap: 30px;
    align-items: center;
    /* flex: 1; */
    justify-content: center;
}

header nav ul{
    display: flex;
    gap: 20px;
    flex: 1;
}

header nav ul:first-child{
    justify-content: end;
}

header nav ul li a{
    color: #fff;
    transition: .5s;
    white-space: nowrap;
}

header.active nav ul li a{
    color: var(--primary-color--);
}

header nav ul li a:hover{
    color: var(--secondary-color--);
}

header nav .logo img{
    /* filter: brightness(0) invert(1); */
    width: 160px;
}

.call_btn{
    color: #fff;
    font-size: 14px;
    transition: .5s;
}

header.active .call_btn{
    color: #212529;
}

header .header_right{
    flex: 1;
}


header .header_left{
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
    flex: 1;
}

header .menu-button {
    width: 40px;
    height: 40px;
    display: none;
    place-items: center flex-end;
    border-radius: 5px;
    /* border: 2px solid #fff; */
    padding: 6px 0;
    cursor: pointer;
    margin: auto 0;
}
header .menu-button span {
    width: 32px;
    height: 3px;
    background: #fff;
    position: relative;
    transition: .3s ease-in-out;
    border-radius: 10px;
}
header.active .menu-button span{
    background: var(--secondary-color--);
}
header .menu-button.active span{
    background: transparent;
}
header .menu-button span::before, header .menu-button span::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 100%;
    top: -10px;
    background: #fff;
    transition: .3s ease-in-out;
    border-radius: 10px;
    transition: 0.3s;
}
header.active .menu-button span::before, header.active .menu-button span::after{
    background: var(--secondary-color--);
}
header .menu-button.active span::before{
    top: 0;
    transform: rotate(45deg);
    width: 100%;
    left:0
}
header .menu-button:hover span::before, header .menu-button:hover span::after{
    width: 100%;
}
header .menu-button span::before{
    left:-5px
}

header .menu-button:hover span::before{
    left:0
}
header .menu-button span::after {
    top: 10px;
    right: -5px;
}
header .menu-button.active span::after{
    top: 0;
    transform-origin: center;
    transform: rotate(-45deg);
    width: 100%;
    right: 0;
}
header .menu-button:hover span::after {
    right: 0;
}

header .mobile_menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--primary-color--);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: .5s;
}

header .mobile_menu.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

header .mobile_menu ul {
    display: flex;
    justify-content: end;
    flex-direction: column;
    gap: 0;
}

header .mobile_menu ul li a {
    text-align: center;
    padding: 12px 7px !important;
    color: #000;
    display: block;
  }

.call_btn:hover{
    color: var(--secondary-color--) !important;
}


.visit_btn{
    color: #fff;
    display: inline-block;
    padding: 12px 20px;
    border: 1px solid #fff;
    font-size: 14px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 20px;
    background: transparent;
    transition: color .35s ease, border-color .35s ease, background-color .35s ease, transform .35s ease, box-shadow .35s ease;
}

.visit_btn:hover{
    color: #fff;
    background-color: var(--secondary-color--);
    border-color: var(--secondary-color--);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -8px var(--secondary-color--);
}

header.active .visit_btn{
    color: #212529;
    border: 1px solid #212529;
}

header.active .visit_btn:hover{
    color: #fff;
    border-color: var(--secondary-color--);
}

.visit_btn.visit_black{
    color: #000;
    border: 1px solid #000;
    background: transparent;
}

.visit_btn.visit_black:hover{
    color: #fff;
    background-color: var(--primary-color--);
    border-color: var(--primary-color--);
    box-shadow: 0 10px 20px -8px var(--primary-color--);
}

.visit_btn:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.25;
    position: absolute;
    top: -50px;
    -webkit-transform: rotate(35deg);
    -ms-transform: rotate(35deg);
    transform: rotate(35deg);
    -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: -1;
}

header.active .visit_btn:after{
    background: #212529;
}

.visit_btn.visit_black:after{
    background: #000;
}

.visit_btn:hover:after {
    left: 120%;
    -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
    transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}



.banner{
    position: relative;
}

.banner::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    opacity: 0.45;
    z-index: 1;
}

.banner .content{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 600px;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.banner .content p{
    font-size: 32px;
    font-weight: 600;
    color: #fff;
}

.banner .content h2{
    font-size: 52px;
    font-weight: 600;
    color: #fff;
}

.banner_slider{
    position: relative;
}

.banner_slider .slick-arrow{
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    color: #fff;
    background: none;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: .3s;
}

.banner_slider .slick-arrow:hover{
    background: #fff;
    color: var(--secondary-color--);
}

.banner_slider .slick-arrow.slick-prev{
    left: 4%;
}

.banner_slider .slick-arrow.slick-next{
    right: 4%;
}

.bg_dark{
    background: #212529;
}

.heading span {
    padding-left: 40px;
    display: inline-block;
    position: relative;
    color: var(--secondary-color--);
    font-size: 20px;
}
.heading span::after {
    content: "";
    position: absolute;
    background-color: var(--secondary-color--);
    width: 15px;
    height: 3px;
    top: 50%;
    left: 12px;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
}

.heading span::before {
    content: "";
    position: absolute;
    background-color: var(--secondary-color--);
    width: 20px;
    height: 3px;
    top: 50%;
    left: -2px;
    transform: translateY(-50%);
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
}

.heading h2{
    font-size: 35px;
    font-weight: 600;
    /* color: #fff; */
}

.about_us_img img{
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 20px;
}

.exp_year{
    position: relative;
    width: 190px;
    height: 190px;
    border: 1px dashed #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.exp_year h3 {
    position: relative;
    width: 180px;
    height: 180px;
    animation: spin 8s linear infinite;
}

.exp_year h3 span {
    position: absolute;
    top: 0;
    left: 50%;
    transform-origin: 0 90px;
    font-size: 18px;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: var(--secondary-color--);
    letter-spacing: 2px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.exp_year .exp_icon{
    position: absolute;
    width: 125px;
    height: 125px;
    background: var(--secondary-color--);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
}

.exp_year .exp_icon img{
    width: 60%;
}

.about_us_img_2{
    margin-top: -100px;
}

.properties_sec_bg, .luxury_property_bg{
    background: #F6F7F8;
}

.properties_cards{
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.properties_cards .properties_img{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.properties_cards .properties_img .properties_type_card{
    position: absolute;
    height: 100%;
    width: 25%;
    background: #21252980;
    top: 0;
    z-index: 1;
    transform: scaleX(0);
    opacity: 0;
    transition: all 0.5s ease 0s;
}

.properties_cards:hover .properties_img .properties_type_card{
    transform: scaleX(1);
    opacity: 1;
}

.properties_cards .properties_img .properties_type_card.properties_type_card_1{
    left: 0;
}

.properties_cards .properties_img .properties_type_card.properties_type_card_2{
    left: 25%;
}

.properties_cards .properties_img .properties_type_card.properties_type_card_3{
    left: 50%;
}

.properties_cards .properties_img .properties_type_card.properties_type_card_4{
    left: 75%;
}

.properties_cards .properties_img img{
    aspect-ratio: 10/7;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
    transition: .3s;
}

.properties_cards:hover .properties_img img{
    transform: scale(1.1);
}

.properties_cards .properties_img .properties_type{
    position: absolute;
    left: 20px;
    top: 20px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.properties_cards .properties_img .properties_type span{
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 5px;
    font-weight: 600;
}

.properties_cards .properties_img .properties_type span.new{
    background-color: #fff;
    color: #000;
}

.properties_cards .properties_img .properties_type span.popular{
    background-color: var(--secondary-color--);
    color: #fff;
}

.properties_cards .property_info{
    background: var(--secondary-color--);
    padding: 10px;
    border-radius: 0 0 10px 10px;
    margin-top: 10px;
    display: flex;
    gap: 10px;
    transition: .3s;
    position: relative;
    z-index: 2;
}

.properties_cards:hover .property_info{
    background: #212529;
    border-radius: 0;
}

.properties_cards .property_info .info_card{
    color: #fff;
    font-size: 18px;
}

.properties_cards .property_content{
    padding: 10px;
    position: relative;
    transition: .3s;
    border-radius: 0 0 10px 10px;
    z-index: 1;
    border-top: 1px solid #fff;
}

.properties_cards .property_content::after{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #212529;
    z-index: -1;
    border-radius: 0 0 10px 10px;
    opacity: 0;
    transition: .3s;
}

.properties_cards:hover .property_content::after{
    opacity: 1;
}

.properties_cards .property_content::before{
    content: '';
    position: absolute;
    height: 80%;
    left: -10px;
    right: -10px;
    top: -47px;
    background: var(--secondary-color--);
    z-index: -2;
    border-radius: 10px;
    transition: .3s;
    opacity: 0;
}

.properties_cards:hover .property_content::before{
    top: calc(20% + 10px);
    opacity: 1;
}

.properties_cards .property_content h3{
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    transition: .3s;
}

.properties_cards:hover .property_content h3{
    color: #fff;
}

.properties_cards .property_content p{
    font-size: 14px;
    margin-top: 10px;
    transition: .3s;
}

.properties_cards:hover .property_content p{
    color: #fff;
}

.properties_cards .property_content ul{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.properties_cards .property_content ul li{
    color: #636363;
    transition: .3s;
}

.properties_cards:hover .property_content ul li{
    color: #fff;
}

.properties_cards .property_content ul li i{
    color: var(--secondary-color--);
    transition: .3s;
}

.things img{
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.things h3{
    font-size: 20px;
    font-weight: 600;
    /* color: #fff; */
    margin-bottom: 10px;
}

.things p{
    font-size: 14px;
    font-weight: 500;
    /* color: #fff; */
}

.luxury_property_card{
    position: relative;
    overflow: hidden;
    border: 4px solid var(--secondary-color--);
}

.luxury_property_card img{
    aspect-ratio: 5/7;
    width: 100%;
    object-fit: cover;
}

.luxury_property_card .content{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #d0af87e3;
    padding: 20px 10px;
    transform: translateY(calc(100% + 90px));
    transition: 0.5s;
}

.luxury_property_card:hover .content{
    transform: translateY(0);
}

.luxury_property_card .content::after{
    content: '';
    height: 90px;
    width: 100px;
    position: absolute;
    top: -90px;
    right: 0;
    background-color: #d0af87e3;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.luxury_property_card .content h3{
    color: #fff;
    font-size: 20px;
}

.luxury_property_card .content p{
    color: #fff;
}

.luxury_property_card .content .location{
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    color: #fff;
    margin: 15px 0;
    display: flex;
}

.luxury_property_card .content .location .location_list{
    padding: 10px ;
}

.luxury_property_card .content .location .location_list:not(:last-child){
    border-right: 1px solid #fff;
}

.client_bg{
    background: var(--secondary-color--);
}



.client_img {
    width: 180px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


.client_img,
.nahar {
    width: 180px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}



.client_img,
.nahar {
    width: 180px;
    height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .client_img,
    .nahar {
        width: 140px;
        height: 80px;
    }
}



footer{
    background: var(--primary-color--);
}

ul.footer_menu{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

ul.footer_menu li a{
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    transition: 0.3s;
}

ul.footer_menu li a:hover{
    color: var(--secondary-color--);
}

.i_frame_footer{
    border-radius: 10px;
    aspect-ratio: 3/5;
}

.border_2{
    background:#F0F0F0;  
    opacity: 1;
}

.b_footer{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 10px;
}

.b_footer .logo{
    flex: 1;
}

.b_footer .logo img{
    width: 150px;
    filter: brightness(0) invert(1);
}

.b_footer .b_footer_menu{
    display: flex;
    gap: 10px 20px;
}

.b_footer .b_footer_menu li a{
    color: #ffff;
    transition: 0.3s;
    font-size: 14px;
}

.b_footer .b_footer_menu li a:hover{
    color: var(--secondary-color--);
}

.b_footer .media_menu{
    display: flex;
    flex: 1;
    gap: 10px;
    justify-content: end;
}

.b_footer .media_menu li a{
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border: 1px solid #fff;
    color: #fff;
    transition: 0.3s;
    border-radius: 50%;
    font-size: 14px;
}


.b_footer .media_menu li a:hover{
    background: #fff;
    color: #000;
}

.copy_right p{
    color: var(--secondary-color--);
    font-size: 14px;
    text-align: center;
}

.contact_us h2{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact_us ul li{
    display: flex;
    flex-grow: 0 0 auto;
    align-items: center;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #fff;
}

.contact_us ul li i{
    color: var(--secondary-color--);
    width: 25px;
    flex: 0 0 auto;
}

.contact_us ul li a{
    transition: 0.3s;
    color: #fff;
}

.contact_us ul li a:hover{
    color: var(--secondary-color--);
}

.fs_18 {
  font-size: 18px !important;
}
.blog-card-three {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(221, 221, 221, 0.2);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease-in-out;
}
.blog-card-three.blog_1{
    border: 1px solid rgb(221, 221, 221);
}
.blog-card-three__image {
  position: relative;
  overflow: hidden;
  padding: 10px 10px 0;
}
.blog-card-three__image__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #0008;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-25%);
  z-index: 1;
  transition: opacity 500ms ease 0ms, transform 500ms ease 0ms;
}
.blog-card-three__image__link::before, .blog-card-three__image__link::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card-three__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card-three__image__box {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog-card-three__image__box img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
  aspect-ratio: 3/2;
}
.blog-card-three__date-box {
  display: flex;
  align-items: end;
  flex-direction: column;
  justify-content: start;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}
.blog-card-three__date {
  width: 74px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color--);
  color: #fff;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.blog-card-three__date__month {
  color: #222;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  padding: 4px 10px 7px;
  display: block;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.blog-card-three__date__month::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  content: "";
  width: 25px;
  height: 27px;
  position: absolute;
  left: -24.44px;
  top: 0;
  background-color: #212529;
}
.blog-card-three__content {
  padding: 0 35px 35px;
}
.blog-card-three__meta__list {
  margin: 0;
  display: inline-flex;
  gap: 15px;
  align-items: center;
  padding: 10px 22px;
  background-color: var(--secondary-color--);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.blog-card-three__meta__list::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 100%;
  background-color: rgba(208, 175, 135, 0.54);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  left: -25.555px;
  top: 0;
}
.blog-card-three__meta__list li {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.blog-card-three__meta__list li a {
  color: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}
.blog-card-three__title {
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 136.364%;
  margin-bottom: 15px;
}
.blog-card-three__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog_1 .blog-card-three__title a{
    color: #000;
}
.blog-card-three__title a:hover {
    background-size: 100% 1px;
}
.blog-card-three__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 175%;
    transition: all 0.4s ease-in-out;
}
.blog_1 .blog-card-three__btn{
    color: #000;
}
.blog-card-three__btn i {
  color: var(--secondary-color--);
}
.blog-card-three__btn:hover {
  color: var(--secondary-color--);
}
.blog-card-three::after {
    content: "";
    width: 78px;
    height: 43px;
    background-color: #fff4;
    position: absolute;
    bottom: -20px;
    right: -10px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    transition: all 0.4s ease-in-out;
}
.blog-card-three.blog_1::after{
    background-color: #0004;
}
.blog-card-three::before {
    content: "";
    width: 30px;
    height: 66px;
    background-color: #d0af8740;
    position: absolute;
    bottom: -20px;
    right: -10px;
    transition: all 0.4s ease-in-out;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.blog-card-three:hover {
    border-color: var(--secondary-color--);
}
.blog-card-three:hover::after {
    width: 78px;
    height: 43px;
    background-color: #fff;
    bottom: 0px;
    right: 0px;
}
.blog-card-three.blog_1:hover::after{
    background-color: #000;
}
.blog-card-three:hover::before {
  width: 30px;
  height: 66px;
  bottom: 0px;
  right: 0px;
  background-color: var(--secondary-color--);
}
.blog-card-three:hover .blog-card-three__image__link {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
}
.blog-card-three:hover .blog-card-three__image__box img {
  transform: scale(1.1);
}

.blog-three {
  position: relative;
  z-index: 1;
}
.blog-three__top {
  padding-bottom: 55px;
}
.blog-three__top .sec-title {
  margin-bottom: 0;
}
.blog-three__custome-navs {
  margin-top: 0px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
}
@media (max-width: 991px) {
  .blog-three__custome-navs {
    justify-content: start;
  }
}
.blog-three__custome-navs button {
  outline: none;
  margin: 0;
  padding: 0;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: all 400ms ease;
}
.blog-three__custome-navs button.owl-prev {
  transform: rotateY(180deg);
}
.blog-three__custome-navs button:hover {
  color: #fff;
  background-color: var(--secondary-color--);
  border-color: var(--secondary-color--);
}

.luxury_property_slider_head{
    display: flex;
    justify-content: space-between;
}

.luxury_property_slider_arrows{
    display: flex;
    gap: 10px;
}

.luxury_property_slider_arrows .slick-arrow{
    width: 50px;
    height: 50px;
    border: 1px solid var(--secondary-color--);
    color: var(--secondary-color--);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: none;
    transition: .5s ease-in-out;
}

.luxury_property_slider_arrows .slick-arrow:hover{
    background: var(--secondary-color--);
    color: #fff;
}

.slick-dots{
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.slick-dots li button{
    width: 40px;
    height: 10px;
    background: var(--secondary-color--);
    font-size: 0;
    border-radius: 50px;
    border: none;
    transition: .5s;
}

.slick-dots li.slick-active button{
    width: 50px;
    background: var(--primary-color--);
}

.inner_banner{
    background: #212529;
    padding: 40px 4%;
    padding-top: 130px;
}

.main_heading{
    font-size: 40px;
    font-weight: 600;
    color: #fff;
}

.breadcrumb ul{
    display: flex;
    gap: 10px;
}

.breadcrumb ul li, .breadcrumb ul li a{
    color: #fff;
}

.faq_accordion .accordion-item{
    border: none;
}

.faq_accordion .accordion-collapse{
    background: var(--primary-color--);
    border-radius: 0 0 10px 10px;
}

.faq_accordion .accordion-collapse .accordion-body{
    color: #fff !important;
}

.faq_accordion .accordion-button{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    padding: 5px;
    background: #F6F7F8;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.faq_accordion .accordion-button:not(.collapsed){
    background: var(--secondary-color--);
}

.faq_accordion .accordion-button::after{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: '';
    position: absolute;
    background: #F6F7F8;
    z-index: -1;
    border-radius: 50px !important;
    transform: rotate(0deg);
}

.faq_accordion .accordion-button:not(.collapsed)::after{
    background: var(--secondary-color--);
}

.faq_accordion .accordion-button::before{
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: '';
    position: absolute;
    background: var(--primary-color--);
    z-index: -2;
    border-radius: 30px 30px 0 0 !important;
    transform: .3s;
    opacity: 0;
}

.faq_accordion .accordion-button:not(.collapsed)::before{
    opacity: 1;
}

.faq_accordion .accordion-button span{
    flex: 1;
    font-size: 20px;
    color: var(--primary-color--);
    font-weight: 600;
    transition: .3s;
}

.faq_accordion .accordion-button:not(.collapsed) span{
    color: #fff;
}

.faq_accordion .accordion-button .accordion_num{
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: var(--secondary-color--);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    border-radius: 50px 0 0 50px;
    position: relative;
    margin-right: 20px;
}

.faq_accordion .accordion-button:not(.collapsed) .accordion_num{
    background: #fff;
    color: var(--secondary-color--);
}

.faq_accordion .accordion-button .accordion_num::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -13px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    width: 13px;
    height: 15px;
    background-color: var(--primary-color--);
}

.faq_accordion .accordion-button:not(.collapsed) .accordion_num::before {
    background: #fff;
}

.faq_accordion .accordion-button .accordion_arrow{
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: #fff;
    border-radius: 50%;
    flex: 0 0 auto;
}

.faq_accordion .accordion-button .accordion_arrow i{
    color: var(--secondary-color--);
    transition: .3s;
}

.faq_accordion .accordion-button:not(.collapsed) .accordion_arrow i{
    transform: rotateX(-180deg);
}

.contact_card i{
    font-size: 36px;
    color: var(--secondary-color--);
}

.contact_card h3{
    font-size: 24px;
    font-weight: 600;
    margin: 7px 0;
}

.contact_card p, .contact_card p a{
    color: #212529;
}

.contact_card p a:hover{
    color: var(--secondary-color--);
}

.form_control{
    border-radius: 5px;
    border: 1px solid var(--secondary-color--);
    /*! color: #fff !important; */
    background: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.form_control:focus{
    border: 1px solid var(--primary-color--);
}

.sub_btn{
    padding: 10px 20px;
    background: var(--secondary-color--);
    color: #fff;
    border: none;
    font-weight: 600;
    width: 100%;
}

.blog_detail img {
    aspect-ratio: 5/3;
    object-fit: cover;
    border-radius: 10px;
}

.blog_content p{
    margin-bottom: 10px;
}

.recent_blogs h2 {
    font-size: 24px;
}

.black_border{
    border-color: #000;
}

.project_details .heading h2{
    font-size: 26px;
}

.property_info h3{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
}

.property_info span{
    font-size: 14px;
}

.property_sec .property_type_heading h3{
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color--);
    margin: 0;
}

.property_sec{
    padding-bottom: 15px;
}

.property_sec:not(:last-child){
    border-bottom: 3px solid #eee;
}

.property_sec .property_type ul{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 1%;
}

.property_sec .property_type ul li{
    width: 24%;
    font-size: 14px;
}

/* .property_sec .property_type ul li:not(:last-child){
    border-bottom: 3px solid #eee;
} */

.property_sec .property_type ul li a{
    font-size: 14px; 
    color: var(--primary-color--);
}

.property_sec .property_type ul li strong{
    display: block;
    white-space: nowrap;
    font-size: 16px;
}

.side_bar{
    background: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 10px;
    padding: 20px 20px 10px;
    position: sticky;
    z-index: 98;
    top: 100px;
    /* margin-top: -150px; */
    margin-bottom: 20px;
}

.side_bar h2{
    font-size: 20px;
    color: #000;
    font-weight: 600;
}

.side_bar form .form_input label{
    display: block;
    font-size: 12px;
    color: #000;
    font-weight: 600;
    margin-bottom: 5px;
}

.side_bar form .form_input input, .side_bar form .form_input textarea{
    width: 100%;
    padding-left: 10px;
    height: 35px;
    border: 2px solid #dedede;
    outline: none;
}

.side_bar form .form_input textarea{
    height: 100px;
}

.side_bar form .form_input input:focus{
    border: 2px solid var(--secondary-color--);
}

.side_bar form .form_input button{
    padding: 10px 15px;
    background: var(--secondary-color--);
    color: #fff;
    border: 2px solid var(--secondary-color--);
    transition: 0.3s;
    font-weight: 500;
    width: 100%;
    border-radius: 50px;
    font-size: 16px;
}

.side_bar form .form_input button:hover{
    background: none;
    color: var(--secondary-color--);
}

.amenities {
    text-align: center;
    margin-bottom: 10px;
}

.amenities img{
    width: 40px;
    margin-bottom: 5px;
    aspect-ratio: 1/1;
    object-fit: contain;
}

.amenities h3{
    font-size: 12px;
}

.project_details_slider{
    position: relative;
}

.project_details_slider .slick-arrow{
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--secondary-color--);
    color: #fff;
    background: var(--secondary-color--);
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: .3s;
}

.project_details_slider .slick-arrow:hover{
    background: var(--secondary-color--);
    color: #fff;
}

.project_details_slider .slick-arrow.slick-prev{
    left: 4%;
}

.project_details_slider .slick-arrow.slick-next{
    right: 4%;
}

.whats-app{
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 3%;
    /* bottom: 15%;
    right: 3%; */
    background: #01c83c;
    z-index: 99;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 1px 1px 8px 2px #959595;
}

.whats-app a{
    color: #fff;
    font-size: 25px;
}


