@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


/* Fonts */
:root {
  --default-font: "Jost", sans-serif;
  --heading-font: "Jost", sans-serif;
  --nav-font: "Jost", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #000000;
  --accent-color: #ED1C24;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --gray-nav: #0D263C;
  --red-color: #ED1C24;
  --orange-color: #EC6325;
  --gradient-btn: linear-gradient(0deg, var(--red-color), var(--red-color)), var(--orange-color);
  --blue-btn: #2665B0;
  --swiper-navigation-size: 0;

}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #FFFFFF;
  /* The default color of the main navmenu links */
  --nav-hover-color: #ED1C24;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #000000;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ED1C24;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

html,
body {
  overflow-x: hidden !important;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--background-color);
  background-color: var(--gray-nav);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

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

.btn-getstarted,
.btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--gradient-btn);

  padding: 8px 25px;
  /* margin: 0 0 0 30px; */
  padding: 17.5379px 33.6922px;
  transition: 0.3s;
  border-radius: 18px;
  font-family: var(--default-font);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #FFFFFF;


}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
  color: #FFFFFF;
  background: var(--blue-btn);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    /* padding: 6px 15px; */
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# 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 25px;

    font-family: var(--nav-font);

    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
    display: flex;
    align-items: center;
    text-align: center;
    text-transform: capitalize;
    color: #FFFFFF;
    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;
  }
}

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

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

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

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

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-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 .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--background-color);
  background: #001D3F url(../img/footer-bg.png) center / cover no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center;
  font-size: 14px;
  padding-bottom: 30px;
  position: relative;
  padding-top: 30px;
}

.footer .logo {
  max-height: 50px;
  margin-bottom: 30px;

}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;


  margin-right: 10px;
  transition: 0.3s;
}

.footer .footer-about svg:hover {
  fill: var(--accent-color);
  transition: ease-in-out 0.3s;
}

.footer h4 {
  position: relative;
  padding-bottom: 15px;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 19.4px;
  line-height: 19px;
  text-align: start;
  text-transform: capitalize;
  color: #FFFFFF;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;

}

/* .footer .footer-links ul li:first-child {
  padding-top: 0;
} */

.footer .footer-links ul a {
  display: inline-block;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 40px;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0px 0px;
}

.footer .copyright p {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 0;
}

.copyright a {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  color: #FFFFFF;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .mobileimage
  {
  	width : 150px;
  }
  .lst_heading h1
  {
  	font-size: 30px !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/bg-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.page-title .heading {
  padding-top: clamp(100px, 10vw, 150px);
  padding-bottom: clamp(50px, 7vw, 100px);
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;

}



.page-title nav {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "-";
  display: inline-block;
  padding-right: 10px;
  color: #fff
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.3rem, 8vw, 30px);
  line-height: clamp(2.2rem, 7.5vw, 39px);
  color: #fff;
  margin-bottom: 40px;
}



.btn-find-home {
  background: var(--blue-btn);
  padding: 17.5379px 33.6922px;
  transition: 0.3s;
  border-radius: 18px;
  font-family: var(--default-font);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #FFFFFF;

  justify-content: center;
}



.btn-find-home:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}


/* banner search form css */
.banner-search {
  background: #F9FCFF;
  border-radius: 18px;
  padding: 30px;
  max-width: 100%;
  gap: 10px;

}

.banner-search .form-control {
  font-size: 1rem;
  padding: 15px 30px;
  background: #EAF0F5;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 18px;
  font-family: var(--default-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #44525E;
}

.form-control:focus {
  box-shadow: none;
  background-color: #e9ecef;
}

.date-input-field {
  padding-right: 45px;
}



.calendar-icon-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.mb_30 {
  margin-bottom: 30px;
}


.stats-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 35px 0px;
  overflow: hidden;
  color: white;
  /* padding: 20px 0px; */
}

.stats-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1.5px);
  border-radius: 12px;
}

.stats-item:hover {
  transform: translateY(-5px);
}


.stats-text {
  margin-bottom: 0;
  margin-left: 10px;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}


.stats-rating .rating-text {
  font-size: 1rem;
  margin-left: 10px;
  font-weight: bold;
}

/* banner search form css */


.pt_100 {
  padding-top: clamp(50px, 5vw, 100px);
  padding-bottom: clamp(50px, 5vw, 100px);
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}

.section-title h5 {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.section-title h1 {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 36.3px;
  line-height: 44px;
  text-align: center;
  color: var(--default-color);
}

.marquee-container {
  width: 100%;
  overflow: visible;
  white-space: nowrap;

}

.marquee-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 90.9px);
  display: flex;
  align-items: center;
  color: #FFFFFF;
}

.featured-property,
.latest-property {
  background-color: #DFE7ED;
  overflow: hidden;

}

.listings_cards {
  background-color: #EAF0F5;
  overflow: hidden;
}

.our_vision {
  background-color: #E2E8ED
}

.track-rewards {
  background-color: #EAF0F5;
  overflow: hidden;
}



.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee-left 30s linear infinite;
}

.marquee-content.right {
  animation: marquee-right 30s linear infinite;
}

.marquee-container_1:nth-child(1) .marquee-content {
  animation-duration: 35s;
}

.marquee-container_1:nth-child(2) .marquee-content {
  animation-duration: 30s;
}

.marquee-container_1:nth-child(3) .marquee-content {
  animation-duration: 40s;
}


@keyframes marquee-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}


/* feature swiper slider css */

.feature-slider .swiper {
  padding-bottom: 70px;
}

.feature-slider .card {
  border-radius: 40px;
  border: none;
  overflow: hidden;
}

.property_img {
  height: 200px;
  /* object-fit: cover;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.7) 100%), url(../img/pl1.png) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center; */
  border-radius: 40px;


}

.feature-slider .price-tag,
.listings_cards .price-tag,
.favorites_page .price-tag {
  position: absolute;
  bottom: 50%;
  left: 20px;
  background: transparent;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 35px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}

.my_properties .price-tag {
  position: absolute;
  bottom: 55%;
  left: 20px;
  background: transparent;
  padding: 6px 14px;
  border-radius: 8px;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 35px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}

.favorites_page .price-tag {
  bottom: 45% !important;

}




.feature-slider .card-body h6 {

  font-family: 'Jost';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  display: flex;
  align-items: center;
  color: #000000;
  margin-bottom: 5px;
}

.feature-slider .card-body p {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 29px;
  display: flex;
  align-items: center;
  color: #000000;
  margin-bottom: 10px;
  gap: 10px;
}

.feature-slider .details {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height, or 150% */
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #44525E;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}



/* Pagination + Arrows Center Bottom */
.feature-slider .swiper-controls {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.feature-slider .swiper-pagination {
  position: static;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.feature-slider .swiper-pagination-bullet {
  background: #bbb;
  opacity: 1;
  width: 8px;
  height: 8px;
}

.feature-slider .swiper-pagination-bullet-active {
  width: 11.2px;
  height: 11.2px;
  background: var(--blue-btn);
  border-radius: 5.6px;
}

.feature-slider .swiper-button-next,
.feature-slider .swiper-button-prev {
  position: static;
  color: var(--blue-btn);
  width: 30px;
  height: 30px;
}

#latest-property .swiper-button-next,
#latest-property .swiper-button-prev {
  position: static;
  color: var(--accent-color);
  width: 30px;
  height: 30px;
}

#latest-property .swiper-controls .swiper-button-prev svg,
#latest-property .swiper-controls .swiper-button-next svg {
  stroke: var(--accent-color);

}

#latest-property .swiper-pagination-bullet-active {
  width: 11.2px;
  height: 11.2px;
  background: var(--accent-color);
  border-radius: 5.6px;
}


.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}


.rewards_text h2 {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  line-height: 48px;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  margin-bottom: 15px;

}


/* .featured-property slider css ends */


/* timeline css */

.timeline-container {
  position: relative;
  padding: 50px 0;
  max-width: 900px;
}

.timeline-line {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #dc3545;
}

.timeline-item {
  position: relative;
  text-align: start;
  padding: 0 15px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 42px;
  transform: translateX(0%);
  width: 25px;
  height: 25px;
  background-color: var(--accent-color);
  border-radius: 50%;
  border: 4px solid #fff;
  z-index: 1;
}

.timeline-item-content {

  padding: 20px;

}

.timeline-item .icon-box {
  background-color: var(--blue-btn);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.timeline-item .icon-box svg {
  color: #fff;
  width: 40px;
  height: 40px;
}

.step-text {
  color: var(--accent-color);
  margin-bottom: 25px;
  position: absolute;
  top: -25%;
  left: 50px;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-size: 14.4px;
  line-height: 22px;
  display: flex;
  align-items: center;
  letter-spacing: 1.68px;
  text-transform: uppercase;
}

.timeline-title {
  margin-bottom: 10px;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #000000;
}

.timeline-description {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #44525E;
  max-width: 180px;
  margin-bottom: 0;
  border-left: 2px solid #2665B0;
  padding: 0px 15px;
}

@media (max-width: 767.98px) {
  .timeline-container {
    padding: 20px 0;
  }
  .banner-search
  {
  	width : 100% !important;
  }
  .banner-search .w-50
  {
  	width : 100% !important;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item {
    border-left: 2px solid #dc3545;
    margin-left: 20px;
    text-align: left;
    padding-left: 20px;
    padding-bottom: 30px;
  }

  .timeline-item::before {
    top: 0;
    left: -10px;
    transform: none;
  }

  .timeline-item-content {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .timeline-item .icon-box {
    margin-left: 0;
  }
}



.rewards_sec {
  background: linear-gradient(0deg, rgba(0, 27, 59, 0.8), rgba(0, 27, 59, 0.8)), url(../../assets/img/bg.jpg) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 50px;
  border-radius: 16px;

}

.rewards_text p {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 159.76%;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  color: #FFFFFF;
}

/*--------------------------------------------------------------
# prime american website css 
--------------------------------------------------------------*/

.b-tab {

  display: none;

}

.b-tab.active {
  display: block;
  height: auto;
}

.b-nav-tab {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: capitalize;
  color: var(--accent-color);
  padding: 20px 15px;
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF), var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 24px;
  padding: 13px 16px 13px 13px;
  margin-left: 10px;
  margin-bottom: 40px;
}

.b-nav-tab.active {
  color: var(--accent-color);
}

.profile_reg {
  background: linear-gradient(90deg, rgba(0, 22, 49, 0.6) 100%), url(../../assets/img/profile-rew.png) center center no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.padding_150 {
  padding-top: clamp(100px, 15vw, 150px);
  padding-bottom: clamp(100px, 15vw, 150px);
}


.dashboard_promo,
.about_us_sec {
  /* background: url(../../assets/img/grow-banner.png) center center no-repeat; */
  background: #EAF0F5 url("../img/bgg.png") center/cover no-repeat;
  align-items: center;
  background-size: 100% auto;
  background-position: bottom;
}

.promo_txt h2 {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  line-height: 48px;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.promoCards {
  padding: 20px;
}

.cards_txt h5 {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 22.8px;
  line-height: 27px;
  color: #000000;
}


.dashboard_promo p,
.about_us_sec p {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #44525E;

  margin-bottom: 0;
}


.call_pos {
  position: absolute;
  top: 20px;
  right: 30px;
}

.form-container {
  background: #FFFFFF;
  border: 1px solid #C7D5E1;
  box-shadow: 0px 0px 20px rgba(13, 38, 60, 0.2);
  border-radius: 40px;
  padding: 40px 25px;
}

.form-container .form-control,
.form-container .form-select {
  background: #EAF0F5;
  border: 1px solid #C7D5E1;
  border-radius: 18px;
  padding: 19px 31px;
}

.form-container .form-control::placeholder,
.form-container .form-select::placeholder {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  display: flex;
  align-items: center;
  color: #44525E;
}

.form-container .form-label {
  margin-bottom: 8px;

  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  /* identical to box height, or 150% */
  display: flex;
  align-items: center;
  color: #000000;
}

.map-sec {
  /* background-color: #DFE7ED; */
  background: #DFE7ED url(../img/map.png) center / cover no-repeat;
  align-items: center;
  background-size: 100% auto;
  background-position: 100% 300px;
}


.clients_testimonials::before {
  background: #EAF0F5 url(../img/bgg.png) center / cover no-repeat;
  align-items: center;
  background-size: 100% auto;
  background-position: bottom;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scaleX(-1);
}

.test_sec {
  border-radius: 40px;
  border: 1px solid #C7D5E1;
  padding: 50px;
  background: #F9FCFF;
}

.blue {
  color: var(--blue-btn) !important;
}

.clients_testimonials .promo_txt h2 {

  margin-bottom: 50px;
}

.review_text {
  font-family: 'Jost';
  font-style: italic;
  font-weight: 600;
  font-size: 22.2px;
  line-height: 33px;
  display: flex;
  align-items: center;
  color: #000000;
  margin-bottom: 30px;
}

.client_name h6 {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}

.client_name p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #44525E;
}

.follow h5 {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 19.4px;
  line-height: 23px;
  color: #FFf;
  margin-bottom: 20px;
}

.send_btn input {
  width: 100%;
  height: 75px;
  border-radius: 25px;
  padding: 5px;
  background-color: #002F66;
  border: 0;
  padding-left: 30px;

}

.send_btn {
  margin-bottom: 30px;
}

.send_btn input::placeholder,
.send_btn input:focus {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  border: 0;
  text-transform: capitalize;
  color: #FFFFFF;
}

.footer .form-check-input[type=checkbox] {
  border: 1px solid #C7D5E1;
  border-radius: 7px;
  background-color: #001D3F;
  margin-right: 10px;
  width: 17px;
  height: 17px;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
}

.footer .form-check-input[type=checkbox]:checked {
  background-color: #ed1c24;
  border-color: #ed1c24;

}


.footer .form-check-input:checked {
  background-color: #ed1c24;
  border-color: #ed1c24;
}

.send_btn button {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  text-transform: capitalize;
  color: #FFFFFF;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  height: 65px;
  background: var(--accent-color);
  border-radius: 20px;
  width: 110px;
}

.send_btn button:hover {
  background-color: var(--blue-btn);
}

.modal_t h3 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #262E4A;

}

.modal_txt .form-control {
  background: #FAFBFC;
  border-radius: 6px;
  padding: 8px 19px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #000000;
}

.modal_txt input::placeholder {

  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #000000;
}

.modal-header .btn-close {
  background-image: url(../img/close.png);
}

.modal_txt .form-label {
  margin-bottom: .5rem;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #84818A;
}

.modal-body {

  padding: 50px;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 1050px;
    margin-right: auto;
    margin-left: auto;
  }
}

.modal_img {
  text-align: center;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}


/* user role screen css */

.main-container {
  background-color: #E1E8EE;
  overflow: hidden;
  display: flex;
  height: 100vh;
}

.left-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  max-width: 50%;
}

.right-panel {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;


  margin-left: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  color: #fff;
  text-align: center;
  transition: background-image 0.5s ease;
}

.panel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 4rem 8rem;
  background: #FFFFFF;
  border-radius: 32px;
}

.main-container .title {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  color: #202020;
  margin-bottom: 12px;
}

.main-container .subtitle {
  margin-bottom: 1.5rem;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #202020;
}

.option-tile {
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
  background: #FFFFFF;
  border: 1px solid #C7D5E1;
  border-radius: 24px;
}

.option-tile.active {
  background: rgba(38, 101, 176, 0.1);
  border: 2px solid var(--blue-btn);
}

.option-tile:hover {
  border-color: var(--blue-btn);
  background-color: #e9f5ff;
}

.option-tile .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  background: #DFE7ED;
  border: 1px solid #C7D5E1;
  border-radius: 12px;
  width: 50px;
  height: 50px;
}

.option-tile.active .icon {
  background: #DFE7ED;

}

.option-tile .icon-customer::before {
  content: url('../img/customer.png');
}

.option-tile .icon-agent::before {
  content: url('../img/agent.png');
}

.option-tile h5 {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #000000;
}

.option-tile p {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #44525E;
  margin-bottom: 0;
}



/* Slider and Bullets */
.slider-text {
  position: absolute;
  bottom: 2rem;
  color: #fff;
  opacity: 1;
  transition: opacity 0.5s ease;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3.6px);
  border-radius: 12px;
  padding: 22px 59px;
  z-index: 1;

}

.slider-text.active {
  opacity: 1;
}

.slider-text h2 {
  margin-bottom: 0.5rem;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 35px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 0;
}

.slider-text p {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  color: #FFFFFF;
  max-width: 500px;
  margin-bottom: 0;
}

.slider-bullets {
  position: absolute;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  bottom: 140px;
  z-index: 99;
}

.bullet {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 25px;
  width: 8px;
  height: 6px;

  transition: background-color 0.3s ease;
}

.bullet.active {
  width: 26px;
  height: 6px;
  background: #FFFFFF;
  border-radius: 25px;
}

@media (max-width: 992px) {
  .main-container {
    flex-direction: column;
    height: auto;
    width: 100%;
    min-height: 50vh;
  }

  .left-panel {
    max-width: 100%;
    padding: 1rem;

  }

  .right-panel {
    margin: 0;
    border-radius: 0;

    height: 100%;
  }

  .option-tile .icon {
    font-size: 1.5rem;
    padding: 0.3rem;
  }

  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 0.9rem;
  }
}


.panel-content .form-label {
  margin-bottom: 0.25rem;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #84818A;
}

.panel-content .form-control,
.panel-content .form-select {
  border: none;
  border-bottom: 1px solid #DCDBDD;
  border-radius: 0;
  padding: 0.9rem 0rem;
  transition: border-color 0.3s ease;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #202020;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--blue-btn);
}

.panel-content .form-control:focus {
  border-color: var(--blue-btn);
  background: transparent;
}

.form-control::placeholder {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #84818A;
}

.input-group-password {
  position: relative;
}

.input-group-password .form-control {
  padding-right: 2.5rem;
}

.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #6c757d;
  z-index: 100;
}


.terms_check label {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #84818A;
}

.terms_check .form-check-input:checked {
  background-color: #2665B0;
  border-color: #2665B0;
}

.verification-input-group {
  display: flex;
  gap: 8px;
  justify-content: start;
}

.verification-input-group .form-control {
  text-align: center;
  height: 50px;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 12px;
  border: 1px solid #DCDBDD;
  border-radius: 5px;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 33px;
  color: #202020;
}

.timer-text {
  color: var(--blue-btn);
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ends user role css */

/*--------------------------------------------------------------
about css 
--------------------------------------------------------------*/
.about_text h1 {
  font-size: clamp(28px, calc(28px + (54 - 28) * ((100vw - 320px) / (1920 - 320))), 54px);
  line-height: clamp(40px, calc(40px + (65 - 40) * ((100vw - 320px) / (1920 - 320))), 65px);
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  color: #FFFFFF;

}

.stat-item {
  padding: 25px 10px 25px 25px;
  text-align: start;
  position: relative;
  margin-bottom: 10px;
}

.stat-items {
  position: relative;
}

.stat-items:last-child:before {
  display: none;
}

.stat-item:before {
  content: '';
  right: 0;
  border-left: 1px solid #C7D5E1;
  position: absolute;
  top: auto;
  bottom: 30px;
  height: 100px;
}

.stat-item:last-child:before {
  display: none;
}

.stat-number {
  font-size: 3rem;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 700;
  line-height: 71px;
  color: #000000;
}

.stats_sec .stat-text {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #44525E;
}

.border-line {
  border-left: 1px solid #dee2e6;
  /* Light gray border */
}

.vision-cards {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  min-height: 250px;
  padding: 35px;
  background: #FFFFFF;
  border: 1px solid #C7D5E1;
  border-radius: 40px;
}

.vision-cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}

.card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  flex-wrap: wrap;
}

.card-text {
  flex: 1;
  margin-right: 1rem;
}

.card-number {
  font-size: 3rem;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  display: flex;
  align-items: center;
  letter-spacing: 2.375px;
  color: #DFE7ED;
}

.our_vision .card-title {

  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 22.2px;
  line-height: 27px;
  color: #000000;
}

.card-description {
  margin-top: 0.5rem;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #44525E;
  margin-bottom: 0;
}

.card-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: #DFE7ED;
  border: 1px solid #C7D5E1;
  border-radius: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.our_agents {
  background-color: #EAF0F5;
}

.team_img {
  margin-bottom: 15px;
}

.team-content h2 {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  align-items: center;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 5px;

}

.map_listings {
  padding-top: clamp(50px, 10vw, 160px);
  padding-bottom: clamp(50px, 5vw, 100px);
  background-color: #EAF0F5;
}

.map_listings iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 16px;
}

.listings_cards .details,
.favorites_page .details,
.my_properties .details {
  margin-bottom: 20px;
}

.listings_cards .card,
.favorites_page .card,
.my_properties .card {
  border-radius: 40px;
  border: none;
  overflow: hidden;
}


.pagination-circle .page-link {
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #212529;
  border-color: #dee2e6;
}

.pagination-circle .page-item.active .page-link {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.pagination-circle .page-link:hover {
  color: #212529;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.pagination-circle .page-link:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}


.chevron_pos {
  position: absolute;
  top: 55px;
  right: 30px;
}

.listings_cards .form-container {
  height: auto;
  z-index: 99;
}

#listings_details {
  background-color: #EAF0F5;
  /* padding-top: 100px; */
}

.listings_details_section {
  padding-top: 160px;
  padding-bottom: 20px;
}

.favorite-btn {
  background: transparent;
  padding: 17.5379px 33.6922px;
  transition: 0.3s;
  border-radius: 18px;
  font-family: var(--default-font);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: var(--blue-btn);
  justify-content: center;
  border: 1px solid var(--blue-btn);
}

#listing_lbx .modal-content {
  background-color: rgba(0, 0, 0, 0.8);
  border: none;
}

#listing_lbx .modal-header {
  border: 0 !important;
}

#listing_lbx .modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.property-card {

  position: relative;
  overflow: visible;

  display: flex;
  align-items: flex-end;

}

.view_property {
  margin-bottom: 60px;
}

.ppt_name {

  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 35.2px;
  line-height: 51px;
  color: #FFFFFF;
}

.property_type {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 23px;

  text-transform: uppercase;
  color: #ED1C24;
}

.info-container {
  position: absolute;
  left: 0;
  right: 0;
  width: 80%;
  padding: 51px 30.01px 51px 30px;
  box-shadow: 0px 0px 0px 16px #EAF0F5;
  border-radius: 40px;
  margin: 0 auto;
  background: #001D3F url(../img/footer-bg.png) center / cover no-repeat;
  align-items: center;
  background-size: cover;
  background-position: center;
  transform: translate(0%, 50%);
}

.property-card a {
  display: block;
  width: 100%;
}

.main-image-card {
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)) center center / cover no-repeat;
  min-height: 500px;
  border-radius: 20px;
  position: relative;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.thumbnail-container {
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.thumbnail-container::-webkit-scrollbar {
  display: none;
}

.thumbnail {
  width: 200px;
  height: 118px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 3px solid transparent;
  margin-right: 20px;
  display: inline-block;
}

.thumbnail:hover,
.thumbnail.active {
  transform: scale(1.05);
  /* border-color: #007bff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5); */
}

.price-info-card,
.contact-info-card,
.contact-form-card {
  padding: 31.25px 32px 32px;
  background: #FFFFFF;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 0;
}

.price-info-card h5,
.contact-info-card h5,
.contact-form-card h5 {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-transform: capitalize;
  color: #000000;

}

.price-value {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #000000;
}

.price-label,
.contact-info-card span {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #000000;
}

.contact-form-card .form-control {
  padding: 19px 20px;
  background: #EAF0F5;
  border-radius: 10px;
}

.contact-form-card .form-control::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #000000;
}

.contact-form-card button {
  padding: 21px 32px;
  background: #2665B0;
  border: 1px solid #000000;
  border-radius: 32px;
  color: #fff;
  margin-top: 15px;
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
}

.contact-form-card button:hover {
  background: var(--accent-color);
  border: 1px solid var(--blue-btn);
  color: #fff;
  border: 1px solid var(--accent-color);
}

.place_pp {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 36.3px;
  line-height: 44px;
  color: #000000;
  margin-bottom: 10px;
}

.property_card_desc {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  align-items: center;
  color: #000000;
}

.padding_60 {
  padding-top: clamp(30px, 6vw, 60px);
  padding-bottom: clamp(30px, 6vw, 60px);
}

.signature_feartures .vision-cards {
  min-height: 180px;
  padding: 20px;
}

.features_sec .card-title {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 22.2px;
  line-height: 27px;
  color: #000000;
}

.section-divider {
  padding-top: clamp(30px, 6vw, 60px);
}

.list-arrow-item {
  margin-bottom: 1.2rem;
}

.feature-item .text,
.text-main,
.text-extra {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #000000;
}

.floor-plan-tab {
  border-radius: 50px;
  background-color: #fff;
  color: var(--default-color);
  font-weight: 500;
  padding: 8px 24px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease-in-out;
  border: 0;
}

.floor-plan-tab:hover {
  background-color: #f9fafb;
}

.floor-plan-tab-active {
  border-radius: 50px;
  background-color: #2563eb;
  color: white;
  font-weight: 500;
  padding: 8px 24px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease-in-out;
  border: 0;
}

.floor-plan-tab-active {
  border-radius: 50px;
  background-color: var(--blue-btn);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #FFFFFF;
  padding: 8px 24px;
  transition: background-color 0.2s ease-in-out;
  border: 0;
}

.floor-plan-tab-active:hover {
  background-color: var(--accent-color);
}

.rounded-card {
  border-radius: 2rem;
}

.rounded-image {
  border-radius: 1.5rem;
}


.video_banner .btn-watch-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contact_us_form {
  background-color: #EAF0F5;
}

#contact_us_form .know_more {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 36.3px;
  line-height: 44px;
  color: #000000;
}

.widgets-container {
  padding: 35px 24px;
  background: #F9FCFF;
  border: 1px solid #C7D5E1;
  border-radius: 40px;
}

.widget-item {
  margin-bottom: 40px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item img {
  width: 100px;
  margin-right: 15px;
  height: 100px;
}

.recent-posts-widget .post-item h4,
.recent-posts-widget .post-item a {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.25px;
  color: #000000;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid rgba(199, 213, 225, 1);
  padding: 15px 20px;
  position: relative;
  transition: 0.3s;
  border-radius: 18px;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form button {
  background: transparent;
  color: rgba(38, 101, 176, 1);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

time {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 29px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.widget-title {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 20px 0;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  margin: 0 6px 8px 0;
  display: inline-block;
  transition: 0.3s;
  padding: 6px 16px;
  background: #ED1C24;
  border: 1px solid #FFFFFF;
  border-radius: 40px;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #FFFFFF;
}


#blogs_sec {
  background-color: #EAF0F5;
}

.blogs-cards {
  background-color: transparent;
  border-radius: 1rem;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease-in-out;
  border: none;
}

/* .blogs-cards:hover {
  transform: translateY(-5px);
} */

.blogs-cards .card-img-top {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.blogs-cards .badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: var(--blue-btn);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #FFFFFF;
}

.blogs-cards .card-body {
  padding: 1.2rem;
  background: #F9FCFF;
  border: 1px solid #C7D5E1;
  border-radius: 40px;
}

.blogs-cards .card-date {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.blogs-cards .card-title {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 22.8px;
  line-height: 27px;
  color: #000000;
  margin-bottom: 12px;
}

.blogs-cards .card-text {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #44525E;
  margin-bottom: 15px;
}

.blogs-cards .read-more {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  text-transform: capitalize;
  color: #000000;
}

.blogs-cards .read-more:hover {
  text-decoration: underline;
}

.blog_details h4 {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 36.3px;
  line-height: 44px;
  color: #000000;
}

.blog_details p,
.text_sec p,
.text_para_sec p {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #44525E;
}

.text_sec {
  padding: 40px 0;
}

.blog_write {
  background: #002F66;
  border-radius: 40px;
  padding: 40px 30px;
}

.blog_write p {
  font-family: 'Jost';
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
}

.badgess {
  background-color: var(--blue-btn);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #FFFFFF;
}

.cat_tabs {
  margin-top: 40px;
}

.author-name {

  font-weight: 600 !important;
  font-size: 18px !important;
  line-height: 22px !important;

}

#privacy_sec {
  background-color: #EAF0F5;
}

#privacy-policy h2,
#privacy-policy h3 {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  color: #000000;
}

.blog_details img {
  width: 100%;
}

/*--------------------------------------------------------------
about css edns 
--------------------------------------------------------------*/


/*--------------------------------------------------------------
dashboard css starts
--------------------------------------------------------------*/


.sidebar {
  height: 100vh;
  background: #ffffff;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
}

.nav-link {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 15.5px;
  line-height: 24px;
  color: #000000;
  padding: 13px 20px;
}

.nav-link.active {
  background: var(--blue-btn);
  color: #fff !important;
  border-radius: 6px;
  /* padding: 13px 16px; */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 15.625px;
  line-height: 24px;
}

.nav-item {
  /* padding: 0px 16px; */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 15.625px;
  padding: 5px 0px;
  line-height: 24px;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--blue-btn);
}

.listing_text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.26px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3);
  padding: 0px 16px;
}

.nav-item a {
  color: var(--default-color);
  padding: 13px 16px;
}

.nav-link.active svg path {
  fill: #fff;
  stroke: #fff;
}

.stat-card {
  border-radius: 12px;
  background: #f9f9f9;
  transition: 0.3s;
}

.stat-card:hover {
  background: #e9ecef;
}

.card-header {
  background: #fff;

  padding: 30px 30px 0px 30px;
}

.dropdown-toggle::after {
  display: none;
  /* hide caret */
}

#notificationDropdown {
  font-size: 1.25rem;
}

.sort_by {
  padding: 4px 15px;
  border: 1px solid #3F634D;
  border-radius: 30px;
  width: 130px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 33px;
  text-transform: capitalize;
  color: rgba(0, 0, 0, 0.7);
}


.recent_msgs {
  padding: 30px;
}




.nav_db {
  padding: 30px 0px;
  gap: 10px;
}

.right_section {
  background-color: #FFF9F9;
}

.dashboard_title {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 31.25px;
  line-height: 40px;
  color: #000000;
}

.btn-danger {
  padding: 14px 20px;
  background: #ED1C24;
  border: 1px solid #FF3F25;
  border-radius: 10px;
}

.dash_cards {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 30px;
}

.content_section p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16.4688px;
  line-height: 26px;
  letter-spacing: -0.17px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 4px;

}

.graph_section {
  padding: 30px;
}

.content_section h4 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 39.8672px;
  line-height: 63px;
  letter-spacing: -0.42px;
  color: #000000;
}

.card-container {
  width: 100%;
  max-width: 450px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 20px;
}

.dash_cards .stat-items:before {
  content: '';
  right: 30px;
  border-left: 1px solid #00000021;
  position: absolute;
  top: 0px;
  bottom: auto;
  height: 100px;
  transform: rotate(20deg);
}

.message-heading {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 23.4375px;
  line-height: 30px;
  color: #000000;
}

.message-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #e9ecef;
}

.message-item:last-child {
  border-bottom: none;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
  margin-right: 15px;
}

.dot-red {
  background-color: var(--accent-color);
}

.dot-blue {
  background-color: #52C1FF;
}

.dot-green {
  background-color: #3BDA84;
}

.message-content {
  flex-grow: 1;
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.sender-name {
  font-weight: 600;
  font-size: 1rem;
  color: #343a40;
}

.message-date {
  font-size: 0.8rem;
  color: #868e96;
  flex-shrink: 0;
}

.message-subject {
  font-weight: 600;
  color: #495057;
  margin-bottom: 5px;
}

.message-preview {
  font-size: 0.9rem;
  color: #adb5bd;
  line-height: 1.4;
}

.message-attachment {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  padding: 5px 10px;
  background-color: #F0F5F3;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #495057;
  text-decoration: none;
}

.message-attachment-icon {
  width: 16px;
  height: auto;
  margin-right: 5px;

  border-radius: 2px;
}

.profile-header {
  padding: 1rem 0rem;
  background: #Fff;
  border-bottom: 1px solid #F0F0F0;
}

.support_cards hr {
  border: none;
  border-top: 1px solid #F0F0F0;
  margin: 0;
  opacity: 1;
}

.profile-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #EAF0F8;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 1rem;
}

.profile-info h5 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 19.2188px;
  line-height: 30px;
  display: flex;
  color: #000000;
}

.profile-info p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16.2031px;
  line-height: 26px;
  color: rgba(0, 0, 0, 0.4);
}


.section-heading {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 23.25px;
  line-height: 27px;
  color: #000000;
}

.support_cards {
  background: #fff;
  padding: 1rem 3rem;
}

.property-overview {
  margin-bottom: 40px;
  background: #fff;
  padding: 3rem;
  border-radius: 20px;
}

.support_cards p,
.support_cards ul li {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14.4141px;
  line-height: 27px;
  color: rgba(0, 0, 0, 0.7);
}

.attachment-item {
  margin-right: 1rem;
  padding: 10px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.download_attachments span {

  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14.8828px;
  line-height: 18px;
  color: #000000;
}

.attachment-icon {
  margin-right: 0.5rem;
  background-image: url(../img/download.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 37px;
  height: 37px;
  background-color: #F1F1F1;
  border-radius: 18.5px;
}

.attachment-info {
  flex-grow: 1;
}

.pdf {
  font-style: normal;
  font-weight: 400;
  font-size: 14.5312px;
  line-height: 22px;
  letter-spacing: -0.3px;
  color: #000000;
}

.doc_size {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.3px;
  color: rgba(0, 0, 0, 0.4);

}

.support {
  border-top: 1px solid #e2e8f0;
}

.reply-input-group {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
}

.reply-button {

  background-color: var(--blue-btn);
  border-radius: 0.75rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 35px;
  color: #FFFFFF;
}

.reply-button:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.user_name {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #000000;

}



.email_meta {
  border-bottom: 1px solid #0000001A;
  padding: 10px 0px;
  border-radius: 5px 5px 0 0;
}

.email_content {
  border: 1px solid #0000001A;
  padding: 10px;
  border-radius: 0px 0px 5px 5px;
}


.listing-item {
  border: 1px solid #EDF2F7;
  border-radius: 10;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: #EDF2F7;
  margin-bottom: 0.8rem;
}

.listing-item p {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}

.listing-item a {
  text-decoration: none;
  color: #000000;
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #dee2e6;
  height: 300px;
}

.map-container #map-main {
  width: 100%;
  height: 300px;
  border: 0;
}

.property-overview label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14.4141px;
  line-height: 22px;
  color: #000000;
}

.property-overview .form-control,
.property-overview .form-select {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 15.625px;
  line-height: 19px;
  letter-spacing: -0.16px;
  color: #757575;
  padding: 15px 20px;

}

.property-overview .form-control::placeholder,
.property-overview .form-select::placeholder {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 15.625px;
  line-height: 19px;
  letter-spacing: -0.16px;
  color: #757575;
}

.property-overview .form-check-input:checked {
  background-color: #101010;
  border-color: #494949;
}

.property-overview .form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
  /* background-color: #FFFFFF; */
  border: 1px solid #000000;
  border-radius: 3px;
}

.add_option {
  background: #FFFFFF;
  border: 1px solid #BDB9B9;
  border-radius: 14px;
  padding: 1rem;
}

.property-overview .call_pos {
  position: absolute;
  top: 14px;
  right: 10px;
}


#add-listing,
#profile_page {
  padding-bottom: 2rem;
}


.table {
  --bs-table-bg: transparent;
  --bs-table-color: #495057;
  font-size: 0.9rem;
}

.table th,
.table td {
  vertical-align: middle;
  padding: 1rem;
  border: 1px solid #F1F4F9 !important;
}

.table thead th {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #809FB8;
  border-bottom: 1px solid #F1F4F9;
}

.table tbody tr {
  transition: background-color 0.2s ease-in-out;
  border-bottom: 1px solid #F1F4F9;
}

.table tbody tr:hover {
  background-color: #f8f9fa;
}

.table tbody tr:last-child {
  border-bottom: none;
}

.table-row-selected {
  background-color: #F1F4F9;
  border-radius: 16px;
}

.table-row-selected td {
  border: 1px solid #F1F4F9 !important;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #050708;
  border-bottom: 0;
}


.views-cell span {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #809FB8;
  padding: 0.6rem;
  border-radius: 16px;
  border: 1px solid rgba(217, 225, 231, 0.8);
}

.listing-img-container {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bg-green-light {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #1AD598;
}

.bg-red-light {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #EA3A3D;
}

.bg-gray-light {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #809FB8;
}

.listing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-name {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #06152B;
}

.status-badge {
  padding: 0.25em 0.75em;
  border-radius: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75em;
}

.status-badge.inactive {
  background: #D9E1E7;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #99B2C6;
}

.table>:not(caption)>*>* {
  border: 0;
}

.status-badge.active {
  background-color: rgba(26, 213, 152, 0.3);
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #1AD598;
}

.views-cell,
.reach-cell,
.spent-cell {
  white-space: nowrap;
}

.reach-cell .badge {
  display: flex;
  align-items: center;
  padding: 0.35em 0.6em;
  border-radius: 1rem;
  font-weight: 600;
}

.reach-cell .badge i {
  font-size: 1em;
  margin-right: 0.25rem;
}

.btn-boost {
  background-color: #0d6efd;
  color: white;
  border-radius: 0.5rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: background-color 0.2s;
  white-space: nowrap;
}



.h3_text {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 27px;
  color: #06152B;
}

.boost_list {
  background: #FFFFFF;

  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

/* boost modal css */
.pricing-card {
  background-color: #fff;

  border-radius: 1.5rem;
  padding: 2rem;
  /* margin-bottom: 2rem; */

  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-card-header h2 {
  margin-bottom: 0;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  letter-spacing: -1px;
  color: #1B223C;
  font-size: clamp(22px, 3.7vw, 44px);
  line-height: clamp(27.5px, 4.5vw, 55px);
}

.pricing-icon {
  background-color: #e9f0ff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-icon svg {
  color: #007bff;
}

.price-text {
  margin-bottom: 0.5rem;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  letter-spacing: -1px;
  color: #1B223C;
  font-size: clamp(30px, 5vw, 60px);
  line-height: clamp(37.8px, 6.3vw, 76px);
}

.price-text small {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
  color: #797878;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  color: #1B223C;
  font-size: clamp(12px, 2vw, 24px);
  line-height: clamp(20px, 3.3vw, 40px);
}

.gs_btn {
  padding: 10px 30px;
  border: 1px solid #1B223C;
  border-radius: 12px;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-size: clamp(12px, 2vw, 24px);
  line-height: clamp(20px, 3.3vw, 40px);
  color: #1B223C;
}

.business-card {
  position: relative;
  background: #fff url(../img/bg_boost.png) center / cover no-repeat;
  background-position: left center;
  background-size: 90% 100%;
}

.badge-best-offer {

  border: 1px solid #000000;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 23px;
  color: #000000;
  font-weight: 600;
  color: #000000;
  padding: 0.65rem 0.75rem;
  border-radius: 1rem;
}

.pro-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.pro-card-header {
  flex-basis: 50%;
}

.pro-card-price {
  flex-basis: 50%;
  text-align: right;
}


.fav_cards,
.support_dash {
  padding: 40px 0px;
}

#favorites .pagination-circle .page-item.active .page-link,
.my_properties .pagination-circle .page-item.active .page-link {
  background-color: #000000;
  border-color: #000000;
  color: white;
}


.search-bar .input-group {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #dee2e6;
  background-color: #f8f9fa;
}

.search-bar .form-control {
  background-color: transparent;
  padding: 0.8rem;
  border: 1px solid #E3E3E3;
  border-radius: 30px;
}

.search-bar .btn {
  color: #000;
  background-color: transparent;
  padding: 0.8rem;
  border: 1px solid #E3E3E3;
  border-radius: 30px;
}

.support_sss {
  padding: 1.4rem;
  background: #FFFFFF;

  border-right: 1px solid #E3E1E1;
}

.filter-tabs .btn {
  border-radius: 1.5rem;
  padding: 0.25rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.filter-tabs .btn-dark-active {
  background-color: #212529;
  color: #fff;
}

.email-item {
  padding: 1rem 0;
  border-bottom: 1px solid #e9ecef;
  position: relative;
}

.email-item.unread::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0;
  bottom: 0;
  width: 5px;
  background-color: #2665B0;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.active_cards {
  background-color: #F9F3EF !important;
  padding: 12px;
}

.email-item.unread:f .email-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
}

.email-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
}

.email-meta {
  color: #6c757d;
  font-size: 0.8rem;
}

.email-subject {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 15.875px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 10px;
}

.attachment-btn {
  background: #F0F5F3;
  border-radius: 4px;
  padding: 3px 10px;
}

.email-preview {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14.1797px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.5);
}

.btn-dark-active {
  background: #000000;
  border-radius: 30px;
  color: #fff;
}

.support_sss h3 {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 17.8594px;
  line-height: 27px;
  color: #000000;
}

.cl_name {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14.8828px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.4);
}

/* refreal css */
.header-section {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.btn-payment {
  border-color: #6c757d;
  background: #718198;
  border-radius: 6px;
  padding: 10px 16px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
}

.btn-payment:hover {
  background: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}


#referrals_page .stat-card {
  color: white;
  border-radius: 1rem;

  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.stat-card.balance {
  background-color: var(--blue-btn);
}

.stat-card.earned {
  background-color: var(--blue-btn);
}

.stat-label {
  margin-bottom: 0.5rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}

.stat-value {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 34px;
  color: #FFFFFF;
}

.alert-card {
  margin-bottom: 2rem;
  padding: 30px 60px;
  background: rgba(113, 129, 152, 0.1);
  border-radius: 20px;
}

.alert-heading {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #262E4A;
}

.alert-icon {
  color: #718198;
  margin-right: 1rem;
}

.alert-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.alert-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #676B77;
}

.alert-list-item .fa-circle-check {
  color: #718198;
  margin-right: 0.75rem;
}

.upload-section {
  text-align: center;
  margin-top: 3rem;
  text-align: center;
  margin-top: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
}

.upload-label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: #262E4A;

  margin-bottom: 0.5rem;
}

.upload-subtext {
  margin-bottom: 1rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #676B77;
}

#referrals_page {
  padding: 2rem 0rem;
}

.btn-upload {
  background-color: #ffffff;
  color: #38497d;
  border: 1px solid #ced4da;
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.btn-upload:hover {
  color: #38497d;
  background-color: #f8f9fa;
}

#file-upload-input {
  display: none;
}

#status-message {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background-color: #d4edda;
  color: #155724;
  display: none;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
}

.progress-header {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  text-align: start;
  letter-spacing: 0.5px;
  color: #8D8D8D;
}

.progress-sub-header {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #2665B0;
}

.progress-text {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: #8D8D8D;
}

.progress-bar-container {
  height: 8px;
  background-color: #E0E0E0;
  border-radius: 64px;
  position: relative;
  margin-top: 1rem;
}

.progress-bar-custom {
  height: 100%;
  background-color: #2665B0;
  border-radius: 64px;
}

.progress-label {
  position: absolute;
  top: 1.2rem;
  transform: translateX(-50%);
  background-color: #2665B0;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
  /* font-family: 'Lato'; */
  font-style: normal;
  font-weight: 700;
  font-size: 8px;
  line-height: 16px;
  text-align: right;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}

.progress-label::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #1f2937 transparent;
}

.table-container {
  padding: 2rem;
  background-color: #fff;
  border-radius: 20px;
}

.rf_user {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #262E4A;
}

.table-responsive {
  border-radius: 10px;
  /* overflow: hidden; */
}

/* .user-table {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: #f9fafb;
  font-size: 0.9375rem;
} */

.dashboard-container .user-table th {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  color: #676B77;

}

.dashboard-container .user-table .first_row {
  background-color: #FAFBFC;
}

.user-table td {
  vertical-align: middle;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 24px;
  color: #262E4A;
}

.user-table tbody tr:nth-of-type(odd) {
  background-color: #F9F3EF;
}

.user-table tbody tr:nth-of-type(even) {
  background-color: #FFFFFF;
}

.status-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-success {
  background: #F5FFF7;
  border-radius: 6px;
  padding: 6px 10px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
  color: #23933B;
}

.status-failed {
  background-color: #FFEED9;
  color: #D78119;
  border-radius: 6px;
  padding: 6px 10px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 12px;
}

.sort-dropdown .btn {
  background-color: transparent;
  border: 0;
  color: #4b5563;
  border-radius: 6px;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}

.pagination-container nav {
  display: flex;
     justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.pbs_sec {
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 20px;
  margin-bottom: 40px;
}

.logo_db {
  margin-bottom: 35px;
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid #E9E9E9;
  opacity: 1;
}

/* refreal css */

.profile-container {
  margin-bottom: 20px;
}

.profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e9ecef;
}

.profile-container .btn-upload {
  border-color: #0d6efd;
  background: rgba(38, 101, 176, 0.4);
  padding: 6px 20px;
  font-family: 'Inter';
  font-style: normal;
  border: 0px;
  font-weight: 500;
  font-size: 15px;
  line-height: 40px;
  letter-spacing: -0.15px;
  color: #2665B0;
  border-radius: 8px;
  transition: background-color 0.3s, border-color 0.3s;
}

.profile-container .btn-upload:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.profile-container .btn-delete {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.15px;
  color: #244034;
  transition: color 0.3s;
}



.profile-container .file-input {
  display: none;
}

.profile-cards .label {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16.4688px;
  line-height: 26px;
  letter-spacing: -0.17px;
  color: rgba(0, 0, 0, 0.5);
}

.profile-cards .value {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.17px;
  color: rgba(0, 0, 0, 0.5);
}

#customer_dashboard .price-tag {
  bottom: auto;
  top: 44%;
}

#customer_dashboard .property-overview {
  margin-bottom: 30px;
  background: #fff;
  padding: 2rem;
  border-radius: 30px;
}

/* tiles input css */

.tile-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.tile-input {
  position: absolute;
  opacity: 0;
  height: 0;
  width: 0;
}

.tile-label {
    display: block;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #212529;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #EAF0F5;
    border: 1px solid #C7D5E1;
    border-radius: 18px;
    padding: 35px;
}

.tile-input:hover+.tile-label {
  background-color: #dbe4ec;
  border-color: #adb5bd;
}

.tile-input:checked+.tile-label {
  background-color: #d1e7fd;
  border-color: var(--blue-btn);
  box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
}

.select-rooms .title {
font-family: 'Jost';
font-style: normal;
font-weight: 600;
font-size: 22px;
line-height: 27px;
color: #000000;
}

/*--------------------------------------------------------------
dashboard css ends
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# prime american website css  ends
--------------------------------------------------------------*/
@media (max-width: 576px) {
  .attachments-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .attachment-item {
    margin-right: 0;
    margin-bottom: 0.5rem;
    width: 100%;
  }
}

@media (min-width: 768px) {




  .stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
  }

  .stats-item {
    margin: 0 10px;
  }

  .stats-item:first-child {
    margin-left: 0;
  }

  .stats-item:last-child {
    margin-right: 0;
  }



}

@media (max-width: 640px) {
  .logout_btn {
    width: auto !important;
  }

  .support_sss {
    padding: 1rem;

  }

  .property-overview .gap-5 {
    gap: 10px !important;
  }

  .support_cards {

    padding: 0.8rem 1.5rem;
  }

  .nav-item {

    padding: 10px 0px;
  }

  .nav-item a {

    padding: 13px 16px;
  }

  .nav-link.active {
    padding: 13px 16px;
  }

  .property-overview {
    margin-bottom: 20px;
    background: #fff;
    padding: 1.2rem;
    border-radius: 15px;
  }

  .property-card a>img,
  .video_banner img {
    aspect-ratio: 12 / 9;
    object-fit: cover;
    border-radius: 15px;
  }

  .info-container {

    width: 90%;
    padding: 30px;
    transform: translate(0%, 5%);
  }

  .listings_details_section {
    padding-top: 130px;
    padding-bottom: 20px;
  }

  .view_property {
    margin-bottom: 0px;
  }

  .slider-bullets {

    top: auto;

    bottom: 20px;

  }

  .slider-text {
    position: relative;
    bottom: 0;

  }

  .panel-content {

    padding: 2rem;
    background: #FFFFFF;
    border-radius: 32px;
  }

  .step-text {

    top: -20px;

  }

  .property_img {
    height: 210px;
    border-radius: 40px;
    background-size: 100% 100% !important;
  }

  .hero {

    padding: 120px 0 60px 0;

  }

  .stats-item {
    margin-bottom: 10px;
  }

  .b-nav-tab img {
    display: none;

  }

  .b-nav-tab {

    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px;
  }

  .header .logo img {
    max-height: 30px;
    margin-right: 8px;
  }

  .rewards_sec {

    padding: 30px;

  }

  .rewards_text h2 {

    font-size: 30px;
    line-height: 40px;

  }

  .explre_sec {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .test_sec {

    padding: 30px;

  }

  .footer {

    padding-top: 60px;
  }

  .footer .copyright {

    padding: 20px;
  }

  .test_img img {
    margin-bottom: 10px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: auto;
    border-radius: 30px;
    width: 100%;
  }

  .map-sec {

    background-size: cover;
    background-position: 100% 300px;
  }

  .page-title .heading {

    min-height: 30vh;

  }

  .badgess {

    padding: 0.7rem;

  }

  .share_icons {
    margin-top: 20px;
  }

  .dash_cards .stat-item:before {
    display: none;
  }

  .dashboard_title {
    display: none;
  }

  .dash_icons {
    display: none;
  }

  .main-image-card {
        min-height: 300px;
    
}
}

.pagination-container svg
{
	width : 20px;
}
.agentinfo img
{
	width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid #000;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-tem {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
}


.pricing h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}

#pricing .gs_btn {
  padding: 10px 30px;
  border: 1px solid #ed1c24;
  border-radius: 12px;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #ffffff;
      background: #ed1c24;
}

.feature-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  color: #1B223C;
  font-size: clamp(14px, 2vw, 18px);
  line-height: clamp(20px, 3.3vw, 25px);
}

.pricing .price {
  font-size: 2.5em;
  color: var(--heading-color);
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .price span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .icon {
  padding: 10px 0;
}


.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--default-color);
  text-align: start;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.pricing ul li {
  padding-bottom: 10px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: var(--accent-color);
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
}
.leadscounter
{
	width: 30px;
    height: 30px;
    background: #ED1C24;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
}