/*
Theme Name: Clay Stapp
Theme URI: #
Author: Rechat
Author URI: https://Rechat.com/
Description: This is Exclusive For Rechat
Version: 1.0
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

button,
input,
textarea,
a {
  cursor: pointer;
  outline: none;
  background: 0 0;
  text-decoration: none;
  font-family: var(--font-family-Work);
}

h1 {
  text-transform: none !important;
}

button:focus,
input:focus,
textarea:focus,
a:focus,
input::placeholder,
textarea::placeholder {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  margin-top: 0 !important;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  vertical-align: middle;
}

/*********************
START: FONTS (Futura LT)
*********************/
@font-face {
  font-family: "Futura LT";
  src:
    url("assets/fonts/FuturaLT-Light.woff2") format("woff2"),
    url("assets/fonts/FuturaLT-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura LT";
  src:
    url("assets/fonts/FuturaLT.woff2") format("woff2"),
    url("assets/fonts/FuturaLT.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura LT";
  src: url("assets/fonts/FuturaBT-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura LT";
  src: url("assets/fonts/FuturaLT-Heavy.woff2") format("woff2");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Futura LT Condensed";
  src: url("assets/fonts/FuturaLT-CondensedLight.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/*********************
END: FONTS
*********************/

:root {
  --direction: ltr;
  --font-family-Playfair: "Futura LT", sans-serif;
  --font-family-Work: "Futura LT", sans-serif;
  --baseLight-color: #ffffff;
  --baseDark-color: #4d4d4e;

  /* brand accent */
  --primary-color: #f47b21;
  --accent-color: #f47b21;
  --accent-hover: #d9660f;

  --Gray-1: #f8f9fa;
  --Gray-2: #e9ecef;
  --Gray-3: #dee2e6;
  --Gray-4: #c8c8c8;
  --Gray-5: #adb5bd;
  --Gray-6: #6c757d;
  --Gray-7: #4d4d4e;
  --Gray-8: #4d4d4e;
  --Gray-9: #4d4d4e;

  /* font-size */
  --text-xs: 0.75rem;
  /* 12px */
  --text-sm: 0.875rem;
  /* 14px */
  --text-base: 1rem;
  /* 16px */
  --text-lg: 1.125rem;
  /* 18px */
  --text-xl: 1.25rem;
  /* 20px */
  --text-2xl: 1.5rem;
  /* 24px */
  --text-3xl: 1.875rem;
  /* 30px */
  --text-4xl: 2.25rem;
  /* 36px */
  --text-5xl: 3rem;
  /* 48px */
  --text-6xl: 3.5rem;
  /* 56px */
  --text-7xl: 4rem;
  /* 64px */
}

body {
  margin: 0;
  padding: 0;
  direction: var(--direction);
  overflow-x: hidden !important;
  font-family: var(--font-family-Work);
}

.rch-loader {
  border: 3px solid rgb(233 233 233 / 30%);
  border-top-color: #bfbebe;
}

picture.rch-fallback-logo-listing {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 440 / 412;
  background: var(--baseDark-color);
}

picture.rch-fallback-logo-listing img {
  aspect-ratio: unset !important;
  object-fit: unset !important;
  background: var(--baseDark-color);
  margin-block-end: 3rem;
}

.properties picture.rch-fallback-logo-listing {
  aspect-ratio: 440 / 412;
}

.properties picture.rch-fallback-logo-listing {
  aspect-ratio: 446.667 / 416;
}

.adler--versions {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 1rem;
  background-color: #3c3c3c;
  border-top: 1px solid #fff;
  z-index: 1000;
  width: 100%;
}

.adler--versions ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2.5rem;
}

.adler--versions ul li a {
  display: block;
  color: #fff;
}

/* modal */
.modal {
  display: none;
  position: fixed;
  z-index: 13;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  background: rgba(0, 0, 0, 0.7);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal--content {
  margin: auto;
  width: auto;
  height: 95%;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal--header {
  text-align: right;
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 100;
}

.modal--close {
  color: var(--baseLight-color);
  font-size: 3rem;
  transition: all 0.5s;
}

.modal--body {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal--body video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* modal */

/* modal slider in rechat plugin */
.rch-imgs-modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 5px;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
}

.rch-imgs-modal {
  z-index: 1001;
}

.rch-imgs-modal .rch-modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 70%;
  max-width: 800px;
  border-radius: 15px;
  border: 1px solid rgba(126, 139, 150, 0.5);
}

.rch-imgs-modal .rch-img-modal-close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  cursor: pointer;
}

.rch-houses-mySwiper2 {
  height: 70vh;
  width: 100%;
  margin-block-end: 5px;
}

.rch-imgs-modal .swiper-slide {
  background-size: cover;
  background-position: center;
}

.rch-imgs-modal .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.rch-houses-mySwiper2 .swiper-button-next,
.rch-houses-mySwiper2 .swiper-button-prev {
  border: 1px solid rgba(126, 139, 150, 0.5);
  padding: 0.25rem;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: var(--text-color-2);
  z-index: 1;
  background-color: white;
}

.rch-houses-mySwiper2 .swiper-button-next:after {
  margin-left: 3px;
}

.rch-houses-mySwiper2 .swiper-button-next:after,
.rch-houses-mySwiper2 .swiper-button-prev:after {
  font-size: 1rem;
}

.rch-houses-mySwiper2 .swiper-button-prev:after {
  margin-right: 3px;
}

.rch-houses-mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  overflow: hidden;
}

.rch-imgs-modal .swiper-slide {
  background-size: cover;
  background-position: center;
}

.rch-imgs-modal .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.rch-houses-mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.rch-houses-mySwiper {
  height: 10vh;
  box-sizing: border-box;
  padding: 10px 0;
}

/* modal slider in rechat plugin */

/* only only only archive listing page  */
.container-archive-listing {
  width: 97%;
  margin-inline: auto;
}

/* listing archive page: clear the fixed/absolute header + page title */
.singlePost.listingArchive {
  padding-block-start: 140px;
}

.listingArchive--title {
  font-family: var(--font-family-Playfair);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--Gray-9);
  text-align: left;
  margin-block-end: 1.25rem;
}

@media screen and (max-width: 768px) {
  .singlePost.listingArchive {
    padding-block-start: 110px;
  }
  .listingArchive--title {
    font-size: var(--text-xl);
  }
}
/* only only only archive listing page  */

/* title */
.center {
  text-align: center;
}

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

.dark {
  color: var(--Gray-9);
}

.title--large {
  font-family: var(--font-family-Playfair);
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}

.title--medium {
  font-family: var(--font-family-Playfair);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.title--small {
  font-family: var(--font-family-Playfair);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

/* title */

/* text */
.text--medium {
  font-family: var(--font-family-Work);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 0.16px;
}

/* button */
/* bnt-public */
button[type="submit"],
.btn {
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.5rem;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.14px;
  border-radius: 4px;
  font-style: normal;
  text-align: center;
}

.btn--icon > img {
  width: 20px;
  height: 20px;
  margin-inline-start: 0.25rem;
}

.btn--gray-7 {
  color: var(--Gray-7);
  font-size: var(--text-sm);
  border: 1px solid rgba(0, 0, 0, 0);
  background: var(--Gray-2);
}

.btn--gray-9 {
  background: var(--accent-color);
  color: var(--baseLight-color);
  font-size: var(--text-sm);
  transition: background 0.3s ease;
}

.btn--gray-9:hover {
  background: var(--accent-hover);
}

.btn--text-gray7 {
  color: var(--Gray-7);
}

/* bnt-public */

/* input */
form input[type="email"],
form input[type="text"],
form input[type="search"],
form input[type="number"],
form input[type="tel"],
form textarea {
  text-align: left;
  width: 100%;
  /* padding: 0.75rem !important; */
  /* border: 1px solid var(--border-color); */
  /* background-color: var(--baseLight-color) !important; */
}

form input[type="email"],
form input[type="text"],
form input[type="search"],
form input[type="number"],
form input[type="tel"] {
  border-radius: 4px !important;
}

form textarea {
  height: 194px;
  border-radius: 4px !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background: var(--baseLight-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: none;
}

form input[type="submit"] {
  margin-block-start: 0;
  color: var(--baseLight-color);
  background-color: var(--secondary-color);
  border: var(--secondary-color);
  border-radius: var(--border-radius35);
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

/* input */

/* pagination */
.pagination {
  margin-inline: auto;
  margin-block: 5rem;
}

.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination ul li > span,
.pagination ul li > a {
  padding: 0.5rem 0.75rem;
  min-width: 3rem;
  min-height: 2rem;
  background-color: var(--box-color1);
  color: var(--border-color1);
  margin-inline: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.pagination ul li > span.page-numbers.current {
  background-color: var(--border-color1);
  color: var(--baseLight-color);
}

/* pagination */

/* heroInner */
.heroInner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
}

.heroInner::before,
.heroInner::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.heroInner::before {
  z-index: 0;
  background-color: rgba(33, 37, 41, 0.5);
}

.heroInner::after {
  z-index: 1;
  background-color: rgba(33, 37, 41, 0.5);
}

.heroInner--search {
  background-position: bottom center;
}

.heroInner--content {
  position: relative;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
  margin-block-end: 242px;
}

.heroInner--content > h1 {
  margin-block-end: 2rem;
}

.heroInner--content .description p,
.heroInner--content > p {
  font-style: normal;
  font-weight: 350;
  line-height: 150%;
  letter-spacing: 0.2px;
}

.heroInner--content .description {
  display: flex;
}

.heroInner--content a.btn {
  width: max-content;
  border: 1px solid rgba(0, 0, 0, 0);
  background: var(--Gray-2);
  width: 217px;
  padding: 16px 32px;
  margin-block-start: 40px;
}

/* breadcrumb */
.breadcrumb--content {
  margin-block: 180px 100px;
  position: relative;
  z-index: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  text-transform: capitalize;
  color: var(--Gray-3);
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-block-end: 0.25rem;
}

.breadcrumb li:not(:last-child) a {
  margin-inline-end: 0.75rem;
  color: var(--Gray-3);
}

.breadcrumb li:not(:first-child) {
  margin-inline-start: 0.75rem;
}

.breadcrumb li > span {
  color: var(--Gray-1);
}

/* heroInner */

.heroInner--search .heroInner--content {
  margin-block-start: 9rem;
}

.heroInner--listingSingle .heroInner--content > h1 {
  width: 50%;
}

/* Newsletter */
.newsletter {
  position: relative;
  padding-block: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("assets/img/bg-newsletter.jpg");
}

.newsletter::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.newsletter--content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsletter--text h3 {
  font-family: var(--font-family-Playfair);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.4px;
  margin-block-end: 40px;
}

.newsletter--form {
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(56px);
  padding: 2rem 1.5rem;
}

.newsletter--form > h4 {
  font-family: var(--font-family-Playfair);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.28px;
  margin-block-end: 3rem;
}

.newsletter--form form input[type="email"] {
  border-radius: 4px;
  border: 1px solid var(--Gray-7);
  background-color: transparent;
  padding: 0.75rem;
}

.newsletter--form form input[type="email"]::placeholder {
  color: var(--Gray-1);
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.14px;
}

.newsletter--form form label {
  display: flex;
  align-items: flex-start;
  margin-block-end: 0.5rem;
  color: var(--Gray-1);
}

.newsletter--form form button[type="submit"] {
  width: 100%;
  color: var(--Gray-7) !important;
  font-size: var(--text-sm) !important;
  border: 1px solid rgba(0, 0, 0, 0) !important;
  background-color: var(--Gray-2) !important;
  margin-block-start: 3rem;
}

/* Newsletter */

/*********************
END: PUBLIC
*********************/

/*********************
START: HEADER
*********************/

header {
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.25rem;
  background: rgba(248, 249, 250, 0.9);
  backdrop-filter: blur(27px);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  row-gap: 1rem;
  gap: 1.5rem;
  padding-block: 1rem;
}

/* header--logo */
.header--logo {
  margin-block-end: 0;
}

.header--logo > a {
  display: block;
}

.header--logo picture img {
  width: 13rem;
}

/* header--logo */

/* header--btn */
.header--btn {
  display: flex;
  align-items: center;
}

.header--btn a.btn {
  padding: 12px 32px;
}

/* header--btn */

/* header--menu */
.header--menu {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}

/* nav-icon */
.nav-icon {
  display: inline-block;
  z-index: 100;
  cursor: pointer;
  transition: transform 0.5s;
  display: none;
}

.nav-icon:after,
.nav-icon:before,
.nav-icon div {
  background-color: var(--Gray-9);
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 5px 0;
  transition: all 0.2s ease-in-out;
}

.nav-icon.open:before {
  transform: translateY(6px) rotate(135deg);
  background-color: var(--Gray-1);
}

.nav-icon.open:after {
  transform: translateY(-8px) rotate(-135deg);
  background-color: var(--Gray-1);
}

.nav-icon.open div {
  transform: scale(0);
}

/* nav-icon */

.header--menu .navigation {
  position: relative;
}

.header--menu .navigation > ul.navMenu {
  position: relative;
  display: flex;
  justify-content: center;
  user-select: none;
}

.header--menu .navigation > ul.navMenu > li:not(:last-child) {
  margin-inline-end: 24px;
}

.header--menu .navigation > ul.navMenu > li > a {
  color: var(--Gray-9);
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.darkpage {
  background-color: rgba(73, 80, 87, 0.9);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  transition: opacity 1s linear;
}

/* searchForm */
.searchForm {
  display: none;
}

.searchForm > img {
  cursor: pointer;
  width: auto;
  vertical-align: middle;
  width: 26px;
}

.searchForm--content {
  border-radius: 4px;
  border: 1px solid var(--Gray-3);
  padding-inline-end: 0.75rem;
  padding-inline-start: 0.25rem;
  padding-block: 0.2rem;
  background-color: var(--Gray-1);
  position: absolute;
  right: 0;
  width: 350px;
  top: 110px;
  display: none;
  align-items: center;
  justify-content: space-between;
  /*     box-shadow: 0 0 5px 3px rgba(0, 0, 0, .3); */
}

.searchForm--content.active {
  display: flex;
}

.searchForm--content .btn {
  position: absolute;
  right: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 0.5rem 1.1rem;
}

.searchForm--content input[type="search"] {
  width: 80%;
  border: none;
  padding: 0.5rem 0.75rem;
  min-height: 40px;
  color: var(--Gray-9);
  margin-inline-end: 2px;
}

/* searchForm */
/* header--menu */
/*********************
  END: HEADER
*********************/

/*********************
START: FOOTER
*********************/
footer {
  background-color: var(--baseDark-color);
}

.footer--text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block-start: 100px;
  border-top: 1px solid var(--Gray-7);
  border-bottom: 1px solid var(--Gray-7);
  padding-block: 5rem 2rem;
  flex-wrap: wrap;
  row-gap: 2rem;
}

.footer--text h6 {
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.3px;
  width: 48%;
}

.footer--text p {
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: -0.32px;
  width: 48%;
}

.footer--text ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 2rem;
  margin-block-start: 2rem;
}

.footer--text ul li {
  display: flex;
}

.footer--text ul li span {
  color: var(--baseLight-color);
  font-size: var(--text-base);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.footer--text ul li p {
  color: var(--baseLight-color);
  font-size: var(--text-lg);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-inline-start: 0.5rem;
  width: auto;
}

.footer--list {
  display: none;
  margin-block: 9.75rem 2rem;
}

.footer--list > ul {
  display: flex;
  justify-content: space-between;
}

.footer--list > ul > li {
  width: auto;
}

.footer--list > ul > li .headerWiget {
  margin-block-end: 1.68rem;
}

.footer--list > ul > li > .headerWiget h3 {
  color: var(--Gray-1);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.52px;
}

.footer--list > ul > li .bodywidget ul > li {
  margin-block-end: 0.5em;
}

.footer--list > ul > li .bodywidget ul > li a {
  color: var(--baseLight-color);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.36px;
}

.footer--list .social {
  display: flex;
  align-items: center;
  margin-inline-start: auto;
  margin-inline-end: 103px;
  margin-block-start: 27px;
  column-gap: 6px;
  width: max-content;
}

.footer--down {
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.4px;
  margin-inline: auto;
  padding-block: 2rem 4.5rem;
}

.footer--down a {
  font-weight: 700;
  border-bottom: 1px solid var(--baseLight-color);
  color: var(--baseLight-color);
  margin-inline-start: 0.3rem;
}

/*********************
END: FOOTER
*********************/
li.theme-active a {
  background: white;
  padding: 5px 15px;
  border-radius: 6px;
  pointer-events: none;
  color: var(--baseDark-color) !important;
}
/*********************
START: SINGLE LISTING and SINGLE AGENT
*********************/
/* single agent */
.heroInner--agent {
  background-position: bottom center;
}

.single-agents {
  background: #f5f5f5;
}

.single-agents .heroInner {
  overflow-x: unset;
  margin-block-end: 700px;
}

.single-agents .heroInner .breadcrumb--content {
  margin-block-end: 40px;
}

.single-agents .heroInner::after {
  filter: blur(62px);
}

.single-agents .heroInner .heroInner--content {
  margin-block-end: 100px;
}

.single-agents .heroInner .rch-main-layout-single-agent {
  flex-direction: column;
}

/* Agent bio/description sits over the dark hero — keep it readable */
.single-agents .heroInner .rch-main-content,
.single-agents .heroInner .rch-main-content p,
.single-agents .heroInner .rch-main-content span,
.single-agents .heroInner .rch-main-content li,
.single-agents .heroInner .rch-main-content a {
  color: var(--baseLight-color);
}

.single-agents .heroInner .rch-main-content p,
.single-agents .heroInner .rch-main-content span,
.single-agents .heroInner .rch-main-content li {
  margin-block-end: 1rem;
}

.single-agents .heroInner .rch-data-agent .rch-agent-designation {
  color: var(--baseLight-color);
  font-size: var(--text-base);
  opacity: 0.85;
}

.rch-top-single-agent .rch-left-top-single-agent {
  width: 100%;
}

.rch-right-main-layout-single-agent {
  width: calc(100% - 360px);
  position: absolute;
  right: 0;
  top: 95%;
}

.rch-main-layout-single-agent .rch-right-main-layout-single-agent form {
  border-radius: 4px !important;
  background: var(--baseLight-color) !important;
  padding: 2rem 1.5rem !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.rch-main-layout-single-agent .rch-right-main-layout-single-agent form h2 {
  color: var(--baseDark-color);
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-align: left !important;
  margin-block-end: 32px !important;
  width: 100%;
}

.rch-main-layout-single-agent .rch-right-main-layout-single-agent .form-group {
  margin-block-end: 1rem !important;
}

.rch-main-layout-single-agent
  .rch-right-main-layout-single-agent
  form
  .form-group {
  width: 48%;
}

.rch-main-layout-single-agent
  .rch-right-main-layout-single-agent
  form
  .form-group:nth-child(6) {
  width: 100%;
}

.rch-main-layout-single-agent .rch-right-main-layout-single-agent label {
  color: var(--Gray-7);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  margin-block-end: 0.5rem;
}

.rch-top-single-agent .rch-left-top-single-agent h1 {
  color: #eee;
  font-family: var(--font-family-Playfair);
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.rch-top-single-agent .rch-left-top-single-agent span {
  color: var(--baseLight-color);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.rch-left-top-slider .rch-load-images {
  border-radius: 10px !important;
  background-color: var(--Gray-7) !important;
  border: 1px solid var(--primary-color) !important;
  color: var(--baseLight-color) !important;
}

.rch-agents-list h2 {
  font-size: var(--text-4xl);
}

/* single properties */
.rch-house-main-details {
  margin-block: 10rem 5rem;
}
/* single properties */
.rch-left-top-slider .rch-load-images img {
  filter: invert(1);
}

h1.rch-single-address {
  margin-block: 2rem 1rem !important;
  color: var(--Gray-9);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.rch-single-price-house {
  color: var(--Gray-9);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.main-des-single-house > h2,
.facilities-in-single-houses > h2 {
  color: var(--Gray-9);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.rch-house-menu a:hover {
  color: var(--primary-color) !important;
}

.main-des-single-house p {
  color: var(--Gray-7);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  margin-block: 18px 40px !important;
}

.facilities-in-single-houses ul li img {
  filter: brightness(0.1);
}

.facilities-in-single-houses ul li {
  color: var(--baseDark-color);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.facilities-in-single-houses {
  margin-block-end: 30px;
}

#local-content-widget {
  padding-block: 40px 120px;
}

#local-content-widget > iframe {
  border-radius: 20px;
}

.rch-single-house-main-layout .rch-single-right-main-layout,
.rch-main-layout-single-agent .rch-right-main-layout-single-agent {
  margin-block-end: 20px;
}

.rch-profile-image {
  border-radius: 8px;
}

.rch-single-house-main-layout .rch-single-right-main-layout {
  flex-basis: 30%;
}

.rch-single-house-main-layout .rch-single-left-main-layout {
  flex-basis: 65%;
}

.rch-house-menu a {
  font-size: 16px;
  margin-inline-end: 20px;
  color: var(--Gray-9);
}

.rch-single-house-main-layout .rch-single-right-main-layout form {
  border-radius: 4px !important;
  background: var(--Gray-2) !important;
  padding: 1.5rem !important;
}

.rch-single-house-main-layout .rch-single-right-main-layout form h2 {
  color: var(--Gray-9);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: left;
}

.rch-single-house-main-layout .rch-single-right-main-layout .form-group {
  margin-block-end: 1.25rem !important;
}

.rch-single-house-main-layout .rch-single-right-main-layout label {
  color: var(--Gray-9);
  font-size: 14px !important;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  margin-block-end: 0.5rem;
}

.rch-single-house-main-layout .rch-single-right-main-layout .form-group input,
.rch-single-house-main-layout
  .rch-single-right-main-layout
  .form-group
  textarea,
.rch-main-layout-single-agent
  .rch-right-main-layout-single-agent
  .form-group
  input,
.rch-main-layout-single-agent
  .rch-right-main-layout-single-agent
  .form-group
  textarea {
  border: 1px solid var(--Gray-3) !important;
}

.rch-single-house-main-layout .rch-single-right-main-layout .form-group input,
.rch-main-layout-single-agent
  .rch-right-main-layout-single-agent
  .form-group
  input {
  border-radius: 4px;
}

.rch-single-house-main-layout
  .rch-single-right-main-layout
  .form-group
  textarea,
.rch-main-layout-single-agent
  .rch-right-main-layout-single-agent
  .form-group
  textarea {
  border-radius: 4px !important;
}

.rch-single-house-main-layout .rch-single-right-main-layout .form-group input,
.rch-single-house-main-layout
  .rch-single-right-main-layout
  .form-group
  textarea {
  background-color: var(--Gray-1);
}

.rch-single-house-main-layout
  .rch-single-right-main-layout
  .form-group
  input::placeholder,
.rch-single-house-main-layout
  .rch-single-right-main-layout
  .form-group
  textarea::placeholder,
.rch-main-layout-single-agent
  .rch-right-main-layout-single-agent
  .form-group
  input::placeholder,
.rch-main-layout-single-agent
  .rch-right-main-layout-single-agent
  .form-group
  textarea::placeholder {
  color: var(--Gray-6) !important;
  font-size: 16px !important;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  line-height: 100%;
}

#leadCaptureForm button[type="submit"] {
  background-color: var(--Gray-9);
  border: none !important;
  color: var(--Gray-1);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.14px;
  border-radius: 4px;
}

/*********************
END: SINGLE LISTING and SINGLE AGENT
*********************/
.single-neighborhoods {
  background-color: var(--Gray-1);
}

.underHeroNeighborhoodSingle {
  position: relative;
  z-index: 1;
}

.underHeroNeighborhoodSingle--content {
  display: flex;
  justify-content: space-between;
}

.underHeroNeighborhoodSingle--content .neighborhoodSingle--text {
  width: 100%;
  margin-block-start: 38px;
}

.underHeroNeighborhoodSingle--content .neighborhoodSingle--text p {
  color: var(--Gray-9);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  margin-block-end: 1.5rem;
}

.underHeroNeighborhoodSingle--content
  .neighborhoodSingle--text
  .listing-card
  p {
  margin-block-end: 0;
}

.underHeroNeighborhoodSingle--content .neighborhoodSingle--slider {
  width: 40%;
  padding: 1.5rem;
  background-color: var(--Gray-2);
  border-radius: 4px;
  margin-block-start: -100px;
}

/* heroSlider */
.heroSlider {
  position: relative;
  margin-block-end: 0 !important;
  z-index: 0;
}

.heroSlider.heroSlider--neighborhood {
  margin-block-end: 80px !important;
}

.heroSlider > button {
  border-radius: 4px;
  background: var(--Gray-9);
  color: var(--Gray-1);
  padding: 0.75rem 2rem;
  border: none;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}

.heroSlider > button > img {
  filter: brightness(0) invert(1);
}

.heroSlider .swiper {
  width: 100%;
  height: 100%;
  z-index: 0;
}

.heroSlider .indexSwiper {
  height: 409px;
  width: 100%;
  position: relative;
}

.heroSlider .indexSwiper .swiper-slide {
  background-size: cover;
  background-position: center;
}

.heroSlider .indexSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.heroSlider .thumbsSwiper {
  height: 105px;
  box-sizing: border-box;
  margin-block: 1rem 1.5rem;
}

.heroSlider .thumbsSwiper .swiper-slide {
  width: 25%;
  border-radius: 20px;
  height: 100%;
}

.heroSlider .thumbsSwiper .swiper-slide img {
  border-radius: 2px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroSlider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroSlider .swiper-button-next:after,
.heroSlider .swiper-button-prev:after {
  content: unset;
}

.heroSlider .swiper-button-prev,
.heroSlider .swiper-rtl .swiper-button-next {
  left: 40px;
}

.heroSlider .swiper-button-next,
.heroSlider .swiper-rtl .swiper-button-prev {
  right: 40px;
}

.heroSlider .swiper-button-next,
.heroSlider .swiper-button-prev {
  top: 40% !important;
}

/* heroSlider */

.neighborhoodSinglePost p {
  color: var(--Gray-9);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
  margin-block-end: 1.5rem;
}

.related-neighbour h2.lp-h2 {
  margin-block-end: 1.5rem;
}

/*********************
START: container and its media
*********************/
/* container  */
.container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1320px 1fr;
  grid-template-areas: ". content .";
}

.container > * {
  grid-area: content;
}

@media screen and (min-width: 1920px) {
  .container {
    grid-template-columns: 1fr 1400px 1fr;
  }
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .container {
    grid-template-columns: 1fr 1330px 1fr;
  }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
  .container {
    grid-template-columns: 1fr 1310px 1fr;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1319px) {
  .container {
    grid-template-columns: 1fr 1140px 1fr;
  }
}

@media screen and (min-width: 993px) and (max-width: 1199px) {
  .container {
    grid-template-columns: 1fr 970px 1fr;
  }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  .container {
    grid-template-columns: 1fr 750px 1fr;
  }
}

@media screen and (max-width: 768px) {
  .container {
    grid-template-columns: 1fr 95% 1fr;
  }
}

/*********************
END: container and its media
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {
  .title--large,
  .rch-top-single-agent .rch-left-top-single-agent h1 {
    font-size: var(--text-7xl);
  }

  .title--medium,
  .rch-single-house-main-layout .rch-single-right-main-layout form h2 {
    font-size: var(--text-2xl);
  }

  .title--small,
  .heroInner--content .description p,
  .heroInner--content > p {
    font-size: var(--text-xl);
  }

  .newsletter--text {
    width: 63%;
  }

  .newsletter--form {
    width: 33%;
  }

  .newsletter--text h3 {
    font-size: 40px;
  }

  .newsletter--form > h4 {
    font-size: 28px;
  }

  .heroInner--content > h1,
  .heroInner--content .description p,
  .heroInner--content > p {
    width: 32%;
  }

  /* .heroInner--content .description p,
    .heroInner--content>p {
        width: 48%;
        font-size: var(--text-2xl);
    } */

  /* footer */
  .footer--text h6 {
    font-size: var(--text-7xl);
  }

  .footer--list > ul > li .headerWiget h3 {
    font-size: 26px;
  }

  .footer--list > ul > li .bodywidget ul > li a {
    font-size: var(--text-lg);
  }

  .footer--down {
    font-size: var(--text-xl);
  }

  /* footer */

  h1.rch-single-address {
    font-size: 32px !important;
  }

  .rch-single-price-house {
    font-size: 28px !important;
  }

  .main-des-single-house > h2,
  .facilities-in-single-houses > h2 {
    font-size: 28px;
  }

  .main-des-single-house p,
  .facilities-in-single-houses ul li,
  .neighborhoodSinglePost p {
    font-size: var(--text-xl) !important;
  }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
  .title--large,
  .rch-top-single-agent .rch-left-top-single-agent h1 {
    font-size: var(--text-7xl);
  }

  .title--medium,
  .rch-single-house-main-layout .rch-single-right-main-layout form h2 {
    font-size: var(--text-2xl);
  }

  .title--small,
  .heroInner--content .description p,
  .heroInner--content > p {
    font-size: var(--text-xl);
  }

  .newsletter--text {
    width: 64%;
  }

  .newsletter--form {
    width: 32%;
  }

  .newsletter--text h3 {
    font-size: 40px;
  }

  .newsletter--form > h4 {
    font-size: 28px;
  }

  .heroInner--content > h1,
  .heroInner--content .description p,
  .heroInner--content > p {
    width: 35%;
  }

  /* footer */
  .footer--text h6 {
    font-size: var(--text-6xl);
  }

  .footer--list > ul > li .headerWiget h3 {
    font-size: var(--text-2xl);
  }

  .footer--list > ul > li .bodywidget ul > li a {
    font-size: var(--text-lg);
  }

  .footer--down {
    font-size: var(--text-lg);
  }

  h1.rch-single-address {
    font-size: var(--text-3xl) !important;
  }

  .rch-single-price-house {
    font-size: 28px !important;
  }

  .main-des-single-house > h2,
  .facilities-in-single-houses > h2 {
    font-size: 28px;
  }

  .main-des-single-house p,
  .facilities-in-single-houses ul li,
  .neighborhoodSinglePost p {
    font-size: var(--text-lg) !important;
  }
}

@media screen and (max-width: 1319px) {
  .title--large,
  .rch-top-single-agent .rch-left-top-single-agent h1 {
    font-size: var(--text-6xl);
  }

  .title--medium,
  .rch-single-house-main-layout .rch-single-right-main-layout form h2 {
    font-size: var(--text-2xl);
  }

  .title--small,
  .heroInner--content .description p,
  .heroInner--content > p {
    font-size: var(--text-xl);
  }

  .newsletter--text {
    width: 64%;
  }

  .newsletter--form {
    width: 32%;
  }

  .newsletter--text h3 {
    font-size: var(--text-4xl);
  }

  .newsletter--form > h4 {
    font-size: var(--text-2xl);
  }

  .heroInner--content > h1,
  .heroInner--content .description p,
  .heroInner--content > p {
    width: 40%;
  }

  /* footer */
  .footer--text h6 {
    font-size: var(--text-5xl);
  }

  .footer--list > ul > li .headerWiget h3 {
    font-size: var(--text-2xl);
  }

  .footer--list > ul > li {
    width: 24%;
  }

  .footer--list .social {
    margin-inline-end: 0;
    width: 24%;
  }

  .footer--down {
    font-size: var(--text-lg);
  }

  h1.rch-single-address {
    font-size: var(--text-3xl) !important;
  }

  .rch-single-price-house {
    font-size: 28px !important;
  }

  .main-des-single-house > h2,
  .facilities-in-single-houses > h2 {
    font-size: var(--text-2xl);
  }
}

@media screen and (max-width: 1200px) {
  .newsletter--text {
    width: 50%;
  }

  .newsletter--form {
    width: 45%;
  }

  .newsletter--text h3 {
    font-size: var(--text-3xl);
  }

  .newsletter--form > h4 {
    font-size: var(--text-xl);
  }

  .heroInner--content > h1,
  .heroInner--content .description p,
  .heroInner--content > p {
    width: 50%;
  }

  .underHeroNeighborhoodSingle--content {
    flex-direction: column;
  }

  .underHeroNeighborhoodSingle--content .neighborhoodSingle--text {
    width: 100%;
  }

  .underHeroNeighborhoodSingle--content .neighborhoodSingle--slider {
    margin-block-start: 1rem;
    width: 100%;
  }

  .heroInner--listingSingle .heroInner--content > h1 {
    width: 65%;
  }

  /*  */

  .modal--content {
    width: 60%;
  }

  .header--logo picture img {
    width: 10rem;
  }

  .header--menu .navigation > ul.navMenu > li > a {
    font-size: var(--text-sm);
  }

  .header--menu .navigation > ul.navMenu > li:not(:last-child) {
    margin-inline-end: 9px;
  }

  /* footer */
  .footer--text {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer--text > * {
    width: 100% !important;
  }

  .footer--list > ul > li .headerWiget h3 {
    font-size: var(--text-xl);
  }

  .rch-single-price-house {
    font-size: 26px !important;
  }
}

@media screen and (max-width: 992px) {
  .title--large,
  .rch-top-single-agent .rch-left-top-single-agent h1 {
    font-size: var(--text-5xl);
  }

  .title--small,
  .heroInner--content .description p,
  .heroInner--content > p {
    font-size: var(--text-lg);
  }

  .rch-agents-list h2 {
    font-size: var(--text-3xl);
  }

  .rch-main-content {
    margin-block-start: 0;
  }

  .breadcrumb--content {
    margin-block: 200px 70px;
  }

  .newsletter--text h3 br {
    display: none;
  }

  .heroInner--content > h1,
  .heroInner--content .description p,
  .heroInner--content > p {
    width: 60%;
  }

  .rch-right-main-layout-single-agent {
    width: 100%;
  }

  .heroInner--listingSingle .heroInner--content > h1 {
    width: 85%;
  }

  .heroInner--listingSingle .heroInner--content > h1 br {
    display: none;
  }

  /*  */

  .modal--content {
    width: 70%;
  }

  /* header */
  .searchForm > img {
    width: 22px;
  }

  .header--btn a.btn {
    padding: 10px 20px;
  }

  .footer--list > ul > li {
    width: 23%;
  }

  .footer--list .social {
    width: 23%;
  }
}

@media screen and (max-width: 768px) {
  .title--large,
  .rch-top-single-agent .rch-left-top-single-agent h1 {
    font-size: var(--text-4xl);
  }

  .newsletter--content {
    flex-direction: column;
  }

  .newsletter--text {
    width: 100%;
  }

  .newsletter--form {
    width: 100%;
    margin-block-start: 2rem;
  }

  .heroInner--content > h1,
  .heroInner--content .description p,
  .heroInner--content > p {
    width: 70%;
  }

  /*  */

  .modal--content {
    width: 80%;
  }

  .rch-house-main-details {
    margin-block: 8rem 5rem;
  }

  .rch-imgs-modal .rch-modal-content {
    width: 85%;
  }

  .heroSlider .swiper-button-next,
  .heroSlider .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .heroSlider .swiper-button-next,
  .heroSlider .swiper-rtl .swiper-button-prev {
    right: 30px;
  }

  .heroSlider .swiper-button-prev,
  .heroSlider .swiper-rtl .swiper-button-next {
    left: 30px;
  }

  /* header */
  header {
    backdrop-filter: unset;
  }

  .header {
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .header--logo picture img {
    width: 8.5rem;
  }

  .header--menu {
    order: 3;
    flex: 0 0 auto;
  }

  .header--btn {
    margin-inline-start: auto;
  }

  .header--btn a.btn {
    padding: 10px 20px;
    margin-inline-start: 0;
    font-size: var(--text-sm);
  }

  .nav-icon {
    display: block;
  }

  .darkpage.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s linear;
  }

  .header--menu .navigation > ul.navMenu {
    flex-direction: column;
    margin-block: 3rem;
  }

  .header--menu .navigation > ul.navMenu > li:not(:last-child) {
    margin-inline-end: 0;
    margin-block-end: 1rem;
  }

  .header--menu .navigation > ul.navMenu > li > a {
    font-size: var(--text-base);
  }

  .header--menu .navigation {
    position: fixed;
    display: block;
    min-width: 300px;
    right: -100%;
    background: var(--Gray-1);
    top: 0;
    padding: 30px;
    transition: all 0.5s;
    visibility: hidden;
    transition-property: right, visibility;
    overflow-y: auto;
    z-index: 2;
  }

  .header--menu .navigation.active {
    right: 0;
    visibility: visible;
  }

  /* footer */
  .footer--text h6 {
    margin-block-end: 1rem;
  }

  .footer--list > ul {
    flex-wrap: wrap;
  }

  .footer--list > ul > li {
    width: 49%;
    margin-block-end: 1rem;
    border: 1px solid var(--Gray-7);
    border-radius: 4px;
  }

  .footer--list > ul > li .headerWiget {
    padding: 1rem;
    background-color: var(--Gray-7);
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
  }

  .footer--list > ul > li .bodywidget {
    padding: 0 1rem 1rem 1rem;
  }

  .footer--list > ul > li .bodywidget ul > li {
    margin-block-end: 1rem;
  }

  .footer--list .social {
    width: auto;
    justify-content: center;
    margin-inline-end: 0;
  }

  .footer--down {
    font-size: var(--text-base);
  }

  h1.rch-single-address {
    font-size: var(--text-2xl) !important;
  }

  .rch-single-price-house {
    font-size: var(--text-xl) !important;
  }

  .heroInner--listingSingle .heroInner--content > h1 {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .rch-single-house-main-layout .rch-single-left-main-layout,
  .rch-single-house-main-layout .rch-single-right-main-layout {
    flex-basis: 100%;
  }

  .rch-house-menu a {
    font-size: 14px;
  }

  .rch-house-menu a:not(:last-of-type) {
    margin-inline-end: 20px;
  }
}

@media screen and (max-width: 576px) {
  .heroInner--content > h1,
  .heroInner--content .description p,
  .heroInner--content > p {
    width: 80%;
  }

  .rch-main-layout-single-agent
    .rch-right-main-layout-single-agent
    form
    .form-group {
    width: 100%;
  }

  .single-agents .heroInner {
    margin-block-end: 850px;
  }

  /*  */
  .modal--content {
    width: 90%;
  }

  .footer--text h6 {
    font-size: var(--text-4xl);
  }

  .pagination ul li > span,
  .pagination ul li > a {
    padding: 0.5rem 0.5rem;
    min-width: 2rem;
    margin-inline: 0.25rem;
    border-radius: 5px;
  }
}

@media screen and (max-width: 530px) {
  .rch-top-single-agent .rch-left-top-single-agent picture {
    height: auto;
  }

  .rch-right-main-layout-single-agent {
    top: 100%;
  }
}

@media screen and (max-width: 470px) {
  .title--large,
  .rch-top-single-agent .rch-left-top-single-agent h1 {
    font-size: var(--text-3xl);
  }

  .heroInner--content > h1,
  .heroInner--content .description p,
  .heroInner--content > p {
    width: 100%;
  }

  .main-des-single-house > h2,
  .facilities-in-single-houses > h2 {
    font-size: var(--text-xl);
  }

  header {
    padding: 1rem;
  }

  .rch-house-menu a {
    font-size: 12px;
  }

  .rch-house-menu a:not(:last-of-type) {
    margin-inline-end: 14px;
  }

  .rch-imgs-modal .rch-modal-content {
    width: 95%;
  }

  .footer--list > ul > li .headerWiget h3 {
    font-size: var(--text-lg);
  }
}

@media screen and (max-width: 425px) {
  .newsletter--text h3 {
    font-size: var(--text-2xl);
  }

  .newsletter--form > h4 {
    font-size: var(--text-lg);
  }

  .rch-agents-list h2 {
    font-size: var(--text-2xl);
    text-align: center;
  }

  .heroSlider .swiper-button-next,
  .heroSlider .swiper-button-prev {
    width: 20px;
    height: 20px;
  }

  .heroSlider .swiper-button-next,
  .heroSlider .swiper-rtl .swiper-button-prev {
    right: 22px;
  }

  .heroSlider .swiper-button-prev,
  .heroSlider .swiper-rtl .swiper-button-next {
    left: 22px;
  }

  /* footer */
  .footer--list > ul > li {
    width: 100%;
  }

  .main-des-single-house > h2,
  .facilities-in-single-houses > h2 {
    font-size: var(--text-lg);
  }
}

@media screen and (max-width: 375px) {
  /*  */
  .searchForm--content .btn {
    padding: 0.4rem 0.5rem;
  }

  .searchForm--content {
    width: 280px;
  }

  .title--medium,
  .rch-single-house-main-layout .rch-single-right-main-layout form h2 {
    font-size: var(--text-2xl);
  }
}

@media screen and (max-width: 320px) {
}

/*********************
  END: MEDIA
  *********************/
