/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&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: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  --font-body: "Lato", "Helvetica Neue", Arial, Helvetica, sans-serif;
  --font-family-fontawesome: "Font Awesome 5 Pro";
  --font-base: 16px;
  --font-sm: 14px;
  --font-xsm: 10px;
  --font-lg: 18px;
  --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;
}

:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
* {
    font-family: Lato,Helvetica Neue,Arial,Helvetica,sans-serif
}
: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: 400;
  line-height: 1.3;
}
.bannertitle {
    font-family: var(--font-family-base);
    color: #000000;
    font-weight: 400;
    line-height: 50px;
    font-size: 40px;
}
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: 74px;
  width: 148px;
}
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: #0b5aa5;
  --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: 47px;
  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: 100%;
    max-width: 300px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    background: #fff;
    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: 16px;
    font-weight: 600;
    line-height: 1.3;
}

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

.btn-wishlist-sm {
    position: absolute;
    top: 12px;
    right: 12px;
    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: #F03D3D;
}

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

.new-price {
    color: #f47d4b !important;
}

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

.property-feature-text {
    font-size: 12px;
    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: 15px;
  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);
  border: 1px solid var(--color-primary);
  margin: 0;
  cursor: pointer;
}

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

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

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

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

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

.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;
  max-height: 567px;
}

.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: #0b5aa5;
}

.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: #0b5aa5;
}

.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;
}
}
.city-browser {
    margin-top: 30px;
}

.browse-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.option-column {
    flex: 1;
    min-width: 200px;
}

.option-column h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
    color: #333;
    font-size: 18px;
}

.city-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-list li {
    margin-bottom: 8px;
}

.city-list a {
    color: #0066cc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s;
}

.city-list a:hover {
    color: #004499;
    text-decoration: underline;
}
.property-feature-hover:hover {
    background-color: #f8f9fa; /* Light gray */
    color: #0b5aa5;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

/* -----------------------------------------
    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 .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;
}

.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 i {
  color: var(--color-primary);
}

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

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

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

.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;
  border-radius: 50px 50px 0 0;
}

.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: var(--color-light-1);
}

.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 h3 {
  text-transform: capitalize;
  margin-bottom: 25px;
}

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

.footer-area .footer-widget .social-link a {
  display: inline-block;
  text-align: center;
  margin-inline-end: 15px;
  color: var(--color-primary) !important;
}

.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: #0b5aa5;
}

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

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

.work-process .color-5 .card-icon {
  color: #0b5aa5;
  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;
}

#old-nav.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ui-ztooltip {
    position: absolute;
    background: #4b5160;
    color: #fff;
    z-index: 400000;
    opacity: 1;
    display: none;
    border-radius: 0
}

.ui-ztooltip-header {
    font-weight: 700;
    display: none;
    height: 16px
}

.ui-ztooltip-close {
    background-position: -291px -28px;
    margin: 0;
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 1px
}

.ui-ztooltip-callout {
    width: 20px;
    height: 20px;
    position: absolute
}

.ui-ztooltip-contentwithclose {
    padding-right: 15px;
    max-width: 250px
}

.ui-ztooltip-content {
    word-wrap: break-word;
    max-width: 1620px;
    font-size: 12px
}

.ui-ztooltip-title {
    margin: 3px 0 6px 0;
    font-size: 12px
}

.ui-ztooltip-overlaydiv {
    padding: 5px 8px 5px 8px;
    font-weight: 400;
    border-radius: 2px
}

.ui-ztooltip-img {
    width: 32px;
    height: 32px;
    display: none;
    margin: 5px 10px 0 0;
    float: left
}

.ui-ztooltip-callout-bottom,.ui-ztooltip-callout-bottom span,.ui-ztooltip-callout-left,.ui-ztooltip-callout-left span,.ui-ztooltip-callout-right,.ui-ztooltip-callout-right span,.ui-ztooltip-callout-top,.ui-ztooltip-callout-top span {
    display: block;
    width: 0;
    height: 0;
    border: 6px solid
}

.ui-ztooltip-callout-bottom,.ui-ztooltip-callout-bottom span {
    border-color: #4b5160 transparent transparent transparent!important;
    border-bottom: 1px solid
}

.ui-ztooltip-callout-top,.ui-ztooltip-callout-top span {
    border-color: transparent transparent #4b5160 transparent!important;
    border-top: 1px solid
}

.ui-ztooltip-callout-right,.ui-ztooltip-callout-right span {
    border-color: transparent transparent transparent #4b5160!important;
    border-right: 1px solid
}

.ui-ztooltip-callout-left,.ui-ztooltip-callout-left span {
    border-color: transparent #4b5160 transparent transparent!important;
    border-left: 1px solid
}

.ui-ztooltip-callout-bottom span,.ui-ztooltip-callout-left span,.ui-ztooltip-callout-right span,.ui-ztooltip-callout-top span {
    border-width: 7px;
    position: relative
}

.ui-ztooltip-callout-bottom span {
    top: -10px;
    left: -9px;
    border-bottom: 1px solid
}

.ui-ztooltip-callout-top span {
    top: 2px;
    left: -9px;
    border-top: 1px solid
}

.ui-ztooltip-callout-right span {
    top: -9px;
    left: -10px;
    border-right: 1px solid
}

.ui-ztooltip-callout-left span {
    top: -7px;
    left: 0;
    border-left: 1px solid
}

.ui-ztooltip-callout {
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

div.ui-ztooltip {
    border-radius: 4px;
    overflow: visible!important
}

div.ui-ztooltip-overlaydiv {
    padding: 5px 8px
}

div.ui-ztooltip-content {
    max-width: 300px;
    font-size: 12px
}

.ui-ztooltip {
    -webkit-animation: overlay .3s cubic-bezier(.25,.8,.25,1);
    -moz-animation: overlay .3s cubic-bezier(.25,.8,.25,1);
    animation: overlay .3s cubic-bezier(.25,.8,.25,1);
    -webkit-transition-property: none;
    -moz-transition-property: none;
    -o-transition-property: none;
    transition-property: none
}

@-webkit-keyframes overlay {
    0% {
        -webkit-transform: scale(0);
        opacity: 0
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 1
    }
}

@-moz-keyframes overlay {
    0% {
        -moz-transform: scale(0);
        opacity: 0
    }

    100% {
        -moz-transform: scale(1);
        opacity: 1
    }
}

@keyframes overlay {
    0% {
        transform: scale(0);
        opacity: 0
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}


/* new home  */

/* Home Page Styles - Houzeo Section */
.banner-new {
    background-color: #fafafc;
    margin: 101px 0 0;
    position: relative;
}

.Page {
    margin: 0 auto;
    max-width: 1536px;
    position: relative;
    width: 94%;
}

.sayHelloHolder {
    display: flex;
    position: relative;
    align-items: center;
}

.sayHelloLeft {
    padding-right: 40px;
    position: relative;
    width: calc(100% - 760px);
}

.sayHelloLeft .sectionTitleDiv {
    margin: 30px 0;
}

.sectionTitleDiv h1 {
    font-size: 50px;
    font-weight: 900;
    line-height: 60px;
    margin: 0;
}

.bannerSectionNew h1 img {
    left: 0;
    position: absolute;
    top: -3px;
    width: 115px;
}

.sectionTitleDiv p {
    color: rgba(0,0,0,.7);
    font-size: 20px;
    line-height: 26px;
    margin: 5px 0 25px;
}

.bannerSocailMedia {
    display: flex;
    align-items: center;
    margin: 0 -8px;
}

.bannerSocailMedia a {
    display: block;
    margin: 0 8px;
    position: relative;
    transition: all .3s;
}

.bannerSocailMedia a:hover {
    box-shadow: 0 15px 30px -10px rgba(0,0,0,.541);
}

.bannerSocailMedia img {
    display: block;
    height: auto;
}

.sayHelloRight {
    position: relative;
    width: 760px;
}

.superAppVideoSec {
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 5px;
}

.superAppVideoInnerLeft {
    margin-right: -140px;
    position: relative;
    width: 50%;
}

.superAppVideoInnerRight {
    margin-left: -140px;
    position: relative;
    width: 50%;
}

.superAppVideoInnerShadow {
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.082));
}

.superAppVideoInnerLeftPath {
    clip-path: polygon(100% 50%,0 0,0 100%);
    padding: 20px 210px 20px 20px;
    text-align: right;
    background-color: #fafafc;
    display: flex;
    align-items: center;
    height: 530px;
}

.superAppVideoInnerRightPath {
    clip-path: polygon(100% 100%,100% 0,0 50%);
    padding: 20px 20px 20px 210px;
    text-align: left;
    background-color: #fafafc;
    display: flex;
    align-items: center;
    height: 530px;
}

.superAppVideoInner {
    height: 280px;
    position: relative;
    width: 280px;
}

.superAppVideoInner .sectionTitleDiv {
    position: absolute;
    text-align: center;
    top: -75px;
    transition: all .3s;
    width: 100%;
}

.superAppVideoInner .sectionTitleDiv h2 {
    font-weight: 100;
    position: relative;
    color: #000;
    font-size: 32px;
    line-height: 40px;
    margin: 0;
}

.superAppVideoInner .sectionTitleDiv h2 strong {
    color: #000;
    font-size: 32px;
    line-height: 40px;
    margin: 0;
    font-weight: 700;
}

.superAppVideoInnerCircle {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.102);
    overflow: hidden;
    position: relative;
    transition: all .5s;
    z-index: 1;
    border-radius: 31px;
}
.banner-filter-form-div input::placeholder {
    color: #aaa;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .d-flex.flex-wrap {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.superAppVideoInnerCircle:hover {
    transform: scale(1.04);
}

.superAppVideoInnerCircle img {
    height: 278px;
    width: 278px;
}

.superAppVideoInnerCircle .videoIcon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.superAppVideoInnerCircle .playIcon,
.superAppVideoInnerCircle .playIconOnhover {
    height: 36px;
    width: 36px;
    position: absolute;
    transition: all .3s;
}

.superAppVideoInnerCircle .playIconOnhover,
.superAppVideoInnerCircle:hover .playIcon {
    opacity: 0;
}

.superAppVideoInnerCircle:hover .playIconOnhover {
    opacity: 1;
}

.innsideData {
    position: relative;
}

.innsideData a {
    position: relative;
    display: block;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 19px;
    margin: 30px 0;
    text-decoration: none;
    transition: all .3s;
    cursor: default;
}

.innsideData a.cursorPointer {
    cursor: pointer;
}

.innsideData a .textBlinkAnimation {
    position: absolute;
    left: 15px;
    top: -15px;
    color: #a90505;
    font-size: 12px;
    line-height: 14px;
    animation: textBlinkAnimation 1.5s ease-in-out infinite;
}

@keyframes textBlinkAnimation {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

.superAppVideoInnerLeftPath a:after {
    content: "";
    position: absolute;
    right: -115px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100px;
    height: 1px;
    background-color: #727272;
    transform-origin: 0;
}

.superAppVideoInnerLeftPath .pTag11:after {
    transform: rotate(20deg);
}

.superAppVideoInnerLeftPath .pTag12:after {
    transform: rotate(10deg);
}

.superAppVideoInnerLeftPath .pTag13:after {
    transform: rotate(-5deg);
}

.superAppVideoInnerLeftPath .pTag14:after {
    transform: rotate(-20deg);
}

.superAppVideoInnerLeftPath .dots {
    content: "";
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #727272;
    transition: all .3s;
}

.superAppVideoInnerRightPath a:after {
    content: "";
    position: absolute;
    left: -115px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100px;
    height: 1px;
    background-color: #727272;
    transform-origin: 100% 0;
}

.superAppVideoInnerRightPath .pTag21:after {
    transform: rotate(-15deg);
}

.superAppVideoInnerRightPath .pTag22:after {
    transform: rotate(8deg);
}

.superAppVideoInnerRightPath .pTag23:after {
    transform: rotate(10deg);
}

.superAppVideoInnerRightPath .pTag24:after {
    transform: rotate(15deg);
}

.superAppVideoInnerRightPath .dots {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #727272;
    transition: all .3s;
}

.sideCIrcle {
    position: absolute;
    height: 174px;
    width: 46px;
    margin: auto;
    top: 0;
    bottom: 0;
}

.superAppVideoInnerLeftPath .sideCIrcle {
    right: -96px;
}

.superAppVideoInnerRightPath .sideCIrcle {
    left: -96px;
    z-index: 1;
}

.sideCIrcle svg {
    height: 100%;
}

/* Hover States */
.pTag11.hover, .mainHover .pTag11 {
    color: #0c5aa5;
}
.pTag12.hover, .mainHover .pTag12 {
    color: #eb5757;
}
.pTag13.hover, .mainHover .pTag13 {
    color: #e2b93b;
}
.pTag14.hover, .mainHover .pTag14 {
    color: #27ae60;
}

.pTag11.hover:after, .mainHover .pTag11:after {
    background-color: #0c5aa5;
}
.pTag12.hover:after, .mainHover .pTag12:after {
    background-color: #eb5757;
}
.pTag13.hover:after, .mainHover .pTag13:after {
    background-color: #e2b93b;
}
.pTag14.hover:after, .mainHover .pTag14:after {
    background-color: #27ae60;
}

.pTag11.hover .dots, .mainHover .pTag11 .dots {
    background-color: #0c5aa5;
}
.pTag12.hover .dots, .mainHover .pTag12 .dots {
    background-color: #eb5757;
}
.pTag13.hover .dots, .mainHover .pTag13 .dots {
    background-color: #e2b93b;
}
.pTag14.hover .dots, .mainHover .pTag14 .dots {
    background-color: #27ae60;
}

#pTag11.hover, .mainHover #pTag11 {
    fill: #0c5aa5;
}
#pTag12.hover, .mainHover #pTag12 {
    fill: #eb5757;
}
#pTag13.hover, .mainHover #pTag13 {
    fill: #e2b93b;
}
#pTag14.hover, .mainHover #pTag14 {
    fill: #27ae60;
}

/* Right side hover states */
.pTag21.hover, .mainHover .pTag21 {
    color: #0c5aa5;
}
.pTag22.hover, .mainHover .pTag22 {
    color: #eb5757;
}
.pTag23.hover, .mainHover .pTag23 {
    color: #e2b93b;
}
.pTag24.hover, .mainHover .pTag24 {
    color: #27ae60;
}

.pTag21.hover:after, .mainHover .pTag21:after {
    background-color: #0c5aa5;
}
.pTag22.hover:after, .mainHover .pTag22:after {
    background-color: #eb5757;
}
.pTag23.hover:after, .mainHover .pTag23:after {
    background-color: #e2b93b;
}
.pTag24.hover:after, .mainHover .pTag24:after {
    background-color: #27ae60;
}

.pTag21.hover .dots, .mainHover .pTag21 .dots {
    background-color: #0c5aa5;
}
.pTag22.hover .dots, .mainHover .pTag22 .dots {
    background-color: #eb5757;
}
.pTag23.hover .dots, .mainHover .pTag23 .dots {
    background-color: #e2b93b;
}
.pTag24.hover .dots, .mainHover .pTag24 .dots {
    background-color: #27ae60;
}

#pTag21.hover, .mainHover #pTag21 {
    fill: #0c5aa5;
}
#pTag22.hover, .mainHover #pTag22 {
    fill: #eb5757;
}
#pTag23.hover, .mainHover #pTag23 {
    fill: #e2b93b;
}
#pTag24.hover, .mainHover #pTag24 {
    fill: #27ae60;
}

.mainHover .superAppVideoInner .sectionTitleDiv h2,
.mainHover .superAppVideoInner .sectionTitleDiv h2 strong {
    color: #005cab;
}

.mainHover .superAppVideoInner .sectionTitleDiv {
    transform: scale(1.05);
}

/* Houzeo Forensics Video Link */
.houzeo_forensics_video_text {
    position: absolute;
    bottom: 40px;
    display: flex;
    align-items: center;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease-in-out;
    cursor: pointer;
}

.houzeo_forensics_video_text:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 42px;
    height: 40px;
    width: 1px;
    background-color: #727272;
    margin: auto;
    transform: translatex(-50%);
}

.houzeo_forensics_video_text:after {
    content: "";
    position: absolute;
    left: 50%;
    top: -10px;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #727272;
    display: inline-block;
    transform: translatex(-50%);
    transition: all .3s;
}

.houzeo_forensics_video_text img {
    margin: 0 10px 0 0;
    max-width: 32px;
}

.houzeo_forensics_video_text:hover {
    color: #0c5aa5;
}

.houzeo_forensics_video_text:hover:after,
.houzeo_forensics_video_text:hover:before {
    background-color: #0c5aa5;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .superAppVideoInner {
        height: 220px;
        width: 220px;
    }
    
    .superAppVideoInnerCircle img {
        height: 218px;
        width: 218px;
    }
    
    .superAppVideoInnerLeftPath,
    .superAppVideoInnerRightPath {
        height: 480px;
    }
    
    .superAppVideoInnerLeftPath {
        padding: 20px 180px 20px 20px;
    }
    
    .superAppVideoInnerRightPath {
        padding: 20px 20px 20px 180px;
    }
    
    .superAppVideoInnerLeft {
        margin-right: -110px;
    }
    
    .superAppVideoInnerRight {
        margin-left: -110px;
    }
    
    .superAppVideoInnerLeftPath .sideCIrcle,
    .superAppVideoInnerRightPath .sideCIrcle {
        height: 140px;
    }
    
    .sayHelloRight {
        width: 690px;
    }
    
    .sayHelloLeft {
        width: calc(100% - 690px);
    }
    
    .bannerSectionNew .sayHelloLeft .sectionTitleDiv h1,
    .bannerSectionNew .sayHelloLeft h2 strong {
        font-size: 34px;
        line-height: 40px;
    }
}

@media (max-width: 1200px) {
    .innsideData a {
        font-size: 13px;
        line-height: 15px;
        margin: 20px 0;
    }
}

@media (max-width: 1080px) {
    .sayHelloLeft {
        width: 100%;
        padding-right: 0;
        padding-bottom: 40px;
    }
    
    .sayHelloRight {
        width: 100%;
        max-width: 600px;
        padding-bottom: 50px;
    }
    
    .sayHelloHolder {
        flex-direction: column;
    }
}

@media (max-width: 991px) {
  .superAppVideoInnerCircle {
    border-radius: 31px;
  }
    .bannerSocailMedia{
      margin-left: -80px;
    }
    .sectionTitleDiv p {
          margin-left: -5rem !important;
                  line-height: 28px;
    }
    .sayHelloLeft .sectionTitleDiv {
        margin: 10px 0;
    }
    
    .sayHelloLeft .sectionTitleDiv p br {
        display: none;
    }
}

@media (max-width: 767px) {
  .sayHelloHolder{
    margin-top: -40px;
  }
    .superAppVideoSec {
        flex-direction: column;
    }
    .sayHelloLeft{
      margin-top: 12px;
    }
    .superAppVideoInner {
        height: auto;
        margin-bottom: 20px;
        order: -1;
        width: 100%;
    }
    
    .superAppVideoInnerCircle {
        border-radius: 32px;
    }
    
    .superAppVideoInnerCircle img {
        display: block;
        margin: auto;
    }
    
    .superAppVideoInner .sectionTitleDiv {
        position: relative;
        padding-bottom: 20px;
        top: 0;
    }
    
    .superAppVideoInnerLeft {
        width: 100%;
        margin-right: 0;
    }
    
    .superAppVideoInnerRight {
        width: 100%;
        margin-left: 0;
    }
    
    .sideCIrcle,
    .superAppVideoInnerLeftPath a:after,
    .superAppVideoInnerRightPath a:after {
        display: none;
    }
    
    .superAppVideoInnerShadow {
        filter: none;
        padding-left: 20px;
    }
    
    .superAppVideoInnerLeftPath {
        text-align: left;
        clip-path: none;
        height: 100%;
        padding: 0;
    }
    
    .superAppVideoInnerRightPath {
        clip-path: none;
        height: 100%;
        padding: 0;
    }
    
    .innsideData a {
        margin: 20px 0 0;
    }
    
    .superAppVideoInnerLeftPath .dots {
        left: -20px;
        right: inherit;
    }
    
    .houzeo_forensics_video_text {
        bottom: 0;
        font-size: 18px;
        justify-content: flex-start;
        margin: 20px 0 0;
        position: relative;
        width: 100%;
        visibility: hidden;
    }
    
    .houzeo_forensics_video_text:before,
    .houzeo_forensics_video_text:after {
        display: none;
    }
    
    .houzeo_forensics_video_text img {
        max-width: 26px;
    }
}
.mus{
  width: 85px;
  height: auto;
}
@media (max-width: 480px) {
    .bannerSectionNew h1 img {
        width: 55px;
    }
    
    .bannerSectionNew .sayHelloLeft .sectionTitleDiv h1 {
        font-size: 26px;
        line-height: 30px;
    }
    .mus{
      width: 4rem;
    } 
    .bannerSectionNew .sayHelloLeft .sectionTitleDiv h1 strong {
        font-size: 26px;
        line-height: 30px;
    }
}

@media (max-width: 375px) {
    .bannerSectionNew .sayHelloLeft .sectionTitleDiv h1 br {
        display: none;
    }
    
    .innsideData a {
        font-size: 17px;
        line-height: 20px;
    }
}

/* Property Card Hover Effect */
.border.rounded.overflow-hidden.mb-4:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  /* Remove any transform if present */
  transform: none !important;
  transition: box-shadow 0.3s;
}

.newsImageWrapper {
    position: relative;
}

.newsBackground {
    width: 100%;
    display: block;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9); /* dark overlay */
    z-index: 1;
}

.newsContent {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 1rem;
}

.sectionTitleDiv h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.logoSection a img {
    margin: 0 10px;
    max-height: 40px;
    filter: brightness(0) invert(1); /* optional: make logos white */
}

.card-sell {
    align-items: center;
    background-color: #fff;
    box-shadow: 0 1px 6px #d6c9c9;
    display: flex;
    margin: 0 auto 20px;
    max-width: calc(100% - 80px);
    padding: 15px;
    text-align: left;
    transition: all 0.1s ease-in-out;
    width: 100%;
}


.card-sell:hover {
    transform: translateY(-15px); 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); 
}

.icon-bg1 {
    width: 60px;
    height: 60px;
    background-color: rgba(23,64,68,.15); 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
}
.icon-bg2 {
    width: 60px;
    height: 60px;
    background-color: rgba(11,90,165,.15); 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
}
.icon-bg3 {
    width: 60px;
    height: 60px;
    background-color: #faeddb; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
}
.icon-bg4 {
    width: 60px;
    height: 60px;
    background-color: #e1d2d3; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
}
.text-p{
  color: rgba(0, 0, 0, .7);
    font-size: 16px;
    line-height: 20px;
    margin: 0;
}
.home-s{
  color: #000;
    font-size: 32px;
    line-height: 40px;
    margin: 0;
    font-weight: 700;
}
.home-w{
    font-size: 32px;
    line-height: 40px;
    margin: 0;
}
.text-darks{
  color: #0b5aa5;
      font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    margin: 0 0 5px;
}
.ribbon-button {
  position: relative;
  display: inline-block;
}

.btn.btn-primary {
  background-color: #0c5aa5;
  color: white;
  padding: 11px 20px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.ribbon {
  position: absolute;
  top: 4px;
  right: -10px;
  background: #f26522;
  color: white;
  padding: 0px 12px;
  font-size: 10px;
  font-weight: bold;
  transform: rotate(45deg);
  border-radius: 6px;
  box-shadow: 0 0 3px rgba(0,0,0,0.3);
  z-index: 2;
}
