@font-face {
    font-family: IRANYekanXVFaNumVF;
    src: url("../fonts/IRANYekanXVFaNumVF.woff2") format("woff2"), url("../fonts/IRANYekanXVFaNumVF.woff") format("woff");
    font-display: swap;
}

:root {
  --body-font-family: IRANYekanXVFaNumVF, serif;
  --body-bg-color: #ffffff;
  --body-font-size: 1rem;
  --body-font-weight: 400;
  --body-line-height: 1.5;
  --body-text-align: right;
  --body-color: #212529;
  --border-color: #eeeeee;
  --border-radius: 0;
  --color-primary: #212121;
  --color-secondary: #f5f5f5;
  --color-success: #06a31d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  text-align: var(--body-text-align);
  background-color: var(--body-bg-color);
  color: var(--body-color);
}

a {
  text-decoration: none;
}

textarea {
  font-family: var(--body-font-family);
  width: 100%;
  resize: vertical;
}

img {
  max-width: 100%;
}

input[type=text], input[type=number], input[type=password] {
  width: 100%;
  font-family: var(--body-font-family);
  outline: 0;
}

button {
  font-family: var(--body-font-family);
}

h1, h2, h3, h4, h5, h6 {
  /*margin: 0;*/
}

hr {
  color: var(--border-color);
  border: 0;
  border-top: 1px solid;
}



.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
}

.full-width {
  width: 100%;
}

@media screen and (max-width: 480px) {
  .container {
    max-width: 480px;
    padding: 0 0.75rem;
  }
}
input {
  /*border: 1px solid var(--border-color);*/
  /*padding: 0.35rem 1rem;*/
}

textarea {
  /*border: 1px solid var(--border-color);*/
}

.header.header--main {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
  z-index: 100;
}
.header.header--main .header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
}
.header.header--main .header__column {
  display: flex;
  align-items: center;
}
.header.header--main .header__column.header__column--mobile {
  display: none;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.header.header--main .header__icon {
  padding: 0.25rem;
  border: none;
  background-color: inherit;
}
.header.header--main .header__logo {
  width: 150px;
  margin-left: 40px;
}
.header.header--main .header__nav {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.header.header--main .header__search {
  width: 200px;
  margin-left: 1.5rem;
}

@media screen and (max-width: 480px) {
  .header.header--main .header__wrapper {
    height: 50px;
  }
  .header.header--main .header__nav {
    display: none;
  }
  .header.header--main .header__column.header__column--left {
    display: none;
  }
  .header.header--main .header__column.header__column--mobile {
    display: flex;
  }
  .header.header--main .header__logo {
    width: 120px;
    margin-left: 0;
  }
}
.footer {
  background-color: #fafafa;
  padding-top: 1.5rem;
}
.footer__menus {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 2.5rem 0;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.footer__row {
  display: flex;
  justify-content: space-between;
  margin: 2.5rem 0;
}
.footer__copyright {
  background-color: #ffffff;
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem 0;
}

@media screen and (max-width: 480px) {
  .footer__menus {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .footer__row {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    row-gap: 2rem;
  }
}
.footer-contact {
  display: flex;
  justify-content: space-between;
  align-items: end;
  background-color: var(--color-secondary);
  color: #424242;
  padding: 1.2rem 1.5rem;
}
.footer-contact__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-contact__icon {
  width: 24px;
  height: 24px;
  color: #424242;
}
.footer-contact__phone {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
}
.footer-contact__phone-list {
  display: flex;
  align-items: center;
}
.footer-contact__phone-item {
  display: flex;
  align-items: center;
  border-left: 2px solid #ccc;
  padding-left: 1rem;
}
.footer-contact__phone-item:last-child {
  border-left: 0;
  padding-left: 0;
}
.footer-contact__phone-item span {
  margin-right: 1rem;
}
.footer-contact__email {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
}
.footer-contact__address {
  display: flex;
  align-items: center;
  font-weight: 500;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 1rem;
}
.footer-contact__socials {
  display: flex;
  justify-content: end;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.footer-contact__social {
  width: 24px;
  height: 24px;
  color: #424242;
}

@media screen and (max-width: 480px) {
  .footer-contact {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 0.75rem 1rem;
  }
  .footer-contact__title {
    font-size: 0.85rem;
  }
  .footer-contact__icon {
    width: 20px;
    height: 20px;
  }
  .footer-contact__phone {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .footer-contact__phone-list {
    flex-direction: column;
    row-gap: 0.5rem;
  }
  .footer-contact__phone-item {
    border-left: none;
    padding-left: 0;
  }
  .footer-contact__phone-item span {
    margin-right: 0.5rem;
    font-size: 0.8rem;
  }
  .footer-contact__email {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
  .footer-contact__address {
    font-size: 0.8rem;
  }
  .footer-contact__socials {
    justify-content: start;
    margin-top: 0.25rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}
.footer-application {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-secondary);
  color: #424242;
  padding: 1.2rem 1.5rem;
}
.footer-application__title {
  font-size: 1rem;
  font-weight: 600;
}
.footer-application__column {
  display: flex;
  justify-content: end;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.footer-application__item {
  background-color: #ffffff;
  border-radius: 0.3rem;
  padding: 0.3rem 0.5rem;
}

.footer-certificate {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  width: 450px;
}
.footer-certificate__item {
  border: 1px solid var(--border-color);
  height: 100px;
}

@media screen and (max-width: 480px) {
  .footer-certificate {
    width: 100%;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
}
.footer-newsletter {
  width: 300px;
}
.footer-newsletter__title {
  font-size: 1rem;
  font-weight: 600;
}
.footer-newsletter__input {
  margin: 1rem 0;
}
.footer-newsletter__button {
  width: 100%;
}

@media screen and (max-width: 480px) {
  .footer-newsletter {
    width: 100%;
  }
}
.footer-menu__title {
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
  padding: 0 0 0.5rem 1.5rem;
}
.footer-menu__nav {
  display: flex;
  flex-direction: column;
  row-gap: 0.65rem;
  margin-top: 1rem;
}
.footer-menu__link {
  font-size: 0.85rem;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-width: 1px;
  border-style: solid;
  border-radius: var(--border-radius);
  padding: 0.3rem 1.2rem;
  font-size: 0.85rem;
  cursor: pointer;
}
.button.button--primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}
.button.button--secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #333;
}
.button.button--success {
  background-color: var(--color-success);
  border-color: var(--color-success);
  color: #ffffff;
}
.button__flasher {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  width: 29.9px;
  height: 120%;
  right: -3rem;
  top: 0px;
  opacity: 0.75;
  transform: rotate(22deg);
  filter: blur(15px);
  transition: right 0.75s ease-out;
}
.button__flasher.active {
  right: calc(100% + 3rem);
}

.property-filters {
  position: sticky;
  top: 60px;
  background-color: #ffffff;
  padding-top: 1rem;
  z-index: 100;
}
.property-filters__row {
  display: flex;
  padding: 1rem 0;
}
.property-filters__row.property-filters__row--top {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}
.property-filters__row.property-filters__row--top .property-filters__item {
  border: 1px solid #e0e0e0;
  padding: 0.3rem 1.2rem;
  cursor: pointer;
}
.property-filters__row.property-filters__row--top .property-filters__item--active {
  background-color: #f8f8f8;
  border-color: #131b1f;
}
.property-filters__row.property-filters__row--bottom {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.property-filters__row.property-filters__row--bottom .property-filters__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 2px solid transparent;
  opacity: 0.5;
  cursor: pointer;
  padding-bottom: 0.5rem;
}
.property-filters__row.property-filters__row--bottom .property-filters__item--active {
  opacity: 1;
  border-color: #131b1f;
}

.carousel {
  overflow-x: auto;
}
.carousel .carousel__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.carousel .carousel__header .carousel__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.carousel .carousel__header .carousel__subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
}
.carousel .carousel__header .carousel__column.carousel__column--end {
  display: flex;
  justify-content: end;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.carousel .carousel__header .carousel__button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border: 1px solid var(--border-color);
  min-width: 35px;
  height: 35px;
  padding: 0.5rem;
  cursor: pointer;
  background-color: inherit;
}
.carousel .carousel__list {
  overflow-x: auto;
  display: flex;
  align-items: flex-start;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
  list-style: none;
  width: 100%;
  padding: 0;
}
.carousel.carousel--city .carousel__item {
  margin-left: 1.5rem;
  min-width: calc((100% - 9rem) / 6.3);
}
.carousel.carousel--city .carousel__item:last-child {
  margin-left: 0;
}
.carousel.carousel--property {
  margin: 3rem 0;
}
.carousel.carousel--property .carousel__item {
  margin-left: 1rem;
  min-width: calc((100% - 3rem) / 4.3);
}
.carousel.carousel--property .carousel__item:last-child {
  margin-left: 0;
}
.carousel.carousel--product .carousel__list {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.carousel.carousel--product .carousel__item {
  min-width: calc((100% - 3rem) / 4);
}

@media screen and (max-width: 480px) {
  .carousel.carousel--product .carousel__list {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .carousel.carousel--product .carousel__item {
    min-width: calc((100% - 1rem) / 3);
  }
}
.info-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  padding: 3rem 0;
}
.info-box__item {
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: var(--color-secondary);
  border: 1px solid var(--border-color);
  padding: 1.5rem 2.5rem;
}
.info-box__icon {
  width: 100px;
}
.info-box__title {
  font-size: 1rem;
  font-weight: 500;
}
.info-box__description {
  color: #999999;
  margin: 1rem 0 0;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .info-box {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
}

.property-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  padding: 1rem;
  height: 518px;
}
.property-contact__title {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  margin: 1rem 0 1.5rem;
}
.property-contact__code {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.property-contact__code-title {
  font-size: 0.9rem;
  font-weight: 600;
}
.property-contact__code-number {
  color: #777777;
  font-size: 0.85rem;
  font-weight: 500;
}
.property-contact__description {
  font-size: 0.92rem;
  font-weight: 450;
  color: #777777;
  text-align: justify;
  line-height: 1.8;
}
.property-contact__person-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.property-contact__person-column {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.property-contact__person-image {
  width: 50px;
  height: 50px;
  border-radius: 10rem;
}
.property-contact__person-name {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.property-contact__person-phone {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #777777;
}
.property-contact__button {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.8;
}
.property-contact__address {
  width: 100%;
  padding: 0.5rem 1.2rem;
}

@media screen and (max-width: 480px) {
  .property-contact {
    padding: 0.75rem;
    height: auto;
  }
  .property-contact__title {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0.75rem 0 1rem;
  }
  .property-contact__code {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    margin-bottom: 0.5rem;
  }
  .property-contact__code-title {
    font-size: 0.85rem;
  }
  .property-contact__code-number {
    font-size: 0.8rem;
  }
  .property-contact__description {
    font-size: 0.85rem;
  }
  .property-contact__person-container {
    flex-direction: column;
    row-gap: 1rem;
    align-items: start;
  }
  .property-contact__button {
    width: 100%;
  }
}
.property-reserve {
  position: sticky;
  top: 100px;
  border: 1px solid var(--border-color);
  padding: 1rem;
}
.property-reserve__price-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  margin: 1rem 0;
}
.property-reserve__price-currency {
  font-size: 0.8rem;
  color: #777;
}
.property-reserve__price-per {
  color: #777;
}
.property-reserve__price-unit {
  color: #777;
}
.property-reserve__inputs {
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}
.property-reserve__calendar {
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
.property-reserve__calendar-checkin {
  padding: 0.5rem 1rem;
  border-left: 1px solid var(--border-color);
}
.property-reserve__calendar-checkout {
  padding: 0.5rem 1rem;
}
.property-reserve__calendar-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
  margin-bottom: 0.5rem;
}
.property-reserve__calendar-value {
  font-size: 0.85rem;
  font-weight: 600;
}
.property-reserve__passengers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
}
.property-reserve__passengers-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
  margin-bottom: 0.5rem;
}
.property-reserve__passengers-description {
  font-size: 0.85rem;
  font-weight: 600;
}
.property-reserve__passengers-counter {
  display: flex;
  align-items: center;
}
.property-reserve__passengers-counter-button {
  background-color: inherit;
  border: none;
  width: 2rem;
  height: 1.5rem;
  padding: 0;
}
.property-reserve__passengers-counter-value {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  width: 1.5rem;
}
.property-reserve__fullname {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-width: 0 0 1px 0;
  min-height: 65px;
}
.property-reserve__fullname::-moz-placeholder {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
}
.property-reserve__fullname::placeholder {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
}
.property-reserve__phone {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-width: 0;
  min-height: 65px;
}
.property-reserve__phone::-moz-placeholder {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
}
.property-reserve__phone::placeholder {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
}
.property-reserve__shop {
  margin-bottom: 1rem;
}
.property-reserve__shop-title {
  font-size: 0.9rem;
  font-weight: 500;
}
.property-reserve__shop-description {
  color: #777;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0.5rem 0 1rem 0;
}
.property-reserve__button {
  position: relative;
  font-size: 1rem;
  width: 100%;
  padding: 0.75rem 1rem;
  overflow: hidden;
}
.property-reserve__notice {
  font-size: 0.8rem;
  font-weight: 500;
  color: #777;
  text-align: center;
  margin-top: 0.75rem;
}

@media screen and (max-width: 480px) {
  .property-reserve__shop-description {
    font-size: 0.8rem;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.4rem;
       column-gap: 1.4rem;
  margin-top: 2rem;
}
.breadcrumb__item {
  font-size: 0.9rem;
  color: #777;
  font-weight: 500;
}
.breadcrumb__link {
  position: relative;
}
.breadcrumb__link::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24' fill='%23999999'%3E%3Cpath d='M560-267.69 347.69-480 560-692.31 588.31-664l-184 184 184 184L560-267.69Z'/%3E%3C/svg%3E");
  position: absolute;
}

@media screen and (max-width: 480px) {
  .breadcrumb__item {
    font-size: 0.8rem;
  }
  .breadcrumb__link::after {
    top: -3px;
  }
}
.property-features {
  margin-bottom: 3rem;
}
.property-features__item {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 1rem;
}

.property-features__item--1-col {
  width: calc(100% / 4 - 0.75rem);
}

.property-features__item--2-col {
  width: calc(100% / 2 - 0.75rem);
}

.property-features__item--3-col {
  width: calc(100% / 4 * 3 - 0.75rem);
}
.property-features__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.property-features__description {
  font-size: 0.85rem;
  color: #777;
}

@media screen and (max-width: 480px) {
  .property-features__title {
    font-size: 0.8rem;
  }
  .property-features__description {
    font-size: 0.8rem;
  }
}
.property-price {
  margin-bottom: 3rem;
}
.property-price__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
}
.property-price__item:last-child {
  border-bottom: 0;
}
.property-price__notice {
  color: #999;
  font-size: 0.85rem;
  margin-right: 0.25rem;
}
.property-price__amount {
  font-weight: 600;
}
.property-price__currency {
  color: #999;
  font-size: 0.85rem;
  margin-right: 0.25rem;
}
.property-price__description {
  color: #666;
  font-size: 0.95rem;
  margin-top: 1.5rem;
  line-height: 2;
}
.property-price__button {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

@media screen and (max-width: 480px) {
  .property-price__title {
    font-size: 0.9rem;
  }
  .property-price__notice {
    font-size: 0.8rem;
  }
  .property-price__amount {
    font-size: 0.95rem;
  }
  .property-price__currency {
    font-size: 0.8rem;
  }
  .property-price__description {
    font-size: 0.85rem;
    margin-top: 1rem;
  }
}
.property-description {
  margin-bottom: 3rem;
}
.property-description__container {
  position: relative;
  line-height: 2;
  color: #666;
  font-size: 0.95rem;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.25s ease-in;
}
.property-description__gradient {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 2.2rem;
  max-height: 2.2rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3));
  transition: max-height 0.25s;
}
.property-description__more {
  background-color: inherit;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  font-weight: 500;
  font-size: 0.85rem;
  border: none;
  padding-right: 0;
}
.property-description__more-icon {
  transform: rotate(90deg);
  transition: transform 0.3s;
}

@media screen and (max-width: 480px) {
  .property-description__container {
    font-size: 0.9rem;
  }
}
.property-amenities {
  margin-bottom: 3rem;
}
.property-amenities__list {
  display: grid;
  grid-template-columns: repeat(2, 40%);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.property-amenities__item {
  display: flex;
  /* Keep the icon aligned with the first line when the text wraps. */
  align-items: flex-start;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.property-amenities__item img,
.property-amenities__icon {
  flex: 0 0 auto;
  margin-top: 0.2rem;
}
.property-amenities__icon {
  width: 26px;
  height: 26px;
}
.property-amenities__name {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
}
.property-amenities__label {
  font-weight: 700;
  color: #111;
}
.property-amenities__sep {
  color: #999;
}
.property-amenities__value {
  color: #555;
}
.property-amenities__button {
  padding: 0.5rem 1.4rem;
}

@media screen and (max-width: 480px) {
  .property-amenities__item {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .property-amenities__name {
    font-size: 0.85rem;
  }
  .property-amenities__icon {
    width: 24px;
    height: 24px;
  }
  .property-amenities__button {
    padding: 0.5rem 1rem;
  }
}
.property-rules {
  margin-bottom: 3rem;
}
.property-rules__title {
  font-size: 0.9rem;
  font-weight: 650;
  margin-bottom: 1rem;
}
.property-rules__times {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 2rem;
}
.property-rules__layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.property-rules__list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.property-rules__item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

@media screen and (max-width: 480px) {
  .property-rules__times {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .property-rules__title {
    margin-bottom: 1rem;
  }
  .property-rules__layout {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
  }
  .property-rules__item {
    font-size: 0.85rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}
.property-cancellation-policy__list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.property-cancellation-policy__item {
  display: flex;
  flex-direction: column;
  row-gap: 0.3rem;
}
.property-cancellation-policy__date {
  font-size: 0.9rem;
  font-weight: 500;
}
.property-cancellation-policy__description {
  color: #777;
  font-size: 0.9rem;
}

@media screen and (max-width: 480px) {
  .property-cancellation-policy__date {
    font-size: 0.85rem;
  }
  .property-cancellation-policy__description {
    font-size: 0.8rem;
  }
}
.property-map {
  margin-bottom: 3rem;
}
.property-map__description {
  color: #777;
  font-size: 0.9rem;
}
.property-map #map {
  height: 325px;
  width: 100%;
}
.property-map__button {
  margin-top: 1rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

@media screen and (max-width: 480px) {
  .property-map__description {
    font-size: 0.85rem;
  }
  .property-map #map {
    height: 250px;
  }
}
.property-rate {
  margin-bottom: 3rem;
}
.property-rate__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.property-rate__item {
  border: 1px solid var(--border-color);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}
.property-rate__title {
  font-size: 0.9rem;
}
.property-rate__value {
  font-weight: 600;
  font-size: 0.85rem;
}

@media screen and (max-width: 480px) {
  .property-rate__list {
    overflow-x: auto;
    grid-template-columns: repeat(5, 40%);
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .property-rate__item {
    padding: 0.75rem;
  }
  .property-rate__title {
    font-size: 0.825rem;
  }
}
.property-comments__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

@media screen and (max-width: 480px) {
  .property-comments__list {
    row-gap: 1rem;
  }
}
.slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.slider__list {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
  cursor: grab;
}
.slider__list.slider_list--grabbing {
  cursor: grabbing;
  transition: none;
}
.slider__item {
  min-width: 100%;
  height: 100%;
}
.slider__image {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  aspect-ratio: 16/9;
  background-color: #ffffff;
}
.slider__controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.slider__button {
  display: flex;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.3rem;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s;
}
.slider__button.slider__button--prev {
  right: 1rem;
}
.slider__button.slider__button--next {
  left: 1rem;
}
.slider__button.slider__button--next .icon {
  transform: rotate(180deg);
}
.slider__button:hover {
  background-color: rgba(255, 255, 255, 0.75);
}
.slider__dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider__dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.3s, height 0.3s;
}
.slider__dot.slider__dot--active {
  background-color: #ffffff;
  width: 0.75rem;
  height: 0.75rem;
}

.tab__content {
  position: relative;
  width: 100%;
}
.tab__pane {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  width: 100%;
}
.tab__pane--active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1010;
  transition: opacity 0.2s linear;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.modal__dialog {
  position: relative;
  max-width: 90%;
  background-color: #fff;
  margin-top: -5rem;
  transition: margin-top 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.modal .modal__close {
  display: flex;
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem;
  cursor: pointer;
  background-color: var(--color-secondary);
}
.modal .modal__body {
  padding: 1rem;
}

.property-card {
  border: 1px solid var(--border-color);
}
.property-card__figure {
  position: relative;
  display: flex;
  margin: 0;
  padding: 0;
}
.property-card__image {
  aspect-ratio: 16/9;
  height: 100%;
}
.property-card__location {
  position: absolute;
  top: 0.75rem;
  right: 0;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.65);
  border-radius: 0.3rem 0 0 0.3rem;
  padding: 0.25rem 0.75rem;
}
.property-card__toolbar {
  position: absolute;
  top: 0.75rem;
  left: 0;
  color: #ffffff;
  padding: 0 0.75rem;
}
.property-card__play {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 60px;
  height: 60px;
  opacity: 0.6;
  transform: translate(30px, -30px);
}
.property-card__body {
  padding: 1rem;
}
.property-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.property-card__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.property-card__info-item {
  text-align: center;
  border-left: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: #666666;
  line-height: 2;
}
.property-card__info-item:last-child {
  border-left: 0;
}
.property-card__price {
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}
.product-card__title {
  font-size: 0.9rem;
  font-weight: 500;
}
.product-card__unit {
  font-size: 0.65rem;
  font-weight: 500;
  color: #777;
}
.product-card__price {
  font-size: 0.7rem;
  font-weight: 500;
  color: #777;
}
.product-card__counter {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.2rem;
       column-gap: 0.2rem;
  min-height: 1.5rem;
  border: 1px solid var(--border-color);
  line-height: 1;
}
.product-card__counter-button {
  padding: 0;
  height: 1.5rem;
  width: 1.25rem;
  background-color: inherit;
  border: none;
}
.product-card__counter-value {
  font-size: 0.8rem;
  min-width: 1.5rem;
  text-align: center;
  padding-top: 2px;
  line-height: 1;
}

.comment-card {
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-color);
}
.comment-card__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.comment-card__column {
  display: flex;
}
.comment-card__column.comment-card__column--start {
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.comment-card__column.comment-card__column--end {
  flex-direction: column;
  justify-content: center;
  row-gap: 0.5rem;
}
.comment-card__image {
  width: 45px;
  height: 45px;
  border-radius: 10rem;
}
.comment-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.comment-card__duration {
  color: #777;
  font-size: 0.8rem;
  font-weight: 500;
}
.comment-card__rate {
  display: flex;
  justify-content: end;
  align-items: start;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.comment-card__icon {
  width: 16px;
  height: 16px;
}
.comment-card__date {
  text-align: left;
  font-size: 0.8rem;
  color: #777;
  font-weight: 500;
}
.comment-card__body {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}
.comment-card__content {
  font-size: 0.85rem;
  font-weight: 500;
  color: #444;
  line-height: 1.8;
}
.comment-card.comment-card--answer {
  background-color: #fafafa;
  border: 0;
  margin-right: 50px;
}
.comment-card.comment-card--answer .comment-card__name {
  margin-bottom: 0;
}

@media screen and (max-width: 480px) {
  .comment-card {
    padding: 0.75rem 1rem;
  }
  .comment-card__column.comment-card__column--start {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .comment-card__column.comment-card__column--end {
    row-gap: 0.25rem;
  }
  .comment-card__image {
    width: 35px;
    height: 35px;
  }
  .comment-card__name {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }
  .comment-card__duration {
    font-size: 0.75rem;
  }
  .comment-card__date {
    font-size: 0.75rem;
  }
  .comment-card__rate {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }
  .comment-card__content {
    font-size: 0.8rem;
  }
  .comment-card.comment-card--answer {
    margin-right: 0;
  }
}
.city-card__body {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.city-card__title {
  font-size: 1rem;
  font-weight: 500;
}
.city-card__subtitle {
  color: #777777;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.map-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-color);
  padding: 1rem;
}
.map-card__image {
  aspect-ratio: 1/1;
  width: 100%;
  margin-bottom: 0.5rem;
}
.map-card__title {
  font-size: 0.85rem;
  font-weight: 500;
}

.time-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-color);
  row-gap: 1rem;
  padding: 1rem 2rem;
}
.time-card__title {
  font-size: 0.9rem;
}
.time-card__value {
  color: #777;
  font-size: 0.9rem;
}

@media screen and (max-width: 480px) {
  .time-card {
    padding: 0.75rem 1.25rem;
  }
}
.modal.modal--property-guarantee .modal__dialog {
  position: relative;
  width: 700px;
}
.modal.modal--property-guarantee .modal__body {
  padding: 3rem;
}
.modal.modal--property-guarantee .modal__close {
  display: flex;
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem;
  cursor: pointer;
  background-color: var(--color-secondary);
}

.our-address-modal .modal__dialog {
  width: 500px;
}
.our-address-modal .modal__title {
  margin-top: 0.6rem;
  font-weight: 500;
}
.our-address-modal__list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.property-archive-page__header {
  padding: 1rem 0 0.5rem 0;
}
.property-archive-page__title {
  font-size: 1.5rem;
}
.property-archive-page__subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
}
.property-archive-page__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.property-archive-page__more {
  text-align: center;
  padding: 2rem 0 4rem;
}
.property-archive-page__more .button {
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
}

.property-landing-page__hero {
  display: flex;
  background-image: url("../images/villa.jpg");
  background-size: cover;
  height: 300px;
}
.property-landing-page__header {
  padding: 1rem 0 0.5rem 0;
}
.property-landing-page__title {
  font-size: 1.5rem;
}
.property-landing-page__subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
}

.property-categories {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: start;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  padding: 3rem 0;
}
.property-categories__item {
  border: 1px solid var(--border-color);
  text-align: center;
  padding: 1rem;
  color: #777777;
}
.property-categories__title {
  margin-top: 0.5rem;
}

@media screen and (max-width: 480px) {
  .property-categories {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
    row-gap: 0.75rem;
  }
}

.property-single-page {
  padding: 3rem 0 5rem;
}
.property-single-page__layout {
  display: grid;
  grid-template-columns: 1fr 430px;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.property-single-page__sidebar {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.property-single-page__tab-nav {
  display: flex;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.property-single-page__tab-button {
  border: 1px solid var(--border-color);
  padding: 0.4rem 1.25rem;
  font-size: 0.95rem;
  cursor: pointer;
  color: #666666;
}
.property-single-page__tab-button.tab__button--active {
  border-color: #999999;
  color: #444444;
}
.property-single-page__media {
  /* max-height: 518px; */
}
.property-single-page__video {
  width: 100%;
  aspect-ratio: 16/9;
}
.property-single-page__titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
}
.property-single-page__title {
  font-size: 1.2rem;
  font-weight: 600;
}
.property-single-page__rating {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  cursor: pointer;
}
.property-single-page__rating-score {
  font-size: 0.9rem;
  font-weight: 600;
}
.property-single-page__rating-count {
  color: #777;
  font-size: 0.8rem;
}
.property-single-page__h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 480px) {
  .property-single-page {
    padding: 2rem 0 3rem;
  }
  .property-single-page__layout {
    display: grid;
    grid-template-columns: 100%;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .property-single-page__sidebar {
    row-gap: 1.5rem;
    margin-top: 2rem;
  }
  .property-single-page__tab-button {
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
  }
  .property-single-page__media {
    height: auto;
  }
  .property-single-page__titlebar {
    flex-direction: column;
    align-items: start;
    row-gap: 1rem;
  }
  .property-single-page__title {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  .property-single-page__h2 {
    font-size: 1rem;
  }
}
/* Mobile footer phones button + sheet */
@media screen and (max-width: 480px) {
  body { padding-bottom: 52px; }
    .mobile-footer-phones-btn {
      position: fixed;
      right: 0;
      left: 0;
      bottom: 0;
      height: 48px;
    display: grid;
    grid-template-columns: 44px 1fr auto; /* fixed width for right icon column to avoid hugging edge */
    align-items: center;
    justify-content: center;
    background-color: #131b1f;
    color: #ffffff;
    border: none;
    font-size: 0.9rem;
      z-index: 100;
    box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.08);
    padding-inline-start: 8px; /* space from right edge in RTL */
  }
  .mobile-footer-phones-btn .icon { color: #ffffff; fill: currentColor; }
  .mobile-footer-phones-btn .icon use { fill: currentColor; }
  .mobile-footer-phones-btn__icon-right { width: 30px; height: 30px; justify-self: end; }
  .mobile-footer-phones-btn__icon-left { width: 28px; height: 28px; color:#fff; fill: currentColor; margin: auto; }
  .mobile-footer-phones-btn__title { text-align: center; font-weight: 600; }
  .mobile-footer-phones-btn__icon-left-box {
    fill: #fff;
    align-items: center;
    background: #44494c;
    border-radius: 4px;
    display: flex;
    height: 44px;
    justify-content: space-between;
    margin-left: 8px; /* space from left edge */
    padding: 10px;
    width: 44px;
    justify-self: end;
    position: relative;
  }
  .mobile-footer-phones-btn__icon-left-box::after { content: none; }
    .mobile-footer-phones-sheet {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 48px; /* attached above the button */
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.12);
      z-index: 90;
    transform: translateY(110%);
    transition: transform 0.25s ease;
  }
  .mobile-footer-phones-sheet.active {
    transform: translateY(0);
  }
  .mobile-footer-phones-sheet__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1rem 0.75rem; /* extra top space for handle */
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
  }
  .mobile-footer-phones-sheet__titles { display: flex; flex-direction: column; row-gap: 0.25rem; }
  .mobile-footer-phones-sheet__title { font-size: 0.95rem; font-weight: 700; color: #222; }
  .mobile-footer-phones-sheet__subtitle { font-size: 0.8rem; font-weight: 500; color: #6b7280; }
  .mobile-footer-phones-sheet__header::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 4px;
    background-color: #cfd4d9;
    border-radius: 6px;
  }
  .mobile-footer-phones-sheet__close {
    background-color: inherit;
    border: 0;
    padding: 0.25rem;
    cursor: pointer;
  }
  .mobile-footer-phones-sheet__close .icon {
    width: 20px;
    height: 20px;
    color: #424242;
  }
  .mobile-footer-phones-sheet__body {
    padding: 0.75rem 1rem;
  }
  /* Tabs */
  .mobile-footer-phones-tabs { margin: 0 2px; }
  .mobile-footer-phones-tabs__nav { display: flex; gap: 8px; margin-bottom: 10px; }
  .mobile-footer-phones-tab-button {
    flex: 1;
    border: 1px solid var(--border-color);
    background: #fff;
    color: #1f2937;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 0.85rem;
    font-weight: 600;
  }
  .mobile-footer-phones-tab-button.tab-active { border-color: #cfd4d9; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
  .mobile-footer-phones-tabs__content { width: 100%; }
  .mobile-footer-phones-tab-pane { display: none; }
  .mobile-footer-phones-tab-pane.tab-pane-active { display: block; }
  .mobile-footer-phones-sheet__body .footer-contact__phone-list {
    width: 100%;
  }
  .mobile-footer-phones-sheet__body .footer-contact__phone-item {
    border-left: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .mobile-footer-phones-sheet__body .footer-contact__phone-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
  }
  /* Card container */
  .mobile-footer-phones-card {
    background: #fbfbff;
    border: 1px solid #eef0f4;
    border-radius: 12px;
    padding: 12px;
    margin: 12px 6px 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  }
  .mobile-footer-phones-list {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
  }
  .mobile-footer-phones-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 10px;
    padding: 10px 12px;
  }
  .mobile-footer-phones-name {
    flex: 1;
    font-size: 0.8rem;
    color: #6b7280;
    text-align: center;
    padding: 0 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mobile-footer-phones-number {
    background: transparent;
    border: none;
    color: #1f2937;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
  }
  .mobile-footer-phones-number.copied::after {
    content: 'کپی شد';
    position: absolute;
    top: -8px;
    left: -6px;
    transform: translateY(-100%);
    background: #10b981;
    color: #fff;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(16,185,129,0.25);
  }
  .mobile-footer-phones-call {
    background: #131b1f;
    color: #fff;
    border-radius: 10px;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
  }
  /* Contact card */
  .mobile-footer-contacts { display: flex; flex-direction: column; row-gap: 8px; }
  .mobile-footer-contacts__row {
    display: flex; align-items: center; gap: 10px;
    background: #fff; border: 1px solid #eef0f4; border-radius: 10px; padding: 10px 12px;
  }
  .mobile-footer-contacts__row .icon { width: 20px; height: 20px; color: #6b7280; }
  .mobile-footer-contacts__text { font-size: 0.9rem; color: #374151; }
  .mobile-footer-contacts__link { color: #2563eb; font-weight: 600; font-size: 0.9rem; }
  /* Socials */
  .mobile-footer-socials { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .mobile-footer-social { display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid #eef0f4; border-radius: 12px; height: 56px; }
  .mobile-footer-social .icon { width: 24px; height: 24px; }
  .mobile-footer-social--instagram .icon { color: #E1306C; }
  .mobile-footer-social--telegram .icon { color: #229ED9; }
  .mobile-footer-social--whatsapp .icon { color: #25D366; }
  .mobile-footer-social--youtube .icon { color: #FF0000; }
}
@media screen and (min-width: 481px) {
  .mobile-footer-phones-btn,
  .mobile-footer-phones-sheet {
    display: none !important;
  }
}
/* Slider: hide location nav on mobile */
@media screen and (max-width: 480px) {
  .location-prev-slide,
  .location-next-slide { display: none !important; }
}

/* View-all button style */
.view-all-button,
.flex.justify-end.items-end.gap-x-2 > a > .flex.justify-center.items-center.text-sm.font-medium.border.border-zinc-200.h-8.p-2.cursor-pointer,
.flex.justify-end.items-end.gap-x-2 > .flex.justify-center.items-center.text-sm.font-medium.border.border-zinc-200.h-8.p-2.cursor-pointer {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: .5rem;
  color: #0e1011;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 8.67px 10px;
}

/* Landing page titles and subtitles */
.property-landing-page h2 {
  color: #213743 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}
.property-landing-page .text-sm.text-gray-500 {
  color: #213743 !important;
  font-size: 12px !important;
  font-weight: 300 !important;
}

/*# sourceMappingURL=main.css.map */
