/*********************
START: HERO
*********************/
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid #f2752e;
}

.heroAgent {
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1),
    rgba(102, 102, 102, 0)
  );
}

.hero video {
  width: 100%;
  vertical-align: middle;
}

.hero--content {
  width: 55%;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}
.hero--content span {
  text-transform: uppercase;
  letter-spacing: 8px;
  font-size: var(--text-xl);
  color: var(--baseLight-color);
  font-family: var(--font-family-Inter);
}

.hero--content .title {
  margin-inline: auto;
  text-transform: uppercase;
  letter-spacing: 7px;
  margin-block: 1rem 2rem;
}

.hero--content p {
  text-transform: capitalize;
  letter-spacing: 6px;
  color: var(--baseLight-color);
  font-family: var(--font-family-Inter);
  margin-block-end: 1.5rem;
}

.form--group {
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--baseLight-color);
  border-radius: 45px;
}

.form--group input {
  height: 50px;
  padding-block: 0 !important;
  margin-block-start: 0 !important;
}

.rch-search-listing-form {
  max-width: auto !important;
}

rechat-property-search-form {
  display: flex;
  justify-content: center;
}

.property-search-form .rcw-filters{
    display: none;
}

.property-search-form .rcw-search,
.property-search-form .rcw-filters,
.property-search-form .rcw-filters > * {
  flex: 0 0 0;
}

.property-search-form .rcw-search-bar {
  justify-content: space-between;
}

@media screen and (max-width: 992px) {
  .property-search-form {
    width: 100%;
  }
}
/*********************
END: HERO
*********************/

/*********************
START: PROFILE AGENTS
*********************/
/* profileAgent */
.profileAgent {
  background-color: #f2efe8;
}

.hero--profile {
  display: flex;
  margin-inline: auto;
  margin-block: 5rem;
  justify-content: space-between;
  position: relative;
}

.hero--profile__img {
  width: 48%;
}

.hero--profile__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4;
  object-fit: cover;
}

.hero--profile__info {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
}

.hero--profile__info .meet {
  color: #c5af80;
  text-transform: uppercase;
  font-family: var(--font-family-Inter);
}

.hero--profile__info .name,
.hero--profile__info h3.title {
  color: #c5af80;
  text-transform: uppercase;
  font-family: var(--font-family-Inter);
}

.hero--profile__info .license {
  text-transform: uppercase;
  color: var(--baseDark-color);
  font-family: var(--font-family-Inter);
}

.hero--profile__info .description {
  margin-block: 4rem 2.5rem;
  color: var(--baseDark-color);
  font-family: var(--font-family-Inter);
}

/* infoDetails */
.hero--profile__info ul.agent-social-links--profile {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  padding-inline-start: 1.5rem;
  position: relative;
  margin-block-end: 2rem;
}

.hero--profile__info ul.agent-social-links--profile:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #c5af80;
  top: 0;
  left: 0;
}

.hero--profile__info ul.agent-social-links--profile li {
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
  font-family: var(--font-family-Inter);
}

.hero--profile__info ul.agent-social-links--profile li h4 {
  font-weight: 700;
  color: #c5af80;
}

.hero--profile__info .btn {
  background-color: #c5af80;
  color: var(--baseLight-color);
}

.ready {
  padding-block: 5rem;
  background-color: var(--secondary-color);
}

.ready--content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ready--content h4 {
  color: var(--baseDark-color);
}

.ready--content > div {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 50%;
  padding: 2rem;
}

.ready--content > div:not(:last-child) {
  border-right: 3px solid var(--baseDark-color);
}

.ready--content > div .btn {
  margin-inline: auto !important;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  background-color: var(--orange-color);
}
/*********************
END: PROFILE AGENTS
*********************/

/*********************
START: NEIGHBORHOODS
*********************/
.neighborhoods {
  padding-block: 5rem;
}

.neighborhoods--content {
  color: var(--baseLight-color);
}

.neighborhoods--content h3 {
  margin-block-end: 3rem;
}
.neighborhoods--content ul {
  display: flex;
  justify-content: center;
}

.neighborhoods--content ul li {
  margin: 16px;
  flex-basis: calc(25% - 32px);
}

.neighborhoods--content ul li img {
  width: 100%;
  height: auto;
  aspect-ratio: 426/600;
  object-fit: cover;
  border-radius: 16px;
}

.neighborhoods--content ul li a > p {
  color: var(--baseDark-color);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-block-start: 1.25rem;
  text-align: center;
  font-size: var(--text-xl);
}

.neighborhoods--content a.btn {
  margin-inline: auto;
  margin-block-start: 3.75rem;
}

/*********************
END: NEIGHBORHOODS
*********************/
/*********************
START: 
*********************/
.results {
  /*     min-height: 100vh; */
  position: relative;
  background-color: var(--baseDark-color);
}

.results--content {
  position: relative;
  margin-block-end: 5rem;
}

.results--counter ul {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  margin-block-start: 6rem;
}

.results--counter ul li {
  width: 24%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--baseLight-color) !important;
}

.results--counter ul li:not(:last-child) {
  border-right: 1px solid var(--orange-color);
}

.results--counter ul li h3 {
  font-weight: 400;
  color: var(--baseLight-color) !important;
}

.results--counter ul li h4 {
  margin-block: 0.5rem;
  font-family: var(--font-family-Inter);
}

.results--counter ul li > p {
  line-height: var(--line-height150);
}

.results--text {
  text-align: center;
  width: 60%;
  margin-block-start: 3.5rem;
  margin-inline: auto;
  color: var(--orange-color);
  padding-block-end: 5rem;
}

.mil-wrapper {
  color: var(--baseLight-color) !important;
  display: flex;
  align-items: center;
  font-size: var(--text-5xl);
}

.mil-wrapper h3 {
  font-weight: 400;
  margin-inline: 2px;
}

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

/*********************
START: 
*********************/
.properties {
  padding-block-end: 5rem;
  background-color: var(--secondary-color);
}

.is-rechat-listings-section-hidden,
[data-rechat-listings-state="empty"],
[data-rechat-listings-section]:not(
  [data-rch-listings-section-resolved="loaded"]
) {
  display: none !important;
}

[data-rechat-listings-section][data-rch-listings-section-resolved="loaded"] {
  display: block !important;
}
.properties--title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 5rem;
}

.properties--title h4,
.properties--title p {
  color: var(--baseDark-color);
}

.properties--slider {
  position: relative;
}

.properties--slider .listing-card {
  padding-bottom: none;
  background-color: var(--baseLight-color);
  color: var(--baseDark-color);
}

.properties--slider .listing-card .listing-card__attributes > div > p {
  color: var(--baseDark-color) !important;
}

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

/*********************
START: ABOUT AGENT
*********************/
.aboutAgent {
  padding-block: 6rem;
  background-color: var(--secondary-color);
}

.aboutAgent--content {
  /* 	text-align: center; */
  font-size: 18px;
  background: var(--baseDark-color);
  display: flex;
  flex-direction: column;
  /*     align-items: center; */
  padding: 2.5rem;
  min-height: 270px;
  max-width: 1000px;
  margin-inline: auto;
  color: var(--baseLight-color);
  border-radius: var(--border-radius40);
}

.aboutAgent--content p {
  font-weight: 400;
  color: var(--baseLight-color);
  line-height: var(--line-height150);
}

/*********************
END: ABOUT AGENT
*********************/
/*********************
START: 
*********************/
.client {
  padding-block: 5rem;
  background-color: var(--baseDark-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.client .title {
  margin-block-end: 3rem;
  color: var(--baseDark-color);
}

.client .title br {
  display: none;
}

.client--slider {
  max-width: 1000px;
  margin-inline: auto;
}

.client .swiper-button-next,
.client .swiper-button-prev {
  color: var(--baseLight-color) !important;
}

.client .swiper-button-next:after,
.client .swiper-button-prev:after {
  font-size: 20px !important;
}

.client .swiper {
  width: 100%;
  height: 100%;
  margin-block-end: 2rem;
  z-index: 0;
}

.client .swiper-slide {
  text-align: left;
  font-size: 18px;
  background: var(--baseDark-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  padding-inline: 6rem;
  color: var(--baseLight-color);
  border-radius: var(--border-radius40);
}

.client .swiper-slide img {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  object-fit: cover;
}
.client .testimonial-stars {
  margin-block: 0.75rem 0.25rem;
}

.client .swiper-slide h6 {
  margin-block: 1rem 0.5rem;
  font-weight: 400;
  font-size: var(--text-base);
  direction: ltr;
  text-align: left;
}

.client .swiper-slide p {
  font-weight: 300;
  font-size: var(--text-xl);
  line-height: var(--line-height150);
  direction: ltr;
  text-align: left;
}

.client--slider__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-block-start: 1rem;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 1rem;
}
/*********************
END: 
*********************/
.map-listing-grid__empty-state {
  margin-inline: auto;
  min-height: 300px;
}

.map-listing-grid__empty-state > p {
  color: var(--baseDark-color) !important;
}

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1920px) {
  .hero--content .title {
    font-size: var(--text-7xl);
  }

  .hero--content .text {
    font-size: var(--text-3xl);
  }
}

@media screen and (min-width: 1440px) and (max-width: 1919px) {
  .hero--content .title {
    font-size: var(--text-6xl);
  }

  .hero--content .text {
    font-size: var(--text-2xl);
  }
}

@media screen and (min-width: 1440px) {
  .results--counter ul li > h3 {
    font-size: var(--text-4xl);
  }

  .results--counter ul li > p {
    font-size: var(--text-lg);
  }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
  .hero--content .title {
    font-size: var(--text-5xl);
  }

  .results--counter ul li > h3 {
    font-size: var(--text-3xl);
  }

  .results--counter ul li > p {
    font-size: var(--text-lg);
  }
}

@media screen and (max-width: 1319px) {
  .hero--content .title {
    font-size: var(--text-4xl);
  }

  .results--counter ul li > h3 {
    font-size: var(--text-3xl);
  }

  .results--counter ul li > p {
    font-size: var(--text-base);
  }
}

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

  .mil-wrapper {
    font-size: var(--text-4xl);
  }
}

@media screen and (max-width: 992px) {
  .hero--content {
    width: 60%;
  }

  .hero--content .title {
    font-size: var(--text-3xl);
  }

  .results--text {
    width: 85%;
  }

  .hero--profile__info ul li {
    font-size: 18px;
  }

  .mil-wrapper {
    font-size: var(--text-3xl);
  }
}

@media screen and (max-width: 768px) {
  .hero--content {
    width: 70%;
  }

  .results {
    margin-block-end: 0;
    padding-block-start: 5rem;
  }

  .results--content {
    top: unset;
  }

  .results--counter ul {
    flex-wrap: wrap;
    row-gap: 2rem;
  }

  .results--counter ul,
  .results--text {
    width: 100%;
  }

  .results--counter ul li:not(:last-child) {
    border-right: none;
  }

  .results--counter ul li:nth-child(odd) {
    border-right: 1px solid var(--orange-color);
  }

  .hero--content span {
    font-size: var(--text-lg);
  }

  .mil-wrapper {
    font-size: var(--text-2xl);
  }

  .hero--profile__info ul li {
    font-size: 16px;
  }

  .results--counter ul li > h3 {
    font-size: var(--text-2xl);
  }

  .results--counter ul li {
    width: 48%;
  }

  .properties--title {
    flex-direction: column;
    align-items: flex-start;
  }

  .properties--title > a.btn {
    margin-block-start: 1rem;
  }
}

@media screen and (max-width: 576px) {
  .hero--content {
    width: 80%;
  }

  .talk--img {
    width: 90%;
  }

  .hero--profile {
    flex-direction: column;
    row-gap: 1rem;
  }

  .hero--profile__img {
    width: 70%;
    margin-inline: auto;
  }

  .hero--profile__info {
    width: 100%;
  }

  .hero--content span {
    font-size: var(--text-base);
  }

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

  .ready--content > div {
    width: 100%;
  }

  .ready--content > div:not(:last-child) {
    border-right: 0 !important;
    border-bottom: 3px solid var(--baseDark-color);
  }
}

@media screen and (max-width: 425px) {
  .hero--content {
    width: 95%;
  }

  .results--counter ul li > h3 {
    font-size: var(--text-xl);
  }

  .results--counter ul li > p {
    font-size: var(--text-sm);
  }

  .properties--slider .swiper-slide h5 {
    font-size: var(--text-base);
  }

  .hero--profile__img {
    width: 90%;
  }
}

@media screen and (max-width: 375px) {
  .hero--profile__img {
    width: 100%;
  }

  .results--counter ul li > h3 {
    font-size: var(--text-lg);
  }

  .results--counter ul li > p {
    font-size: var(--text-xs);
  }
}

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