/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500;600;700&family=Montserrat:wght@400;500;600&display=swap");
/* -----------------------------------------
    Variables CSS
----------------------------------------- */
@import url("header/header.css");
@import url("header/header-2.css");
@import url("home/home-1.css");
@import url("home/home-2.css");
@import url("home/home-3.css");
@import url("pages/inner-pages.css");

:root {
  --font-family-base: "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-family-fontawesome: "Font Awesome 5 Pro";
  --font-base: 16px;
  --font-sm: 14px;
  --font-xsm: 10px;
  --font-lg: 16px;
  --font-medium: 500;
  --font-normal: 400;
  --font-bold: 600;
  --font-size--h1: 64px;
  --font-size--h2: 48px;
  --font-size--h3: 24px;
  --font-size--h4: 20px;
  --font-size--h5: 18px;
  --font-size--h6: 16px;
  /* --color-primary: #F57F4B; */
  --color-secondary: #255056;
  --color-red: #eb4c4c;
  --color-green: #00d5ae;
  --color-blue: #0061df;
  --color-cyan: #21c4df;
  --color-pink: #ff7294;
  --color-purple: #6231f0;
  --color-yellow: #fdc040;
  --color-orange: #f59872;
  --color-white: #ffffff;
  --color-dark: #2b3138;
  --color-medium: #8d8d8d;
  --color-light: #f2f2f2;
  /* --color-primary-rgb: 37, 80, 86; */
  --color-secondary-rgb: 254, 117, 1;
  --color-red-rgb: 235, 76, 76;
  --color-green-rgb: 0, 213, 174;
  --color-blue-rgb: 0, 97, 223;
  --color-cyan-rgb: 33, 196, 223;
  --color-pink-rgb: 255, 114, 148;
  --color-purple-rgb: 98, 49, 240;
  --color-yellow-rgb: 253, 192, 64;
  --color-orange-rgb: 245, 152, 114;
  --color-white-rgb: 255, 255, 255;
  --color-dark-rgb: 25, 27, 30;
  --color-medium-rgb: 141, 141, 141;
  --color-light-rgb: 242, 242, 242;
  --border-color: #eaeaea;
  --bg-light: #f7f9fc !important;
  --gradient-bg: linear-gradient(90deg,
      var(--color-primary) 14.17%,
      var(--color-primary-shade) 94.83%);
}

/* -----------------------------------------
    Typography CSS
----------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: var(--font-base);
  font-weight: var(--font-medium);
  color: var(--color-medium);
  overflow-x: hidden;
}

a {
  color: var(--color-dark);
  text-decoration: none;
  outline: 0 !important;
  transition: all 0.3s ease-out;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

/* Autocomplete shared styles */
.autocomplete-menu {
  position: absolute;
  z-index: 1000;
  left: 0;
  right: 0;
  max-height: 260px;
  overflow: auto;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  font-size: 13px;
}

.autocomplete-item {
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.autocomplete-item:hover,
.autocomplete-item.active {
  background: #f3f4f6
}

.autocomplete-muted {
  color: #6b7280;
  font-size: 12px
}

:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  font-family: var(--font-family-base);
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.3;
}

.bannertitle {
  font-family: var(--font-family-base);
  color: #000;
  text-align: center;
  font-weight: 700;
  line-height: 72px;
  margin: 2rem auto;
  width: 717px;
  font-size: 56px;
}

.hero-image {
  border-radius: 30px;
  margin-top: 3rem;
  width: 100%;
  height: auto;
}

.banner-filter-form {
  top: 43px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* Hero search styling to mimic design */
.hero-search {
  max-width: 980px;
  border-radius: 16px;
  padding: 14px 16px 16px;
}

.hero-search .search-tabs {
  gap: 16px;
  margin-bottom: 10px;
}

.hero-search .tab-btn {
  color: black;
  border: 0;
  border-radius: 10px;
  padding: 8px 18px;
  font-weight: 700;
}

.hero-search .tab-btn.active {
  background: #fff;
  color: #000;
}

.hero-search .search-fields {
  background: #fff;
  border: 1px solid #e6e6ef;
  border-radius: 12px;
  padding: 12px 14px;
}

.hero-search .field-label {
  display: block;
  font-weight: 700;
  color: #0c0c0c;
  margin-bottom: 2px;
}

.hero-search .divider {
  width: 1px;
  height: 36px;
  background: #e6e6ef;
  margin: 0 14px;
}

.hero-search .search-btn {
  color: #fff;
  width: 70px;
  height: 48px;
  border-radius: 12px;
}

@media (max-width: 767.98px) {
  .banner-filter-form {
    top: 60%;
  }

  .hero-search {
    width: 100%;
    max-width: 980px;
    padding: 14px 16px 16px;
    max-height: none;
  }

  .hero-search .search-fields {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }

  .hero-search .field-label {
    font-size: 13px;
    margin-bottom: 2px;
  }

  .hero-search .form-control,
  .hero-search .form-select {
    font-size: 13px;
    padding: 8px 0;
    height: 48px;
  }

  .hero-search .divider {
    display: inline-block;
  }



  .hero-search .tab-btn {
    padding: 8px 18px;
    font-size: 13px;
  }

  .hero-search .search-tabs {
    gap: 16px;
    margin-bottom: 10px;
  }

  .hero-search .search-btn {
    width: 70px;
    height: 48px;
  }
}

h1 {
  font-size: var(--font-size--h1);
}

h2,
.h2 {
  font-size: var(--font-size--h2);
}

h3,
.h3 {
  font-size: var(--font-size--h3);
}

h4,
.h4 {
  font-size: var(--font-size--h4);
}

h5,
.h5 {
  font-size: var(--font-size--h5);
}

h6,
.h6 {
  font-size: var(--font-size--h6);
}

p {
  line-height: 1.8;
}

.font-lg {
  font-size: var(--font-lg) !important;
}

.font-sm {
  font-size: var(--font-sm) !important;
}

.font-xsm {
  font-size: var(--font-xsm) !important;
}

/* -----------------------------------------
    Reset CSS
----------------------------------------- */
:focus {
  outline: none;
}

.logoimg {
  height: auto;
  width: 50%;
  margin: 10px 0;
}

img {
  max-width: 100%;
}

.form-control:focus {
  box-shadow: none;
}

ul {
  list-style: none;
  padding: 0;
}

.fa-heart {
  margin-top: 6px;
}

figure,
blockquote,
ul {
  margin-bottom: 0;
}

table,
th,
td {
  vertical-align: middle;
}

.bg-light-1 {
  background-color: var(--color-light-1);
}

/* margin CSS*/
.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

/* Padding CSS*/
.pt-10 {
  padding-top: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pt-100 {
  padding-top: 100px;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-70 {
  padding-bottom: 70px;
}

/* Border */
.border,
.border-top,
.border-bottom,
.border-end,
.border-start {
  border-color: var(--border-color) !important;
}

/* Border Radius */
.radius-0 {
  border-radius: 0 !important;
}

.radius-sm {
  border-radius: 5px !important;
}

.radius-md {
  border-radius: 10px !important;
}

.radius-lg {
  border-radius: 15px !important;
}

.radius-xl {
  border-radius: 20px !important;
}

@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}

/* Tooltip CSS */
.tooltip .tooltip-inner {
  background-color: var(--color-primary);
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: var(--color-primary);
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: var(--color-primary);
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: var(--color-primary);
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: var(--color-primary);
}

.no-animation {
  transform: none;
  animation: none;
}

/* Badge CSS */
.badge {
  padding: 8px 16px;
  font-size: var(--font-xsm);
}

.badge.bg-success {
  color: var(--color-green);
  background: rgba(var(--color-green-rgb), 0.2) !important;
}

.badge.bg-info {
  color: var(--color-blue);
  background: rgba(var(--color-blue-rgb), 0.2) !important;
}

.badge.bg-danger {
  color: var(--color-red);
  background: rgba(var(--color-red-rgb), 0.2) !important;
}

.badge.bg-warning {
  color: var(--color-yellow);
  background: rgba(var(--color-yellow), 0.2) !important;
}

/* Card CSS */
.card {
  border: none;
  border-radius: 10px;
}

.card .card-title {
  margin-bottom: 20px;
}

.card .card-text {
  color: var(--color-medium);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-dark);
  opacity: 0.3;
  z-index: -1;
}

@media (min-width: 992px) {
  .no-wrap {
    flex-wrap: nowrap;
  }
}

@media only screen and (min-width: 1200px) {
  .image-left {
    margin-inline-start: -100px;
  }

  .image-right {
    margin-inline-end: -100px;
  }
}

@media only screen and (min-width: 992px) {
  .image-left {
    margin-inline-start: -60px;
  }

  .image-right {
    margin-inline-end: -60px;
  }
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

/* clear fix */
.masonry-gallery .grid:after {
  content: "";
  display: block;
  clear: both;
}

/* ---- .grid-item ---- */
.masonry-gallery .grid-item img {
  display: block;
  width: 100%;
}

.quantity-input {
  display: flex;
  align-items: center;
}

.quantity-input .qty-btn {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 0;
  width: 35px;
  height: 35px;
  border: 1px solid var(--border-color);
  color: var(--color-dark);
}

.quantity-input input {
  height: 35px;
  width: 50px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-inline: unset;
  background-color: transparent;
}

/* -----------------------------------------
	Color CSS
----------------------------------------- */
/* Theme Color CSS */
.theme-color-1 {
  --color-primary: #f57f4b;
  --color-secondary: #255056;
  --color-primary-rgb: 37, 80, 86;
  --color-secondary-rgb: 254, 117, 1;
}

.theme-color-2 {
  --color-primary: #bda588;
  --color-secondary: #283e5c;
  --color-primary-rgb: 189, 165, 136;
  --color-secondary-rgb: 40, 62, 92;
}

.theme-color-3 {
  --color-primary: #04a6fb;
  --color-primary-rgb: 4, 166, 251;
}

/* Color CSS*/
.color-primary {
  color: var(--color-primary) !important;
}

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

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

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

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

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

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

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

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

.color-purple {
  color: var(--color-primary) !important;
}

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

.bg-primary {
  background: var(--color-primary) !important;
}

.bg-secondary {
  background: var(--color-secondary) !important;
}

.bg-light {
  background: var(--bg-light) !important;
}

.border-primary {
  border-color: var(--color-primary) !important;
}

/* -----------------------------------------
    Button CSS
----------------------------------------- */
button,
.btn {
  cursor: pointer;
  border: none;
  background: inherit;
}

button:focus,
button:active,
.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
}

button:hover,
.btn:hover {
  outline: none;
}

.btn {
  position: relative;
  overflow: hidden;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  border-radius: 0;
  letter-spacing: 0.05em;
  transition: all 0.3s ease-out;
}

.icon-start i {
  margin-inline-end: 5px;
}

.icon-end i {
  margin-inline-start: 5px;
}

.btn-lg {
  border-radius: 8px;
  padding: 15px 34px;
}

.btn-md {
  border-radius: 5px;
  padding: 10px 24px;
  font-size: var(--font-sm);
}

.btn-sm {
  border-radius: 4px;
  padding: 8px 16px;
  font-size: var(--font-sm);
}

.btn-primary {
  color: var(--color-white);
  background-color: var(--color-primary);
  transition: background 0.3s ease-out;
  z-index: 1;
}

.btn-primary::before {
  position: absolute;
  content: "";
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  border: 1px solid var(--color-white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
  z-index: -1;
}

.btn-primary:hover {
  color: var(--color-white);
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.btn-primary:hover::before {
  opacity: 0.1;
  left: 0;
  visibility: visible;
}

.btn-danger {
  border: 1px solid var(--color-red);
  background-color: var(--color-red);
  transition: background 0.3s ease-out;
}

.btn-danger:hover {
  border-color: var(--color-red);
  background-color: var(--color-red);
}

.btn-outline {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-remove {
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0;
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-text {
  line-height: 1;
  text-decoration: underline;
}

.disabled {
  cursor: not-allowed !important;
  pointer-events: initial !important;
}

/* Video Btn CSS */
.video-btn {
  position: relative;
  width: 75px;
  height: 75px;
  padding: 0;
  font-size: 22px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--color-primary);
  background: var(--color-white);
}

.video-btn:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

.video-btn::after {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  animation: ripple 3s linear infinite;
  background: var(--color-white);
  border-radius: 50%;
  z-index: -2;
}

.video-btn::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  animation: ripple 3s 1s linear infinite;
  background: var(--color-white);
  border-radius: 50%;
  z-index: -1;
}

.video-btn.p-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* -----------------------------------------
    Form CSS
----------------------------------------- */
.form-control {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  height: 55px;
  /* line-height: 55px; */
  padding: 0;
  padding-inline-start: 18px;
  padding-inline-end: 10px;
  font-size: 16px;
}

.form-control:focus {
  color: var(--color-dark);
  background-color: transparent;
}

:is(input:not([type="radio"], [type="checkbox"]), textarea, .nice-select):is( :focus,
  :visited,
  :focus-within,
  :focus-visible) {
  border-color: #86b7fe !important;
}

select.form-select {
  background-size: 11px !important;
}

textarea {
  height: auto;
}

textarea.form-control {
  min-height: 200px;
}

::-moz-placeholder {
  color: var(--color-medium);
}

::placeholder {
  color: var(--color-medium);
}

.custom-radio .form-radio-label {
  position: relative;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  padding: 0;
  vertical-align: middle;
  padding-inline-start: 20px;
}

.custom-radio .form-radio-label::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 14px;
  width: 14px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
}

.custom-radio input[type="radio"]:checked+.form-radio-label::after {
  opacity: 1;
}

.custom-radio input[type="radio"]+.form-radio-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  opacity: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--color-primary);
  transition: all 0.2s ease-out;
}

.custom-radio .input-radio {
  display: none;
}

.form-check-label,
.form-select,
.form-check {
  cursor: pointer;
}

.custom-checkbox .form-check-label {
  position: relative;
  cursor: pointer;
  position: relative;
  cursor: pointer;
  padding: 0;
  vertical-align: middle;
  padding-inline-start: 22px;
}

.custom-checkbox .form-check-label::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  border: 1px solid var(--color-primary);
  border-radius: 2px;
}

.custom-checkbox input[type="checkbox"]:checked+.form-check-label::after {
  opacity: 1;
}

.custom-checkbox input[type="checkbox"]+.form-check-label::after {
  content: "";
  width: 11px;
  position: absolute;
  top: 50%;
  left: 2px;
  opacity: 0;
  height: 5px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: translateY(-65%) rotate(-45deg);
  transition: all 0.2s ease-out;
}

.custom-checkbox .input-checkbox {
  display: none;
}

input[type="checkbox"]:checked+.form-check-label::before,
input[type="radio"]:checked+.form-check-label::before {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

input[type="checkbox"]:checked+.form-check-label::after,
input[type="radio"]:checked+.form-check-label::after {
  opacity: 1;
}

.form-group {
  position: relative;
}

.form-inline .input-group {
  flex-wrap: nowrap;
  padding: 3px;
  background-color: rgba(255, 255, 255, 0.259);
}

.form-inline .input-group .form-control {
  height: auto;
  line-height: 1;
  border: none;
  padding: 15px 25px;
  background-color: transparent;
}

.show-password-field {
  position: absolute;
  right: 0;
  left: 0;
  margin-inline-start: auto;
  margin-inline-end: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  text-align: end;
}

.show-password-field .show-icon {
  font-family: var(--font-family-fontawesome);
  font-style: normal;
}

.show-password-field .show-icon::before {
  content: "\f06e";
}

.show-password-field .show-icon.show::before {
  content: "\f070";
}

.search-form {
  display: flex;
  padding: 6px;
  padding-inline-start: 16px;
  border: 1px solid var(--border-color);
}

.search-form .search-input {
  display: block;
  width: 100%;
  border: none;
  outline: 0;
  height: 40px;
  line-height: 40px;
  border-radius: 5px 0 0 5px;
  background: transparent;
}

.search-form .btn-search {
  text-align: center;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: var(--color-medium);
  background: var(--color-white);
}

.review-form .ratings .btn-text,
.comment-reply .ratings .btn-text {
  color: var(--color-secondary);
}

.review-form .form-control,
.comment-reply .form-control {
  border-color: var(--border-color);
}

.filter-form {
  padding: 30px 30px 10px;
  border: 1px solid var(--color-primary);
  background: var(--color-white);
}

.filter-form .grid {
  display: grid;
  grid-template-columns: repeat(1, 250px) repeat(3, 160px) repeat(1, 250px) 1fr;
  grid-gap: 20px;
  align-items: center;
}

.filter-form .grid .grid-item {
  margin-bottom: 20px;
}

.filter-form .form-group {
  position: relative;
}

.filter-form .form-group i {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-inline-start: 15px;
  margin-inline-end: 0;
  transform: translateY(-50%);
  color: var(--color-primary);
  z-index: 5;
}

.filter-form .price-value {
  margin-bottom: 5px;
}

.filter-form .price-value span {
  margin-inline-start: 10px;
  color: var(--color-primary);
}

.filter-form .form-control,
.filter-form .nice-select {
  border: 0;
  background: var(--bg-light);
  padding-inline-start: 40px;
  color: var(--color-medium);
}

.filter-form .nice-select::after {
  margin-inline-end: 5px;
}

/* -----------------------------------------
    Ratings CSS
----------------------------------------- */
.ratings {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.ratings .rate {
  background-image: url(../images/rate-star.png);
  background-position: 0 -13.5px;
  background-repeat: repeat-x;
  height: 13.5px;
  transition: all 0.5s ease-out 0s;
  width: 90px;
  margin-inline-start: -2px;
}

.ratings .rating-icon {
  background-image: url(../images/rate-star.png);
  background-position: 0 0;
  background-repeat: repeat-x;
  height: 13.5px;
  width: 87%;
}

.ratings .ratings-total {
  font-size: 12px;
  line-height: normal;
}

.ratings.size-md .rate {
  background-image: url(../images/rate-star-md.png);
  background-position: 0 -15.5px;
  height: 15.5px;
  width: 115px;
}

.ratings.size-md .rating-icon {
  background-image: url(../images/rate-star-md.png);
  height: 15.5px;
}

.ratings.size-md .ratings-total {
  font-size: 14px;
}

.ratings.size-lg .rate {
  background-image: url(../images/rate-star-lg.png);
  background-position: 0 -20.5px;
  height: 20.5px;
  width: 145px;
}

.ratings.size-lg .rating-icon {
  background-image: url(../images/rate-star-lg.png);
  height: 20.5px;
}

.ratings.size-lg .ratings-total {
  font-size: 16px;
}

/* -----------------------------------------
Lazyload CSS
----------------------------------------- */
.lazy-container {
  position: relative;
  overflow: hidden;
  display: table;
  table-layout: fixed;
  width: 100%;
  background-color: var(--color-light);
  z-index: 1;
}

.lazy-container::after {
  position: absolute;
  content: "\f03e";
  font-family: "Font Awesome 5 Pro";
  top: 50%;
  left: 50%;
  font-size: 30px;
  transform: translate(-50%, -50%);
  color: var(--color-medium);
  z-index: -1;
}

.lazy-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  max-width: 100%;
  min-width: 100%;
  max-height: 100%;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.lazy-container img.lazy-load {
  opacity: 0.02;
  transition: opacity 0.5s;
}

.lazy-container img.lazyloaded {
  opacity: 1;
}

.ratio::before {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}

.ratio.ratio-1-1::before {
  padding-bottom: 100%;
}

.ratio.ratio-1-2::before {
  padding-bottom: 114%;
}

.ratio.ratio-1-3::before {
  padding-bottom: 127.14%;
}

.ratio.ratio-2-3::before {
  padding-bottom: 66.66%;
}

.ratio.ratio-16-11::before {
  padding-bottom: 53.57%;
}

.ratio.ratio-16-8::before {
  padding-bottom: 50%;
}

.ratio.ratio-21-9::before {
  padding-bottom: 42.85%;
}

.ratio.ratio-21-8::before {
  padding-bottom: 38.0952380952%;
}

.ratio.ratio-5-3::before {
  padding-bottom: 60%;
}

.ratio.ratio-5-4::before {
  padding-bottom: 80%;
}

.ratio.ratio-4-3::before {
  padding-bottom: 75%;
}

.ratio.ratio-vertical::before {
  padding-bottom: 150%;
}

.blur-up {
  filter: blur(2px);
  transition: filter 400ms;
}

.lazyloaded.blur-up {
  filter: blur(0);
}

/* -----------------------------------------
    Nice Select CSS
----------------------------------------- */
.nice-select {
  float: unset;
}

.nice-select:after {
  right: 10px;
}

.nice-select.open .list {
  width: 100%;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  max-height: 300px;
}

.nice-select .option {
  display: block;
}

/* -----------------------------------------
  	Preloader CSS
----------------------------------------- */
#preLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1050;
}

#preLoader .loader {
  width: 54px;
  height: 54px;
  position: relative;
}

#preLoader .loader svg {
  display: block;
  width: 100%;
  height: 100%;
}

#preLoader .loader svg rect {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 6px;
  stroke-linejoin: round;
  stroke-linecap: round;
}

#preLoader .loader svg rect {
  stroke-dasharray: 192 64 192 64;
  stroke-dashoffset: 0;
  animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

#preLoader .loader .icon {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}

@keyframes pathRect {
  25% {
    stroke-dashoffset: 64;
  }

  50% {
    stroke-dashoffset: 128;
  }

  75% {
    stroke-dashoffset: 192;
  }

  100% {
    stroke-dashoffset: 256;
  }
}

.property-card-sm {
  width: 390.6571350097656px;
  height: 470.5643005371094px;
  max-width: 390.6571350097656px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.product-img-sm {
  position: relative;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

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

.property-type-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.agent-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
}

.product-details-sm {
  padding: 12px;
}

.product-title-sm {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.price-sm {
  font-size: 15px;
  margin-top: 6px;
}

.btn-wishlist-sm {
  color: #999;
  font-size: 18px;
  z-index: 2;
  transition: all 0.3s ease;
  background-color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-wishlist-sm:hover,
.btn-wishlist-sm.wishlist-active {
  color: #7065f0;
}

.property-title-link:hover {
  color: #7065f0 !important;
}

.property-title {
  font-size: 20px;
}
.property-sec-title{
  font-size: 32px;
}
.price-tag {
  font-size: 40px;
  font-weight: 400;
}

.new-price {
  color: #7065f0 !important;
  font-size: 22px;
  font-weight: 700;
}

.new-price-detial {
  color: #3e4958 !important;
  font-size: 40px;
  font-weight: 800;
}

.text-beds {
  background-color: #8f90a673;
  color: #7065f0 !important;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
}

.property-icon {
  color: #6c757d;
  font-size: 12px;
}

.property-feature-text {
  font-size: 15.54px;
  color: #6c757d;
  margin-left: 4px;
}

.product-info {
  gap: 12px;
}

/* -----------------------------------------
	Price Range Slider CSS
----------------------------------------- */
.noUi-target {
  border: none;
  box-shadow: none;
  border-radius: 30px;
  height: 8px;
  background: rgba(var(--color-medium-rgb), 0.6);
}

.noUi-connect {
  background: var(--color-primary);
}

.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  right: -8px;
  border-radius: 50%;
  border-width: 3px;
  box-shadow: none;
  background: var(--color-primary);
  border: 3px solid var(--color-white);
  cursor: grab;
}

.noUi-horizontal .noUi-handle::before,
.noUi-horizontal .noUi-handle::after {
  content: none;
}

/* -----------------------------------------
    Swiper Slider CSS
----------------------------------------- */
.swiper-container {
  position: relative;
  overflow: hidden;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 30px;
  opacity: 1;
  background-color: #e9e9e9;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.pagination-fraction .swiper-pagination-bullet {
  position: relative;
  width: auto;
  height: auto;
  border-radius: 0;
  margin: 0;
  margin-inline: 5px;
  padding-bottom: 5px;
  text-align: center;
  font-size: var(--font-lg);
  color: var(--color-medium);
  background: transparent;
}

.pagination-fraction .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 5px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease-out;
}

.pagination-fraction .swiper-pagination-bullet-active {
  color: var(--color-primary);
}

.pagination-fraction .swiper-pagination-bullet-active::before {
  transform: none;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  line-height: 1;
  bottom: 0;
}

.slider-navigation {
  z-index: 3;
}

.slider-navigation .slider-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 5px;
  border: transparent;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 24px;
  transition: all 0.4s ease-out;
}

.slider-navigation .slider-btn:last-child {
  margin-inline-start: 10px;
}

.slider-navigation .slider-btn i {
  transition: transform 0.4s ease-out;
}

.slider-navigation .slider-btn:hover.slider-btn-prev i {
  transform: translateX(-4px);
}

.slider-navigation .slider-btn:hover.slider-btn-next i {
  transform: translateX(4px);
}

.slider-navigation .slider-btn:disabled {
  cursor: not-allowed;
}

/* -----------------------------------------
    Nav Tabs CSS
----------------------------------------- */
.tabs-navigation::-webkit-scrollbar {
  height: 5px;
}

.tabs-navigation .nav {
  display: inline-flex;
  border: none;
  gap: 10px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.tabs-navigation .nav li {
  flex: 0 0 auto;
}

.tabs-navigation .nav .nav-link {
  color: var(--color-primary);
  font-weight: var(--font-medium);
  margin: 0;
  cursor: pointer;
}

.tabs-navigation .nav .nav-link:is(.active) {
  color: var(--color-white);
  background-color: black;
}

.tabs-navigation .nav .nav-link:is(.active, :hover, .mixitup-control-active) {
  color: var(--color-white);
  background: black;
}

.product-1 .tabs-navigation .nav .nav-link {
  color: var(--color-secondary);
}

.product-1 .tabs-navigation .nav .nav-link:is(.active, :hover, .mixitup-control-active) {
  color: var(--color-white);
  background: black;
}

.tab-switch .text {
  font-size: 18px;
  color: var(--color-dark);
}

.switch-toggle {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 30px;
  margin: 0 10px;
}

.switch-toggle .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  background-color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  transition: 0.4s;
}

.switch-toggle .toggle-slider::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 2px;
  bottom: 2px;
  border-radius: 50%;
  background-color: var(--color-white);
  transition: 0.4s;
}

.switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-toggle input:checked+.toggle-slider::before {
  transform: translateX(40px);
}

.tab-pane.fade {
  transition: all 0.2s;
  transform: translateY(1rem);
}

.tab-pane.fade.show {
  transform: translateY(0rem);
}

/* -----------------------------------------
  	Go top CSS
----------------------------------------- */
.go-top {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 45px;
  opacity: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-light);
  font-size: 28px;
  background-color: var(--color-primary);
  background-image: var(--gradient-bg);
  transition: 0.4s;
  transform: translateX(15%);
  z-index: 100;
}

.go-top.active {
  opacity: 1;
  transform: none;
}

.go-top:hover {
  transform: translateY(-3px);
}

/* -----------------------------------------
    Title CSS
----------------------------------------- */
.section-title .subtitle {
  color: var(--color-primary);
  font-weight: var(--font-medium);
  margin-bottom: 10px;
  display: inline-block;
}

.select-tabs {
  display: flex;
  border: 1px solid #e0def7;
  background-color: #e0def7;
  color: #000;
  border-radius: 8px;
  padding: 4px;
}

.select-tabs .nav-link {
  border: none;
  background: transparent;
  color: #000;
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.select-tabs .nav-link.active {
  background-color: #000;
  color: #fff;
}

.select-tabs .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.section-title .subtitle .line {
  position: relative;
  bottom: 3px;
  display: inline-block;
  margin-inline-end: 5px;
  width: 25px;
  height: 2px;
  border-radius: 30px;
  background: var(--color-primary);
}

.section-title.title-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.section-title.title-inline .title {
  margin-bottom: 0;
}

.section-title.title-center {
  text-align: center;
}

.section-title.title-center .subtitle {
  padding-inline-start: 0;
}

.section-title.title-center .subtitle::before {
  content: none;
}

.section-title.title-center .title {
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.title-bottom-line {
  position: relative;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border-color);
}

.title-bottom-line::before {
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
  width: 40%;
  height: 2px;
  background-color: var(--color-primary);
}

.content-title .subtitle {
  color: var(--color-primary);
  font-weight: var(--font-medium);
  margin-bottom: 10px;
}

.content-title .subtitle .line {
  position: relative;
  bottom: 3px;
  display: inline-block;
  margin-inline-end: 5px;
  width: 25px;
  height: 2px;
  border-radius: 30px;
  background: var(--color-primary);
}

.content-title h2 {
  margin-bottom: 10px;
}

.content-title p {
  margin-bottom: 0;
}

/* -----------------------------------------
  	Animation CSS
----------------------------------------- */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.2, 1.2, 1.2);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes moveAround {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }

  20% {
    transform: translate(73px, -1px) rotate(36deg);
  }

  40% {
    transform: translate(141px, 72px) rotate(72deg);
  }

  60% {
    transform: translate(83px, 122px) rotate(108deg);
  }

  80% {
    transform: translate(-40px, 72px) rotate(144deg);
  }

  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

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

@keyframes moveLeftRight {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-20px);
  }

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

@keyframes ripple {
  0% {
    opacity: 0.25;
  }

  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/* -----------------------------------------
	Home Banner CSS
----------------------------------------- */
.home-banner {
  position: relative;
  overflow: hidden;
}

.home-banner .content .subtitle {
  display: inline-block;
  font-size: var(--font-lg);
  margin-bottom: 10px;
}

.home-banner .content .title span {
  color: var(--color-primary);
}

.home-banner .content .text {
  color: #000;
  font-size: var(--font-lg);
  max-width: 500px;
  margin-bottom: 0;
}

.home-banner .banner-filter-form .grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.home-banner .banner-filter-form .grid .grid-item {
  flex: 0 0 auto;
  width: calc(100% / 8 - 5px);
}

.home-banner .banner-filter-form .tabs-navigation {
  display: flex;
}

.home-banner .banner-filter-form .nav {
  display: inline-flex;
  gap: 12px;
  border: none;
}

.home-banner .banner-filter-form .nav .nav-item:not(:last-child) .nav-link:not(.active)::before {
  content: "";
}

.home-banner .banner-filter-form .nav .nav-link {
  position: relative;
  color: var(--color-dark);
  border: 1px solid var(--color-white);
  cursor: pointer;
}

.home-banner .banner-filter-form .nav .nav-link:is(.active, :hover) {
  color: var(--color-white);
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}

.home-banner .banner-filter-form .nav .nav-link:is(.active, :hover)::before {
  content: none;
}

.home-banner .banner-filter-form .tab-content,
.home-banner .banner-filter-form .form-wrapper {
  padding: 30px;
  border-radius: 10px;
  border: 2px solid var(--color-primary);
  background: var(--color-white);
  box-shadow: 0px 20px 80px rgba(31, 31, 31, 0.1);
}

.home-banner .banner-filter-form .form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.home-banner .banner-filter-form .form-group::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  margin-inline-start: auto;
  margin-inline-end: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: var(--border-color);
}

.home-banner .banner-filter-form .form-group ::-moz-placeholder {
  color: var(--color-dark);
  opacity: 1;
}

.home-banner .banner-filter-form .form-group ::placeholder {
  color: var(--color-dark);
}

.home-banner .banner-filter-form label {
  font-size: var(--font-sm);
  font-weight: var(--font-medium);
  margin-bottom: 10px;
  display: block;
  line-height: 1;
  color: var(--color-medium);
}

.home-banner .banner-filter-form select {
  cursor: pointer;
}

.home-banner .banner-filter-form .nice-select,
.home-banner .banner-filter-form .form-control {
  padding-inline: 0;
  border: 0;
  height: auto;
  line-height: 1;
  font-size: var(--font-sm);
  font-weight: var(--font-medium);
  background-color: transparent;
  color: var(--color-dark);
}

.home-banner .select2-container,
.home-banner .select2-container--default .select2-selection--single {
  height: auto;
}

.home-banner .select2-container .select2-selection--single .select2-selection__rendered {
  border: 0;
  height: auto;
  line-height: 1;
  font-size: var(--font-sm);
  font-weight: var(--font-medium);
  background-color: transparent;
  color: var(--color-dark);
}

.home-banner .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 10px;
}

.home-banner .banner-filter-form .nice-select .list {
  width: 100%;
  margin-top: 10px;
  color: var(--color-dark);
  border-radius: 3px;
  box-shadow: 0px 0px 30px 0px rgba(var(--color-dark-rgb), 0.15);
}

.home-banner .banner-filter-form .nice-select .list li,
.home-banner .banner-filter-form .form-control option {
  line-height: 30px;
  min-height: 30px;
}

.home-banner .banner-filter-form .price-value {
  margin-bottom: 12px;
}

.home-banner .banner-filter-form .price-value span {
  color: var(--color-dark);
  font-size: var(--font-sm);
}

.home-banner .banner-filter-form .btn-filter {
  font-size: 24px;
  color: var(--color-primary);
}

.home-banner .noUi-target {
  height: 3px;
  width: 80%;
}

.home-banner .noUi-connect {
  background: var(--color-primary);
}

.home-banner .noUi-horizontal .noUi-handle {
  width: 12px;
  height: 12px;
  right: -8px;
  top: -5px;
  background: var(--color-white);
  border-color: var(--color-primary);
}

.zoomContainer {
  z-index: 9;
}

.zoomWindow {
  z-index: 9;
}

.product-single .zoomContainer {
  z-index: 99;
}

.product-single .zoomWindow {
  z-index: 99;
}

/* -----------------------------------------
    Counter CSS
----------------------------------------- */
.counter-area {
  position: relative;
  overflow: hidden;
}

.counter-area .card {
  background: transparent;
}

.counter-area .card-icon {
  font-size: 50px;
  color: var(--color-primary);
  line-height: 1;
}

.counter-area .card h2 {
  line-height: 1;
  color: var(--color-primary);
}

.counter-area.with-radius {
  border-radius: 50px 50px 0 0;
}

/* -----------------------------------------
    Category CSS
----------------------------------------- */
.category {
  position: relative;
}

.category .category-item {
  padding: 25px;
  cursor: pointer;
  transition: all 0.4s ease-out;
}

.category .category-item .category-icon {
  position: relative;
  margin-bottom: 25px;
  margin-inline: auto;
  width: 76px;
  height: 76px;
  padding-top: 25px;
  z-index: 1;
  font-size: 55px;
  color: var(--color-primary);
}

.category .category-item .category-icon::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: -1;
  background: rgba(var(--color-primary-rgb), 0.13);
}

.category .category-item .category-title {
  font-size: var(--font-lg);
}

.category .category-item:hover {
  box-shadow: 0px 5px 30px -5px rgba(31, 31, 31, 0.1);
}

.category .color-1 .category-icon {
  color: #0d6efd;
}

.category .color-1 .category-icon::after {
  background: rgba(13, 110, 253, 0.13);
}

.category .color-2 .category-icon {
  color: #e41010;
}

.category .color-2 .category-icon::after {
  background: rgba(228, 16, 16, 0.13);
}

.category .color-3 .category-icon {
  color: #14c6af;
}

.category .color-3 .category-icon::after {
  background: rgba(20, 198, 175, 0.13);
}

.category .color-4 .category-icon {
  color: #2cc3f3;
}

.category .color-4 .category-icon::after {
  background: rgba(44, 195, 243, 0.13);
}

.category .color-5 .category-icon {
  color: #f57a09;
}

.category .color-5 .category-icon::after {
  background: rgba(245, 122, 9, 0.13);
}

.category .color-6 .category-icon {
  color: #6b76ff;
}

.category .color-6 .category-icon::after {
  background: rgba(107, 118, 255, 0.13);
}

.category .color-7 .category-icon {
  color: #ed798e;
}

.category .color-7 .category-icon::after {
  background: rgba(237, 121, 142, 0.13);
}

.category .color-8 .category-icon {
  color: #b3cde3;
}

.category .color-8 .category-icon::after {
  background: rgba(179, 205, 227, 0.13);
}

.category-2 .swiper-slide:nth-child(even) {
  margin-top: 30px;
}

.category-2 .category-item .category-icon {
  overflow: hidden;
  padding-top: 0;
}

.category-2 .category-item .category-icon i {
  vertical-align: sub;
}

.category-2 .category-item .category-icon::after {
  top: unset;
  bottom: -50%;
}

.category-2 .color-1 .category-item {
  background: rgba(13, 110, 253, 0.03);
}

.category-2 .color-1 .category-icon {
  color: #0d6efd;
}

.category-2 .color-1 .category-icon::after {
  background: rgba(13, 110, 253, 0.13);
}

.category-2 .color-2 .category-item {
  background: rgba(228, 16, 16, 0.03);
}

.category-2 .color-2 .category-icon {
  color: #e41010;
}

.category-2 .color-2 .category-icon::after {
  background: rgba(228, 16, 16, 0.13);
}

.category-2 .color-3 .category-item {
  background: rgba(20, 198, 175, 0.03);
}

.category-2 .color-3 .category-icon {
  color: #14c6af;
}

.category-2 .color-3 .category-icon::after {
  background: rgba(20, 198, 175, 0.13);
}

.category-2 .color-4 .category-item {
  background: rgba(44, 195, 243, 0.03);
}

.category-2 .color-4 .category-icon {
  color: #2cc3f3;
}

.category-2 .color-4 .category-icon::after {
  background: rgba(44, 195, 243, 0.13);
}

.category-2 .color-5 .category-item {
  background: rgba(245, 122, 9, 0.03);
}

.category-2 .color-5 .category-icon {
  color: #f57a09;
}

.category-2 .color-5 .category-icon::after {
  background: rgba(245, 122, 9, 0.13);
}

.category-2 .color-6 .category-item {
  background: rgba(107, 118, 255, 0.03);
}

.category-2 .color-6 .category-icon {
  color: #6b76ff;
}

.category-2 .color-6 .category-icon::after {
  background: rgba(107, 118, 255, 0.13);
}

.category-2 .color-7 .category-item {
  background: rgba(237, 121, 142, 0.03);
}

.category-2 .color-7 .category-icon {
  color: #ed798e;
}

.category-2 .color-7 .category-icon::after {
  background: rgba(237, 121, 142, 0.13);
}

.category-2 .color-8 .category-item {
  background: rgba(179, 205, 227, 0.03);
}

.category-2 .color-8 .category-icon {
  color: #b3cde3;
}

.category-2 .color-8 .category-icon::after {
  background: rgba(179, 205, 227, 0.13);
}

.category .shape img {
  position: absolute;
  z-index: -1;
}

.category .shape img.shape-1 {
  top: 13%;
  right: 5%;
  animation: moveLeftRight 10s linear infinite;
}

.category .shape img.shape-2 {
  top: 70%;
  left: 4%;
  animation: moveLeftRight 5s linear infinite;
}

.category .shape img.shape-3 {
  bottom: 10%;
  right: 8%;
  animation: moveUpDown 5s linear infinite;
}

.category .shape img.shape-4 {
  top: 14%;
  left: 6%;
  animation: moveUpDown 5s linear infinite;
}

.category .shape img.shape-5 {
  top: 18%;
  left: 50%;
  animation: moveAround 20s linear infinite;
}

/* -----------------------------------------
    About CSS
----------------------------------------- */
.about-area {
  position: relative;
  overflow: hidden;
}

.about-area .img-content {
  position: relative;
}

.about-area .img-content .image {
  display: flex;
  gap: 30px;
  padding-bottom: 20px;
}

.about-area .img-content .image img {
  border-radius: 10px;
  flex: 0 0 auto;
  max-width: calc(55% - 15px);
}

.about-area .img-content .image img:last-child {
  margin-bottom: -20px;
  margin-top: 50px;
  max-width: calc(45% - 15px);
}

.about-area .img-content .absolute-text {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 180px;
  height: 180px;
  padding: 10px;
  border-radius: 50%;
  background: var(--color-primary);
}

.about-area .img-content .absolute-text .center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.about-area .img-content .absolute-text .center-text span {
  display: block;
  color: var(--color-white);
}

.about-area .img-content .absolute-text .center-text .h2 {
  color: var(--color-secondary);
  margin-bottom: 0;
  line-height: 1;
}

.about-area .img-content .absolute-text #curveText {
  color: var(--color-white);
  font-size: var(--font-lg);
}

.about-area .img-content .absolute-text #curveText .char {
  position: absolute;
  top: 5px;
  left: 50%;
  transform-origin: 0 85px;
}

.about-area .content .about-list {
  margin-top: 30px;
  margin-bottom: 20px;
}

.about-area .content .about-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-area .content .about-list .icon {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  text-align: center;
  line-height: 80px;
  background: var(--color-primary);
  font-size: 42px;
  color: var(--color-white);
}

.about-area .content .about-list .icon.blue {
  background: var(--color-blue);
}

.about-area .content .about-list .icon.cyan {
  background: var(--color-cyan);
}

.about-area .content .about-list h3 {
  margin-bottom: 0;
}

.about-area .content .about-list p {
  line-height: 1.5;
  margin-bottom: 0;
}

.about-area .content .btn {
  margin-top: 15px;
}

.about-area .content .clients {
  margin-top: 15px;
}

.about-area .content .clients img {
  max-width: 50px;
  border-radius: 50%;
}

.about-area .content .clients img:not(:first-child) {
  margin-inline-start: -20px;
}

.about-area.about-2 .bg-overlay {
  position: absolute;
  top: -8%;
  right: 0;
  width: auto;
  z-index: -1;
}

.about-area.about-2 .img-content {
  height: 100%;
  padding-bottom: 100px;
}

.about-area.about-2 .img-content .img-1 {
  margin-inline-start: auto;
  margin-inline-end: 0;
  border-radius: 10px;
  overflow: hidden;
  max-width: 75%;
}

.about-area.about-2 .img-content .img-2 {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline-start: 0;
  margin-inline-end: auto;
  bottom: 0;
  max-width: 40%;
  border-radius: 10px;
  overflow: hidden;
}

.about-area.about-2 .img-content .img-2::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--color-dark);
  opacity: 0.3;
}

.about-area .shape img {
  position: absolute;
  z-index: -1;
}

.about-area .shape img.shape-1 {
  top: 13%;
  right: 5%;
  animation: moveLeftRight 10s linear infinite;
}

.about-area .shape img.shape-2 {
  top: 70%;
  left: 4%;
  animation: moveLeftRight 5s linear infinite;
}

.about-area .shape img.shape-3 {
  bottom: 10%;
  right: 8%;
  animation: moveUpDown 5s linear infinite;
}

.about-area .shape img.shape-4 {
  top: 14%;
  left: 6%;
  animation: moveUpDown 5s linear infinite;
}

@media (max-width: 767px) {
  .featured-product {
    padding-bottom: 40px !important;
  }

  .section-title.mb-40 {
    margin-bottom: 20px !important;
  }

  .swiper.product-slider {
    padding-bottom: 10px;
  }

  /* Adjust property card sizing for mobile */
  .swiper-slide {
    width: 85% !important;
    margin-right: 15px;
  }
}

/* -----------------------------------------
    Choose CSS
----------------------------------------- */
.choose-area {
  position: relative;
  overflow: hidden;
}

.choose-area .img-content {
  --top: 40px;
  --top-n: -40px;
  --bottom: 60px;
  position: relative;
  padding-top: var(--top);
  padding-bottom: var(--bottom);
}

.choose-area .img-content::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  width: 30%;
  margin-inline-start: auto;
  margin-inline-end: var(--top-n);
  height: 60%;
  background: #d1d6d7;
  z-index: -1;
  border-radius: 30px;
  border-start-end-radius: 0;
}

.choose-area .img-content .img-1 {
  position: relative;
  margin-inline-start: auto;
  border-radius: 10px;
  overflow: hidden;
  max-width: 75%;
}

.choose-area .img-content .img-1 img {
  width: 100%;
}

.choose-area .img-content .img-1::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--color-dark);
  opacity: 0.3;
}

.choose-area .img-content .img-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 10px;
  overflow: hidden;
  margin-inline-start: 0;
  margin-inline-end: auto;
  max-width: 40%;
}

.choose-area .img-content .img-2::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--color-dark);
  opacity: 0.3;
}

.choose-area .content .choose-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-column-gap: 30px;
  text-align: center;
}

.choose-area .content .choose-grid .icon {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  text-align: center;
  line-height: 100px;
  background: var(--color-primary);
  font-size: 52px;
  margin-bottom: 10px;
  color: var(--color-white);
}

.choose-area .content .choose-grid .icon.cyan {
  background: var(--color-cyan);
}

.choose-area .content .choose-grid .icon.green {
  background: var(--color-green);
}

.choose-area .content .choose-grid .icon.purple {
  background: var(--color-purple);
}

.choose-area .content .choose-grid .icon.pink {
  background: var(--color-pink);
}

.choose-area .content .choose-grid .icon.orange {
  background: var(--color-orange);
}

.choose-area .content .choose-grid .icon.blue {
  background: var(--color-blue);
}

/* -----------------------------------------
    Agent CSS
----------------------------------------- */
.agent-area {
  position: relative;
  overflow: hidden;
}

.agent-box {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.3s ease-out;
}

.agent-box .agent-img {
  position: relative;
}

.agent-box .agent-img::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(179.92deg,
      rgba(255, 255, 255, 0) 0.07%,
      rgba(0, 0, 0, 0.7) 98.52%);
  z-index: 2;
}

.agent-box .agent-img img {
  transition: transform 0.3s ease-out;
}

.agent-box .agent-ratings {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 16px;
  z-index: 2;
}

.agent-box:not(.agent-column) :is(.agent-ratings, a) {
  color: var(--color-white);
}

.agent-box:not(.agent-column) .agent-details {
  background: var(--color-secondary);
}

.agent-box .ratings {
  font-size: var(--font-sm);
}

.agent-box .ratings i {
  color: var(--color-primary);
}

.agent-box .label {
  display: inline-block;
  padding: 8px 14px;
  color: var(--color-white);
  font-size: var(--font-sm);
  border-radius: 3px 3px 0 0;
  background: var(--color-primary);
}

.agent-box .agent-details {
  padding: 16px;
}

.agent-box .agent-title {
  margin-top: 5px;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.agent-box .agent-info {
  margin-top: 15px;
  margin-bottom: 15px;
  font-weight: 500;
  font-size: var(--font-sm);
}

.agent-box .agent-info i {
  color: var(--color-primary);
  font-size: var(--font-md);
  vertical-align: -1px;
}

.agent-box .agent-info li:not(:last-child) {
  margin-bottom: 8px;
}

.agent-box .social-link {
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline-end: 10px;
  margin-inline-start: auto;
  transition: all 0.4s ease-out;
  opacity: 0;
  text-align: center;
  transform: translateX(100%);
  z-index: 2;
}

.agent-box .social-link a {
  display: block;
}

.agent-box .social-link a:not(:last-child) {
  margin-bottom: 5px;
}

.agent-box:hover {
  box-shadow: 0 5px 15px -5px rgba(var(--color-dark-rgb), 0.2);
}

.agent-box:hover:not(.agent-column) .social-link {
  opacity: 1;
  transform: none;
}

.agent-box:hover .agent-img img {
  transform: scale3d(1.05, 1.05, 1.05);
}

.agent-column {
  border-radius: 0 15px 15px 0;
  border: 1px solid var(--border-color);
}

.agent-column .agent-img {
  overflow: hidden;
  border-radius: 0 15px 15px 0;
}

.agent-column .label {
  padding: 6px 12px;
}

.agent-column .agent-details {
  padding: 0;
  padding-inline-start: 22px;
}

.agent-column .social-link {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin-inline-start: auto;
  margin-inline-end: 20px;
  text-align: center;
  opacity: 1;
  transform: translateY(-50%);
}

.agent-column .social-link a {
  font-size: 20px;
  display: block;
}

.agent-column:hover {
  border-color: transparent;
}

.agent-single .label {
  display: inline-block;
  padding: 6px 12px;
  color: var(--color-white);
  font-size: var(--font-sm);
  border-radius: 3px;
  background: var(--color-secondary);
}

.agent-single .ratings {
  font-size: var(--font-sm);
}

.agent-single .ratings i {
  color: var(--color-primary);
}

.agent-single .agent-info {
  margin-top: 20px;
  margin-bottom: 20px;
}

.agent-single .agent-info li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.agent-single .agent-info li div {
  flex: 0 0 auto;
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.agent-single .agent-info li div:first-child {
  width: calc(40% -10px);
}

.agent-single .agent-info li div:last-child {
  width: calc(60% - 10px);
}

@media (max-width: 575.98px) {
  .agent-single .agent-info li div {
    width: 100% !important;
  }
}

.agent-single .agent-info li:not(:last-child) {
  margin-bottom: 10px;
}

.agent-single .agent-info span,
.agent-single .agent-info i {
  color: var(--color-dark);
}

.agent-single .agent-info a {
  color: var(--color-medium);
}

.agent-single .agent-info a:hover {
  color: var(--color-primary);
}

.agent-single .agent-single-details p:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------
    Gallery CSS
----------------------------------------- */
.gallery-area {
  position: relative;
  overflow: visible;
}

.gallery-area .card {
  overflow: visible;
}

.gallery-area .card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  z-index: 2;
}

.gallery-area .card .card-img {
  overflow: hidden;
}

.gallery-area .card .card-img img {
  transition: transform 0.3s ease-out;
}

.gallery-area .card .card-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.gallery-area .card .card-text .card-title,
.gallery-area .card .card-text span {
  /* display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.4s, opacity 0.4s; */
}

.gallery-area .card .card-text span {
  /* transition-delay: 0.1s; */
}

.gallery-area .card:hover .card-img img {
  /* transform: scale3d(1.05, 1.05, 1.05); */
}

.gallery-area .card:hover .card-text .card-title,
.gallery-area .card:hover .card-text span {}

/* -----------------------------------------
    Testimonial CSS
----------------------------------------- */
.testimonial-area {
  position: relative;
  overflow: hidden;
  background-color: #edfbff;
}

.testimonial-area .overlay-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin-inline-start: auto;
  margin-inline-end: 0;
  width: -moz-fit-content;
  width: 40%;
  height: 75%;
  z-index: -1;
}

.testimonial-area .overlay-bg img {
  border: 1px solid var(--border-color);
  border-radius: 15px 0 0 15px;
  height: 100%;
  object-fit: cover;
}

.testimonial-area .slider-item {
  position: relative;
  padding-bottom: 50px;
  padding-inline-end: 30px;
}

.testimonial-area .slider-item::before {
  position: absolute;
  content: "";
  right: 0;
  left: 0;
  bottom: 0;
  margin-inline-start: auto;
  margin-inline-end: 0;
  width: 75%;
  height: 75%;
  border: 3px solid var(--color-primary);
  border-radius: 10px;
  z-index: -1;
}

.testimonial-area .slider-item .client-img {
  position: absolute;
  top: -30px;
  left: 30px;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
}

.testimonial-area .slider-item .client-content {
  padding: 80px 25px 25px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--color-white);
  transition: box-shadow 0.3s ease-out;
}

.testimonial-area .slider-item .quote {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.testimonial-area .slider-item .icon {
  display: block;
  font-size: 25px;
  color: rgba(var(--color-primary-rgb), 0.19);
}

.testimonial-area .slider-item p {
  margin-bottom: 0;
}

.testimonial-area .slider-item .client-info h6 {
  margin-bottom: 2px;
}

.testimonial-area .slider-item .client-info .designation {
  font-size: var(--font-sm);
}

.testimonial-area .swiper-slide:hover .client-content,
.testimonial-area .swiper-slide-active .client-content {
  box-shadow: 0 5px 15px -5px rgba(var(--color-dark-rgb), 0.2);
}

.testimonial-2.with-radius,
.with-radius.testimonial-3 {
  border-radius: 50px 50px 0 0;
  border: 1px solid var(--border-color);
}

.testimonial-2 .slider-item,
.testimonial-3 .slider-item {
  padding: 0;
  padding-inline-end: 30px;
}

.testimonial-2 .slider-item::before,
.testimonial-3 .slider-item::before {
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-2 .slider-item .client-content,
.testimonial-3 .slider-item .client-content {
  padding: 0;
}

.testimonial-2 .slider-item .quote,
.testimonial-3 .slider-item .quote {
  padding: 30px;
  margin: 0;
}

.testimonial-2 .slider-item .client-info,
.testimonial-3 .slider-item .client-info {
  padding: 20px 30px;
}

.testimonial-2 .slider-item .client-info .content,
.testimonial-3 .slider-item .client-info .content {
  padding-inline-start: 20px;
}

.testimonial-2 .swiper-pagination,
.testimonial-3 .swiper-pagination {
  position: static;
  margin-inline-start: -4px;
  text-align: start;
}

.testimonial-3 .slider-item {
  padding-inline-end: 10px;
}

.testimonial-3 .slider-item::before {
  height: calc(100% - 4px);
  background: var(--color-primary);
}

.testimonial-3 .slider-item .client-info .client-img {
  margin-inline-end: 30px;
}

.testimonial-3 .slider-item .client-info .content {
  padding-inline-start: 30px;
  position: relative;
}

.testimonial-3 .slider-item .client-info .content::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  margin-inline-start: 0;
  margin-inline-end: auto;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: rgba(var(--color-primary-rgb), 0.13);
}

.testimonial-3 .shape img {
  position: absolute;
  z-index: -1;
}

.testimonial-3 .shape img.shape-1 {
  top: 13%;
  right: 5%;
  animation: moveAround 20s linear infinite;
}

.testimonial-3 .shape img.shape-2 {
  top: 70%;
  left: 4%;
  animation: moveLeftRight 5s linear infinite;
}

.testimonial-3 .shape img.shape-3 {
  bottom: 10%;
  right: 8%;
  animation: moveUpDown 5s linear infinite;
}

.testimonial-3 .shape img.shape-4 {
  top: 14%;
  left: 6%;
  animation: moveUpDown 5s linear infinite;
}

.testimonial-3 .shape img.shape-5 {
  top: 18%;
  left: 70%;
  animation: moveLeftRight 10s linear infinite;
}

/* -----------------------------------------
	Newsletter CSS
----------------------------------------- */
.newsletter-area .newsletter-inner {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
  border-radius: 30px;
}

.newsletter-area .newsletter-inner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-dark);
  opacity: 0.5;
  z-index: -1;
}

.newsletter-area .newsletter-form .input-group {
  padding: 0;
  background-color: transparent;
  border: 2px solid var(--color-white);
}

.newsletter-area .newsletter-form .input-group ::-moz-placeholder {
  color: var(--color-white);
}

.newsletter-area .newsletter-form .input-group ::placeholder {
  color: var(--color-white);
}

.newsletter-area .newsletter-form .input-group .btn {
  border-radius: 5px !important;
  color: var(--color-dark);
  background: var(--color-white);
}

.newsletter-area .newsletter-form .input-group .form-control {
  background-color: transparent;
  padding: 20px;
  color: var(--color-white);
}

/* -----------------------------------------
    Product CSS
----------------------------------------- */
.product-area {
  position: relative;
  overflow: hidden;
}

.product-default {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease-out;
}

.product-default .product-img img {
  transition: transform 0.3s ease-out;
}

.product-default .product-details {
  padding: 16px;
}

.product-default .product-details .author a img {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  object-fit: cover;
}

.product-default .product-category {
  font-size: var(--font-sm);
  font-weight: var(--font-medium);
}

.product-default .author img {
  border-radius: 50%;
  max-width: 30px;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  background-color: var(--bg-light);
}

.product-default .product-title {
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-default .product-location {
  font-weight: var(--font-medium);
}

.product-default .product-location i {
  font-size: var(--font-sm);
}

.product-default .product-price {
  margin: 6px 0 16px;
}

.product-default .btn-wishlist {
  position: absolute;
  top: 14px;
  right: 0;
  left: 0;
  margin-inline-start: auto;
  margin-inline-end: 16px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  font-size: var(--font-sm);
  border-radius: 50%;
  text-align: center;
  color: var(--color-primary);
  background: var(--color-white);
  z-index: 1;
}

.product-default .btn-wishlist i {
  transition: font-weight 0.3s ease-out;
}

.product-default .label {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline-start: 0;
  margin-inline-end: auto;
  padding: 6px 14px;
  color: var(--color-white);
  font-size: var(--font-sm);
  border-radius: 0 3px 3px 0;
  background: var(--color-primary);
  z-index: 1;
}

.product-default .product-info {
  justify-content: space-between;
}

.product-default:hover {
  border-color: transparent;
  box-shadow: 0 5px 15px -5px rgba(var(--color-dark-rgb), 0.2);
}

.product-default:hover .btn-wishlist i {
  font-weight: 700;
}

.product-default .btn-wishlist.wishlist-active i {
  font-weight: 700;
}

.product-default:hover .product-img img {
  transform: scale3d(1.05, 1.05, 1.05);
}

.product-ratings {
  font-size: var(--font-sm);
  color: var(--color-primary);
}

.product-ratings span {
  color: var(--color-medium);
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: start;
  letter-spacing: 1px;
}

.product-price span {
  display: inline-block;
  font-weight: var(--font-medium);
}

.product-price .new-price {
  display: inline-block;
  font-weight: var(--font-bold);
  font-size: var(--font-size--h4);
  color: var(--color-dark);
  margin-inline-end: 12px;
}

.product-location {
  font-size: 23px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.product-info {
  margin-bottom: 17px;
  font-weight: 500;
  font-size: var(--font-sm);
  color: var(--color-primary);
  gap: 15px;
}

.product-info i {
  font-size: var(--font-size--h3);
}

.product-info span {
  color: var(--color-medium);
}

.product-info li {
  position: relative;
}

.product-column {
  border-radius: 0 15px 15px 0;
}

.product-column .product-img {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 0 15px 15px 0;
}

.product-column .product-title {
  margin-top: 5px;
  margin-bottom: 5px;
  -webkit-line-clamp: 1;
}

.product-column .product-details {
  padding: 0;
  padding-inline-start: 20px;
  padding-inline-end: 10px;
  border-inline-end: 1px solid var(--border-color);
}

.product-column .product-list-group {
  margin-top: 15px;
  padding-inline-start: 16px;
}

.product-column .product-list-group li {
  list-style-type: disc;
}

.product-column .product-list-group li:not(:last-child) {
  margin-bottom: 5px;
}

.product-column .product-info {
  margin-top: 20px;
  justify-content: start;
}

.product-column .product-price {
  margin-top: 0;
  margin-bottom: 0;
}

.product-column .product-action {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

@media (max-width: 991.98px) {
  .product-column {
    border-radius: 10px;
  }

  .product-column .product-img {
    border-radius: 10px;
  }

  .product-column .product-details {
    padding: 20px;
    border: none;
  }

  .product-column .product-action {
    flex-direction: row;
    text-align: start;
    padding: 20px;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
  }

  .product-column .product-info li {
    flex-direction: row;
    gap: 0;
  }
}

.product-inline {
  display: flex;
  border-width: 0;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

/* .product-img-bg{
  height: 1px !important;
  width: 1px;
} */
.product-inline .product-img {
  flex: 0 0 90px;
  max-width: 90px;
  overflow: hidden;
}

.product-inline .product-img img {
  background-color: var(--color-light-1);
}

.product-inline .product-title {
  -webkit-line-clamp: 2;
  margin-bottom: 0;
}

.product-inline .product-details {
  flex: 0 0 70%;
  max-width: 70%;
  padding: 0;
  padding-inline-start: 12px;
}

.product-inline .product-location {
  font-size: 12px;
}

.product-inline .product-location i {
  font-size: 12px;
}

.product-inline .product-price {
  margin: 0;
  font-size: 12px;
}

.product-inline .product-price .new-price {
  font-size: 12px;
  margin-inline-end: 5px;
}

.product-inline .product-info {
  margin-top: 5px;
  justify-content: start;
  gap: 10px;
  font-size: 12px;
}

.product-inline .product-info i {
  font-size: 12px;
}

.product-inline:hover {
  box-shadow: none;
}

.product-single .product-single-gallery {
  position: relative;
  padding-bottom: 30px;
}

.product-single .product-single-gallery .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.product-single .product-single-gallery .slider-btn.slider-btn-next {
  right: 0;
}

.product-single .slider-thumbnails {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 60%;
  z-index: 1;
}

.product-single .slider-thumbnails .thumbnail-img {
  cursor: pointer;
  opacity: 0.9;
}

.product-single .swiper-slide-active .thumbnail-img {
  opacity: 1;
}

.product-single .product-single-slider {
  max-width: 80%;
}

.product-single .product-single-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-single .product-full-screen {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.product-single .product-single-details .product-title {
  margin-top: -5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-single .product-single-details .product-location {
  font-size: var(--font-sm);
}

.product-single .product-single-details .product-info i,
.product-single .product-single-details .product-info {
  font-size: var(--font-size--h3);
}

.product-single .product-single-details .product-price span {
  font-size: var(--font-size--h6);
}

.product-single .product-single-details .product-price .new-price {
  font-size: var(--font-size--h4);
  font-weight: var(--font-bold);
}

.product-single .product-single-details .user {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-column-gap: 15px;
  align-items: center;
}

.product-single .product-single-details .user .user-info a {
  color: var(--color-medium);
  font-size: var(--font-sm);
}

.product-single .product-single-details .share-link li {
  display: inline-block;
  text-align: center;
}

.product-single .product-single-details .share-link li:not(:last-child) {
  margin-inline-end: 10px;
}

.product-single .product-single-details .share-link span {
  font-size: var(--font-xsm);
}

.product-single .product-single-details .share-link .btn {
  display: block;
  width: 34px;
  height: 34px;
  padding: 0;
  line-height: 34px;
  border-radius: 3px;
  margin-inline: auto;
  font-weight: normal;
  background: rgba(var(--color-primary-rgb), 0.13);
}

.product-single .product-single-details .share-link .btn.blue {
  color: var(--color-blue);
  background: rgba(var(--color-blue-rgb), 0.13);
}

.product-single .product-single-details .share-link .btn.red {
  color: var(--color-red);
  background: rgba(var(--color-red-rgb), 0.13);
}

.product-single .product-single-details .share-link .btn.green {
  color: var(--color-green);
  background: rgba(var(--color-green-rgb), 0.13);
}

.product-single .product-single-details .product-desc p:last-child {
  margin-bottom: 0;
}

.product-sort-area .product-sort-list .item {
  display: inline-block;
}

.product-sort-area .product-sort-list .item:not(:last-child) {
  margin-inline-end: 20px;
}

.product-sort-area .product-sort-list .nice-select {
  border: 0;
  padding: 0;
  background: transparent;
  padding: 0 20px;
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  display: flex;
  gap: 5px;
  align-items: center;
}

.product-sort-area .product-sort-list .nice-select::after {
  right: 0;
  position: unset;
}

.product-sort-area .product-sort-list .nice-select .list {
  left: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline-end: 0;
  margin-inline-start: auto;
}

.product-sort-area .product-sort-list .btn-icon {
  width: auto;
  height: auto;
  background: transparent;
  color: var(--color-gray-1);
}

.product-sort-area .product-sort-list .btn-icon.active,
.product-sort-area .product-sort-list .btn-icon:hover {
  color: var(--color-primary);
}

.featured-list li {
  margin-inline-end: 10px;
  margin-bottom: 10px;
}

.featured-list li i {
  color: var(--color-primary);
}

/* -----------------------------------------
	Footer CSS
----------------------------------------- */
.footer-area {
  position: relative;
  overflow: hidden;
}

.footer-area .bg-overlay {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.footer-area .bg-overlay::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
}

.footer-area .footer-widget {
  margin-bottom: 30px;
}

.footer-area .footer-widget ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.footer-area .footer-widget ul li {
  display: block;
}

.footer-area .footer-widget .navbar-brand {
  padding: 0;
}

.footer-area .footer-widget .navbar-brand img {
  width: 30%;
  height: auto;
}

.footer-area .footer-widget h3 {
  text-transform: capitalize;
  margin-bottom: 25px;
}

.footer-area .footer-widget p {
  margin-top: 20px;
  margin-bottom: 20px;
}

.footer-area .footer-widget .social-link {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-area .footer-widget .social-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-inline-end: 0;
  color: white !important;
  background-color: black !important;
  width: 40px;
  height: 40px;
  line-height: 1;
  padding: 0;
  border-radius: 50%;
}

.footer-area .footer-widget .social-link a i {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}

.footer-area .footer-widget .social-link a:last-child {
  margin: 0;
}

.footer-area .footer-widget .footer-links li {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  line-height: 1;
  color: var(--color-gray-1);
}

.footer-area .footer-widget .footer-links li a {
  color: var(--color-gray-1);
}

.footer-area .footer-widget .footer-links li a:hover {
  color: var(--color-primary);
}

.footer-area .footer-widget .footer-links li:last-child {
  margin-bottom: 0;
}

.footer-area .copy-right-area {
  text-align: center;
  padding: 20px 0;
}

.footer-area .copy-right-area p {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .footer-top {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .footer-top {
    padding-top: 70px;
    padding-bottom: 30px;
  }
}

@keyframes cluster-animation {

  0%,
  100% {
    transform: scale(1.3);
  }

  50% {
    transform: scale(1.5);
  }
}

.leaflet-container {
  height: 100%;
  width: 100vw;
  max-width: 100%;
  max-height: 100%;
}

.marker-cluster {
  background: transparent;
}

.marker-cluster div {
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-lg);
  text-align: center;
}

.marker-cluster div:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  box-shadow: inset 0 0 0 10px var(--color-primary);
  content: "";
  border-radius: 50%;
  animation: cluster-animation 2.5s infinite;
  z-index: -1;
}

.cluster img {
  display: none;
}

.map-marker-container {
  position: absolute;
  margin-top: 10px;
  transform: translate3d(-50%, -100%, 0);
}

.marker-container {
  position: relative;
  margin: 10px auto;
  width: 40px;
  height: 40px;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  top: -5px;
}

.marker-container .marker-card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  position: absolute;
  z-index: 1;
  transition: all 0.3s linear;
}

.marker-container .marker-arrow {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 15px 0;
  border-color: var(--color-primary) transparent transparent;
  top: 33px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0;
  z-index: 1;
}

.marker-container:hover .marker-card {
  transform: translateY(-5px);
}

.map-marker-container.clicked .marker-card {
  transform: rotateY(-180deg) translateY(0px);
}

.face {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  border-radius: 10%;
  border-radius: 50px;
  background-color: #fff;
  border: 6px solid var(--color-primary);
  color: var(--color-primary);
  transition: all 1s linear;
  z-index: 100;
}

.face i {
  line-height: 28px;
  font-size: var(--font-sm);
}

.leaflet-popup {
  transition: all 0.3s linear;
}

.leaflet-popup .leaflet-popup-content-wrapper,
.leaflet-popup .leaflet-popup-tip {
  padding: 0;
  overflow: hidden;
}

.leaflet-popup a {
  color: var(--color-dark);
}

.leaflet-popup .leaflet-popup-content {
  position: relative;
  margin: 0;
  border-radius: 0;
}

.leaflet-popup .product-default {
  width: 280px;
  border: 0;
  color: var(--color-medium);
}

.leaflet-popup a.leaflet-popup-close-button {
  width: 25px;
  height: 25px;
  border-radius: 0 0 0 10px;
  background: var(--color-white);
  z-index: 5;
}

.leaflet-popup .label {
  padding: 3px 10px;
  font-size: var(--font-sm);
}

/* -----------------------------------------
    Banner CSS
----------------------------------------- */
.video-banner {
  position: relative;
  overflow: hidden;
}

.video-banner .bg-overlay {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.video-banner .bg-overlay::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90.18deg,
      rgba(0, 0, 0, 0.5) 2.96%,
      rgba(255, 255, 255, 0) 99.85%);
}

.video-banner.with-radius {
  border-radius: 20px 20px 0px 0px;
}

.video-banner .border-dashed {
  position: absolute;
  top: 0;
  left: -3px;
  bottom: 0;
  width: calc(100% + 6px);
  z-index: -1;
  background-image: repeating-linear-gradient(0deg,
      var(--color-primary),
      var(--color-primary) 12px,
      transparent 12px,
      transparent 22px,
      var(--color-primary) 22px),
    repeating-linear-gradient(90deg,
      var(--color-primary),
      var(--color-primary) 12px,
      transparent 12px,
      transparent 22px,
      var(--color-primary) 22px),
    repeating-linear-gradient(180deg,
      var(--color-primary),
      var(--color-primary) 12px,
      transparent 12px,
      transparent 22px,
      var(--color-primary) 22px),
    repeating-linear-gradient(270deg,
      var(--color-primary),
      var(--color-primary) 12px,
      transparent 12px,
      transparent 22px,
      var(--color-primary) 22px);
  background-size: 2px 100%, 100% 2px, 2px 100%, 100% 2px;
  background-position: 0 0, 0 0, 100% 0, 0 100%;
  background-repeat: no-repeat;
  animation: borderAnimation 3s infinite linear;
}

/* -----------------------------------------
    Work Process CSS
----------------------------------------- */
.work-process .process-item {
  transition: all 0.4s ease-out;
}

.work-process .process-item .process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 230px;
  height: 230px;
  margin-inline: auto;
}

.work-process .process-item .progress-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-inline: auto;
  background: rgba(var(--color-primary-rgb), 0.13);
}

.work-process .process-item .progress-content i {
  font-size: 45px;
}

.work-process .process-item .progressbar-circle {
  stroke: var(--color-primary);
  stroke-linecap: round;
}

.work-process .process-item .progressbar-line-inner {
  position: absolute;
  top: 0;
  left: 15px;
  right: 0;
  bottom: -15px;
  margin: auto;
  width: 215px;
  height: 215px;
  z-index: -1;
}

.work-process .process-item .progressbar-line-inner svg {
  width: 215px;
  height: 215px;
}

.work-process .process-item .progressbar-line-outer {
  width: 230px;
  height: 230px;
  mask: url(../images/arrow-circle.svg) no-repeat center/contain;
  -webkit-mask: url(../images/arrow-circle.svg) no-repeat center/contain;
  background: var(--color-primary);
  transform: rotateZ(-40deg);
}

.work-process .process-item .progressbar-line-outer.rotate-0 {
  transform: rotateZ(0deg);
}

.work-process .process-item .progressbar-line-outer.rotate-30 {
  transform: rotateZ(30deg);
}

.work-process .process-item .progressbar-line-outer.rotate-60 {
  transform: rotateZ(60deg);
}

.work-process .process-item .process-title {
  font-size: var(--font-lg);
}

.work-process .color-1 .process-icon {
  color: var(--color-primary);
}

.work-process .color-1 .process-icon .progressbar-circle {
  stroke: var(--color-primary);
}

.work-process .color-1 .card-icon {
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.13);
}

.work-process .color-1 .card-step span {
  background: rgba(var(--color-primary-rgb), 0.13);
}

.work-process .color-2 .process-icon {
  color: #14c6af;
}

.work-process .color-2 .process-icon .progress-content {
  background: rgba(20, 198, 175, 0.13);
}

.work-process .color-2 .process-icon .progressbar-circle {
  stroke: #14c6af;
}

.work-process .color-2 .card-icon {
  color: #14c6af;
  background: rgba(20, 198, 175, 0.13);
}

.work-process .color-2 .card-step span {
  background: rgba(20, 198, 175, 0.13);
}

.work-process .color-3 .process-icon {
  color: #2cc3f3;
}

.work-process .color-3 .process-icon .progress-content {
  background: rgba(44, 195, 243, 0.13);
}

.work-process .color-3 .process-icon .progressbar-circle {
  stroke: #2cc3f3;
}

.work-process .color-3 .card-icon {
  color: #2cc3f3;
  background: rgba(44, 195, 243, 0.13);
}

.work-process .color-3 .card-step span {
  background: rgba(44, 195, 243, 0.13);
}

.work-process .color-4 .process-icon {
  color: #f24343;
}

.work-process .color-4 .process-icon .progress-content {
  background: rgba(242, 67, 67, 0.13);
}

.work-process .color-4 .process-icon .progressbar-circle {
  stroke: #f24343;
}

.work-process .color-4 .card-icon {
  color: #f24343;
  background: rgba(242, 67, 67, 0.13);
}

.work-process .color-4 .card-step span {
  background: rgba(242, 67, 67, 0.13);
}

.work-process .color-5 .process-icon {
  color: #f57a09;
}

.work-process .color-5 .process-icon .progress-content {
  background: rgba(245, 122, 9, 0.13);
}

.work-process .color-5 .process-icon .progressbar-circle {
  stroke: #f57a09;
}

.work-process .color-5 .card-icon {
  color: #f57a09;
  background: rgba(245, 122, 9, 0.13);
}

.work-process .color-5 .card-step span {
  background: rgba(245, 122, 9, 0.13);
}

.work-process .color-6 .process-icon {
  color: #6b76ff;
}

.work-process .color-6 .process-icon .progress-content {
  background: rgba(107, 118, 255, 0.13);
}

.work-process .color-6 .process-icon .progressbar-circle {
  stroke: #6b76ff;
}

.work-process .color-6 .card-icon {
  color: #6b76ff;
  background: rgba(107, 118, 255, 0.13);
}

.work-process .color-6 .card-step span {
  background: rgba(107, 118, 255, 0.13);
}

.work-process .color-7 .process-icon {
  color: #ed798e;
}

.work-process .color-7 .process-icon .progress-content {
  background: rgba(237, 121, 142, 0.13);
}

.work-process .color-7 .process-icon .progressbar-circle {
  stroke: #ed798e;
}

.work-process .color-7 .card-icon {
  color: #ed798e;
  background: rgba(237, 121, 142, 0.13);
}

.work-process .color-7 .card-step span {
  background: rgba(237, 121, 142, 0.13);
}

.work-process .color-8 .process-icon {
  color: #b3cde3;
}

.work-process .color-8 .process-icon .progress-content {
  background: rgba(179, 205, 227, 0.13);
}

.work-process .color-8 .process-icon .progressbar-circle {
  stroke: #b3cde3;
}

.work-process .color-8 .card-icon {
  color: #b3cde3;
  background: rgba(179, 205, 227, 0.13);
}

.work-process .color-8 .card-step span {
  background: rgba(179, 205, 227, 0.13);
}

.work-process-2 .card {
  background: transparent;
  padding-inline-end: 14px;
  padding-inline-start: 20px;
  padding-top: 28px;
  padding-bottom: 7px;
}

.work-process-2 .card-content {
  position: relative;
  padding: 30px 25px;
}

.work-process-2 .card-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-bottom: 20px;
  border-radius: 5px;
  text-align: center;
  font-size: 25px;
  margin-inline: auto;
  color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.13);
}

.work-process-2 .card-step {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline-start: -20px;
  margin-inline-end: auto;
  width: 90px;
  height: 60px;
  line-height: 40px;
  text-align: center;
  background: var(--color-white);
  display: flex;
  align-items: center;
}

.work-process-2 .card-step span {
  display: block;
  width: 70px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px;
  background: rgba(var(--color-primary-rgb), 0.13);
}

.work-process-2 .card .line {
  position: absolute;
  background: var(--color-primary);
  border-radius: 30px;
  left: 0;
  right: 0;
  margin-inline-start: auto;
  margin-inline-end: 0;
}

.work-process-2 .card .line-top {
  top: 0;
  width: 50%;
  height: 14px;
}

.work-process-2 .card .line-bottom {
  bottom: 0;
  width: 50%;
  height: 14px;
}

.work-process-2 .card .line-right {
  top: 0;
  height: 100%;
  width: 14px;
}

.work-process-2 .card-title {
  margin-bottom: 15px;
}

/* -----------------------------------------
    Pricing CSS
----------------------------------------- */
.pricing-item {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border: 1px solid var(--border-color);
  background: var(--color-white);
  transition: all 0.3s ease-out;
  z-index: 1;
}

.pricing-item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  transform: translateX(calc(-100% - 2px));
  transition: transform 0.5s ease-out;
  z-index: -1;
}

.pricing-item .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  font-size: 32px;
  text-align: center;
  border-radius: 10px;
  background-color: var(--color-light);
  color: var(--color-primary);
}

.pricing-item .icon.blue {
  color: var(--color-blue);
  background-color: rgba(var(--color-blue-rgb), 0.13);
}

.pricing-item .icon.cyan {
  color: var(--color-cyan);
  background-color: rgba(var(--color-cyan-rgb), 0.13);
}

.pricing-item .icon.red {
  color: var(--color-red);
  background-color: rgba(var(--color-red-rgb), 0.13);
}

.pricing-item .label {
  padding-inline-start: 16px;
}

.pricing-item .label span {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 30px;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 500;
  background-color: var(--color-white);
  color: var(--color-primary);
  display: none;
}

.pricing-item h3 {
  margin-bottom: 0;
}

.pricing-item .text {
  margin-top: 20px;
  margin-bottom: 30px;
}

.pricing-item .price {
  font-family: var(--font-family-base);
  font-weight: 700;
  color: var(--color-dark);
  font-size: 48px;
  line-height: 1;
  margin-inline-end: 10px;
}

.pricing-item h5 {
  margin-top: 5px;
  margin-bottom: 30px;
}

.pricing-item .item-list {
  margin-bottom: 0;
  color: var(--color-dark);
}

.pricing-item .item-list li {
  margin-bottom: 10px;
}

.pricing-item .item-list i {
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  text-align: center;
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-primary);
  margin-inline-end: 10px;
}

.pricing-item .btn {
  background-color: var(--color-white) !important;
  color: var(--color-primary) !important;
  margin-top: 35px;
}

.pricing-item .show-more {
  display: inline-block;
  color: var(--color-dark);
  margin-top: 5px;
  cursor: pointer;
  transition: transform 0.4s ease-out;
}

.pricing-item .show-more:hover {
  transform: translateX(5px);
}

.pricing-item .disabled {
  background: transparent !important;
}

.pricing-item :is(h3, .text, .price, .period, h5, .item-list) {
  transition: color 0.2s linear;
  transition-delay: 0.1s;
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) {
  box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active)::after {
  transform: none;
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .icon.blue {
  background-color: var(--color-white);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .icon.cyan {
  background-color: var(--color-white);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .icon.red {
  background-color: var(--color-white);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) :is(.text, .period) {
  color: var(--color-white);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .label span {
  display: inline-block;
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .disabled i {
  border-color: transparent;
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .item-list i {
  color: var(--color-dark);
  background-color: var(--color-white);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .secondary-btn {
  border-color: var(--color-white);
  color: var(--color-white);
}

.pricing-item:is(.pricing-item:hover, .pricing-item.active) .primary-btn {
  color: var(--color-primary);
  background: unset;
  background-color: var(--color-white);
}

.pricing-item:hover {
  border-color: transparent;
  box-shadow: 0px 4px 80px rgba(17, 16, 33, 0.08);
  transform: none;
}

.pricing-area .tab-pane {
  animation: none;
}

.pricing-area .tab-pane.active {
  animation: slideUp 0.3s ease-out 1;
}

/* -----------------------------------------
    Projects CSS
----------------------------------------- */
.projects-area {
  position: relative;
  overflow: hidden;
}

.projects-area .card {
  overflow: hidden;
}

.projects-area .card::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180.24deg,
      rgba(255, 255, 255, 0) -6.42%,
      rgba(18, 18, 18, 0.736) 77.04%,
      rgba(12, 12, 12, 0.8) 99.79%);
  z-index: 2;
}

.projects-area .card .card-img {
  position: relative;
  overflow: hidden;
}

.projects-area .card .card-img img {
  transition: transform 0.3s ease-out;
}

.projects-area .card .label {
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin-inline-start: 0;
  margin-inline-end: auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 0 5px 5px 0;
  font-size: 14px;
  font-weight: 600;
  background: var(--color-white);
  color: var(--color-primary);
  z-index: 2;
}

.projects-area .card .user {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-inline: auto;
  padding: 5px;
  padding-inline-end: 10px;
  background-color: var(--color-white);
}

.projects-area .card .user .user-img {
  flex: 0 0 auto;
  width: 25px;
}

.projects-area .card .user .user-info * {
  color: var(--color-dark);
  font-size: var(--font-sm);
}

.projects-area .card .card-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}

.projects-area .card .card-text span {
  color: rgba(var(--color-white-rgb), 0.9);
}

.projects-area .card:hover .card-img img {
  transform: scale3d(1.05, 1.05, 1.05);
}

.request-loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #0000007a;
  z-index: 10000;
  display: none;
}

.request-loader img {
  position: fixed;
  display: none;
  width: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.request-loader.show {
  display: block;
}

.request-loader.show img {
  display: block;
}

/*---=========================
  Start Cookie Alert
=========================---*/
.cookie-consent {
  position: fixed;
  background-color: #262938;
  bottom: 0px;
  width: 100%;
  padding: 15px 0px;
  z-index: 99999;
  color: #fff;
}

.cookie-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

button.cookie-consent__agree {
  padding: 10px 20px;
  border: none;
  background-color: var(--color-primary);
  color: #fff;
  cursor: pointer;
  border-radius: 3px;
  font-size: 14px;
}

p.cookie-consent__message {
  background-color: transparent !important;
  font-size: 14px;
}

p.cookie-consent__message * {
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .cookie-container {
    display: block;
    text-align: center;
  }

  button.cookie-consent__agree {
    margin-top: 15px;
  }

  p.cookie-consent__message {
    line-height: 20px;
    display: block;
  }
}

/*---=========================
  Start Popup
=========================---*/
.popup-wrapper {
  display: none;
}

.popup_main-content h1 {
  font-size: 40px;
  line-height: 50px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
  background: #fff;
  opacity: 1;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 32px;
  right: -15px;
  top: -15px;
}

.popup-wrapper {
  position: relative;
  width: auto;
  max-width: 960px;
  margin: 0 auto;
}

.popup-wrapper .form_control {
  width: 100%;
  height: 70px;
  padding: 0 30px;
  line-height: 70px;
}

/* Popup-one */
.popup-one {
  position: relative;
  padding: 138px 120px;
}

.popup-one .popup_main-content {
  position: relative;
  text-align: center;
  background-color: rgba(69, 29, 83, 0.8);
  border-radius: 10px;
  padding: 90px 55px;
}

.popup-one .popup_main-content h1,
.popup-one .popup_main-content p {
  color: #fff;
}

.popup-one .popup_main-content h1 {
  margin-bottom: 20px;
}

.popup-one .popup_main-content p {
  margin-bottom: 30px;
}

.popup-one .popup_main-content .popup-main-btn {
  padding: 15px 100px;
  display: inline-block;
  color: #fff;
  border-radius: 40px;
  border: 1px solid #fff;
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.popup-one .popup_main-content .popup-main-btn:hover,
.popup-one .popup_main-content .popup-main-btn:focus {
  background-color: #451d53;
  color: #fff;
  border-color: transparent;
}

/* Popup-two */

.popup-two {
  position: relative;
  padding: 120px;
}

.popup-two .popup_main-content {
  position: relative;
  text-align: center;
  background-color: rgba(255, 40, 101, 0.7);
  border-radius: 10px;
  padding: 90px 55px;
}

.popup-two .popup_main-content h1,
.popup-two .popup_main-content p {
  color: #fff;
}

.popup-two .popup_main-content h1 {
  margin-bottom: 20px;
}

.popup-two .popup_main-content p {
  margin-bottom: 30px;
}

.popup-two .popup_main-content .subscribe-form {
  padding: 0 70px;
}

.popup-two .popup_main-content .subscribe-form .form_control {
  border: none;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}

.popup-two .popup_main-content .subscribe-form .popup-main-btn {
  width: 100%;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 20px;
  height: 70px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.popup-two .popup_main-content .subscribe-form .popup-main-btn:hover,
.popup-two .popup_main-content .subscribe-form .popup-main-btn:focus {
  background-color: #ff2865;
  color: #fff;
  border-color: transparent;
}

/* Popup-three */

.popup-three .popup_main-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
}

.popup-three .popup_main-content .left-bg {
  width: 45%;
  height: 100%;
  min-height: 670px;
}

.popup-three .popup_main-content .right-content {
  width: 55%;
  padding: 30px 15px;
  text-align: center;
}

.popup-three .popup_main-content .right-content h1 {
  font-weight: 400;
  margin-bottom: 20px;
}

.popup-three .popup_main-content .right-content p {
  margin-bottom: 20px;
}

.popup-three .popup_main-content .right-content .popup-main-btn {
  padding: 15px 70px;
  background-color: #ff2865;
  color: #fff;
  font-size: 19px;
  border-radius: 35px;
  display: inline-block;
  text-decoration: none;
}

/* Popup-four */

.popup-four .popup_main-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
}

.popup-four .popup_main-content .left-bg {
  width: 45%;
  height: 100%;
  min-height: 670px;
}

.popup-four .popup_main-content .right-content {
  width: 55%;
  padding: 30px 30px;
  text-align: center;
}

.popup-four .popup_main-content .right-content h1 {
  font-weight: 400;
  margin-bottom: 20px;
}

.popup-four .popup_main-content .right-content p {
  margin-bottom: 20px;
}

.popup-four .popup_main-content .subscribe-form {
  padding: 0 70px;
}

.popup-four .popup_main-content .subscribe-form .form_control {
  border: 2px solid #c5c5c5;
  border-radius: 10px;
  font-size: 20px;
  margin-bottom: 20px;
}

.popup-four .popup_main-content .subscribe-form .popup-main-btn {
  width: 100%;
  background-color: #f8960d;
  color: #fff;
  font-size: 20px;
  height: 70px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.popup-four .popup_main-content .subscribe-form .popup-main-btn:hover,
.popup-four .popup_main-content .subscribe-form .popup-main-btn:focus {
  background-color: #f8960d;
  color: #fff;
  border-color: transparent;
}

/* Popup-five */

.popup-five .popup_main-content {
  text-align: center;
  padding: 75px;
}

.popup-five .popup_main-content h1 {
  font-size: 42px;
  line-height: 52px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  margin: 0 auto 20px;
  max-width: 600px;
}

.popup-five .popup_main-content h4 {
  color: #fff;
  font-size: 25px;
  font-weight: 35px;
  margin-bottom: 40px;
  font-weight: 400;
}

.popup-five .popup_main-content .popup-main-btn {
  padding: 15px 30px;
  display: inline-block;
  color: #fff;
  background-color: #29a19c;
  border-radius: 40px;
  text-decoration: none;
}

/* Popup-six */
.popup-six .popup_main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  text-decoration: none;
}

.popup-six .popup_main-content .left-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}

.popup-six .popup_main-content .right-content {
  background-color: #930077;
  width: 50%;
  height: 100%;
  padding: 120px 15px;
  text-align: center;
  margin-left: 50%;
}

.popup-six .popup_main-content .right-content h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  color: #fff;
  margin-bottom: 25px;
}

.popup-six .popup_main-content h4 {
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 40px;
  font-weight: 400;
}

.popup-six .popup_main-content .right-content .popup-main-btn {
  padding: 15px 30px;
  display: inline-block;
  color: #ffffff;
  background-color: #494949;
  border-radius: 40px;
  text-decoration: none;
}

/* syotimer css */
.popup-wrapper .syotimer__body {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.popup-wrapper .syotimer__body p {
  color: #fff;
}

.popup-wrapper .syotimer-cell {
  flex: 0 0 24%;
  padding-left: 10px;
  padding-right: 10px;
}

.popup-wrapper .syotimer-cell__value {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1f3a52;
  border-radius: 10px;
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
  border: 0;
}

.popup-wrapper .syotimer-cell__value:after {
  content: none;
}

.popup-wrapper .syotimer-cell__unit {
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
}

/*Large Device*/
@media only screen and (min-width: 1200px) and (max-width: 1400px) {}

/*Large Device*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {}

/*Medium Device*/
@media only screen and (min-width: 768px) and (max-width: 991px) {

  .popup-one .popup_main-content h1,
  .popup-three .popup_main-content .right-content h1,
  .popup-four .popup_main-content .right-content h1,
  .popup-five .popup_main-content h1,
  .popup-six .popup_main-content .right-content h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .popup-wrapper {
    max-width: 720px;
  }

  .popup-two .popup_main-content .subscribe-form,
  .popup-four .popup_main-content .subscribe-form {
    padding: 0 15px;
  }

  .popup-one,
  .popup-two {
    padding: 80px 30px;
  }

  .syotimer__body {
    margin-bottom: 0px;
  }

  .syotimer-cell {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 991px) {
  .popup-wrapper .syotimer-cell {
    padding-left: 5px;
    padding-right: 5px;
  }
}

/* Small Devices, Tablets */
@media only screen and (max-width: 767px) {
  .popup-wrapper {
    max-width: 500px;
  }

  .popup-five .popup_main-content {
    text-align: center;
    padding: 50px 15px;
  }

  .popup-three .popup_main-content .left-bg,
  .popup-four .popup_main-content .left-bg,
  .popup-six .popup_main-content .left-bg {
    display: none;
  }

  .popup-one,
  .popup-two {
    padding: 30px 15px;
  }

  .popup-one .popup_main-content,
  .popup-two .popup_main-content {
    padding: 20px 15px;
  }

  .popup-one .popup_main-content .main-btn {
    padding: 15px 30px;
  }

  .popup-three .popup_main-content .right-content,
  .popup-four .popup_main-content .right-content,
  .popup-six .popup_main-content .right-content {
    width: 100%;
    padding: 50px 15px;
  }

  .popup-two .popup_main-content .subscribe-form,
  .popup-four .popup_main-content .subscribe-form {
    padding: 0 15px;
  }

  .popup-two .popup_main-content .subscribe-form .form_control,
  .popup-four .popup_main-content .subscribe-form .form_control {
    font-size: 15px;
  }

  .popup-two .popup_main-content h1,
  .popup-one .popup_main-content h1,
  .popup-three .popup_main-content .right-content h1,
  .popup-four .popup_main-content .right-content h1,
  .popup-five .popup_main-content h1,
  .popup-six .popup_main-content .right-content h1 {
    font-size: 24px;
    line-height: 34px;
  }

  .popup-six .popup_main-content .right-content {
    margin-left: 0%;
  }

  .syotimer__body {
    max-width: 380px;
    margin-bottom: 0px;
  }

  .syotimer-cell {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
}

/* Mobile Devices, Tablets */
@media only screen and (max-width: 400px) {
  .popup-wrapper {
    max-width: 300px;
  }

  .syotimer__body {
    max-width: 300px;
    margin-bottom: 0px;
  }

  .syotimer-cell {
    flex: 0 0 50%;
    margin-bottom: 20px;
  }
}

/* Wide mobile Devices */
@media only screen and (min-width: 401px) and (max-width: 767px) {
  .popup-wrapper {
    max-width: 380px;
  }
}

/* wide mobile devices */
@media only screen and (min-width: 401px) and (max-width: 767px) {
  .popup-wrapper {
    max-width: 380px;
  }
}

/* popup css end */

/* .actions {
    display: block;
    text-align: center;
} */

.actions .action-btn {
  text-align: center;
}

.actions .action-btn a.call {
  background: #ed2476;
}

.actions .action-btn a.whatsapp {
  background: #25d366;
}

.actions .action-btn a.mail {
  background-color: #bb001b;
}

.actions .action-btn .btn:hover {
  color: #fff;
}

.actions a {
  background-color: #4b3869;
  color: #fff;
  padding: 0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 16px;
}

.actions .action-btn span {
  color: #000;
  font-weight: 600;
  font-size: 12px;
}

.more-btns a {
  display: inline-block;
  background-color: #ff5c58;
  color: #fff;
  width: 150px;
  text-align: center;
  padding: 8px 0px;
  border-radius: 50px;
  font-size: 12px;
}

@media only screen and (max-width: 403px) {
  .more-btns a:first-child {
    margin-bottom: 5px;
  }
}

.actions a.facebook {
  background: #4267b2;
}

.actions a.linkedin {
  background: #0077b5;
}

.actions a.twitter {
  background: #1da1f2;
}

.actions a.sms {
  background: #4180ec;
}

.flex-auto {
  flex: 0 0 auto;
}

.bg-facebook {
  color: #fff;
  background: #4267b2;
}

.bg-google {
  color: #fff;
  background: #db4437;
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* Select2 */
.select2.select2-container.select2-container--default {
  width: 100% !important;
}

.select2-container {
  height: 44px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  margin: 0;
  border: 0;
  height: 100%;
  font-size: var(--font-base);
  color: var(--color-medium);
  font-weight: 400;
  background: transparent;
}

.select2-container ::-webkit-scrollbar {
  width: 0;
}

.select2-container--default .select2-selection--single {
  border: unset;
  padding: 0;
  background-color: transparent;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: var(--border-color);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.select2-dropdown {
  min-width: 200px;
  color: var(--color-dark);
  border-radius: var(--radius-sm);
  border: unset;
  box-shadow: var(--shadow-md);
}

.select2-results__option {
  padding-inline: 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  left: 0;
  right: 0;
  margin-inline: auto 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: unset;
  border-bottom: 2px solid #5a5a5a;
  border-right: 2px solid #5a5a5a;
  height: 7px;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  width: 7px;
  transition: all 0.15s ease-in-out;
  margin-top: -4px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border: unset;
  border-bottom: 2px solid #5a5a5a;
  border-right: 2px solid #5a5a5a;
  transform: rotate(-135deg);
}

/* offline css start */
.error-area .offline {
  margin-bottom: 30px;
}

.error-area {
  position: relative;
  overflow-x: hidden;
  display: grid;
  place-items: center;
  text-align: center;
}

/* offline css end */
::-webkit-scrollbar-track {
  background-color: #f3f3f3;
}

::-webkit-scrollbar-thumb {
  border-radius: 30px;
  background: rgba(var(--color-dark-rgb), 0.2);
}

/*26.06.2025*/

.accordion-header {
  position: relative !important;
}

@media (min-width: 375px) {
  button.accordion-button span {
    position: absolute !important;
    right: 50px !important;
  }
}

/* 26.06.2025 */

/* 26.06.2025 */
.mb-0 {
  margin-bottom: 0;
}

.accordion-button h5 {
  margin: 0;
}

.percentage-position {
  position: absolute;
  top: 50%;
  right: 5%;
}

.dollar-position {
  position: absolute;
  top: 51%;
  left: 2%;
}

.custom-accordion .accordion-button {
  padding: 10px 15px;
}

.custom-accordion .accordion-body {
  padding: 10px 15px;
}

.charts {
  display: flex;
  place-content: center;
  gap: 2rem;
  --c1: #6b6bd6;
  --c2: #e74f4f;
  --c3: #fc921f;
  --c4: #149ece;
}

.pie {
  flex: 1 0 170px;
  max-width: 170px;
  aspect-ratio: 1;
  border-radius: 50%;
  /* border: 1px solid; */

  background-image: conic-gradient(from 30deg,
      var(--c1) 40%,
      var(--c2) 0 65%,
      var(--c3) 0 85%,
      var(--c4) 0);
}

.donut {
  background-image: radial-gradient(white 40%, transparent 0 70%, white 0),
    conic-gradient(from 30deg,
      var(--c1) 40%,
      var(--c2) 0 65%,
      var(--c3) 0 85%,
      var(--c4) 0);
}

.legends {
  margin-block-end: 2rem;
  font-size: 0.9rem;
  flex-basis: 100%;
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
  /* flex-flow: wrap; */
  gap: 1rem;
  flex-direction: column;
}

.legends span {
  position: relative;
  padding-inline-start: 1.25rem;
}

.legends span::before {
  position: absolute;
  top: 0.4rem;
  left: 0;
  content: "";
  width: 0.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
}

.legends span:nth-child(1)::before {
  background-color: var(--c1);
}

.legends span:nth-child(2)::before {
  background-color: var(--c2);
}

.legends span:nth-child(3)::before {
  background-color: var(--c3);
}

.legends span:nth-child(4)::before {
  background-color: var(--c4);
}

/* 26.06.2025 */

.sticky-extras {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
}

.sticky-header-wrapper {
  position: fixed;
  top: -200px;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  transition: top 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-header-wrapper.visible {
  top: 0;
}

#old-nav.hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.cursor-pointer {
  cursor: pointer;
}

/* Sticky Header Styles */
.sticky-header-wrapper {
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  background: white;
  z-index: 999;
  transition: top 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-header-wrapper.visible {
  top: 0;
}

.blog-area {
  border-radius: 8px;
}

.why-title {
  font-size: 30px;
  color: #000;
  font-weight: 800;
}

.why-area {
  background: #edfbff;
}

.why-card {
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.05);
  border: 1px solid #eef2ff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
  width: 301px;
  height: 269px;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(2, 6, 23, 0.08);
}

.why-card-title {
  margin-bottom: 10px;
  font-weight: 700;
  color: #0f172a;
}

.why-card-text {
  color: #475569;
  margin-bottom: 18px;
}

.btn-why {
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
}

.btn-why:hover {
  background: var(--color-secondary);
  color: #fff;
}

.btn-why.disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* horizontal scroll for why section */
.why-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.why-scroll::-webkit-scrollbar {
  display: none;
}

.why-item {
  flex: 0 0 auto;
}

/* dots */
.why-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.why-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  transition: all 0.2s ease;
}

.why-dots .dot.active {
  background: #6d5df6;
  width: 12px;
  height: 12px;
  box-shadow: 0 0 0 4px rgba(109, 93, 246, 0.15);
}

.blog-card {
  border-radius: 12px;
}

.blog-image img {
  border-radius: 12px 12px 0 0;
}

.blog-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
}

.category-tag {
  background: #f3e8ff;
  color: #8b5cf6;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e0e7ff;
}

.decorative-line {
  z-index: 1;
}

.blog-card {
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .col-lg-2 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (max-width: 992px) {
  .col-lg-2 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

@media (max-width: 768px) {
  .blog-area {
    width: 100% !important;
    margin: 0 !important;
    border-radius: 0;
  }

  .blog-card {
    margin-bottom: 20px;
  }

  .col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .col-lg-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

#old-nav.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.offer-card {
  border-radius: 24px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
}

.offer-card .user {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-card .user-img .ratio {
  width: 84px;
  height: 84px;
  border-radius: 9999px;
  overflow: hidden;
}

.offer-card .user-info {
  text-align: center;
  margin-top: 10px;
}

.offer-card .user-info h4 {
  font-weight: 600;
  color: #0f172a;
}

.offer-card .user-info a {
  color: #0f172a;
  text-decoration: none;
}

.offer-card .form-group {
  margin-bottom: 16px;
}

.offer-card .form-control {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  height: 48px;
  background: #fff;
}

.offer-card textarea.form-control {
  height: 160px;
}

.offer-card .btn-primary {
  background: #6c5ce7;
  border-color: #6c5ce7;
  border-radius: 14px;
  height: 48px;
  font-weight: 600;
}

.offer-card .btn-primary:hover {
  background: #5a4ed6;
  border-color: #5a4ed6;
}

.offer-card .widget-form {
  border: none;
  box-shadow: none;
  margin-bottom: 0;
}

.autocomplete-menu {
  position: absolute;
  z-index: 1000;
  left: 0;
  right: 0;
  max-height: 260px;
  overflow: auto;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  font-size: 13px;
}

.autocomplete-item {
  padding: 10px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.autocomplete-item:hover,
.autocomplete-item.active {
  background: #f3f4f6;
}

.autocomplete-muted {
  color: #6b7280;
  font-size: 12px;
}

.hero-description {
  width: 50%;
  margin: 0 auto 60px auto;
  font-size: 16px;
}

/* new testmonial sec */
.new-testmonial-sec {
  padding: 80px 0;
  background-color: #EDFBFF;
}

.testmonial-heading-div {
  text-align: center;
  margin-bottom: 80px;
}

.testmonial-img-div img {
  width: 100%;
  border-radius: 20px;
  height: auto;
}

.testmonial-content-div {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 1px;
}

.testimonial-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
}

.testimonial-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-user h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
}

.designation {
  font-size: 0.85rem;
  color: #777;
}

.testimonial-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: #333;
}

.testmonial-heading-div p {
  width: 55%;
  margin: 0 auto;
}

@media (max-width: 576px) {
  .testmonial-heading-div p {
    width: 100%;
  }

  .new-testmonial-sec {
    padding: 40px 0;
  }

  .testmonial-heading-div {
    margin-bottom: 40px;
  }

}

/* Featured Properties Section Styles */
.featured-properties-section {
  background-color: #EDFBFF;
}

.featured-properties-container {
  width: 1243px;
  margin: 0 auto;
}

.featured-properties-title {
  font-size: 38px;
}

.featured-property-card {
  height: 514px;
}

.featured-property-img {
  width: 845.602783203125px;
  height: 474px;
  object-fit: cover;
}

.featured-property-placeholder-icon {
  font-size: 4rem;
}

.property-card-overlay {
  width: 400px;
  height: 350px;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
}

.property-details {
  width: 426px;
  height: 331px;
}

.property-dots {
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
}
.new-featured-psec {
  padding: 30px 0;
  background: #F9F9F9;
  position: relative;
}
.new-featured-psec .carousel-item {
  position: relative;
}
.new-featured-psec .property-img img {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.new-featured-psec .property-img {
  position: relative;
  padding: 0 10px;
  margin-bottom: 20px;
}

.new-featured-psec .property-content {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: absolute;
  left: 26%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 300px;
  z-index: 10;
  opacity: 1;
  visibility: visible;
}
.new-featured-psec h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}
.new-featured-psec .details {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}
.new-featured-psec .agent {
  font-size: 14px;
  margin-bottom: 12px;
  color: #777;
}
.new-featured-psec .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
}
.new-featured-psec .price {
  color: var(--color-secondary);
  font-size: 24px;
}
.new-featured-psec .carousel-indicators [data-bs-target] {
  background-color: var(--color-primary);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.new-featured-psec-title {
  font-size: 38px;
}
.new-featured-psec .carousel-inner {
  padding: 0 10px;
}
.new-featured-psec .row {
  margin: 0 -8px;
}
.property-content i {
  color: #0059B9;
  padding: 5px;
  border-radius: 5px;
  background: #E3E4F7;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .new-featured-psec .carousel-inner {
    padding: 0 5px;
  }
  .new-featured-psec .row {
    margin: 0 -5px;
  }
  .new-featured-psec .property-img {
    padding: 0 8px;
  }
  .new-featured-psec .property-img img {
    height: 350px;
  }
  .new-featured-psec .property-content {
    padding: 20px;
    left: 43%;
    width: 80%;
    max-width: 280px;
  }
  .new-featured-psec h5 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .new-featured-psec .details {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .new-featured-psec .agent {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .new-featured-psec .price {
    font-size: 20px;
  }
  .new-featured-psec-title {
    font-size: 32px;
  }
}

@media (min-width: 1025px) and (max-width: 1400px) {
  .new-featured-psec .property-img {
    padding: 0 8px;
  }
  .new-featured-psec .property-img img {
    height: 380px;
  }
  .new-featured-psec .property-content {
    padding: 22px;
    left: 26%;
    width: 82%;
    max-width: 290px;
  }
}

@media (max-width: 560px) {
  .new-featured-psec .property-img img {
    height: 300px;
  }
  .new-featured-psec .property-content {
    padding: 15px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 280px;
  }
  .new-featured-psec .price {
    font-size: 18px;
  }
  .new-featured-psec h5 {
    font-size: 16px;
  }
  .new-featured-psec-title {
    font-size: 20px;
  }
}

/* ============================================
   Login & Signup Page Styles
   ============================================ */

/* Login Page Styles */
.user-login-container {
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0;
    width: 100vw;
    box-sizing: border-box;
}

.login-layout {
    display: flex;
    width: 100%;
    max-width: 1200px;
    min-height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Left Section */
.login-left-section {
    flex: 0 0 60%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.circle-overlay {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
}

.left-content {
    text-align: center;
    color: white !important;
    z-index: 2;
    position: relative;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.login-logo {
    max-height: 80px;
    margin-bottom: 30px;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: white !important;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 400px;
    margin: 0 auto;
    color: white !important;
}

/* Right Section */
.login-right-section {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: white;
}

.login-form-container {
    width: 100%;
    max-width: 400px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.logo-link {
    display: inline-block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.login-logo {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.welcome-subtitle {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.login-separator {
    display: flex;
    align-items: center;
    gap: 15px;
}

.separator-line {
    flex: 1;
    height: 1px;
    background: #e74c3c;
}

.separator-text {
    color: #e74c3c;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Social Login */
.social-login-section {
    margin-bottom: 20px;
}

.social-btn {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.facebook-btn {
    background: #1877f2;
    color: white;
}

.facebook-btn:hover {
    background: #166fe5;
    color: white;
    transform: translateY(-2px);
}

.google-btn {
    background: #db4437;
    color: white;
}

.google-btn:hover {
    background: #c23321;
    color: white;
    transform: translateY(-2px);
}

.divider {
    text-align: center;
    margin: 20px 0 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    background: #e9ecef;
}

.divider-text {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Login Type Selection */
.login-type-section {
    margin-bottom: 25px;
}

.login-type-options {
    display: flex;
    gap: 10px;
}

.login-type-option {
    flex: 1;
    position: relative;
}

.login-type-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.login-type-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #6c757d;
    user-select: none;
    width: 100%;
}

.login-type-label i {
    font-size: 1.1rem;
}

/* Active states for login type selection */
.login-type-radio:checked + .login-type-label {
    background: #e74c3c;
    border-color: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.login-type-radio:checked + .login-type-label i {
    color: white;
}

.login-type-radio:checked + .login-type-label span {
    color: white;
}

/* Hover effect for inactive labels */
.login-type-label:hover:not(.login-type-radio:checked + .login-type-label) {
    border-color: #e74c3c;
    color: #e74c3c;
    transform: translateY(-1px);
}

/* Form Styles */
.admin-login-form {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

/* Name field specific styling for smooth transitions */
#nameField {
    transition: all 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-bottom: 0;
}

#nameField.show {
    max-height: 100px;
    opacity: 1;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ecf0f1;
    border-radius: 10px;
    font-size: 1rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #e74c3c;
    background: white;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-input::placeholder {
    color: #bdc3c7;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #e74c3c;
}

.remember-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    cursor: pointer;
}

.forgot-password {
    color: #e74c3c;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Login Button */
.login-button {
    width: 100%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white !important;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: white !important;
}

.login-button:active {
    transform: translateY(0);
    color: white !important;
}

.login-button span,
.login-button i {
    color: white !important;
    font-size: 1.1rem;
}

/* Signup Link */
.signup-link-text {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.signup-link-text:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Signup Page Styles */
.user-signup-container {
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0;
    width: 100vw;
    box-sizing: border-box;
}

.signup-layout {
    display: flex;
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Left Section */
.signup-left-section {
    flex: 0 0 60%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    overflow: hidden;
}

.signup-logo {
    max-height: 80px;
    margin-bottom: 30px;
}

/* Signup Type Selection */
.signup-type-section {
    margin-bottom: 25px;
}

.signup-type-options {
    display: flex;
    gap: 10px;
}

.signup-type-option {
    flex: 1;
    position: relative;
}

.signup-type-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.signup-type-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #6c757d;
    user-select: none;
    width: 100%;
}

.signup-type-label:hover {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
}

/* Both Customer and Vendor selection - Red color */
#customerSignup:checked + .signup-type-label,
#vendorSignup:checked + .signup-type-label {
    border-color: #e74c3c;
    background: #e74c3c;
    color: white;
}

#customerSignup:checked + .signup-type-label:hover,
#vendorSignup:checked + .signup-type-label:hover {
    background: #c0392b;
}

.signup-type-label i {
    font-size: 1.1rem;
}

/* Form Styles */
.admin-signup-form {
    width: 100%;
}

/* Signup Button */
.signup-button {
    width: 100%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white !important;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    margin-bottom: 20px;
}

.signup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    color: white !important;
}

.signup-button:active {
    transform: translateY(0);
    color: white !important;
}

.signup-button span,
.signup-button i {
    color: white !important;
    font-size: 1.1rem;
}

/* Login Link */
.login-link-text {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.login-link-text:hover {
    color: #c0392b;
    text-decoration: underline;
}

/* Right Section */
.signup-right-section {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: white;
}

.signup-form-container {
    width: 100%;
    max-width: 400px;
}

.signup-separator {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: inherit;
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

/* Price History Table Styles */
.price-history-table {
    font-size: 14px;
}

.price-history-table td,
.price-history-table th {
    font-size: 14px !important;
    vertical-align: middle;
}

.price-per-sqft {
    font-size: 14px !important;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login-layout,
    .signup-layout {
        flex-direction: column;
        min-height: auto;
        height: auto;
        max-height: none;
        overflow: visible;
    }
    .amineties-info{
      gap: 15px;
      margin-left: -12px;
      margin-bottom: 17px;
      margin-top: -10px;
    }
    .product-title{
      margin-left: -12px;
      margin-bottom: 17px;
      margin-top: -10px;
    }
    .product-location{
      margin-left: -12px;
      margin-bottom: 17px;
      margin-top: -10px;
    }
    .login-left-section,
    .signup-left-section {
        flex: 0 0 auto;
        min-height: 300px;
        padding: 40px 20px;
    }
    
    .login-right-section,
    .signup-right-section {
        flex: 0 0 auto;
        padding: 40px 20px;
        height: auto;
        overflow-y: visible;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .login-logo {
        max-width: 160px;
        max-height: 60px;
    }
    
    .form-input {
        padding: 12px 16px;
    }
    
    .login-button,
    .signup-button {
        padding: 12px 20px;
    }
    .signup-form-container{
      margin-top: 0;
    }
    .login-type-options,
    .signup-type-options {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .user-login-container,
    .user-signup-container {
        padding: 10px;
    }
    .signup-form-container{
      margin-top: 0;
    }
    .login-layout,
    .signup-layout {
        border-radius: 15px;
    }
    
    .login-left-section,
    .login-right-section,
    .signup-left-section,
    .signup-right-section {
        padding: 30px 20px;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .login-logo {
        max-width: 140px;
        max-height: 50px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}
/* Tabs */
.new-properties-feed {
  padding: 80px 0;
}

.new-properties-feed .nav-pills .nav-link {
  background: #f1f1f8;
  color: #333;
  margin: 0 6px;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.new-properties-feed .nav-pills .nav-link.active {
  background:var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

/* Card */
.new-properties-feed-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.new-properties-feed-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Image */
.new-properties-feed-img {
  position: relative;
  overflow: hidden;
}

.new-properties-feed-img img {
  width: 100%;
  height: auto;
  border-radius: 18px 18px 0 0;
  transition: transform 0.4s ease;
}

.new-properties-feed-card:hover .new-properties-feed-img img {
  transform: scale(1.08);
}

.new-properties-feed .f-tabs {
  background: #f1f1f8;
  padding: 10px;
  border-radius: 10px;
  width: fit-content;
  margin: 0 0 30px auto;
}

.fav-btn {
  border: none;
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s;
}

.fav-btn:hover {
  background: #ff4d6d;
  color: #fff;
}

.new-properties-feed-body {
  padding: 16px 18px 20px 18px;
  flex-grow: 1;
}

.property-name {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 6px;
}

.property-address {
  font-size: 18px;
  color: #666;
  margin-bottom: 14px;
}

.property-info {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #444;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.new-properties-feed-footer {
  padding: 12px 18px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fafafa;
}

.new-properties-feed .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
}
.subtitle{
  color: #000!important;
}
@media (max-width: 560px) {
  .property-name {
    font-size: 13px;
  }
  .mortage-heading {
    text-align: center;
  }
  .new-properties-feed {
    padding: 40px 0;
  }
  .new-featured-psec .carousel-indicators{
    margin: 0;
  }

  .new-properties-feed-body {
    padding: 8px 12px 12px 12px;
  }

  .property-address {
    font-size: 8px;
  }

  .property-info {
    font-size: 8px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .property-info i {
    font-size: 8px;
  }

  .new-properties-feed .price {
    font-size: 17px;
  }

  .fav-btn {
    width: 20px;
    height: 20px;
  }

  .fav-btn i {
    font-size: 10px;
  }

  .new-properties-feed-footer {
    padding: 5px 12px 0 12px;
  }

  .new-properties-feed .nav-pills .nav-link {
    padding: 10px;
    font-size: 14px;
  }

  .new-properties-feed .f-tabs {
    margin: 0 auto 20px auto;
  }
  .property-address {
    margin-bottom: 0;
  }
}

  .agent-single .property-card-sm{
    width: 300.657135px!important;
  }
.page-title-area{
  background-color: #EDFBFF;
}
.agent-single{
 
  background-color: #EDFBFF;
}
.single-page{
  max-width: 1243px; 
  margin: 0 auto;
  padding: 0 15px;
}
.home-single-section{
  max-width: 1243px; 
  margin: 0 auto;
}
.project-cards{
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .home-single-section {
    max-width: 1143px !important;
    margin: 12px auto !important;
  }
  .project-cards{
    flex-wrap: nowrap;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  
}
@media only screen and (min-width: 834px) and (max-width: 1200px) {
  .home-single-section {
    max-width: 1143px !important;
    margin: 12px auto !important;
  }
 
}

@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  .home-single-section {
    max-width: 1143px !important;
    margin: 12px auto !important;
  }
 
}

@media (min-width: 768px) and (max-width: 1024px) {
  .single-page {
    max-width: 95%;
    padding: 0 20px;
  }
  
}

@media (max-width: 767px) {
  .single-page {
    max-width: 100%;
    padding: 0 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .agent-single .col-lg-4,
  .agent-single .col-md-6{
    width: 328.66px!important;
    flex: 0 0 auto!important;
    margin-bottom: 13px;
  }

}

@media only screen and (min-width: 834px) and (max-width: 1367px) {
  .agent-single .col-lg-4,
  .agent-single .col-md-6{
    width: 328.66px!important;
    flex: 0 0 auto!important;
    margin-bottom: 13px;
  }
}
@media only screen and (min-width: 834px) and (max-width: 1367px) {
  .header-area .more-option{
    
  }
}
@media only screen and (max-width: 767px) {
  .agent-single .row {
    margin-left: 0!important;
    margin-right: 0!important;
  }
  
  .agent-single .col-lg-4,
  .agent-single .col-md-6{
    width: 100%!important;
    max-width: 100%!important;
    flex: 0 0 auto!important;
    padding-left: 0!important;
    padding-right: 0!important;
    margin-bottom: 13px;
  }
}

