/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Figtree", sans-serif,  system-ui, -apple-system, "Segoe UI", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --heading-font: "Figtree", sans-serif;
  --nav-font: "Figtree", sans-serif;
}
.figtree-<uniquifier> {
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

/* Global Colors */
:root { 
  --default-color: #2563EB;
  --dark-color: #001D62; 
  --gray-color: #ededed; 
  --black-color: #0F172A;
  --contrast-color: #ffffff; 
  --hover-color: #41c5ff;  
}

.gray-bg{
  background:#ededed;
}

/* Nav Menu Colors */
:root {
  --nav-color: #001D62;  
  --nav-hover-color: #2563EB; 
  --nav-mobile-background-color: #004e98; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #1f1f1f; 
  --nav-dropdown-hover-color:#004e98; 
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  font-family: var(--default-font);
  background-color: rgb(248, 250, 252, 100%);
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
.zoom-effect {
  position: relative;
  width:100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.zoom-image img {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.zoom-effect:hover .zoom-image img {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}
input:focus, select:focus{
  outline: 0 !important;
  box-shadow: none !important;
  border-color:#dee2e6 !important;
}

/*--------------------------------------------------------------
# theme button
--------------------------------------------------------------*/
.theme-btn-fill, .theme-btn-outline{
  font-size: 16px;
  padding: 10px 22px;
  border-radius: 70px;
  transition: 0.3s;
  font-weight: 500;
  margin-right: 15px;
}
.theme-btn-fill i, .theme-btn-outline i{
  margin-right: 5px;
}
.theme-btn-fill{
  color: var(--contrast-color);
  background: var(--default-color);
  border: 1px solid var(--default-color);
}
.theme-btn-fill:hover{
  color: var(--dark-color);
  background: var(--hover-color);
  border-color: var(--hover-color);
}
.theme-btn-outline{
  color: var(--default-color);
  background: transparent;
  border: 1px solid var(--default-color);
}
.theme-btn-outline:hover{
  color: var(--contrast-color);
  background: var(--default-color);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--contrast-color);
  transition: all 0.5s;
  z-index: 997;  
}
.scrolled .header{
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}
.header .topbar {
  background-color: var(--default-color);
  color: var(--contrast-color);
  height: 40px;
  padding: 0;
  transition: all 0.5s;
  font-size: 12px;
}

.header .topbar i{
  margin-right: 10px;
  color: #7a90c8;
}

.header .topbar span{
  margin-right: 20px;
}
.header .topbar span:last-child{
  margin-right: 0;
}
.highlighted-text{
  color: #7a90c8;
}
.highlighted-text a, .highlighted-text a i{
  color: #ffffff !important;
  font-weight: 600;
}
.header .branding {
  min-height:85px;
  padding: 10px 0;
  background: var(--contrast-color);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-width: 69%;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--default-color);
  font-size: 16px;
  padding: 8px 20px;
  margin: 0 5px;
  border-radius: 90px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--dark-color);
  background: var(--hover-color);
}

.header .call-btn,
.header .call-btn:focus {
  color: #0F172A;
  background: #E7F7FE;
  font-size: 16px;
  padding: 8px 20px;
  margin: 0 5px;
  border-radius: 90px;
  transition: 0.3s;
  font-weight: 500;
}

.header .call-btn:hover,
.header .call-btn:focus:hover {
  color: var(--dark-color);
  background: color-mix(in srgb, var(--hover-color), transparent 15%);
}
.branding .property-search-bar{
  width: 63%;
}
.branding .property-search-bar form{
  width: 100%;
}
.branding .property-search-bar .search-bar{
  margin: 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Top Links Footer
--------------------------------------------------------------*/
#top-links-wrap{
  background: #EEF7FC;
  padding: 4em 0 3.5em 0;
}
.top-links-nav h3{
  font-size: 18px;
  color: var(--dark-color);
  margin-bottom: 22px;
  font-weight: 700;
}
.top-links-nav ul{
  padding: 0;
  list-style: none;
}
.top-links-nav li{
  margin-bottom: 5px;
}
.top-links-nav li a{
  color: #6e7587;
  font-size: 13px;
  line-height: 25px;
}
.top-links-nav li a:hover{
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--contrast-color);
  background-color: #131E29;
  font-size: 14px;
  position: relative;
}
.footer p, .footer a, .footer i{
 color: rgb(255 255 255 / 75%);
}
.footer:before {
  content: "";
  background-image:url(../../assets/img/footer-bg.svg);
  position: absolute;
  inset: 0;
  z-index: 1;
}
.footer .footer-top {
  padding: 4em 0 2em 0;
  border-bottom: 2px solid #49556480;
  z-index: 99;
  position: relative;
}
.brand-logo-f img{
  max-width: 67%;
}
.footer .footer-about{
  padding-right: 6em;
}
.footer .footer-about p {
  font-size: 14px;
  margin: 25px 0;
}
.footer .footer-contact p {
  margin: 15px 0;
}
.footer-contact p i{
  font-size: 18px;
  margin-right: 20px;
  vertical-align: middle;
}
.footer .footer-links h4{
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul li {
  padding: 9px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul a {
  display: inline-block;
  line-height: 1;
}
.footer .footer-links ul a:hover {
  text-decoration: underline;
}
.newsletter-input{
  margin: 2em 0 1em 0;
}
.newsletter-input form{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}
.newsletter-input input{
  background: #2a343ea6;
  width: 67%;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: none;
  outline: 0;
  color: #6A7178;
  font-weight: 500;
  border: 2px solid #6A7178;
}
.newsletter-input button{
  background: var(--default-color);
  padding: 10px 13px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border: 2px solid var(--default-color);
  border-radius: 8px;
  color: var(--contrast-color);
}
.newsletter-input button:hover{
  background: transparent;
  border: 2px solid var(--contrast-color);
}
.newsletter-input button i{
  margin-left: 10px;
  color: var(--contrast-color);
}
.unsubscribe-text{
  margin-bottom: 5px;
  font-size: 13px;
}
.unsubscribe-text, .protected-by, .protected-by a{   
 color: rgb(255 255 255 / 60%);
}
.unsubscribe-text i{
 font-size: 16px;
 margin-right: 10px;
}
.protected-by{
  font-size: 11.2px;
}
.protected-by a{
  text-decoration: underline;
}
.protected-by a:hover{
  text-decoration: none;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--default-color);
  font-size: 16px;
  color: var(--dark-color);
  margin-right: 10px;
  transition: 0.3s;
  background: var(--default-color);
}
.footer .social-links a:hover {
  color: var(--contrast-color);
  background: transparent;
  border: 1px solid var(--contrast-color);
}
.footer .copyright {
  padding: 25px 0 50px 0;    
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  position: relative;
  color: rgb(255 255 255 / 80%);
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .credits a{
  text-decoration: underline;
}
.footer .credits a:hover{
  text-decoration: none;
}

/*--------------------------------------------------------------
# Whatsaap Button
--------------------------------------------------------------*/
.whatsaap-sticky{
  
}
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:9999;
  text-decoration:none;
}
.whatsapp-icon{
  width:70px;
  height:70px;
  background:#E9F0FF;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
  position:relative;
}
.whatsapp-icon i{
  font-size:32px;
  color:#25D366;
  background:#fff;
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.notify-dot{
  position:absolute;
  top:10px;
  right:12px;
  width:12px;
  height:12px;
  background:red;
  border-radius:50%;
  border:2px solid white;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 2em 0 2em 0;
  clear: both;
}

@media (max-width: 1199px) {
  section,
  .section {
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.section-title h2 {
  font-size: 32px;
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 7px;
  position: relative;
  letter-spacing: -0.5px;
}
.section-title p {
  margin-bottom: 0;
  color: #535862;
  font-size: 17px;
}
.title-navigation a{
  font-weight: 600;
  font-size: 16px;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}
.hero-section{
  position: relative;
}
.hero-backdrop{
  min-height: 100%;  
  background-blend-mode: multiply;
}
.hero-content{
  text-align: center;
  margin: 5em 0 12.2em 0;
}
.hero-content h2{
  font-size: 48px;
  font-weight: bold;
  color: var(--contrast-color);
  margin-bottom: 25px;
  line-height: 1.2;
}
.hero-content p{
  font-size: 20px;
  font-weight: 500;
  color: var(--contrast-color);
  margin-bottom: 0;
}
.property-filter-home{
  border-radius: 18px;
  padding: 22px 30px;
  position: absolute;
  bottom: -24%;
  left: 0;
  right: 0;
  background-image: linear-gradient(to bottom, #a7aab7a3, #ffffff);
  width: 70%;
  box-shadow: 0px 24px 19px -8px #ececec96;
  margin: 0 auto;
  backdrop-filter: blur(6px) saturate(102%);
  -webkit-backdrop-filter: blur(6px) saturate(102%);
  z-index: 1;
}
.property-type-tag{
 display: flex;
 align-items: center;
}
.property-tag{
 border-radius: 90px;
 padding: 3px 10px;
 font-size: 16px;
 color: var(--contrast-color);
 border:2px solid var(--contrast-color);
 margin-right: 10px;
 min-width: 70px;
 text-align: center;
}
.property-tag.active, .property-tag:hover{
 background: var(--default-color);
 border-color: var(--default-color);
 color: var(--contrast-color);
}
.property-tag.tag-filled{
 color: var(--black-color);
 border:2px solid var(--contrast-color);
 background: var(--contrast-color);
}
.property-tag.tag-filled:hover{
 border:2px solid #1ba3df;
 background: transparent;
 color: #1ba3df;
}
.property-type-tag p{
  margin-bottom: 0;
  font-weight: 600;
  color: var(--black-color);
  margin-right: 10px;
}
.search-bar{
  background:#fff;
  border-radius:40px;
  padding:6px;
  display:flex;
  align-items:center;
  margin:20px 0;
  border: 1px solid #dfdfdf;
  box-shadow:0 0px 9px -2px #a6a4bc9e;
}
.location-select{
  border:none;
  border-right:2px solid #eee;
  padding:10px 15px;
  font-weight:500;
  outline:none;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.search-input{
  border:none;
  flex:1;
  padding:10px 15px;
  outline:none;
}
.search-btn{
  background:var(--default-color);
  border:none;
  color:var(--contrast-color);
  padding:10px 25px;
  border-radius:30px;
  font-size: 16px;
}
.search-btn:hover{
  background: var(--hover-color);
  color: var(--dark-color);
}
.search-btn i{
  font-size: 14px;
  margin-right: 5px;
}

/*--------------------------------------------------------------
# Offers Section
--------------------------------------------------------------*/
#offers{
  padding-top: 11em;
}
.offers .carousel {
  width: 100%;  
}
.offers .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offers .carousel-indicators{  
  bottom: -25%;
}
.offers .carousel-indicators li {
  cursor: pointer;
  background: #d2d2d2;
  overflow: hidden;
  border: 0;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
  margin: 0 2px;
}
.offers .carousel-indicators li.active {
  opacity: 1;
  background: var(--default-color);
}

/*--------------------------------------------------------------
# Premium Properties Section
--------------------------------------------------------------*/
#premium-properties-wrap{
  position: relative;
  padding-top: 3.5em;
}
.premium-properties-wrap .title-navigation{
  padding-top: 55px;
}
.property-card-big{
  background:var(--contrast-color);
  border-radius:20px;
  padding:15px;
  border: 1px solid #ececec;
  margin: 6px;
}
.property-card-big:hover{
  box-shadow: #3c40431a 0px 1px 2px 0px, #3c40431a 0px 1px 6px 2px;
}
.property-big-desc{
  margin: 0 1.5em 0 1em;
}
.offer-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border: 1px solid #e5e5e5;
  padding: 3px 15px;
  border-radius:25px;
  font-weight:600;
  color:var(--dark-color);
  background:var(--contrast-color);
  margin:15px 0;
  font-size: 16px;
}
.offer-badge img{
 width: 30px !important;
}
.property-title{
  font-size:22px;
  font-weight:700;
  margin-bottom:25px;
  color: var(--black-color);
}
.property-info{
  color:rgb(19, 29, 53, 90%);
  margin-bottom:18px;
  font-size: 17px;
  display: flex;
  align-items: center;
}
.property-info i{
  margin-right:10px;
  font-size: 18px;
}
.divider{
  border-top:2px solid #eee;
  margin:15px 0;
}
.price{
  font-size:19px;
  font-weight:700;
  color: var(--black-color);
}
.starting-price{
  font-size: 18px;
}
.dev-card{
  background: #F8FAFC;
  border: 1px solid #EBECED;
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.dev-card img{  
  max-width: 11%;
  border-radius:10px;
  object-fit:cover;
}
.dev-name{
  font-weight:600;
  font-size: 19px;
  color: var(--black-color);
  margin-bottom: 5px;
}
.property-img{
  border-radius:20px;
  overflow:hidden;
  position:relative;
}
.property-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.share-btn{
  position:absolute;
  bottom:20px;
  right:20px;
  background:var(--default-color);
  color:var(--contrast-color);
  width:45px;
  height:45px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:18px;
  cursor: pointer;
}
.share-btn:hover{
  color: var(--contrast-color);
}
.share-btn i{
  font-size: 18px;
}
.premium-properties-wrap .owl-slider .owl-nav{
  position: absolute;
  top: -27%;
  right: 0;
}
.premium-properties-wrap .owl-slider .owl-nav button{
  background: #ffffff !important;
  border-radius: 90px !important;
  height: 40px;
  width: 40px;
  margin-left: 10px;
  border: 1px solid #D5D7D9 !important;
}
.premium-properties-wrap .owl-slider .owl-nav button svg{
  width: 12px;    
  height: auto;
  vertical-align: baseline;
}
@media(max-width:768px){
  .property-card-big{
    padding:20px;
  }
  .property-title{
    font-size:22px;
  }
}

/*--------------------------------------------------------------
# Featured Projects Section
--------------------------------------------------------------*/
#featured-projects .section-title-wrap {    
  margin-bottom: 1rem;
}
.company-projects-wrap .owl-nav button{
  position: absolute;
  top: 42%;
  height: 45px;
  width: 45px;
  background-color: #ffffffa6 !important;
  border: 2px solid #e5e5e5 !important;
  border-radius: 100px;
}
.company-projects-wrap .owl-nav button svg{
  width: 18px;
  height: auto;
}
.company-projects-wrap .owl-nav button path{
  fill: #171b2a94;
}
.company-projects-wrap .owl-nav .owl-prev {
  left: -1%;
}
.company-projects-wrap .owl-nav .owl-next{
  right: -1%;
}
.property-card-small{
  background: var(--contrast-color);
  border-radius: 20px;
  padding: 8px;
  margin: 4px;
  border: 1px solid #ececec;
}
.property-card-small:hover{
  box-shadow: #3c40431a 0px 1px 2px 0px, #3c40431a 0px 1px 6px 2px;
}
.property-card-small .offer-badge {  
  justify-content: center;
  display: flex;
  padding: 0px 15px;
  margin: 20px 0;
}
.property-name-info, .property-card-small .offer-badge, .property-location, .property-price{
  margin-left: 20px;
  margin-right: 20px;
}
.property-name-info h3{
  font-size: 20px;
  color: var(--black-color);
  font-weight: 600;
  margin-bottom: 5px;
}
.property-name-info p{
  color: #7E7E7E;
  font-size: 15px;
  margin-bottom: 20px;
}
.property-location{
  align-items: center;
  justify-content: space-between;
  color: #7E7E7E;
  font-size: 15px;
}
.property-location i{
  color:#38BDF8;
  font-size: 16px;
  margin-right: 5px;
}
.divider-muted{
  border-top: 2px solid #FBFBFB;
  margin: 20px 0;
}
.property-card-small .divider-muted, .property-card-small .divider{
  margin-left: -8px;
  margin-right: -8px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.property-price{
  margin-bottom: 10px;
}
.property-price .starting-price{
  font-size: 17px;
}
.property-price .price{
  font-size: 17px;
}

/*--------------------------------------------------------------
# why choose Section
--------------------------------------------------------------*/
.why-choose-card{
  background-image: linear-gradient(to right, #0D3590 3%, #001D62 97%);
  padding: 40px;
  border-radius: 20px;
}
.why-choose-card .section-title-wrap{
  justify-content: center;
  margin-bottom: 4.2rem;
}
.why-choose-card .section-title h2{
  color: var(--contrast-color);
  font-weight: 500;
  margin-bottom: 17px;
}
.why-choose-card .section-title p{
  color: rgb(255, 255, 255, 75%);
}
.why-choose-stats{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin:15px 0;
}
.stats-counter{
  text-align: center;
  min-width: 25%;
  position: relative;
}
.stats-counter h3{
  font-size: 33px;
  color: var(--contrast-color);
  font-weight: 700;
}
.stats-counter h3 i{
  font-size: 28px;
}
.stats-counter p{
  color: rgb(255, 255, 255, 75%);
  font-size: 16px;
}
.stats-counter::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%; 
  height: 50%;
  width: 2px;
  background-color: rgb(255, 255, 255, 28%); 
}
.stats-counter:first-child::before {
  content: none;
}

/*----------------------------------
# Residencial Properties Section
----------------------------------*/
.RP-cards{
  position: relative;
}
.RP-cards-content{
  position: absolute;
  top: 8%;
  left: 5%;
}
.RP-cards-content h3{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}
.RP-cards-content p{
  font-size: 14px;
  color: rgb(15, 23, 42, 75%);
  font-weight: 500;
}

/*-------------------------------------------
# Top Cities Section
-------------------------------------------*/
#top-cities-wrap{
  padding-bottom: 4em;
}
.city-card{
  position:relative;
  overflow:hidden;
  border-radius:12px;
  margin-bottom: 16px;
}
.city-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.4s;
  object-position: center;
}
.city-card.big-card .city-overlay{
  width: 50%
}
.city-overlay{
  position:absolute;
  top: 6%;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, rgba(0, 29, 98, 0.9) 20%, rgb(27 61 34 / 0%) 100%);
  color: #fff;
  padding: 8px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.city-overlay h5{
  margin:0;
  font-weight:500;
  font-size: 18px;
  margin-bottom: 4px;
}
.city-overlay span{
  font-size:14px;
  opacity:0.9;
}

/*----------------------------------
# Call To Action Section
----------------------------------*/
.call-to-action {
  padding:0;
  position: relative ;
  width: 100%;
}
.call-to-action:before {
  content: "";
  background-image: linear-gradient(to right, rgb(60 94 187 / 62%) 20%, rgb(37 63 128 / 98%) 72%);
  position: absolute;
  inset: 0;
  z-index: 1;
}
.call-to-action img{
  position: relative;
  width: 100%;
  object-fit: cover;
}
.call-to-content{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  z-index: 2;
  justify-content: center;
  max-width:53%;
  margin: 0 auto;
  text-align: center;
  flex-direction: column;
}
.call-to-content h2 {
  color: var(--contrast-color);
  font-size: 3.1em;
  font-weight: 700;
}
.call-to-content p{
  margin: 0 3em;
  color: var(--contrast-color);
  font-size: 18px;
  margin-bottom: 35px;
}
.cta-stats-wrap{
  display: flex;
  gap: 20px;
  margin: 25px 0;
}
.cta-stats img{
  width: 38px;
  margin-right: 10px;
}
.cta-stats{
  font-size: 18px;
  color: var(--contrast-color);
}
.cta-btn{
  background: var(--contrast-color);
  border: 2px solid var(--contrast-color);
  border-radius: 50px;
  text-align: center;
  color: #2563EB;
}
.cta-btn:hover{
  background: transparent;
  color: var(--contrast-color);
  transition: 0.3s;
}
.cta-btn a{
  display: block;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 600;
}
.cta-btn i{
  margin-right: 5px;
}

/*--------------------------------------------------------------
# Top Builders  Section
--------------------------------------------------------------*/
#top-builders-wrap{
  padding: 4em 0;
}
#top-builders-wrap .section-title-wrap{
  margin-bottom: 0.5rem;
}
.builder-slider-card{
  margin: 25px 0;
}
.builders-logo-slider .element{
  background: var(--contrast-color);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 5px 4px 0px #f1f1f1c2;
  margin: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}
.builders-logo-slider .element img{
  max-width: 76%;
}
.slick-slider-rtl{
  padding-left: 20px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
#testimonials-wrap{
  background: var(--dark-color);
  padding: 0;
}
.testimonial-box{
  max-width: 85%;
  margin: 0 auto;
}
.testimonial-box .section-title-wrap{
  margin-top: 5em;
  padding-right: 45px;
}
.testimonial-box .section-title h2{
  font-size:34px;
  font-weight:700;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--contrast-color);
}
.testimonial-box .section-title p{
  margin-top:20px;
  color: var(--contrast-color);
  color: #9aa0a6;
  font-size: 16px;
}
.swiper{
  height:510px;
}
.testimonial-card{
  background:#2563EB;
  border-radius:14px;
  padding:15px;
  color:white;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
  min-height: 240px;
}
.testimonial-card p{
  font-size:16px;
  line-height:1.7;
}
.testimonial-author{
  margin-top:20px;
  font-weight:600;
}
.testimonial-role{
  font-size:13px;
  opacity:.8;
}
.stars{
  color:#ffb547;
  margin-top:10px;  
  text-align: right;
}
.stars i{
  font-size:12px;
}
@media(max-width:991px){
  .swiper{
    height:400px;
    margin-top:40px;
  }
}
/*--------------------------------------------------------------
# Recent Article
--------------------------------------------------------------*/
#recent-article-wrap{
  padding: 4em 0 5em 0;
}
#recent-article-wrap .section-title-wrap{
  margin-bottom: 2rem;
}
#articles-carousel.owl-carousel .owl-item img {
  display: inline;
  width: 100%;
}
#articles-carousel.owl-carousel .owl-stage-outer{
  height: auto !important;
  /*padding: 0 35px 0 0 ;*/
}
.recent-article-box{
  background: var(--contrast-color);  
  border-radius: 12px;
  display: block;
  overflow: hidden;
  border: 1px solid #ececec;
  margin: 3px;
}
.recent-article-box:hover{
  box-shadow: #3c40431a 0px 1px 2px 0px, #3c40431a 0px 1px 6px 2px;
}
.article-img{
  position: relative;
}
.article-img img{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.category-meta-box{
  position: absolute;
  left: 4%;
  top: 8%;
  background: #001d62e8;
  border-radius: 50px;
  padding: 6px 16px;
}
.category-meta-box p{
  text-align: center;
  font-size: 14px;
  color: var(--contrast-color);
  margin-bottom: 0;
}
.article-content{
  padding: 20px 20px 40px 20px;
}
.article-content h2{
  font-size: 19px;
  font-weight: 600;
  line-height: 27px;
  color: var(--dark-color);
  margin-bottom: 10px;
}
.article-content p{
  font-size: 15px;
  color: #59616a;
  margin-bottom: 20px;
}
.author-category-meta{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 13px;
  color: rgb(15, 23, 42, 75%);
  font-size: 14px;
  gap: 22px;
}
.author-category-meta i{
  color: rgb(15, 23, 42, 75%);
  margin-right: 8px;
  font-size: 12px;
}
.article-btn{
  color: var(--dark-color);
  font-weight: 500;
  font-size: 15px;
}
.article-btn i{
 margin-left: 10px;
}
.recent-article-wrap.company-projects-wrap .owl-nav .owl-prev {
  left: -1.5%;
}
.recent-article-wrap.company-projects-wrap .owl-nav .owl-next {
  right: -1.5%;
}

/*===============================================
------------ Property Detail Pages --------------
===============================================*/

/*============= Inner Breadcrumbs ==============*/
.breadcrumbs-wrap{
  background: #F8FAFC;
  padding: 22px 0;
}
.breadcrumbs-wrap ul{
  margin-bottom: 0;
  padding-left: 0;
}
.breadcrumbs-wrap ul li{
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-right: 8px;
  color: #7C8BAF;
  font-weight: 500;
}
.breadcrumbs-wrap li:after{
 content: "/";
 color:#7C8BAF;
}
.breadcrumbs-wrap li:last-child:after{
  content: none;
}
.breadcrumbs-wrap li:hover a{
  color: var(--hover-color);
}
.breadcrumbs-wrap li:last-child{
 color: var(--dark-color);
}


/*============= Property Gallery ==============*/
#propertD-gallery-wrap{
  background: var(--contrast-color);
  padding-bottom: 0;
}
.PD-gallery-xl, .PD-gallery-l{
  position: relative;
}
.big-image-wrap .city-overlay h5 {    
  margin-bottom: 0;
  padding: 9px 0;
  font-size: 16px;
}
.big-image, .small-g-img{
  border-radius: 10px;
  overflow: hidden;
}
.main-img{
  height:420px;
  width:100%;
  object-fit:cover;
}
.small-img{
  height:200px;
  width:100%;
  object-fit:cover;
}
.view-btn{
  position:absolute;
  bottom:10px;
  right:26%;
  background:white;
  border:none;
  padding:6px 14px;
  border-radius:20px;
  box-shadow:0 3px 8px rgba(0,0,0,0.2);
  font-size:14px;
  cursor:pointer;
}
.lg-thumb-outer{
  overflow-x:auto;
  white-space:nowrap;
  padding:10px 0;
}
.featured-badge{
  position:absolute;
  bottom:-4px;
  left:-10px;
  background:#163d7a;
  color:#fff;
  padding:6px 14px;
  border-radius:20px;
  font-size:14px;
}
.featured-badge i{
  margin-right: 5px;
}
@media(max-width:992px){
  .main-img{
    height:350px;
  }
  .gallery-img{
    height:180px;
  }
}

.PD-inner-info-wrap{
  margin: 2em 0 0em 0;
}
.PD-info .property-name{
  display: inline-flex;
  gap: 8px;
  align-items: flex-end;
  color: #827e7e;
}
.PD-info .property-name h3{
 font-size: 2.2em;
 margin-bottom: 0;
 line-height: 1;
 color: var(--black-color);
 font-weight: 700;
}
.PD-info .property-name a{
  color: var(--default-color);
  font-weight: 600;
}
.PD-info .property-info{
  color: #827e7e;
  margin-top: 15px;
}
.PD-info  .property-info i {
  font-size: 25px;
}
.property-price_buttons{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 30px 0 35px 0;
}
.property-price_buttons .offer-badge{
 border: none;
 padding: 0;
 margin: 0;
}
.property-price_buttons .price a.info-icon {
  vertical-align: text-bottom;
}
.property-price_buttons .price a.info-icon i {
  color: #FDB300;
  font-size: 8px;
  border: 1px solid #FDB300;
}
.property-price_buttons .price{
  font-size: 23px;
  font-weight: 600;
}
.pro-buttons-group{
  display: flex;
}
.pro-buttons-group .theme-btn-outline{
 background: #DCF9EC;
 border-color: #3DB17D;
 color: var(--black-color);
 margin-right: 0;
}
.pro-buttons-group .theme-btn-outline i{
  color: #3DB17D;
}
.pro-buttons-group .theme-btn-outline:hover i{
  color: var(--contrast-color);
}
.pro-buttons-group .theme-btn-outline:hover{
  background: #3DB17D;
  color: var(--contrast-color);
}
.info-cards-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.info-card-sm{
  background: var(--contrast-color);
  border-radius: 6px;
  border: 1px solid #ececec;
  padding: 15px;
  box-shadow: #3c404308 0px 1px 2px 0px, #3c404308 0px 1px 7px 2px;
  text-align: center;
  width: 24%;
}
.info-card-sm h3{
  color:#808EB0;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 3px;
}
.info-card-sm p{
  font-size: 16px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 0;
}

/*============== Page Scroll Nav ===============*/
#page-scroll-nav-wrap{
  background: var(--contrast-color);
  padding: 14px 0; 
  box-shadow: 0px 24px 12px -22px rgba(0, 0, 0, 0.1);
  position: sticky;
  z-index:99;
  top: 12%;
  overflow: hidden;
}
.page-scroll-nav ul{
  margin: 0;
  padding: 0; 
}
.page-scroll-nav ul li{
  list-style: none;
  display: inline-block;
  margin-right: 18px;
}
.page-scroll-nav li a{
  color: #535862;
  font-size: 16px;
  padding: 5px;
  font-weight: 500;
}
.page-scroll-nav li a.active{
  border-bottom: 1px solid var(--default-color);
  color: var(--default-color);
}

/*========= Property Details Left Cards =========*/
@media (min-width: 1024px) {
  .property-details-left .col-lg-8{
    padding-right: 4em;
  }
}
.PD-common-card{
  background: var(--contrast-color);
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 1.5em;
}
.PD-cards-title h3{
  color: var(--black-color);
  font-size: 24px;
  margin-bottom: 23px;
  font-weight: 700;
}
.PD-overview-info-wrap{
  display: inline;
}
.PD-overview-info-items{
  display: inline-block;
  width: 32%;
  text-align: left;
  margin-bottom: 23px;
}
.PD-overview-info-items h3{
  color: #808EB0;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 3px;
}
.PD-overview-info-items p{
  font-size: 16px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 0;
}
a.info-icon{
 margin-left: 5px;
}
a.info-icon i{
  color: #7a7a7a;
  font-size: 8px;
  border: 1px solid #7a7a7a;
  border-radius: 100px;
  padding: 3px;
  height: 17px;
  width: 17px;
  text-align: center;
  vertical-align: text-bottom;
}
.PD-overview-info-items:last-child i{
  color: var(--default-color);
  margin-left: 10px;
}
.swot-strength-card{
  background-color: #F8FAFC;
  border-radius: 20px;
  padding: 20px;
}
.swot-strength-card h3{
  color: var(--default-color);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}
.swot-strength-card ul{
  margin: 0;
}
.swot-strength-card li{
  font-size: 16px;
  margin-bottom: 10px;
  color: #535862;
  line-height: 28px;
  font-weight: 500;
}
.USPs-info-wrap ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.USPs-info-wrap li{
  margin-bottom: 20px;
  color: #535862;
  font-weight: 500;
}
.USPs-info-wrap li i{
  color: var(--default-color);
  transform: rotate(45deg);
  margin-right: 10px;
}
.PD-amenities-wrap{
  display: inline;
}
.PD-amenities-items{
  display: inline-block;
  width: 32%;
  margin-bottom: 24px;
}
.PD-amenities-items p{
  color: #535862;
  margin-bottom: 0;
  font-weight: 500;
}
.PD-amenities-items p i{
  color: var(--default-color);
  margin-right: 10px;
}
.PD-amenities-btn{
  display: inline-block;
  margin: 1em 0;
}
.AD-branding{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.5em 0;
}
.developer-logo{
  border: 1px solid #ececec;
  border-radius: 9px;
  width: 55px;
  height: 55px;
}
.developer-logo img{
  width: 100%;
}
.developer-name h3{
  color: var(--default-color);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0px;
}
.developer-name p{
  color: #827e7e;
  margin-bottom: 0;
  font-weight: 500;
}
.developer-desc-text{
  font-weight: 500;
  color: var(--gray-color);
  color: #535862;
}
.developer-desc-text a{
 font-weight: 700;
 color: #0F172A;
}
.developer-desc-text a:hover{
  color: var(--default-color);
}
.PD-AD-btn{
  display: block;
  margin: 2em 0;
}
.PD-nearby-places .USPs-info-wrap h3, .PD-location-wrap h3{
  color: var(--black-color);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}
.PD-nearby-places .USPs-info-wrap li i {
  transform: rotate(0deg);
}
.PD-location-wrap{
  background: #FAFAFA;
  padding: 15px;
  border-radius: 15px;
  margin: 3em 0 1em 0;
}
.location-address{
  background: var(--contrast-color);
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #ececec;
  margin-bottom: 15px;
  color: #535862;
  font-weight: 500;
}
.location-address i{

}
.location-map{
  border-radius: 8px;
  border: 1px solid #ececec;
}
.location-map iframe{
  width: 100%;
  border-radius: 8px;
  height: 350px;
}
.floor-plan-box{
  margin-top: 30px;
}
.floor-plan-box .flat-tabs{
  border: none;
}
.floor-plan-box .flat-tabs .nav-item button{
  font-size: 16px;
  padding: 8px 22px;
  border-radius: 9px;
  transition: 0.3s;
  font-weight: 500;
  margin-right: 15px;  
  border:1px solid #ececec;
  color: #A4A7AE;
}
.floor-plan-box .flat-tabs .nav-item button.active, .floor-plan-box .flat-tabs .nav-item button:hover{
 background: var(--default-color);
 color: var(--contrast-color);
 border-color: var(--default-color);
}
.floor-plan-box .tab-content{
  margin-top: 20px;
}
.floor-plan-box .tab-pane .size-tabs{
 border-bottom:2px solid #ececec; 
 margin-top: 30px;  
}
.floor-plan-box .tab-pane .size-tabs .nav-link{
 color: var(--black-color);
 font-weight: 600;
}
.floor-plan-box .tab-pane .size-tabs .nav-link.active{
  border-bottom:2px solid var(--default-color);
  color: var(--default-color);
  font-weight: 600;
}
.floor-plan-box .tab-pane .price-row{
  font-size: 17px;
  font-weight: 700;
  color: var(--black-color);
}
.tab-area-info span{
  color: #808EB0;
}

/*========= Detail Page Contact Section ==========*/
.PD-contact-card{
  background: var(--contrast-color);
  padding: 30px 20px;
  border-radius: 20px;
  margin-bottom: 1.5em;
  border: 1px solid #ececec;
  position: sticky;
  z-index: 1;
  top: 26%;
  overflow: hidden;
}
.contact-title{
  color: var(--dark-color);
  font-size: 21px;
  margin-bottom: 23px;
  font-weight: 600;
}
.contact-title i{
  color: var(--dark-color);
  font-size: 11px;
  border: 2px solid var(--dark-color);
  border-radius: 100px;
  padding: 8px;
  height: 30px;
  width: 30px;
  text-align: center;
  vertical-align: bottom;
}
.PD-contact-card .input-field, .PD-contact-card .phone-wrapper{
  width: 100%;
  background: var(--contrast-color);
  border: 1px solid #ccc;
  border-radius: 29px;
  padding: 10px 20px;
  margin-bottom: 15px;
  box-shadow: none;
  outline: 0;
}
.PD-contact-card .phone-wrapper{
  padding: 0;
}
.PD-contact-card .country-code, .PD-contact-card .phone-input{ 
  border: none;
  margin-bottom: 0;
  padding: 10px 20px;
  border-radius: 29px;
  box-shadow: none;
  outline: 0;
}
.PD-contact-card .country-code{
  width: 27%;
  border-right: 2px solid #eee;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.PD-contact-card .phone-input{
  width: 70%;  
}
.PD-contact-card .theme-btn-fill{
  width: 100%;
  margin-top: 10px;
}

/*============== FAQs Section ==================*/
#faqs-section-wrap{
  padding-bottom: 5em;
}
.faq-section-title{
  color: var(--black-color);
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}
.faqs-card-wrap .accordion-item{
  background: transparent;
  border:none;
  border-bottom: 1px solid #D5D7DA;
  border-radius: 0;
  outline: 0;  
}
.faqs-card-wrap .accordion-button, .faqs-card-wrap .accordion-header{
  background: transparent;
  border:none;
  padding:9px 0 7px 0;
  font-size: 18px;
  font-weight: 600;
  box-shadow: none;
}
.faqs-card-wrap .accordion-item .accordion-body{
  padding: 0;
  padding-bottom: 20px;
}

/*===============================================
------------ Property Listing Pages --------------
===============================================*/
#property-listing-wrap{
  padding-bottom: 5em;
}

/*============ Property Filters ===============*/
.PL-filters-wrap{
 background: var(--contrast-color);
 border-radius: 9px;
}
.PL-filters-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E8E9EA;
  padding: 15px 13px 10px 13px;
}
.PL-filters-title h3{
  font-size: 16px;
  text-transform: uppercase;
  color: var(--black-color);
  font-weight: 700;
  margin-bottom: 0;
}
.reset-option{
 color: #4B515F;
 font-size: 16px;
}
.reset-option i{
  color: #4B515F;
  margin-right: 10px;
  font-size: 14px;
}
.PL-filters-cards{
  padding: 23px 15px;
  font-size: 14px;
}
.budget-filter-card{
 border-bottom: 1px solid #E8E9EA;
 padding-bottom: 13px;
 margin-bottom: 7px;
}
.filter-cards-title{
  font-size: 16px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 9px;
}
.MM-select select{
  font-size: 14px;
  color: #4B515F;
}
.MM-select select:focus{
  box-shadow: none;
  outline: 0;
  border-color:#dee2e6;
}
.BT-select a{
  border:1px solid #dee2e6;
  font-size: 14px;
  color: #4B515F;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 500;
  width: 100%;
  display: block;
}
.BT-select a:hover, .BT-select a.active{
  border:1px solid #2563EB;
  background:#F4F7FE;
}
.filter-tag-wrap{

}
.filter-tag-wrap ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
}
.filter-tag-wrap li{
  display: inline-flex;
}
.filter-tag-wrap li a{
  border: 1px solid #dee2e6;
  font-size: 14px;
  color: #4B515F;
  border-radius: 6px;
  padding: 5px;
  font-weight: 500;
}
.filter-tag-wrap li a:hover{
  border:1px solid #2563EB;
  background:#F4F7FE;
}
.filter-tag-wrap li a i{
  font-size: 12px;
  margin-right: 2px;
  color: rgb(15, 23, 42, 37%);
}
.filter-locality-wrap .form-check-input, .filter-locality-wrap .search-group input:focus{
  outline: 0;
  border-color: #dee2e6;
  box-shadow: none;
}
.filter-locality-wrap .search-group input{
  padding-left: 33px; 
}
.filter-locality-wrap .search-group{
 position: relative;
 margin-bottom: 15px;
}
.filter-locality-wrap .search-group i{
  position: absolute;
  color: #4B515F;
  top: 34%;
  left:10px;
}
.filter-locality-wrap .form-check{
 margin-bottom: 8px;
}
.filter-locality-wrap .form-check-label{
  font-size: 15px;
  color: #4B515F;
  border-radius: 6px;
  font-weight: 500;
  vertical-align: middle;
}
.budget-filter-card:last-child{
  border-bottom: none;
}
.PL-wrap-title{
  margin-bottom: 30px;
}
.PL-wrap-title, .PL-wrap-btn-group{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.PL-wrap-btn-group .form-select{
 width: 125px;
}
.PL-right-title h3{
  font-size: 19px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 6px;
}
.PL-right-title p{
  margin-bottom: 0;
  color: #4B515F;
  font-size: 14px;
}
.property-list-card{
  margin-bottom: 30px;
}
.property-list-card .property-card{
  background:#fff;
  border-radius:12px;
  padding:20px;
  box-shadow:0 2px 10px rgba(0,0,0,0.08);
}
.property-list-card .carousel-indicators button{
  height: 6px;
    width: 6px;
    border-radius: 80px;
    /* background: #6F6D6A; */
    box-sizing: unset;
}
.property-list-card .custom-dots {
    bottom: -5px !important;
}
.property-list-card .property-slider img{
  height:313px;
  object-fit:cover;
  border-radius:12px;
}

.property-list-card .premium-badge{
  position:absolute;
  top:0px;
  left:0px;
  color:#fff;
  padding:4px 10px;
  font-size:13px;
  border-radius:13px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.property-list-card .premium-badge.city-overlay h5 {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  /* margin-bottom: 4px; */
}

.property-list-card .custom-dots{
  bottom:10px;
}
.property-list-card .offer-badge{
  font-size: 14px;
  padding: 2px 12px;
}
.property-list-card  .offer-badge img {
  width: 29px !important;
}
.property-list-card .property-title{
  font-weight:600;
  margin-bottom:10px;
  font-size: 20px;
}

.property-list-card .property-sub{
  color:#666;
  font-size:14px;
}

.property-list-card .share-icon{
  font-size:16px;
  color: var(--default-color);
}

.property-list-card .property-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap: 5px;
  background: #f8f9fa;
  padding: 13px;
  border-radius: 10px;
  margin-top: 0px;
  border: 1px solid #e7e7e7;
  margin-right: 3px;
}
.property-list-card .stat{
  border-right: 1px solid #e7e7e7;
}
.property-list-card .stat:last-child{
  border: none;
}
.property-list-card .stat strong{
  display:block;
  font-size:13px;
  color: var(--black-color);
}

.property-list-card .stat span{
  font-size:12px;
  color:#666;
}

.property-list-card .feature-tags{
  margin-top:15px;
}

.property-list-card .feature-tags span{
  background: #F5FCFF;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  margin-right: 6px;
  color: var(--dark-color);
  font-weight: 600;
}

.property-list-card .developer-section{
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.property-list-card .dev-card{
  background: transparent;
  padding: 0;
  border: 0;
  border-radius: 0;
  gap: 0;
  width: 48%;
  margin-top: 0;
}
.property-list-card .dev-card img {
  max-width: 20%;
  border-radius: 5px;
  object-fit: cover;
  margin-right: 10px;
}
.property-list-card  .dev-name {
  font-size: 15px;
  margin-bottom: 0px;
}
.property-list-card .text-muted{
  font-size: 12px;
}

.property-list-card .developer{
  display:flex;
  gap:10px;
  align-items:center;
}

.property-list-card .developer img{
  border-radius:6px;
}
.property-list-card .contact-buttons{
  display: flex;
}
.property-list-card .contact-buttons button{
  margin-left:8px;
}

/* Responsive */

@media(max-width:768px){

  .property-list-card .property-stats{
    grid-template-columns:repeat(2,1fr);
  }

  .property-list-card .developer-section{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

}
.pagination-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-around;
  gap:30px;
  margin-top: 45px;
}
.page-btn{
  display:flex;
  align-items:center;
  gap:10px;
  color:#888;
  font-weight:500;
  cursor:pointer;
}
.page-btn i{
  width:40px;
  height:40px;
  border:1px solid #ddd;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}
.next-btn{
  color:var(--default-color);
}
.next-btn i{
  border-color:var(--default-color);
  color:var(--default-color);
}
.page-numbers{
  display:flex;
  gap:15px;
}
.page{
  width:45px;
  height:45px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:500;
  cursor:pointer;
  color:#888;
}
.page.active{
  background:var(--contrast-color);
  color:var(--default-color);
  border:1px solid #E9EAEB;
}
/* Responsive */
@media(max-width:576px){
  .pagination-wrapper{
    gap:20px;
  }
  .page-btn span{
    display:none;
  }
}


/*===============================================
---------------- Responsive Css -----------------
===============================================*/
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1200px;
  }
}
