/*--------------------------------------------------------------
# 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: #000000; 
  --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
--------------------------------------------------------------*/
.contact-buttons .btn-success{
  font-size: 15px;
  padding: 10px 17px;
  background: #DCF9EC;
  border-color: #3DB17D;
  color: var(--black-color);
  margin-right: 0;
}
.contact-buttons .btn-success:hover{
  background: #3DB17D;
  color: var(--contrast-color); 
}
.contact-buttons .btn-success i {
    color: #3DB17D;
}
.contact-buttons .btn-success:hover i {
    color: var(--contrast-color);
}
.theme-btn-fill, .theme-btn-outline{
  font-size: 16px;
  padding: 10px 18px;
  border-radius: 8px;
  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: 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;
    transition: 0.3s;
  }

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

 .navmenu li:hover > a,
.navmenu .active,
.navmenu .active:focus {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: var(--nav-hover-color);
}

  .navmenu:hover a.active::after {
    width: 0%;
}

  .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) {
 

  .navmenu {
    padding: 0;
    
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 63px 20px 150px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffffe6;
    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: 5px 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;
  }



  
}

/*--------------------------------------------------------------
# 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: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.footer .footer-top {
  padding-top: 4em;
  padding-bottom: 2em;
  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: 15px 0;
}
.footer .footer-contact p {
  margin: 15px 0;
  display: flex;
  align-items: center;
}
.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: 5px;
  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 15px;    
  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;
}
.bottom-sticky-nav{
    display: 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: 3em 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: 60px;
  font-weight: bold;
  color: var(--contrast-color);
  margin-bottom: 25px;
  line-height: 1;
  text-transform: uppercase;
}
.hero-content p{
  font-size: 18px;
  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: 4em;
}
.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:10px 0 15px;
  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:30px;
  font-size: 17px;
  display: flex;
  align-items: center;
}
.property-info i{
  margin-right:10px;
  font-size: 18px;
}
.divider{
  border-top:2px solid #eee;
  margin:20px 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: 25px;
}
.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,
.zoom-image {
    width: 100%;
    height: 220px; /* 🔥 consistent height */
    overflow: hidden;
    border-radius: 14px;
    position: relative;
}


.property-img img,
.zoom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 important */
    display: block;
}


.primeImg,
.primeZoomImg{
    width: 100%;
    height: 420px; /* 🔥 consistent height */
    overflow: hidden;
    border-radius: 14px;
    position: relative;
}


.primeImg img,
.primeZoomImg img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 important */
    display: block;
}





.share-btn{
 position: absolute;
    bottom: 0px;
    right: 50px;
    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);
  background: #2563eb;
}

.share-btn:hover i {
  color: #fff;
}
.share-btn i{
  font-size: 18px;
}


.whishlist-btn:hover{
  color: var(--contrast-color);
  background: #2563eb;
}

.whishlist-btn:hover i {
  color: #fff;
}
.whishlist-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;
  font-size: 13px;
}
.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 #ffffff;
    margin: 20px 0;
    margin-top: -5px !important;
}
.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:60%;
  margin: 0 auto;
  text-align: center;
  flex-direction: column;
}
.call-to-content h2 {
  color: var(--contrast-color);
  font-size: 3em;
  font-weight: 700;
}
.call-to-content p{
  margin: 1em 3em;
  color: var(--contrast-color);
  font-size: 18px;
  margin-bottom: 30px;
}
.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: 150px;
}
.builders-logo-slider .element img{
  max-width: 100%;
}
.slick-slider-rtl{
  padding-left: 20px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
#testimonials-wrap{
  background: #001D62;
  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:50px;
  color: var(--contrast-color);
  color: #ebe7e7;
  font-size: 16px;
}
.swiper{
  height:515px;
}
.testimonial-card{
  background:#2563EB;
  border-radius:14px;
  padding:15px;
  color:white;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
  min-height: 300px;
}
.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;
}
.propertyD-slider{
  position:relative;
  border-radius:13px;
  overflow:hidden;  
  height:404px;
}
.propertyD-slider .slide{
  display: none;
  cursor:pointer;
  position:relative;
  transform:scale(1.05); /* slight zoom out */
  transition-delay:0.5s ;
}
.propertyD-slider .slide.active{
  display: block;
  transform:scale(1); 
}
.propertyD-slider .slide video{
  width:100%;
  height:404px;
  object-fit:cover;
  display: block;
  z-index: 11;
}
.sharing-icons-group{
  position: absolute;
  top: 7px;
  right: 0px;
}
.sharing-icons-group a{
 background: var(--contrast-color);
 padding: 7px;
 border-radius: 10px;
 margin-right: 7px;
 text-align: center;
 height: 35px;
 width: 40px;
 display: inline-block;
}
.sharing-icons-group a i{
 color: #666666;
 font-size: 18px;
}
/* PLAY ICON CENTER */
.propertyD-slider .play-icon i{
  position:absolute;
  top:46%;
  left:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  color: var(--contrast-color);
}
/* VIDEO THUMB ICON */
.propertyD-slider .video-thumb{
  position:absolute;
  bottom:20px;
  right:20px;
  width:100px;
  height: 90px;
  border-radius:12px;
  overflow:hidden;
  border: 2px solid var(--contrast-color);
  cursor:pointer;
  z-index:10;
}
.propertyD-slider .video-thumb video{
  width:100%;
  height:90px;
  object-fit:cover;
}
.propertyD-slider .video-label{
  position:absolute;
  bottom:5px;
  right:5px;
  left: 25px;
  background:#fff;
  padding:4px;
  border-radius:7px;
  font-size:12px;
  color: var(--black-color);
  text-align: center;
}
/* ARROWS */
.propertyD-slider .arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.5);
  color:#fff;
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:22px;
  z-index:10;
}
.propertyD-slider .left{ left:15px; }
.propertyD-slider .right{ right:15px; }

.PD-gallery-xl, .PD-gallery-l{
  position: relative;
}
.big-image-wrap .city-overlay h5 {    
  margin-bottom: 0;
  padding: 9px 0;
  font-size: 16px;
}
.advertisment-box .carousel-item img{
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.advert-slider .carousel .carousel-control-prev,
.advert-slider .carousel .carousel-control-next {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.advert-slider .carousel:hover .carousel-control-prev,
.advert-slider .carousel:hover .carousel-control-next {
  visibility: visible;
  opacity: 1;
}
.advertisment-box .carousel-indicators {
  background: #0000007d;
}
.advert-slider .carousel-indicators { 
  margin: 8px auto;
}
.advert-slider .carousel-control-next, .advert-slider .carousel-control-prev{
 top: 50%;
 bottom: unset;
 background: #07070754;
 height: 35px;
 width: 35px;
 border-radius: 100px;
 margin: 0 5px;
}
.advert-slider .carousel-control-next-icon, .advert-slider .carousel-control-prev-icon{
  height: 15px;
}
.advert-slider .carousel-indicators [data-bs-target] {   
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color:#a4a4a4;
  opacity: 1;
}
.advert-slider .carousel-indicators .active {
  opacity: 1;
  background-color: var(--default-color);
}
.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: 0%;
  overflow: hidden;
}
.page-scroll-nav ul{
  margin: 0;
  padding: 0; 
  display: flex;
  column-gap: 20px;
}
.page-scroll-nav ul li{
  list-style: none;
}
.page-scroll-nav li a{
  color: #535862;
  font-size: 16px;
  padding: 5px;
}
.page-scroll-nav li a.active{
  border-bottom: 1px solid var(--default-color);
  color: var(--default-color);
}

/*========= Property Details Left Cards =========*/

.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: flex;
  flex-wrap: wrap;
  gap: 15px;
  row-gap: 25px;
}
.PD-overview-info-items{
  width: calc(95% / 3);
  text-align: left;
}
.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(--dark-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;
  display: flex;
  gap: 20px;
  align-items: center;
}
.USPs-info-wrap li i{
  color: var(--default-color);
  transform: rotate(45deg);
}
.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: 100px;
  height: 60px;
      display: flex;
    justify-content: center;
    align-items: center;
}
.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: 19px;
  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 .property-card:hover{
  box-shadow: #3c40431a 0px 1px 2px 0px, #3c40431a 0px 1px 6px 2px;
}
.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:340px;
  object-fit:cover;
  border-radius:12px;
}
.property-list-card .property-slider .carousel-item.active img {
  border-radius:12px;
  overflow: hidden;
}
.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:18px;
  color: var(--default-color);
}

.property-list-card .property-stats{
  display:grid;
  grid-template-columns:repeat(3,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:14px;
  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;
}


.advertisment-box2{
    margin-bottom: 1.5em;
    background: var(--contrast-color);
    padding: 0px;
    border-radius: 20px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(236, 236, 236);
}

.advertisment-box2 img{
    border-radius: 20px;
}



/* 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 screen and (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1200px;
  }
}
@media screen and (min-width:769px) and (max-width:1023px){
  .branding {
    justify-content: space-between !important;
    position: relative;
  }
  .login-register-container {
    position: absolute;
    right: 15%;
  }
  .hero-content h2{
    font-size: 40px;
  }
  .property-filter-home {
    width: 90%;
  }
  .search-btn {
    padding: 10px 18px !important;
  }
  .stats-counter {
    min-width: 23%;
  }
  .why-choose-stats {
    gap: 10px;
  }
  .stats-counter h3 {
    font-size: 25px;
  }
  .stats-counter h3 i {
    font-size: 21px;
  }
  .RP-cards{
      margin-bottom: 15px;
  }
  .call-to-content {
    max-width: 80%;
  }
  .call-to-content h2 {
    font-size: 2.2em;
    margin-top: 0.5em;
  }
  .call-to-content p {
    margin: 1em 0em;
    font-size: 17px;
  }
  #property-listing-wrap .col-md-3{
      width: 33%;
  }
  #property-listing-wrap .col-md-9{
      width: 67%;
  }
  .dynamic-area-size {
    font-size: 13px !important;
  }
}
@media screen and (min-width:769px) and (max-width:1198px){
   .page-scroll-nav ul{
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    gap: 15px;
    white-space: nowrap;
  }
  .page-scroll-nav ul li{ 
    margin-bottom: 4px;
  }
  .page-scroll-nav li a{
      display: block;
      font-size:14px;
  } 
  .newsletter-input button {
    padding: 10px 4px;
  }
  .newsletter-input input {
    width: 65%;
  }
}
@media screen and (max-width:768px){
  /*-- Global CSS -----*/
  section{
    padding-top: 0;
  }
  .section-title h2{
    font-size: 28px;
  }
  .section-title p {
    font-size: 16px;
    line-height: 22px;
  }
  .company-projects-wrap .owl-nav button {
    height: 40px;
    width: 40px;
  }
  .company-projects-wrap .owl-nav button svg {
    width: 15px;
  }
  .d-none{
    display:none;
  }
  /*-- Global CSS -----*/
 
  .branding .logo{
    width: 92%;
  }
  .branding .logo img{
    max-width: 52%;
  }
  
  .header .call-btn{
      display: none;
  }
  .header .call-btn, .header .cta-btn{
      margin-top: 8px !important;
      font-size: 14px !important;
      padding: 6px 15px !important;
      width: 100%;
      margin: 0;
  }
  .login-register-container{
    margin: 0;
    position: absolute;
    
    right: 15%;
  }
  .login-register-container a, .login-register-container i {
     font-size: 33px !important;
  }
  /*--- listing header ---*/
  .listing-header{
    padding-top: 15px;
  }
  .listing-header .d-flex.justify-content-between{
    flex-wrap: wrap; 
    position: relative;
  }
  .listing-header .search-bar{
    position: relative; 
    column-gap: 5px;
  }
  .listing-header .location-select{
    width: 48%; 
    background: #F8FAFC;
    padding: 10px 14px;
  }
  .listing-header .city-select-wrapper{
    width: 48% !important; 
    position: unset;
  }
  .listing-header .city-selected{
    background: #F8FAFC;
    padding: 10px 14px;  
  }
  .listing-header .city-dropdown{
    top: 49%;
    left: 0;
  }
  .listing-header .search-wrapper .search-input {
    border: 1px solid #ccc;
  }
  .listing-header .search-btn{
    position: absolute;
    bottom:11%;
    right: 4px;
    background: transparent !important;
    width: auto !important;
  }
  .listing-header .search-btn i{
    color:#2563eb;
  }
  .listing-header .login-register-container{
    position: absolute;
    top: 0px;
    right: 0px;
    margin: 0;
  }
  /*--- listing header ---*/
  .hero-content {
    margin: 2em 0 20em 0;
  }
  .hero-content h2 {
    font-size: 29px;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  .hero-content p {
    font-size: 16px;
  }
  .property-filter-home{
    padding: 20px 15px;
    width: 93%;
  }
  .search-bar {
    background:transparent;
    border: none;
    box-shadow: none;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    margin: 10px 0;
  }
  .city-select-wrapper {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .city-dropdown {
    width: 100% !important;
    z-index: 99;
  }
  .location-select {
    border-right: none;
    padding: 12px 15px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-radius: 30px;
    width: 100%;
    margin-bottom: 10px;
  }
  select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://w3.org" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 16px;
      padding-right: 40px; 
  }
  .search-wrapper .search-input {
    border-radius: 25px;
    margin-bottom: 10px;
  }
  .search-btn{
    width: 100% !important;
  }
  .property-type-tag {
    flex-wrap: wrap;
    gap: 10px;
  }
  .property-type-tag p {
    min-width: 100%;
  }
  .property-tag {
    margin-right:0px;
  }
  #offers {
    padding-top: 9.5em;
    padding-bottom: 90px;
  }
  #premium-properties-wrap {
    padding-top: 0em;
  }
  .offers .carousel-indicators {
    /*display: none;*/
  }
  .premium-properties-wrap .owl-slider .owl-nav {
    position: unset;
    text-align: center;
    margin-top: 5px;
  }
  .property-big-desc {
    margin: 0 0 20px 0;
  }
  .offer-badge{
    font-size: 13.5px;
    padding-left: 10px !important;
  }
  .property-title {
    margin-bottom: 18px;
  }
  .property-info{
    margin-bottom: 13px;
    font-size: 15px;
    padding-left: 6px;
  }
  .property-info img{
    width: 16px !important;
  }
  .dev-card{
    padding: 8px 12px;
  }
  .dev-name {
    font-size: 16px;
    margin-bottom: 0px;
  }
  .dev-card .text-muted{
     font-size: 13.5px; 
  }
  .section-title-wrap {
    margin-bottom: 1rem;
  }
  .property-card-big{
      margin: 0;
  }
  .primeImg, .primeZoomImg {
    height: 200px;
  }
  .why-choose-card {
    padding: 40px 20px 20px 20px;
  }
  .why-choose-card .section-title-wrap {
    margin-bottom: 2rem;
  }
  .why-choose-stats {
    flex-wrap: wrap;
    margin: 0;
  }
  .stats-counter {
    width: 100%;
    padding-bottom:10px;
  }
  .stats-counter::before {
        content: none;
        display: none;
    }
  .stats-counter:nth-child(3)::before{
      background-color: transparent;
  }
  .stats-counter h3 {
    font-size: 22px;
  }
  .stats-counter h3 i {
    font-size: 19px;
  }
  .RP-cards {
    margin-bottom: 15px;
  }
  .call-to-action img{
    height: 320px;
  }
  .call-to-content{
    max-width: 100%;
    top: -10px;
  }
  .call-to-content h2 {
    font-size: 30px;
    line-height: 31px;
  }
  .call-to-content p {
    margin: 0;
    font-size: 16px;
  }
  .cta-btn{
    margin-top: 20px;
  }
  .cta-btn a {
    padding: 10px 15px;
    font-size: 14px;
  }
  #top-cities-wrap {
    padding-bottom: 2em;
  }
  #top-builders-wrap {
    padding: 2em 0;
  }
  .testimonial-box {
    max-width: 90%;
  }
  .testimonial-box .section-title-wrap {
    margin-top: 2em;
    padding-right: 0;
  }
  .testimonial-box .section-title h2 {
    font-size: 30px;
  }
  .swiper {
    height: 500px;
    margin-top: 10px;
  }
  .slick-slider-rtl {
    padding-left:0px;
  }
  #recent-article-wrap {
    padding: 2em 0;
  }
  #recent-article-wrap .section-title-wrap{
    margin-bottom: 0.5rem;
  }
  #top-links-wrap {
    padding: 2em 0;
  }
  .top-links-nav h3 {
    font-size: 16px;
  }
  .newsletter-input form{
    gap: 10px;
    flex-wrap: wrap;
  }
  .newsletter-input input, .newsletter-input button {
    width: 100%;
  }
  .footer .copyright{
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .whatsapp-icon i {
    font-size: 19px;
    width: 40px;
    height: 40px;
  }
  .whatsapp-icon {
    width: 55px;
    height: 55px;
  }
  .notify-dot {
    top: 7px;
    right: 10px;
    width: 10px;
    height: 10px;
  }
  .PL-wrap-title{
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .propertyD-slider {
    height: auto !important;
  }
  .video-thumb{
      display: none;
  }
  .propertyD-slider .arrow{
    width: 35px;
    height: 35px;
  }
  .property-price_buttons{
    flex-wrap: wrap;
    gap: 20px;
  }
  .pro-buttons-group{
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
  }
  .pro-buttons-group .theme-btn-fill{
    margin-right: 0;
  }
  
  .pro-buttons-group .download-btn{
    margin-left: 0 !important;
    width: auto;
  }
  .property-name{
    flex-wrap: wrap;
    padding-left: 8px;
  }
  .PD-info .property-name h3{
    font-size: 27px;
    width: 100%;
  }
  .PD-info .property-name a{
    font-size: 14px;
  }
  .info-cards-wrap{
    flex-wrap: wrap;
    gap: 15px;
    column-gap: 10px;
  }
  .info-card-sm {
    width: 48%;
    min-height: 74px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .info-card-sm h3 {
    font-size: 12px;
  }
  .info-card-sm p {
    font-size: 14px;
  }
  .page-scroll-nav ul{
    display: flex;
    overflow-x: scroll;
    overflow-y: hidden;
    gap: 15px;
    white-space: nowrap;
  }
  .page-scroll-nav ul li{ 
    margin-bottom: 4px;
  }
  .page-scroll-nav li a{
      display: block;
      font-size:14px;
  }
  .overview-card-wrap{
      margin-top: 1.5em;
  }
  .PD-overview-info-items {
    width: calc(94% / 2);
  }
  .PD-overview-info-items p {
    font-size: 14px;
  }
  .PD-cards-title h3 {
    font-size: 20px;
  }
  #property-listing-wrap {
    padding-bottom: 1em;
  }
  .property-info-details .share-btn {
    bottom: 19px !important;
  }
  .property-list-card .stat {
    border-right: none;
  }
  .property-list-card .dev-card {
    width: 100%;
  }
  .payment-table th, .payment-table td{
    white-space: nowrap;
    font-size: 14px;
  }
  .PD-location-wrap {
    background: transparent !important;
    padding: 0 !important;
  }
  .contact-title {
    font-size: 18px;
  }
  .filter-accordian{
    display:none;
  }
  .budget-filter-card.active .filter-accordian{
    display:block;
  }
  .budget-filter-card.active .filter-accordian.row{
    display:flex;
  }
  .budget-filter-card.active .filter-cards-title:after{
     content: "−"; 
  }
  .budget-filter-card .filter-cards-title:after{
      content: "+";
  }
  .filter-cards-title{
     display: flex;
    justify-content: space-between;
  }
  #contactPopup .modal-dialog {
    margin-left:auto;
    margin-right:auto;
  }
  .PD-overview-info-items:last-child p {
    word-wrap: break-word;
  }
  .investors-page .hero-pro{
    padding: 40px 0px 50px !important;
  }
  .investors-page .hero-inner {
    padding: 15px 20px !important;
  }
  .about-page .about-section {
    padding: 40px 0 !important;
  }
  .about-page .about-why {
    padding: 40px 0 !important;
  }
  .about-page .about-drive-pro {
    padding: 40px 0 !important;
  }
  .about-page .section-header h2, .about-page .about-drive-pro h2, .about-page .cta-box h2 {
    font-size: 27px !important;
  }
  .about-page .about-cta-pro {
    padding: 40px 0px !important;
  }
  .contact-page .cp-wrapper {
    padding: 25px !important;
  }
  .contact-page .cp-content h2 {
    font-size: 27px !important;
  }
  .contact-page .cp-info {
    padding: 40px 0 !important;
  }
  .contact-page .cp-form {
    padding: 16px !important;
  }
  .contact-page .actions {
    margin-top: 29px !important;
    display: flex;
    flex-direction: column;
  }
  .blog-list-section{
      padding-top: 50px;
  }
  .blog-title{
    font-size: 23px !important;
  }
  .bottom-sticky-nav{
    position: sticky;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    z-index: 99;
  }
  .bottom-sticky-nav ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }
  .bottom-sticky-nav a{
      display: block;
  }
  .bottom-sticky-nav a i{
    color: var(--default-color);
    font-size: 26px;
  }
  .whatsapp-float {
    bottom: 60px;
    right: 10px;
    display: none;
  }
  .about-why .why-card{
      text-align: center;
  }
  
  .property-search-bar {
        margin-top: 15px;
    }

}



/* ==========================
   MOBILE BOTTOM NAV
========================== */

.bottom-sticky-nav{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: #fff;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -3px 12px rgba(0,0,0,.08);
    z-index: 9999;
}

.bottom-sticky-nav .container{
    padding: 0;
    max-width: 100%;
}

.bottom-sticky-nav ul{
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bottom-sticky-nav li{
    flex: 1;
}

.bottom-sticky-nav a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    color: #6b7280;
    text-decoration: none;
    transition: .3s;
}

.bottom-sticky-nav a i{
    font-size: 22px;
}

.bottom-sticky-nav a:hover,
.bottom-sticky-nav a.active{
    color: #2563eb;
}

.bottom-sticky-nav li:nth-child(3) a{
    color: #25D366;
}

.bottom-sticky-nav li:nth-child(3) a:hover{
    color: #1ebe5d;
}

@media (min-width:768px){
    .bottom-sticky-nav{
        display:none;
    }
}

@media (max-width:767px){
    body{
        padding-bottom:56px;
    }
}



/* Mobile Scrollable Tabs */
@media (max-width: 767px) {

    #page-scroll-nav-wrap{
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 10px 0;
        position: sticky;
    }

    #page-scroll-nav-wrap::-webkit-scrollbar{
        display: none;
    }

    #page-scroll-nav-wrap ul{
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        margin: 0;
        padding: 0;
    }

    #page-scroll-nav-wrap ul li{
        flex: 0 0 auto;
        list-style: none;
    }

    #page-scroll-nav-wrap ul li a{
        display: block;
        padding: 10px 16px;
        white-space: nowrap;
    }
}

@media (max-width:767px){
    .offer-btn-wrap{
        padding: 20px 0 0px 0px;   /* Top & Bottom */
    }
}
