@charset "UTF-8";
.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal.active .modal-overlay {
  opacity: 1;
}
.modal.active .modal-content {
  opacity: 1;
  transform: scale(1);
}
.modal .gform_previous_button {
  margin-right: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-content {
  position: relative;
  width: min(1120px, 100%);
  height: calc(100vh - 48px);
  height: calc(100dvh - 48px);
  max-height: 768px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  background: #ffffff;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal-layout {
  display: grid;
  grid-template-columns: 500px 1fr;
  height: 100%;
  min-height: 0;
}

.modal-media {
  margin: 0;
  background: #ffffff;
}
.modal-media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.modal-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  background: #ffffff;
  overflow: hidden;
}

.modal-header {
  flex-shrink: 0;
  min-height: 86px;
  padding: 24px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.modal-title {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #111111;
}

.modal-close {
  width: 28px;
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  flex: 0 0 28px;
}
.modal-close img {
  width: 100%;
}

.modal-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 40px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.modal-redirect-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.97);
  padding: 24px;
  text-align: center;
}

.modal-redirect-overlay__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 8px;
}

.modal-redirect-overlay__title {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.modal-redirect-overlay__desc {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #322f30;
}
.modal-redirect-overlay__desc a {
  color: #322f30;
  text-decoration: underline;
}

.modal-error {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: #ae0f0a;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 24px;
}

.modal-error__close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: #322f30;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}
.modal-error__close:hover {
  color: #ae0f0a;
}

.modal-error__waitlist-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.modal-error__waitlist-desc {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #322f30;
}

.modal-footer {
  flex-shrink: 0;
  height: 96px;
  padding: 24px;
  border-top: 1px solid rgba(50, 47, 48, 0.1490196078);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: #ffffff;
}
.modal-footer .modal-footer-actions {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.modal-form > *:last-child {
  margin-bottom: 0;
}

.modal-field,
.modal-fieldset,
.modal-note,
.modal-range-field {
  margin-bottom: 32px;
}

.modal-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.modal-fieldset {
  border: 0;
  padding: 0;
}
.modal-fieldset legend {
  margin-bottom: 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #322f30;
}

.modal-label {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #322f30;
}

.modal-required {
  color: #322f30;
}

.modal-input,
.modal-phone-field {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(50, 47, 48, 0.2509803922);
  border-radius: 10px;
  padding: 12px 16px;
  background: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #322f30;
}
.modal-input::-moz-placeholder, .modal-phone-field::-moz-placeholder {
  color: #767676;
}
.modal-input::placeholder,
.modal-phone-field::placeholder {
  color: #767676;
}
.modal-input:focus,
.modal-phone-field:focus {
  border-color: #066c6f;
  outline: 0;
}

.modal-select {
  position: relative;
}

.modal-select-trigger {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(50, 47, 48, 0.2509803922);
  border-radius: 10px;
  padding: 12px 16px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.modal-select-trigger:focus {
  border-color: #066c6f;
  outline: 0;
}
.modal-select-trigger img {
  width: 14px;
  flex: 0 0 14px;
  transition: transform 0.2s ease;
}

.modal-select-value {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #767676;
}
.modal-select-value.is-selected {
  color: #322f30;
}

.modal-select-menu {
  margin: 0;
  padding: 16px;
  list-style: none;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1490196078);
  max-height: 324px;
  overflow: auto;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10010;
}
.modal-select-menu li + li {
  margin-top: 8px;
}
.modal-select-menu::-webkit-scrollbar {
  width: 6px;
}
.modal-select-menu::-webkit-scrollbar-track {
  background: transparent;
}
.modal-select-menu::-webkit-scrollbar-thumb {
  background: #b9b9b9;
  border-radius: 999px;
}

.modal-select-option {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 8px;
  padding: 8px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #322f30;
  transition: background 0.2s ease;
  display: flex;
}
.modal-select-option:hover, .modal-select-option.is-selected {
  background: #f7f6f5;
}

.js-modal-select.is-open .modal-select-trigger {
  border-color: #322f30;
}
.js-modal-select.is-open .modal-select-trigger img {
  transform: rotate(180deg);
}

.js-modal-select.is-open .modal-select-menu {
  display: block;
}

.modal-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.modal-option-card {
  display: block;
  cursor: pointer;
}
.modal-option-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.modal-option-card-inner {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 14px;
  border-radius: 10px;
  background: #f7f6f5;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.modal-option-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.modal-option-title {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #066c6f;
}

.modal-option-description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #066c6f;
}

.modal-option-check {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 1px solid #c7c7c7;
  border-radius: 2px;
  background: #ffffff;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.modal-option-card input:checked + .modal-option-card-inner {
  background: #cdf4f9;
  border: 2px solid #066c6f;
}

.modal-option-card input:checked + .modal-option-card-inner .modal-option-check {
  border-color: #066c6f;
  background: #066c6f;
}

.modal-option-card input:checked + .modal-option-card-inner .modal-option-check::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.modal-inline-check,
.modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.modal-inline-check input,
.modal-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.modal-inline-check {
  margin-top: 16px;
}

.modal-inline-check-box,
.modal-consent-box {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border: 1px solid #c7c7c7;
  border-radius: 2px;
  background: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.modal-inline-check-label,
.modal-consent > span {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #322f30;
}

.modal-inline-check input:checked + .modal-inline-check-box,
.modal-consent input:checked + .modal-consent-box {
  border-color: #066c6f;
  background: #066c6f;
}

.modal-inline-check input:checked + .modal-inline-check-box::after,
.modal-consent input:checked + .modal-consent-box::after {
  content: "";
  position: relative;
  top: 2px;
  left: 5px;
  display: block;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.modal-consent + .modal-consent {
  margin-top: 20px;
}

.modal-consent a {
  color: #c80b0f;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.modal-phone-input {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
  border: 1px solid rgba(50, 47, 48, 0.2509803922);
  border-radius: 10px;
  padding: 12px 16px;
  background: #ffffff;
}
.modal-phone-input:focus-within {
  border-color: #066c6f;
}
.modal-phone-input .modal-phone-field {
  border: 0;
  background: transparent;
  height: auto;
  padding: 0;
}
.modal-phone-input .modal-phone-field:focus {
  outline: 0;
}

.modal-country-select {
  position: relative;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #e6e6e6;
  flex: 0 0 auto;
}

.modal-country-trigger {
  border: 0;
  background: transparent;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.modal-country-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.modal-country-flag {
  width: 18px;
  height: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
  flex: 0 0 18px;
}

.modal-country-code {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #322f30;
  line-height: 1;
}

.modal-country-chevron {
  width: 12px;
  flex: 0 0 12px;
  transition: transform 0.2s ease;
}

.modal-country-menu {
  margin: 0;
  padding: 16px;
  list-style: none;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1490196078);
  max-height: 324px;
  overflow: auto;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10010;
}
.modal-country-menu li + li {
  margin-top: 4px;
}
.modal-country-menu::-webkit-scrollbar {
  width: 6px;
}
.modal-country-menu::-webkit-scrollbar-track {
  background: transparent;
}
.modal-country-menu::-webkit-scrollbar-thumb {
  background: #b9b9b9;
  border-radius: 999px;
}

.modal-country-option {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  padding: 8px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #322f30;
}
.modal-country-option img {
  width: 18px;
  height: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
  flex: 0 0 18px;
}
.modal-country-option small {
  color: #767676;
  margin-left: 4px;
  font-size: 12px;
}
.modal-country-option:hover, .modal-country-option.is-selected {
  background: #ececec;
}

.modal-phone-input.is-country-open .modal-country-chevron,
.modal-country-select.is-open .modal-country-chevron {
  transform: rotate(180deg);
}

.modal-phone-input.is-country-open .modal-country-menu {
  display: block;
}

.modal-range-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-range-field input[type=range] {
  --range-progress: 0%;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(to right, #c80b0f 0%, #c80b0f var(--range-progress), #d8d8d8 var(--range-progress), #d8d8d8 100%);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
}
.modal-range-field input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: transparent;
}
.modal-range-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 10px;
  height: 10px;
  margin-top: -3px;
  border-radius: 999px;
  border: 0;
  background: #d00c13;
  cursor: pointer;
}
.modal-range-field input[type=range]::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: #d00c13;
  cursor: pointer;
}
.modal-range-field input[type=range]::-moz-range-track {
  height: 4px;
  border-radius: 999px;
  background: #d8d8d8;
}
.modal-range-field input[type=range]::-moz-range-progress {
  height: 4px;
  border-radius: 999px;
  background: #d00c13;
}

.modal-range-labels {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.modal-range-labels span {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #322f30;
}

.modal-note h4,
.modal-charges h4 {
  margin: 0 0 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #111111;
}

.modal-note ul {
  margin: 0;
  padding-left: 20px;
}

.modal-note li,
.modal-charges p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #322f30;
}

.modal-room-section legend {
  margin-bottom: 10px;
}

.modal-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.modal-room-card {
  display: block;
  cursor: pointer;
}
.modal-room-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.modal-room-card-inner {
  padding: 10px;
  border-radius: 10px;
  background: #f7f6f5;
  display: flex;
  gap: 10px;
  align-items: start;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.modal-room-image {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-room-details {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: -webkit-fill-available;
}

.modal-room-name {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -1%;
  color: #322f30;
}

.modal-room-price {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: -1%;
  color: #322f30;
  margin-top: auto;
}

.modal-room-extra {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: -1%;
  color: #322f30;
}

.modal-room-info-wrap {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  margin-left: auto;
  position: relative;
  flex: 0 0 18px;
}
.modal-room-info-wrap .property-tooltip {
  bottom: auto;
  top: calc(100% + 8px);
}
.modal-room-info-wrap .property-tooltip::after {
  bottom: auto;
  top: -6px;
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}

.modal-room-info {
  width: 100%;
  height: 100%;
  opacity: 0.9;
  position: absolute;
  inset: 0;
}

.modal-room-info--active {
  display: none;
}

.modal-room-card input:checked + .modal-room-card-inner {
  background: #cdf4f9;
  border: 2px solid #066c6f;
}

.modal-room-card input:checked + .modal-room-card-inner .modal-room-name,
.modal-room-card input:checked + .modal-room-card-inner .modal-room-price,
.modal-room-card input:checked + .modal-room-card-inner .modal-room-extra {
  color: #066c6f;
}

.modal-room-card input:checked + .modal-room-card-inner .modal-room-info--dark {
  display: none;
}

.modal-room-card input:checked + .modal-room-card-inner .modal-room-info--active {
  display: block;
}

.modal-charges {
  margin-bottom: 24px;
}
.modal-charges h4 {
  margin: 0 0 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -2%;
  color: #111111;
}
.modal-charges p {
  margin: 0 0 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -2%;
  color: #322f30;
}

.modal-charges-box {
  border: 1px solid #c8c8c8;
  border-radius: 16px;
  background: #ffffff;
  padding: 16px;
}

.modal-charges-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.modal-charges-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.modal-charges-list li:not(.modal-charges-list li:last-child) {
  margin-bottom: 8px;
}

.modal-charge-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.modal-charge-left span {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -1%;
  color: #322f30;
}

.modal-charge-icon {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.modal-charge-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-charge-icon.is-energy {
  background: #fde7e4;
}
.modal-charge-icon.is-service {
  background: #f3e4ff;
}
.modal-charge-icon.is-internet {
  background: #ddf3f9;
}
.modal-charge-icon.is-laundry {
  background: #dff7e7;
}
.modal-charge-icon.is-furniture {
  background: #fde8e4;
}

.modal-charge-amount {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #322f30;
  white-space: nowrap;
}

.modal-charges-total {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid #d2d2d2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-charges-total span {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #322f30;
}
.modal-charges-total strong {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #111111;
}

.modal-submit {
  border: 0;
  border-radius: 8px;
  height: 48px;
  padding: 12px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #ffffff;
  background: #c80b0f;
  cursor: pointer;
  transition: background 0.2s ease;
}
.modal-submit:hover {
  background: #bb0912;
}
.modal-submit .gform_wrapper.gravity-theme .gform_footer input.button:disabled, .modal-submit:disabled, .modal-submit[aria-disabled=true], .modal-submit.is-disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
}

.modal-field--dependent,
.modal-fieldset--dependent {
  transition: opacity 0.2s ease;
}

.modal-field--dependent.is-disabled,
.modal-fieldset--dependent.is-disabled {
  opacity: 0.6;
}

.modal-option-grid--property {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.modal-option-card--property {
  display: block;
  cursor: pointer;
}
.modal-option-card--property[hidden] {
  display: none !important;
}
.modal-option-card--property input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.modal-option-card-inner--property {
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f4f3f2;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.modal-option-heading--property {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.modal-option-title--property {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #111111;
}

.modal-option-description--property {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #322f30;
}

.modal-option-info-wrap {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  position: relative;
  cursor: pointer;
}

.property-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 12px);
  right: -12px;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 20px;
  z-index: 100;
  cursor: default;
}
.property-tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}
.property-tooltip__price {
  font-size: 16px;
  font-weight: 600;
  color: #322f30;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
}
.property-tooltip__section {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
}
.property-tooltip__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.property-tooltip__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #8a8a8a;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.property-tooltip__amenities {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.property-tooltip__amenities li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #322f30;
}
.property-tooltip__amenities li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: black;
}
.property-tooltip__nearby {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.property-tooltip__nearby li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #322f30;
}
.property-tooltip__nearby li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.property-tooltip__nearby li strong {
  color: #8a8a8a;
  font-weight: 400;
}

.js-property-tooltip-trigger:hover .property-tooltip,
.js-property-tooltip-trigger:focus-within .property-tooltip {
  display: block;
}

.modal-option-info {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  inset: 0;
}

.modal-option-info--active {
  display: none;
}

.modal-option-card--property input:checked + .modal-option-card-inner--property {
  border: 1.5px solid #066c6f;
  background: #e4fcff;
}

.modal-option-card--property input:checked + .modal-option-card-inner--property .modal-option-title--property,
.modal-option-card--property input:checked + .modal-option-card-inner--property .modal-option-description--property,
.modal-option-card--property input:checked + .modal-option-card-inner--property .modal-option-info-wrap {
  color: #066c6f;
  border-color: #066c6f;
}

.modal-option-card--property input:checked + .modal-option-card-inner--property .modal-option-info--default {
  display: none;
}

.modal-option-card--property input:checked + .modal-option-card-inner--property .modal-option-info--active {
  display: block;
}

.modal-helper-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #322f30;
  opacity: 0.75;
}

.modal-helper-text--hint {
  margin-top: 16px;
}

.modal .gform_wrapper {
  margin: 0 !important;
}
.modal .gform_fields {
  row-gap: 24px !important;
}
.modal .gfield_label {
  font-family: "DM Sans", sans-serif !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  line-height: 150% !important;
  letter-spacing: -0.02em !important;
  color: #322f30 !important;
  margin-bottom: 8px !important;
}
.modal .gform-field-label.gform-field-label--type-inline {
  margin-left: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px !important;
  line-height: 140%;
  letter-spacing: -0.01em;
  color: #322f30;
}
.modal .gfield_required {
  color: #322f30 !important;
}
.modal .gfield input[type=text],
.modal .gfield input[type=email],
.modal .gfield input[type=tel],
.modal .gfield input[type=number],
.modal .gfield input[type=url],
.modal .gfield input[type=password],
.modal .gfield select,
.modal .gfield textarea {
  width: 100% !important;
  min-height: 48px !important;
  border: 1px solid rgba(50, 47, 48, 0.2509803922) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
  background: #ffffff !important;
  font-family: "DM Sans", sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 140% !important;
  letter-spacing: -0.01em !important;
  color: #322f30 !important;
}
.modal .gfield input:focus,
.modal .gfield select:focus,
.modal .gfield textarea:focus {
  border-color: #066c6f !important;
  outline: 0 !important;
}
.modal .gfield_required {
  display: none !important;
}

.modal--yardi-selection .modal-layout {
  grid-template-columns: 500px minmax(0, 1fr);
}
.modal--yardi-selection .modal-media {
  background: #ffffff;
}
.modal--yardi-selection .modal-media img {
  border-radius: 16px 0 0 16px;
  -o-object-position: center;
     object-position: center;
}

.modal-form--yardi-selection {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.modal-selected-room {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.modal-selected-room__media {
  margin: 0;
  width: 200px;
  height: 200px;
  flex: 0 0 200px;
  border-radius: 8px;
  overflow: hidden;
}
.modal-selected-room__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal-selected-room__content {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.modal-selected-room__title {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #322f30;
}

.modal-selected-room__meta {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.modal-selected-room__meta li {
  position: relative;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 115%;
  letter-spacing: -0.02em;
  color: #322f30;
  white-space: nowrap;
}
.modal-selected-room__meta li sup {
  font-size: 0.65em;
  line-height: 0;
}
.modal-selected-room__meta li + li {
  padding-left: 14px;
  margin-left: 10px;
}
.modal-selected-room__meta li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(50, 47, 48, 0.45);
  transform: translateY(-50%);
}

.modal-selected-room__amenities-wrap {
  margin-top: 16px;
}

.modal-selected-room__eyebrow {
  margin: 0 0 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: rgba(50, 47, 48, 0.65);
}

.modal-selected-room__amenities {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.modal-selected-room__amenity {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 24px;
}
.modal-selected-room__amenity img, .modal-selected-room__amenity svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: block;
}
.modal-selected-room__amenity span {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.03em;
  color: #322f30;
  white-space: nowrap;
}

.modal-selected-room__price {
  margin: auto 0 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.modal-selected-room__price strong,
.modal-selected-room__price span {
  color: #111111;
  letter-spacing: -0.02em;
}
.modal-selected-room__price strong {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 125%;
}
.modal-selected-room__price span {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 125%;
}

.modal-room-selection {
  padding-top: 20px;
  padding-bottom: 40px;
}

.modal-room-selection__title,
.modal-room-selection__list {
  width: min(540px, 100%);
}

.modal-room-selection__headings {
  width: min(540px, 100%);
  display: grid;
  grid-template-columns: minmax(60px, 0.8fr) minmax(72px, 0.9fr) minmax(100px, 1.2fr) minmax(84px, 0.85fr) auto 24px;
  align-items: center;
  gap: 18px;
  margin: 0 0 8px;
  padding: 0 16px;
}

.modal-room-selection__heading {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: rgba(50, 47, 48, 0.72);
  white-space: nowrap;
}

.modal-room-selection__heading--link,
.modal-room-selection__heading--indicator {
  visibility: hidden;
}

.modal-room-selection__title {
  margin: 0 0 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #322f30;
}

.modal-room-selection__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-room-option {
  display: block;
  cursor: pointer;
  position: relative;
}
.modal-room-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  top: 0;
  left: 0;
}

.modal-room-option__card {
  width: 100%;
  min-height: 64px;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #f7f6f5;
  display: grid;
  grid-template-columns: minmax(60px, 0.7fr) minmax(72px, 0.6fr) minmax(100px, 0.8fr) minmax(84px, 1fr) auto 0;
  align-items: center;
  gap: 5px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.modal-room-option:hover .modal-room-option__card {
  border-color: rgba(8, 135, 139, 0.35);
}

.modal-room-option__detail {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.modal-room-option__icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #322f30;
}
.modal-room-option__icon img,
.modal-room-option__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.modal-room-option__icon--hash,
.modal-room-option__icon--currency {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
}

.modal-room-option__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #322f30;
  white-space: nowrap;
}
.modal-room-option__text sup {
  font-size: 0.65em;
  line-height: 0;
}

.modal-room-option__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #322f30;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.modal-room-option__indicator {
  width: 24px;
  height: 24px;
  justify-self: end;
  border: 1px solid rgba(50, 47, 48, 0.2);
  border-radius: 50%;
  position: relative;
  background: #ffffff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.modal-room-option input:checked + .modal-room-option__card {
  border-color: #08878b;
  background: #e4fcff;
}

.modal-room-option input:checked + .modal-room-option__card .modal-room-option__indicator {
  border-color: #08878b;
}

.modal-room-option input:checked + .modal-room-option__card .modal-room-option__indicator::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #08878b;
}

@media (max-width: 1024px) {
  .modal-layout {
    grid-template-columns: 0.7fr 1fr !important;
  }
  .modal--yardi-selection .modal-layout {
    grid-template-columns: 440px minmax(0, 1fr) !important;
  }
  .modal-room-option__card {
    gap: 12px;
    grid-template-columns: minmax(54px, 0.75fr) minmax(68px, 0.85fr) minmax(92px, 1fr) minmax(78px, 0.8fr) auto 24px;
  }
  .modal-room-selection__headings {
    gap: 12px;
    grid-template-columns: minmax(54px, 0.75fr) minmax(68px, 0.85fr) minmax(92px, 1fr) minmax(78px, 0.8fr) auto 24px;
  }
}
@media (max-width: 920px) {
  .modal {
    padding: 12px !important;
  }
  .modal-content {
    height: calc(100vh - 24px) !important;
    height: calc(100dvh - 24px) !important;
    max-height: calc(100vh - 24px) !important;
    max-height: calc(100dvh - 24px) !important;
  }
  .modal-layout {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 0 !important;
  }
  .modal-media {
    flex: 0 0 auto !important;
    max-height: 320px !important;
    height: auto !important;
  }
  .modal-media img {
    -o-object-position: center !important;
       object-position: center !important;
    border-radius: 0 16px 16px !important;
  }
  .modal-panel {
    flex: 1 1 auto !important;
    min-height: 0 !important;
  }
  .modal-header {
    min-height: 72px !important;
    padding: 16px 18px !important;
  }
  .modal-body {
    padding: 16px 18px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .modal-footer {
    height: auto !important;
    padding: 14px 18px 18px !important;
    justify-content: stretch !important;
  }
  .modal-submit {
    width: 100% !important;
  }
  .modal-room-selection__headings {
    display: none;
  }
  .modal-row,
  .modal-option-grid,
  .modal-card-grid,
  .modal-option-grid--property {
    grid-template-columns: 1fr !important;
  }
  .modal-option-card-inner {
    min-height: 112px !important;
  }
  .modal--yardi-selection .modal-media img {
    border-radius: 16px 16px 0 0 !important;
  }
  .modal-form--yardi-selection {
    gap: 24px;
  }
  .modal-selected-room {
    flex-direction: column;
  }
  .modal-selected-room__media {
    width: 100%;
    max-width: 240px;
    height: auto;
    aspect-ratio: 1/1;
    flex-basis: auto;
  }
  .modal-selected-room__price {
    margin-top: 20px;
  }
  .modal-room-selection {
    padding-bottom: 24px;
  }
  .modal-room-option__card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "room size" "date price" "link indicator";
    gap: 12px 16px;
  }
  .modal-room-option__detail--room {
    grid-area: room;
  }
  .modal-room-option__detail--size {
    grid-area: size;
  }
  .modal-room-option__detail--date {
    grid-area: date;
  }
  .modal-room-option__detail--price {
    grid-area: price;
  }
  .modal-room-option__link {
    grid-area: link;
  }
  .modal-room-option__indicator {
    grid-area: indicator;
    align-self: center;
  }
}
@media (max-width: 560px) {
  .modal-title {
    font-size: 24px !important;
  }
  .modal-label,
  .modal-fieldset legend,
  .modal-consent > span,
  .modal-range-labels span,
  .modal-select-value,
  .modal-select-option,
  .modal-input,
  .modal-phone-field,
  .modal-room-name,
  .modal-room-extra,
  .modal-charge-left span,
  .modal-charge-amount,
  .modal-charges p {
    font-size: 14px !important;
  }
  .modal-room-image {
    width: 88px !important;
    height: 80px !important;
  }
  .modal-room-card-inner {
    grid-template-columns: 88px minmax(0, 1fr) 16px !important;
    min-height: 104px !important;
  }
  .modal-room-info {
    width: 16px !important;
    height: 16px !important;
  }
  .modal-selected-room__title,
  .modal-room-selection__title {
    font-size: 14px !important;
  }
  .modal-selected-room__meta,
  .modal-selected-room__amenity span,
  .modal-selected-room__price strong,
  .modal-selected-room__price span,
  .modal-room-option__text,
  .modal-room-option__link {
    font-size: 13px !important;
  }
  .modal-room-option__card {
    padding: 14px;
    gap: 10px 12px;
  }
}
.modal-back {
  margin-right: auto;
}

#user-modal .modal-content {
  max-height: 650px;
}
@media screen and (max-width: 767px) {
  #user-modal .modal-media {
    max-height: 180px !important;
  }
}

@media screen and (max-width: 767px) {
  #find-my-stay-modal .modal-media {
    max-height: 180px !important;
  }
}

.module-carousel-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.module-carousel-nav--hidden {
  display: none;
}

.module-carousel-nav__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  margin: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s ease;
  border: 1px solid #111111;
  background: #ffffff;
}
.module-carousel-nav__btn img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.module-carousel-nav__btn:hover:not(:disabled):not(.module-carousel-nav__btn--disabled) {
  background: #111111;
  border: none;
}
.module-carousel-nav__btn:hover:not(:disabled):not(.module-carousel-nav__btn--disabled) img {
  filter: brightness(0) invert(1);
}
.module-carousel-nav__btn:disabled, .module-carousel-nav__btn.module-carousel-nav__btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.module-carousel-nav__btn:disabled img, .module-carousel-nav__btn.module-carousel-nav__btn--disabled img {
  opacity: 0.55;
  filter: none;
}
.module-carousel-nav__btn:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}
.module-carousel-nav__btn:focus-visible:disabled, .module-carousel-nav__btn:focus-visible.module-carousel-nav__btn--disabled {
  outline-color: rgba(50, 47, 48, 0.35);
}
@media (max-width: 767px) {
  .module-carousel-nav__btn {
    width: 48px;
    height: 48px;
  }
  .module-carousel-nav__btn img {
    width: 14px;
    height: 14px;
  }
}

.locations-section {
  padding: 88px 0;
}
@media (max-width: 767px) {
  .locations-section {
    padding: 76px 0 48px 0;
  }
}

.locations-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 16px;
  margin: 0 0 48px 0;
}
@media (max-width: 767px) {
  .locations-title {
    margin: 0 0 24px 0;
  }
}
.locations-title h2 {
  margin: 0;
}

.locations-list-tab-wrapper {
  padding-left: calc((100vw - 1400px) / 2);
}
@media (max-width: 1550px) {
  .locations-list-tab-wrapper {
    padding-left: calc((100vw - 1200px) / 2);
  }
}
@media (max-width: 1299px) {
  .locations-list-tab-wrapper {
    padding-left: calc((100vw - 1100px) / 2);
  }
}
@media (max-width: 1199px) {
  .locations-list-tab-wrapper {
    padding-left: calc((100vw - 930px) / 2);
  }
}
@media (max-width: 991px) {
  .locations-list-tab-wrapper {
    padding-left: calc((100vw - 715px) / 2);
  }
}
@media (max-width: 767px) {
  .locations-list-tab-wrapper {
    padding: 0 16px;
  }
}

.locations-list-tab-row {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .locations-list-tab-row {
    flex-wrap: wrap;
    margin: 0 -16px 24px 0;
  }
}

.locations-country-list {
  width: 23%;
  height: 100%;
}
@media (max-width: 1550px) {
  .locations-country-list {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .locations-country-list {
    width: 35%;
  }
}
@media (max-width: 767px) {
  .locations-country-list {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .locations-country-list {
    overflow-x: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .locations-country-list::-webkit-scrollbar {
    display: none;
  }
}
.locations-country-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .locations-country-list ul {
    display: flex;
    gap: 16px 24px;
  }
}
.locations-country-list ul li {
  margin: 0 0 40px 0;
  display: block;
}
@media (max-width: 1550px) {
  .locations-country-list ul li {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 1199px) {
  .locations-country-list ul li {
    margin: 0 0 20px 0;
  }
}
@media (max-width: 767px) {
  .locations-country-list ul li {
    margin: 0 0 0 0;
  }
}
.locations-country-list ul li:last-child {
  margin: 0;
}
.locations-country-list ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #322f30;
  opacity: 0.5;
  padding: 0;
  transition: all 0.3s ease;
}
@media (max-width: 1550px) {
  .locations-country-list ul li a {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .locations-country-list ul li a {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .locations-country-list ul li a {
    font-size: 24px;
    white-space: nowrap;
  }
}
.locations-country-list ul li a:hover {
  color: #c80b0f;
  opacity: 1;
}
.locations-country-list ul li a.active-a {
  color: #c80b0f;
  opacity: 1;
  font-weight: 600;
}
.locations-country-list ul li a img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  opacity: 0;
}
@media (max-width: 1550px) {
  .locations-country-list ul li a img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .locations-country-list ul li a img {
    display: none;
  }
}
.locations-country-list ul li a.active-a img {
  opacity: 1;
}

.locations-wrapper {
  width: 77%;
}
@media (max-width: 1550px) {
  .locations-wrapper {
    width: 70%;
  }
}
@media (max-width: 991px) {
  .locations-wrapper {
    width: 65%;
  }
}
@media (max-width: 767px) {
  .locations-wrapper {
    width: 100%;
  }
}

.tab {
  display: none;
}
.tab.tab-active {
  display: block;
}

.locations-block {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 600px;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1550px) {
  .locations-block {
    min-height: 500px;
  }
}
@media (max-width: 1199px) {
  .locations-block {
    min-height: 400px;
  }
}
.locations-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
}
.locations-block .locations-block-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.4s ease;
}
.locations-block:hover .locations-block-img {
  transform: scale(1.03);
}
.locations-block:hover .locations-block-arrow {
  transform: translateX(4px);
}
.locations-block .locations-block-content {
  padding: 24px;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .locations-block .locations-block-content {
    padding: 20px 12px;
  }
}
.locations-block .locations-block-content h3 {
  font-weight: 500;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 0 0;
}
.locations-block .locations-block-content h3 strong {
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  text-transform: uppercase;
  margin: 0 0 0 5px;
}
.locations-block .locations-block-content .locations-block-arrow {
  /* Line arrow only — no circle (Figma) */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.locations-block .locations-block-content .locations-block-arrow img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .locations-block .locations-block-content .locations-block-arrow {
    display: none;
  }
}

.locations-inner-swiper-wrapper {
  position: relative;
}

.filterby-location {
  padding: 64px 0;
}
@media (max-width: 576px) {
  .filterby-location {
    padding: 45px 0;
  }
}
.filterby-location .filter-top-bar-wrapper {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 0 40px 0;
}
@media (max-width: 992px) {
  .filterby-location .filter-top-bar-wrapper {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 0 30px 0;
  }
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  row-gap: 15px;
}
@media (max-width: 767px) {
  .filterby-location .filter-top-bar-wrapper .filter-top-bar {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media (max-width: 576px) {
  .filterby-location .filter-top-bar-wrapper .filter-top-bar {
    flex-wrap: wrap;
  }
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .filter-top-bar-search {
  max-width: 660px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 992px) {
  .filterby-location .filter-top-bar-wrapper .filter-top-bar .filter-top-bar-search {
    max-width: 458px;
  }
}
@media (max-width: 576px) {
  .filterby-location .filter-top-bar-wrapper .filter-top-bar .filter-top-bar-search {
    max-width: unset;
    width: auto;
  }
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .filter-top-bar-search .segment-control {
  display: inline-flex;
  align-items: center;
  background: #f7f6f5;
  border-radius: 8px;
  padding: 4px;
  gap: 6px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .filter-top-bar-search .segment-control .segment {
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: #322f30;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
}
@media (max-width: 1199px) {
  .filterby-location .filter-top-bar-wrapper .filter-top-bar .filter-top-bar-search .segment-control .segment {
    padding: 10px 16px;
    font-size: 16px;
    line-height: 140%;
  }
}
@media (max-width: 992px) {
  .filterby-location .filter-top-bar-wrapper .filter-top-bar .filter-top-bar-search .segment-control .segment {
    padding: 9px 13px;
  }
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .filter-top-bar-search .segment-control .segment.active {
  background: #ffe1dd;
  color: #ae0f0a;
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .filter-top-bar-search .segment-control .segment:hover {
  background: #ffe1dd;
  color: #ae0f0a;
}
@media (max-width: 576px) {
  .filterby-location .filter-top-bar-wrapper .filter-top-bar .filter-top-bar-search .segment-control {
    display: none !important;
  }
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .sort-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .sort-wrapper .sort-label {
  font-size: 16px;
  line-height: 150%;
  color: #322f30;
  font-weight: 500;
  letter-spacing: -0.02em;
}
@media (max-width: 576px) {
  .filterby-location .filter-top-bar-wrapper .filter-top-bar .sort-wrapper .sort-label {
    display: none;
  }
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .sort-wrapper .sort-wrapper-select {
  width: 100%;
}
@media (max-width: 576px) {
  .filterby-location .filter-top-bar-wrapper .filter-top-bar .sort-wrapper .sort-wrapper-select {
    max-width: 100%;
  }
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .sort-wrapper .sort-wrapper-select select {
  width: 100%;
  font-family: "DM Sans", sans-serif;
  padding: 14px 44px 14px 16px;
  border: 0px solid #322f30;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #322f30;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #f7f6f5;
  background-image: url("/wp-content/themes/xiorstudenthousing/dist/images/select-img.svg");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
@media (max-width: 991px) {
  .filterby-location .filter-top-bar-wrapper .filter-top-bar .sort-wrapper .sort-wrapper-select select {
    padding: 11px 44px 11px 16px;
    font-size: 14px;
    padding: 10px 38px 10px 16px;
  }
}
@media (max-width: 576px) {
  .filterby-location .filter-top-bar-wrapper .filter-top-bar .sort-wrapper .sort-wrapper-select select {
    padding: 13px 42px 13px 9px;
  }
}
@media (max-width: 389px) {
  .filterby-location .filter-top-bar-wrapper .filter-top-bar .sort-wrapper .sort-wrapper-select select {
    padding: 10px 42px 10px 9px;
  }
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar {
  /* =====================
     DROPDOWN
  ===================== */
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .dropdown {
  position: relative;
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .dropdown input {
  display: none;
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .dropdown-btn {
  border: 1px solid #322f30;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 16px;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .dropdown-btn .arrow {
  font-size: 10px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .dropdown {
  /* arrow rotate */
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .dropdown input:checked + .dropdown-btn .arrow {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 99;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  -webkit-transition: 0.25s ease;
  -moz-transition: 0.25s ease;
  -ms-transition: 0.25s ease;
  -o-transition: 0.25s ease;
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .dropdown {
  /* show dropdown */
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .dropdown input:checked ~ .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .dropdown-item {
  padding: 10px 14px;
  font-size: 16px;
  cursor: pointer;
}
.filterby-location .filter-top-bar-wrapper .filter-top-bar .dropdown-item:hover {
  background: #f5f5f5;
}
.filterby-location .filter-top-bar-wrapper .filter-places {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding-top: 40px;
}
@media (max-width: 576px) {
  .filterby-location .filter-top-bar-wrapper .filter-places {
    display: none;
  }
}
.filterby-location .filter-top-bar-wrapper .filter-places .filter-countries ul,
.filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 14px;
}
@media (max-width: 576px) {
  .filterby-location .filter-top-bar-wrapper .filter-places .filter-countries ul,
  .filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
.filterby-location .filter-top-bar-wrapper .filter-places .filter-countries ul li,
.filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul li {
  display: inline-flex;
}
.filterby-location .filter-top-bar-wrapper .filter-places .filter-countries ul li a,
.filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul li a {
  font-size: 28px;
  line-height: 125%;
  font-weight: 500;
  color: rgba(50, 47, 48, 0.5);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.filterby-location .filter-top-bar-wrapper .filter-places .filter-countries ul li a:hover,
.filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul li a:hover {
  color: #c80b0f;
}
.filterby-location .filter-top-bar-wrapper .filter-places .filter-countries ul li a.active,
.filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul li a.active {
  color: #c80b0f;
}
@media (max-width: 1599px) {
  .filterby-location .filter-top-bar-wrapper .filter-places .filter-countries ul li a,
  .filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul li a {
    font-size: 20px;
  }
}
@media (max-width: 1399px) {
  .filterby-location .filter-top-bar-wrapper .filter-places .filter-countries ul li a,
  .filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul li a {
    font-size: 24px;
  }
}
@media (max-width: 1299px) {
  .filterby-location .filter-top-bar-wrapper .filter-places .filter-countries ul li a,
  .filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul li a {
    font-size: 17px;
  }
}
.filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul {
  gap: 16px;
}
.filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul li a {
  font-size: 20px;
  line-height: 150%;
  padding: 13px 16px;
  color: inherit;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  background-color: #f7f6f5;
}
@media (max-width: 1299px) {
  .filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul li a {
    font-size: 16px;
    padding: 9px;
  }
}
.filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul li a:hover {
  background-color: #ffe1dd;
  color: #ae0f0a;
}
.filterby-location .filter-top-bar-wrapper .filter-places .filter-cities ul li a.active {
  background-color: #ffe1dd;
  color: #ae0f0a;
}
.filterby-location .filter-top-bar-wrapper .filter-places .filter-countries ul li a:hover {
  color: #ae0f0a;
}
.filterby-location .filter-top-bar-wrapper .filter-places .filter-countries ul li a.active-a {
  color: #ae0f0a;
}

.filter-facilities ul {
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 15px;
  overflow: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.filter-facilities ul::-webkit-scrollbar {
  display: none;
}
@media (max-width: 992px) {
  .filter-facilities ul {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}
@media (max-width: 576px) {
  .filter-facilities ul {
    gap: 8px;
  }
}
.filter-facilities ul li {
  list-style: none;
  flex-shrink: 0;
}
.filter-facilities ul li a {
  display: flex;
  align-items: center;
  color: #322f30;
  gap: 8px;
  padding: 14px;
  background: #f7f6f5;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-size: 18px;
  line-height: 150%;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 1599px) {
  .filter-facilities ul li a {
    font-size: 18px;
    padding: 8px;
  }
}
@media (max-width: 1299px) {
  .filter-facilities ul li a {
    font-size: 16px;
    padding: 8px;
  }
}
@media (max-width: 576px) {
  .filter-facilities ul li a {
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 389px) {
  .filter-facilities ul li a {
    font-size: 13px;
    padding: 6px;
  }
}
.filter-facilities ul li a img, .filter-facilities ul li a svg {
  height: 40px;
  width: 40px;
}
@media (max-width: 1499px) {
  .filter-facilities ul li a img, .filter-facilities ul li a svg {
    height: 28px;
    width: 28px;
  }
}
@media (max-width: 1399px) {
  .filter-facilities ul li a img, .filter-facilities ul li a svg {
    height: 28px;
    width: 28px;
  }
}
@media (max-width: 1299px) {
  .filter-facilities ul li a img, .filter-facilities ul li a svg {
    height: 28px;
    width: 28px;
  }
}
@media (max-width: 576px) {
  .filter-facilities ul li a img, .filter-facilities ul li a svg {
    height: 24px;
    width: 24px;
  }
}
.filter-facilities ul li a:hover {
  background-color: #ffe1dd;
  color: #ae0f0a;
}
.filter-facilities ul li a:hover img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(52%) saturate(3933%) hue-rotate(346deg) brightness(73%) contrast(114%);
  -webkit-filter: brightness(0) saturate(100%) invert(22%) sepia(52%) saturate(3933%) hue-rotate(346deg) brightness(73%) contrast(114%);
}
.filter-facilities ul li a.active {
  background-color: #ffe1dd;
  color: #ae0f0a;
}
.filter-facilities ul li a.active img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(52%) saturate(3933%) hue-rotate(346deg) brightness(73%) contrast(114%);
  -webkit-filter: brightness(0) saturate(100%) invert(22%) sepia(52%) saturate(3933%) hue-rotate(346deg) brightness(73%) contrast(114%);
}

.filtered-homes-wrapper {
  padding: 40px 0 0 0;
}

.filtered-homes-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  gap: 20px 0;
  transition: opacity 0.2s ease;
  min-height: 200px;
}
.filtered-homes-row.is-loading {
  opacity: 0.4;
  pointer-events: none;
}

.page-pagination.is-loading {
  opacity: 0.4;
  pointer-events: none;
}

.location-property-tag-block {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 389px) {
  .location-property-tag-block {
    top: 12px;
    left: 12px;
    gap: 7px;
  }
}
.location-property-tag-block .tag-block {
  position: relative;
  top: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .location-property-tag-block .tag-block {
    font-size: 12px;
    padding: 5px;
  }
}
.location-property-tag-block .discount-bar {
  position: relative;
  top: 0;
  left: 0;
  background: #efdafb;
}
.location-property-tag-block .discount-bar img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(24%) saturate(3261%) hue-rotate(246deg) brightness(88%) contrast(91%);
  -webkit-filter: brightness(0) saturate(100%) invert(23%) sepia(24%);
}
.location-property-tag-block .discount-bar span {
  color: #603281;
}
@media (max-width: 1199px) {
  .location-property-tag-block .discount-bar span {
    font-size: 13px;
  }
}
.location-property-tag-block .discount-bar.warning {
  background: #ffe1dd;
}
.location-property-tag-block .discount-bar.warning span {
  color: #ae0f0a;
}
.location-property-tag-block .discount-bar.warning img {
  filter: unset;
  -webkit-filter: unset;
}

@media (min-width: 577px) {
  .toggle-text {
    display: none;
  }
}
@media (max-width: 576px) {
  .toggle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .toggle-header h4 {
    margin: 0 !important;
  }
  .toggle-header {
    margin: 12px 0;
    cursor: pointer;
  }
  .toggle-text {
    display: flex;
    gap: 4px;
    font-size: 12px;
    line-height: 150%;
    text-transform: uppercase;
    letter-spacing: -0.02em;
  }
}
.filter-search {
  opacity: 0.5;
  max-width: 400px;
  width: 100%;
  position: relative;
}
@media (max-width: 1199px) {
  .filter-search {
    max-width: 310px;
  }
}
@media (max-width: 992px) {
  .filter-search {
    max-width: 245px;
  }
}
@media (max-width: 576px) {
  .filter-search {
    max-width: 222px;
  }
}
.filter-search input {
  border: 0px solid;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 16px 43px 16px 16px;
  color: rgb(50, 47, 48);
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  width: 100%;
  position: relative;
  font-family: "DM Sans", sans-serif;
  background: #f7f6f5;
}
.filter-search input::-moz-placeholder {
  color: rgba(50, 47, 48, 0.5);
}
.filter-search input::placeholder {
  color: rgba(50, 47, 48, 0.5);
}
@media (max-width: 1199px) {
  .filter-search input {
    padding: 12px 43px 12px 16px;
  }
}
@media (max-width: 389px) {
  .filter-search input {
    padding: 10px 43px 10px 16px;
    font-size: 14px;
  }
}
.filter-search .search-button {
  border: 0px;
  background: transparent;
  padding: 0px;
  position: absolute;
  right: 16px;
  top: 17px;
}
@media (max-width: 1199px) {
  .filter-search .search-button {
    top: 12px;
  }
}
@media (max-width: 389px) {
  .filter-search .search-button {
    top: 9px;
  }
}

.rooms-slider-block {
  background-color: #F7F6F5;
  border-radius: 16px;
}
.rooms-slider-block .rooms-slider-image-slider-wrapper {
  padding: 16px;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-image-slider-wrapper {
    padding: 0;
  }
}
.rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
}
.rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .rooms-left-wrapper {
  width: calc(100% - 120px);
  position: relative;
  flex: 1;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .rooms-left-wrapper {
    width: 100%;
    padding: 0;
  }
}
.rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .rooms-left-wrapper .bottom-navigation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px;
  padding-right: 24px;
  z-index: 1;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .rooms-left-wrapper .bottom-navigation {
    padding: 10px;
  }
  .rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .rooms-left-wrapper .bottom-navigation .rooms-slider-navigation {
    display: none;
  }
}
.rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .rooms-right-wrapper {
  width: 120px;
  height: 100%;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .rooms-right-wrapper {
    width: 100%;
    display: none;
  }
}
.rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .rooms-slider-image-slider .swiper-slide img {
  width: 100%;
  height: 376px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .rooms-slider-image-slider .swiper-slide img {
    height: 240px;
  }
}
.rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .thumbswiper {
  overflow: hidden;
  height: 378px;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .thumbswiper {
    height: auto;
  }
}
.rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .thumbswiper .swiper-slide {
  height: auto;
}
.rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .thumbswiper .swiper-slide img {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  cursor: pointer;
  padding: 3px;
}
.rooms-slider-block .rooms-slider-image-slider-wrapper .rooms-slider-inner-wrapper .thumbswiper .swiper-slide.swiper-slide-thumb-active img {
  padding: 0;
}
.rooms-slider-block .rooms-slider-content {
  padding: 32px;
  padding-top: 16px;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content {
    padding: 12px;
  }
}
.rooms-slider-block .rooms-slider-content h3 {
  font-weight: 600;
  font-size: 40px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #111111;
  margin: 0 0 12px 0;
}
@media (max-width: 1550px) {
  .rooms-slider-block .rooms-slider-content h3 {
    font-size: 36px;
  }
}
@media (max-width: 1299px) {
  .rooms-slider-block .rooms-slider-content h3 {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .rooms-slider-block .rooms-slider-content h3 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content p {
    font-size: 12px;
    margin: 0 0 16px 0;
  }
}
.rooms-slider-block .rooms-slider-content .key-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 33px;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content .key-info-list {
    gap: 10px 17px;
  }
}
.rooms-slider-block .rooms-slider-content .key-info-list li {
  font-weight: 500;
  font-size: 18px;
  line-height: 115%;
  letter-spacing: -0.02em;
  color: #322F30;
  position: relative;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content .key-info-list li {
    font-size: 12px;
  }
}
.rooms-slider-block .rooms-slider-content .key-info-list li sup {
  font-size: 12px;
  line-height: normal;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content .key-info-list li sup {
    font-size: 8px;
  }
}
.rooms-slider-block .rooms-slider-content .key-info-list li::before {
  content: "";
  position: absolute;
  top: 1px;
  right: -18px;
  width: 2px;
  height: 21px;
  background-color: #322F30;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content .key-info-list li::before {
    right: -8px;
    height: 14px;
    width: 1px;
  }
}
.rooms-slider-block .rooms-slider-content .key-info-list li:last-child::before {
  display: none;
}
.rooms-slider-block .rooms-slider-content h4 {
  color: #322f30;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 150%;
  margin: 24px 0 12px;
  opacity: 0.65;
  text-transform: uppercase;
}
.rooms-slider-block .rooms-slider-content h4.room-features-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rooms-slider-block .rooms-slider-content h4 .features-show-more {
  display: none;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #322F30;
  padding: 0 !important;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
  background: none;
  margin: 0;
  text-transform: uppercase;
}
.rooms-slider-block .rooms-slider-content h4 .features-show-more__chevron {
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.25s ease;
}
.rooms-slider-block .rooms-slider-content h4 .features-show-more.is-expanded .features-show-more__chevron {
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content h4 .features-show-more {
    display: inline-flex;
  }
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content h4 {
    font-size: 16px;
  }
}
.rooms-slider-block .rooms-slider-content .room-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 12px;
  transition: max-height 0.3s ease, margin-bottom 0.3s ease, opacity 0.25s ease;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content .room-features-list {
    gap: 16px;
    max-height: 500px;
    overflow: hidden;
  }
  .rooms-slider-block .rooms-slider-content .room-features-list.is-collapsed {
    max-height: 0;
    margin-bottom: 0;
    opacity: 0;
  }
}
.rooms-slider-block .rooms-slider-content .room-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.03em;
  color: #322F30;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content .room-features-list li {
    width: 100%;
  }
}
.rooms-slider-block .rooms-slider-content .room-features-list li img {
  width: 24px;
}
.rooms-slider-block .rooms-slider-content .rooms-slider-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  padding: 24px 0 0 0;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content .rooms-slider-button {
    padding: 16px 0 0 0;
  }
}
.rooms-slider-block .rooms-slider-content .rooms-slider-button h5 {
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #111111;
  margin: 0 0 8px 0;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content .rooms-slider-button h5 {
    font-size: 16px;
  }
}
.rooms-slider-block .rooms-slider-content .rooms-slider-button h6 {
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #AE0F0A;
  margin: 0;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content .rooms-slider-button h6 {
    font-size: 14px;
  }
}
.rooms-slider-block .rooms-slider-content .rooms-slider-button h6 span {
  font-weight: 400;
  margin: 0 4px 0 0;
  color: rgba(50, 47, 48, 0.75);
  text-decoration-line: line-through;
}
.rooms-slider-block .rooms-slider-content .rooms-slider-button .btn-primary {
  margin: 0 0 0 0;
  padding: 14px 18px 15px 22px;
}
@media (max-width: 767px) {
  .rooms-slider-block .rooms-slider-content .rooms-slider-button .btn-primary {
    width: 100%;
    font-size: 16px;
    padding: 11px 20px;
    justify-content: space-between;
  }
}
.rooms-slider-block .whats-nearby {
  margin-bottom: 20px;
}

.filtered-homes-col {
  width: 50%;
  padding: 0 10px;
}
@media (max-width: 1199px) {
  .filtered-homes-col {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .filtered-homes-col {
    width: 100%;
  }
}
.filtered-homes-col .filtered-homes-block {
  border-radius: 16px;
  overflow: hidden;
  background-color: #f7f6f5;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .filtered-homes-col .filtered-homes-block .info-buttons .info-btn {
    font-size: 14px;
    padding: 6px 16px;
  }
}
@media (max-width: 576px) {
  .filtered-homes-col .filtered-homes-block .info-buttons {
    display: none;
  }
}
.filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap {
  position: relative;
}
.filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .discount-bar img {
  width: 21px;
  height: 21px;
}
@media (max-width: 576px) {
  .filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .discount-bar img {
    width: 18px;
    height: 18px;
  }
}
.filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .discount-bar span {
  font-size: 14px;
}
@media (max-width: 576px) {
  .filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .discount-bar span {
    font-size: 12px;
  }
}
.filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .filtered-homes-image img {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .filtered-navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 576px) {
  .filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .filtered-navigation {
    padding: 10px;
    flex-wrap: wrap;
  }
}
.filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .filtered-navigation .filtered-slider-navigation {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1599px) {
  .filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .filtered-navigation .filtered-slider-navigation {
    gap: 5px;
  }
}
.filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .filtered-navigation .filtered-slider-navigation .filtered-slider-image-prev,
.filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .filtered-navigation .filtered-slider-navigation .filtered-slider-image-next {
  height: 35px;
  width: 35px;
}
@media (max-width: 576px) {
  .filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .filtered-navigation .filtered-slider-navigation .filtered-slider-image-prev,
  .filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .filtered-navigation .filtered-slider-navigation .filtered-slider-image-next {
    display: none;
  }
}
.filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .info-buttons .info-btn {
  padding: 8px 16px !important;
}
@media (max-width: 1399px) {
  .filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .info-buttons .info-btn {
    padding: 8px 8px !important;
  }
}
@media (max-width: 1299px) {
  .filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .info-buttons .info-btn {
    gap: 5px !important;
    font-size: 14px !important;
  }
}
@media (max-width: 576px) {
  .filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .info-buttons .info-btn {
    gap: 4px;
    font-size: 12px;
  }
}
.filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .info-buttons .info-btn img {
  width: 20px;
  height: 20px;
}
@media (max-width: 1299px) {
  .filtered-homes-col .filtered-homes-block .filtered-homes-image-slider-wrap .info-buttons .info-btn img {
    width: 18px;
    height: 18px;
  }
}
.filtered-homes-col .filtered-button {
  margin-top: auto;
  height: auto;
}
.filtered-homes-col .property-amenities-list {
  flex-direction: row;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
}
.filtered-homes-col .property-amenities-list svg {
  width: 25px;
}
.filtered-homes-col .property-amenities-list li span {
  width: auto;
  padding: 0 0 0 4px;
}
.filtered-homes-col.wide {
  width: 100%;
}
.filtered-homes-col.wide .filtered-homes-block {
  flex-direction: row;
}
@media (max-width: 991px) {
  .filtered-homes-col.wide .filtered-homes-block {
    flex-direction: column;
  }
}
.filtered-homes-col.wide .rooms-slider-image-slider-wrapper {
  flex: 1;
  min-width: 0;
  padding: 24px;
}
.filtered-homes-col.wide .rooms-slider-inner-wrapper {
  display: flex;
  flex-direction: row;
  gap: 12px;
  height: 100%;
}
.filtered-homes-col.wide .rooms-left-wrapper {
  flex: 1;
  min-width: 0;
  height: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.filtered-homes-col.wide .rooms-left-wrapper .swiper {
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.filtered-homes-col.wide .rooms-left-wrapper .swiper img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.filtered-homes-col.wide .rooms-left-wrapper .location-property-tag-block {
  z-index: 2;
}
.filtered-homes-col.wide .rooms-left-wrapper .bottom-navigation {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  z-index: 2;
}
.filtered-homes-col.wide .rooms-right-wrapper {
  width: 168px;
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .filtered-homes-col.wide .rooms-right-wrapper {
    width: 140px;
  }
}
@media (max-width: 991px) {
  .filtered-homes-col.wide .rooms-right-wrapper {
    display: none;
  }
}
.filtered-homes-col.wide .rooms-right-wrapper .thumbswiper {
  height: 100%;
}
.filtered-homes-col.wide .rooms-right-wrapper .thumbswiper .swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.filtered-homes-col.wide .rooms-right-wrapper .thumbswiper .swiper-slide {
  flex: 1;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #ffe1dd;
}
.filtered-homes-col.wide .rooms-right-wrapper .thumbswiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
}
.filtered-homes-col.wide .filtered-homes-content {
  flex: 1;
  min-width: 0;
  padding: 40px;
}
@media (max-width: 991px) {
  .filtered-homes-col.wide .filtered-homes-content {
    padding: 24px;
  }
}
@media (max-width: 576px) {
  .filtered-homes-col.wide .filtered-homes-content {
    padding: 14px;
    gap: 16px;
  }
}
.filtered-homes-col.wide .filtered-homes-content h3 {
  font-size: 32px;
}
@media (max-width: 576px) {
  .filtered-homes-col.wide .filtered-homes-content h3 {
    font-size: 20px;
  }
}
.filtered-homes-col.wide .filtered-homes-content p {
  opacity: 0.75;
}
.filtered-homes-col.wide .filtered-homes-content ul:not(.property-amenities-list) li {
  justify-content: flex-start;
}
.filtered-homes-col.wide .filtered-homes-content ul:not(.property-amenities-list) li span strong {
  margin-left: 12px;
}
.filtered-homes-col.wide .filtered-button {
  margin-top: auto;
}
.filtered-homes-col.wide .filtered-button .btn-primary {
  font-size: 22px;
  padding: 12px 20px 12px 24px;
  height: 56px;
  gap: 12px;
}
@media (max-width: 576px) {
  .filtered-homes-col.wide .filtered-button .btn-primary {
    font-size: 18px;
    height: 48px;
    width: 100%;
    justify-content: space-between;
    padding: 10px 15px;
  }
}

.filtered-homes-content {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1499px) {
  .filtered-homes-content {
    padding: 20px;
  }
}
@media (max-width: 1399px) {
  .filtered-homes-content {
    padding: 14px;
  }
}
.filtered-homes-content .filtered-homes-content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .filtered-homes-content .filtered-homes-content-top {
    flex-wrap: wrap;
  }
}
.filtered-homes-content .filtered-homes-content-top .tag-block {
  position: static;
  font-size: 14px;
  padding: 6px 8px;
}
@media (max-width: 1399px) {
  .filtered-homes-content .filtered-homes-content-top .tag-block {
    font-size: 12px;
  }
}
.filtered-homes-content .filtered-homes-content-top .tag-block .locations-block-diamond {
  width: 20px;
  height: 20px;
}
.filtered-homes-content .filtered-homes-content-top .tag-block .locations-block-diamond img {
  width: 20px;
}
.filtered-homes-content .filtered-homes-content-top .rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0;
  color: #111111;
}
@media (max-width: 576px) {
  .filtered-homes-content .filtered-homes-content-top .rating {
    font-size: 14px;
    gap: 3px;
  }
}
.filtered-homes-content .filtered-homes-content-top .rating img {
  height: 20px;
}
@media (max-width: 1399px) {
  .filtered-homes-content .filtered-homes-content-top .rating img {
    height: 14px;
  }
}
@media (max-width: 576px) {
  .filtered-homes-content .filtered-homes-content-top .rating img {
    height: 20px;
  }
}
.filtered-homes-content h3 {
  font-size: 32px;
  line-height: 150%;
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.02em;
}
@media (max-width: 1199px) {
  .filtered-homes-content h3 {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .filtered-homes-content h3 {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .filtered-homes-content h3 {
    font-size: 20px;
  }
}
.filtered-homes-content h4 {
  font-size: 16px;
  line-height: 150%;
  font-weight: 600;
  color: #322f30;
  letter-spacing: 0;
  margin: 24px 0 8px 0;
  opacity: 0.65;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .filtered-homes-content h4 {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .filtered-homes-content h4 {
    font-size: 12px;
  }
}
.filtered-homes-content p {
  color: #322f30;
}
@media (max-width: 576px) {
  .filtered-homes-content p {
    font-size: 12px;
  }
}
.filtered-homes-content ul.property-amenities-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 12px;
}
.filtered-homes-content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 576px) {
  .filtered-homes-content ul {
    gap: 8px;
  }
}
.filtered-homes-content ul li {
  display: flex;
  align-items: center;
  gap: 0;
}
.filtered-homes-content ul li img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.filtered-homes-content ul li span {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #322f30;
  width: calc(100% - 20px);
  padding: 0 0 0 8px;
}
@media (max-width: 576px) {
  .filtered-homes-content ul li span {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .filtered-homes-content ul li span {
    font-size: 12px !important;
  }
}
.filtered-homes-content ul li span strong {
  font-weight: 500;
  opacity: 0.75;
  margin: 0 0 0 20px;
  position: relative;
}
.filtered-homes-content ul li span strong::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -12px;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #322f30;
}
@media (max-width: 576px) {
  .filtered-homes-content ul li span strong::before {
    top: 7px;
  }
}
.filtered-homes-content .filtered-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0 0 0;
  margin: auto 0 0 0;
}
@media (max-width: 576px) {
  .filtered-homes-content .filtered-button {
    padding: 12px 0 0 0;
    margin: 12px 0 0 0;
  }
}
@media (max-width: 1399px) {
  .filtered-homes-content .filtered-button .btn-primary {
    font-size: 17px;
    padding: 10px 15px;
  }
}
@media (max-width: 576px) {
  .filtered-homes-content .filtered-button .btn-primary {
    font-size: 18px;
    padding: 10px 15px;
    width: 100%;
    justify-content: space-between;
  }
}
.filtered-homes-content .filtered-button .filtered-button-price h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #111111;
}
@media (max-width: 400px) {
  .filtered-homes-content .filtered-button .filtered-button-price h5 {
    font-size: 16px;
  }
}
.filtered-homes-content .filtered-button .filtered-button-price h5 span {
  font-weight: 400;
}
.filtered-homes-content .filtered-button .filtered-button-price h6 {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #ae0f0a;
  margin: 0;
}
.filtered-homes-content .filtered-button .filtered-button-price h6 span {
  font-weight: 400;
  margin: 0 4px 0 0;
  color: rgba(50, 47, 48, 0.75);
  text-decoration-line: line-through;
}

.location-property-tag-block {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 389px) {
  .location-property-tag-block {
    top: 12px;
    left: 12px;
    gap: 7px;
  }
}
.location-property-tag-block .tag-block {
  position: relative;
  top: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .location-property-tag-block .tag-block {
    font-size: 12px;
    padding: 5px;
  }
}
.location-property-tag-block .discount-bar {
  position: relative;
  top: 0;
  left: 0;
  background: #efdafb;
}
.location-property-tag-block .discount-bar img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(24%) saturate(3261%) hue-rotate(246deg) brightness(88%) contrast(91%);
  -webkit-filter: brightness(0) saturate(100%) invert(23%) sepia(24%);
}
.location-property-tag-block .discount-bar span {
  color: #603281;
}
@media (max-width: 1199px) {
  .location-property-tag-block .discount-bar span {
    font-size: 13px;
  }
}
.location-property-tag-block .discount-bar.warning {
  background: #ffe1dd;
}
.location-property-tag-block .discount-bar.warning span {
  color: #ae0f0a;
}
.location-property-tag-block .discount-bar.warning img {
  filter: unset;
  -webkit-filter: unset;
}

@media (min-width: 577px) {
  .toggle-text {
    display: none;
  }
}
@media (max-width: 576px) {
  .toggle-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 12px 0;
    cursor: pointer;
  }
  .toggle-header h4 {
    margin: 0 !important;
  }
  .toggle-text {
    display: flex;
    gap: 4px;
    font-size: 12px;
    line-height: 150%;
    text-transform: uppercase;
    letter-spacing: -0.02em;
  }
}
.faq-section {
  padding: 104px 0;
}
@media (max-width: 1550px) {
  .faq-section {
    padding: 80px 0;
  }
}
@media (max-width: 1299px) {
  .faq-section {
    padding: 60px 0;
  }
}
@media (max-width: 991px) {
  .faq-section {
    padding: 48px 0;
  }
}
@media (max-width: 767px) {
  .faq-section {
    padding: 35px 0;
  }
}
@media (max-width: 767px) {
  .faq-section .faq-title {
    margin: 0 0 24px 0;
  }
}
.faq-section .faq-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .faq-section .faq-wrapper {
    flex-direction: column;
  }
}

.faq-block {
  max-width: 850px;
  width: 100%;
}
@media (max-width: 1199px) {
  .faq-block {
    padding-left: 10px;
  }
}
@media (max-width: 991px) {
  .faq-block {
    max-width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .faq-block {
    margin-top: 0px;
  }
}
.faq-block .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}
.faq-block .faq-item.active .plus-minus-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
  -webkit-transform: translate(-50%, -50%) scaleY(0);
  -moz-transform: translate(-50%, -50%) scaleY(0);
  -ms-transform: translate(-50%, -50%) scaleY(0);
  -o-transform: translate(-50%, -50%) scaleY(0);
}
.faq-block .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 32px 16px 32px 16px;
}
@media (max-width: 1550px) {
  .faq-block .accordion-header {
    padding: 24px 16px 24px 16px;
  }
}
@media (max-width: 767px) {
  .faq-block .accordion-header {
    padding: 20px 0;
  }
}
@media (max-width: 576px) {
  .faq-block .accordion-header {
    padding: 16px 0;
  }
}
.faq-block .accordion-header .question {
  font-size: 24px;
  line-height: 140%;
  letter-spacing: -0.02em;
  font-weight: 500;
}
@media (max-width: 991px) {
  .faq-block .accordion-header .question {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .faq-block .accordion-header .question {
    font-size: 18px;
  }
}
.faq-block .plus-minus-icon {
  position: relative;
  width: 100%;
  max-width: 23px;
  height: 22px;
}
.faq-block .plus-minus-icon::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #322f30;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
@media (max-width: 575px) {
  .faq-block .plus-minus-icon::before {
    width: 80%;
  }
}
.faq-block .plus-minus-icon::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: #322f30;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
@media (max-width: 575px) {
  .faq-block .plus-minus-icon::after {
    height: 80%;
  }
}
.faq-block .accordion-content {
  display: none;
  max-width: 800px;
  color: #111111;
  font-size: 18px;
  line-height: 140%;
  font-weight: 300;
  margin: 0 0 16px 0;
  padding: 0 16px 16px 16px;
}
@media (max-width: 767px) {
  .faq-block .accordion-content {
    padding: 0 0 16px 0;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .faq-block .accordion-content {
    font-size: 15px;
    margin-bottom: 0;
  }
}

.blogs-list-section {
  padding: 48px 0;
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1299px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper {
    gap: 40px;
  }
}
@media (max-width: 1199px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-select-wrap {
  flex: 1 1 0;
  min-width: 152px;
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-select-wrap .modal-select {
  width: 100%;
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-select-wrap--property {
  flex: 0 1 auto;
  min-width: 0;
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-select-wrap--property .modal-select {
  width: auto;
  min-width: 200px;
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-select {
  position: relative;
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-select .modal-select-trigger {
  background: #f7f6f5;
  border: 0;
  border-radius: 8px;
  padding: 14px 16px;
  min-height: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
}
@media (max-width: 1299px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-select .modal-select-trigger {
    padding: 11px 15px;
  }
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-select.is-open .modal-select-trigger {
  border-color: transparent;
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-select .modal-select-value,
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-select .modal-select-value.is-selected {
  color: #322f30;
  font-weight: 500;
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-select .modal-select-value {
  flex: 1;
  min-width: 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-select .modal-select-trigger img {
  flex-shrink: 0;
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-left {
  display: flex;
  gap: 16px;
  max-width: 630px;
  width: 100%;
}
@media (max-width: 1600px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-left {
    max-width: 575px;
  }
}
@media (max-width: 1199px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-left {
    max-width: 528px;
  }
}
@media (max-width: 576px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-left {
    flex-wrap: wrap;
    max-width: 100%;
  }
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-left .filter-search {
  flex: 0 1 240px;
  max-width: 260px;
  min-width: 0;
}
@media (max-width: 576px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-left .filter-search {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-left .filter-search input {
  min-width: 0;
  width: 100%;
}
@media (max-width: 576px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-left .filter-search input {
    min-width: 100%;
    max-width: 100%;
  }
}
.blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 576px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-filter-wrapper .blog-filter-right {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 576px) {
  .blogs-list-section .blogs-list-wrapper .blog-type-list {
    overflow: hidden;
    padding: 32px 0;
  }
}
.blogs-list-section .blogs-list-wrapper .blog-type-list ul {
  list-style-type: none;
  display: flex;
  gap: 32px;
  padding: 56px 0;
}
@media (max-width: 1599px) {
  .blogs-list-section .blogs-list-wrapper .blog-type-list ul {
    gap: 16px;
    padding: 32px 0;
  }
}
@media (max-width: 576px) {
  .blogs-list-section .blogs-list-wrapper .blog-type-list ul {
    overflow: auto;
    padding: 0;
  }
}
@media (max-width: 576px) {
  .blogs-list-section .blogs-list-wrapper .blog-type-list ul li {
    flex-shrink: 0;
  }
}
.blogs-list-section .blogs-list-wrapper .blog-type-list ul li a {
  color: rgba(50, 47, 48, 0.5);
  font-size: 28px;
  line-height: 125%;
  font-weight: 500;
}
@media (max-width: 1599px) {
  .blogs-list-section .blogs-list-wrapper .blog-type-list ul li a {
    font-size: 20px;
  }
}
.blogs-list-section .blogs-list-wrapper .blog-type-list ul li a:hover {
  color: #c80b0f;
}
.blogs-list-section .blogs-list-wrapper .blog-type-list ul li a.active {
  color: #c80b0f;
}
.blogs-list-section .blogs-list-wrapper .blog-list-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 1299px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-row {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-row {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-row {
    gap: 13px;
  }
}
.blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block {
  display: flex;
  gap: 24px;
  flex-direction: column;
  width: 32.19%;
}
@media (max-width: 1599px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block {
    width: 32%;
  }
}
@media (max-width: 991px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block {
    width: 48.8%;
  }
}
@media (max-width: 576px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block {
    width: 100%;
  }
}
.blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-list-image * {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  max-height: 350px;
  min-height: 350px;
}
@media (max-width: 1499px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-list-image * {
    max-height: 300px;
    min-height: 300px;
  }
}
@media (max-width: 1399px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-list-image * {
    max-height: 280px;
    min-height: 280px;
  }
}
.blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-short-desc-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-short-desc-wrapper .blog-tags .disc {
  background: #f4f3f2;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-short-desc-wrapper .blog-tags .disc * {
  color: #322f30;
}
.blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-short-desc-wrapper .blog-short-desc {
  margin: 24px 0 16px 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-short-desc-wrapper .blog-short-desc .blog-title {
  font-size: 32px;
  line-height: 125%;
  color: #111111;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
}
@media (max-width: 1400px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-short-desc-wrapper .blog-short-desc .blog-title {
    font-size: 24px;
  }
}
.blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-short-desc-wrapper .blog-short-desc .blog-title:hover {
  color: #ae0f0a;
}
.blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-short-desc-wrapper .blog-short-desc .disc p {
  font-size: 20px;
  line-height: 150%;
  color: rgba(50, 47, 48, 0.75);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-short-desc-wrapper .blog-short-desc .disc p {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-short-desc-wrapper .blog-short-desc .disc p {
    font-size: 16px;
  }
}
.blogs-list-section .blogs-list-wrapper .blog-list-row .blog-list-block .blog-short-desc-wrapper .blog-short-desc .disc {
  margin: 16px 0 24px;
}

.read-more-blog {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
@media (max-width: 388px) {
  .read-more-blog {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}
.read-more-blog ul {
  display: flex;
  gap: 28px;
}
.read-more-blog ul li {
  color: rgba(50, 47, 48, 0.75);
  line-height: 125%;
  font-size: 16px;
  letter-spacing: -0.02em;
}
@media (max-width: 767px) {
  .read-more-blog ul li {
    font-size: 14px;
  }
}
.read-more-blog ul li:first-child {
  list-style-type: none;
}
.read-more-blog .featured-socials-block ul {
  list-style-type: none;
  display: flex;
  gap: 16px;
}
@media (max-width: 992px) {
  .read-more-blog .featured-socials-block ul {
    gap: 10px;
  }
}
.read-more-blog .featured-socials-block ul li a img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(49%) saturate(7266%) hue-rotate(174deg) brightness(91%) contrast(95%);
  -webkit-filter: brightness(0) saturate(100%) invert(16%) sepia(49%) saturate(7266%) hue-rotate(174deg) brightness(91%) contrast(95%);
}
@media (max-width: 992px) {
  .read-more-blog .featured-socials-block ul li a img {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 768px) {
  .read-more-blog .featured-socials-block ul li a img {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 389px) {
  .read-more-blog .featured-socials-block ul li a img {
    width: 22px;
    height: 22px;
  }
}
.read-more-blog .featured-socials-block ul li a:hover {
  opacity: 0.6;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.hero-form.is-sticky {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  width: 80%;
  z-index: 100;
}
.hero-form.fade-in {
  animation: fadeIn 0.35s ease-out forwards;
}
.hero-form.fade-out {
  animation: fadeOut 0.35s ease-in forwards;
}
@media (max-width: 767px) {
  .hero-form {
    display: none;
  }
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  max-width: 857px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  .hero-form-row {
    max-width: 650px;
  }
}
.hero-form-row .hero-form-button .btn-primary {
  font-size: 16px;
  width: 100%;
}

.form-select {
  width: 100%;
  height: 56px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid rgba(50, 47, 48, 0.5);
  background: #fff;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: rgba(50, 47, 48, 0.75);
  font-family: "Inter", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("/wp-content/themes/xiorstudenthousing/dist/icons/select-arrow.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
}
@media (max-width: 1299px) {
  .form-select {
    font-size: 18px;
    height: 50px;
  }
}

.hero-form-mobile {
  display: none;
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  padding: 0 16px;
  z-index: 2;
}
@media (max-width: 767px) {
  .hero-form-mobile {
    display: block;
    z-index: 120;
  }
}
.hero-form-mobile .hero-form-mobile-item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 56px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(50, 47, 48, 0.5);
  background: #fff;
  font-weight: 400;
  font-size: 16px;
  outline: none;
  box-shadow: none;
  line-height: 135%;
  letter-spacing: -0.05em;
  color: rgba(50, 47, 48, 0.75);
  font-family: "Inter", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.hero-form-mobile .hero-form-mobile-item .btn-primary {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  border: none;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

body {
  font-family: "DM Sans", sans-serif;
  color: #1a202c;
  line-height: 1.6;
  color: #111111;
}

.container, .container-lg, .container-xl {
  max-width: 1432px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (max-width: 1550px) {
  .container, .container-lg, .container-xl {
    max-width: 1232px;
  }
}
@media (max-width: 1299px) {
  .container, .container-lg, .container-xl {
    max-width: 1132px;
  }
}
@media (max-width: 1199px) {
  .container, .container-lg, .container-xl {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container, .container-lg, .container-xl {
    max-width: 750px;
  }
}

.container-lg {
  max-width: 1472px;
}
@media (max-width: 1550px) {
  .container-lg {
    max-width: 1232px;
  }
}
@media (max-width: 1299px) {
  .container-lg {
    max-width: 1132px;
  }
}
@media (max-width: 1199px) {
  .container-lg {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container-lg {
    max-width: 750px;
  }
}

.container-xl {
  max-width: 1632px;
}
@media (max-width: 1679px) {
  .container-xl {
    max-width: 1432px;
  }
}
@media (max-width: 1550px) {
  .container-xl {
    max-width: 1232px;
  }
}
@media (max-width: 1299px) {
  .container-xl {
    max-width: 1132px;
  }
}
@media (max-width: 1199px) {
  .container-xl {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container-xl {
    max-width: 750px;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  padding: 10px 18px 11px 22px;
  border-radius: 12px;
  background: #C80B0F;
  border: 1px solid #C80B0F;
  color: #fff;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: -0.02em;
}
.btn-primary:hover {
  background: #a80a0d;
  transform: translateY(-1px);
}
.btn-primary:hover img, .btn-primary:hover svg {
  transform: translateX(3px);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary:disabled:hover {
  background: #c80b0f;
  transform: none;
  box-shadow: none;
}
@media (max-width: 1299px) {
  .btn-primary {
    font-size: 18px;
  }
  .btn-primary img,
  .btn-primary svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  .btn-primary {
    font-size: 22px;
    gap: 12px;
  }
  .btn-primary img,
  .btn-primary svg {
    width: 16px;
    height: 16px;
  }
}
.btn-primary img,
.btn-primary svg {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .btn-primary img,
  .btn-primary svg {
    width: 20px;
    height: 20px;
  }
}
.btn-primary.border-primary {
  border: 1px solid #322F30;
  background: transparent;
  color: #322F30;
}

h1 {
  font-weight: 500;
  font-size: 80px;
  line-height: normal;
}
@media (max-width: 1550px) {
  h1 {
    font-size: 70px;
  }
}
@media (max-width: 1299px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-weight: 600;
  font-size: 56px;
  line-height: 125%;
}
@media (max-width: 1550px) {
  h2 {
    font-size: 50px;
  }
}
@media (max-width: 1299px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-weight: 600;
  font-size: 48px;
  line-height: 125%;
}
@media (max-width: 1550px) {
  h3 {
    font-size: 40px;
  }
}
@media (max-width: 1299px) {
  h3 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 32px;
  }
}

h4 {
  font-weight: 600;
  font-size: 32px;
  line-height: 150%;
}
@media (max-width: 1550px) {
  h4 {
    font-size: 28px;
  }
}
@media (max-width: 1299px) {
  h4 {
    font-size: 24px;
  }
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  background-color: #fff !important;
  opacity: 0.5;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #fff !important;
}

.discount-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 11;
  background-color: #FFE1DD;
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #AE0F0A;
  padding: 4px 6px;
}
.discount-bar img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .discount-bar img {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  .discount-bar {
    font-size: 12px;
    padding: 4px 6px;
    top: 10px;
    left: 10px;
  }
}
.discount-bar.purple-discount-bar {
  background-color: #EFDAFB;
  color: #603281;
}

.tag-block {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #111111;
  padding: 8px 16px;
  border-radius: 8px;
  background-color: #fff;
  z-index: 11;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (max-width: 767px) {
  .tag-block {
    top: 12px;
    left: 12px;
    font-size: 14px;
    padding: 6px 12px;
  }
}
.tag-block .locations-block-diamond {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: popAnimation 2s ease-in-out infinite;
}
.tag-block .locations-block-diamond img {
  width: 24px;
}

@keyframes popAnimation {
  0%, 100% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
}
.info-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.info-buttons .info-btn {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #322F30;
  padding: 12px 16px;
  border-radius: 8px;
  background-color: #fff;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .info-buttons .info-btn {
    font-size: 12px;
    padding: 6px 8px;
  }
}
.info-buttons .info-btn img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .info-buttons .info-btn img {
    width: 18px;
    height: 18px;
  }
}

.slider-navigation {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 11;
  position: relative;
}
.slider-navigation .slider-image-next,
.slider-navigation .slider-image-prev {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.page-pagination {
  padding: 40px 0 0 0;
}
.page-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-pagination ul li {
  margin: 0 0 0 0;
}
.page-pagination ul li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: #F4F3F2;
  color: #322F30;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s ease;
}
.page-pagination ul li a:hover {
  background-color: #C80B0F;
  color: #fff;
}
.page-pagination ul li a img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-pagination ul li a:hover img {
  filter: brightness(0) invert(1);
}
.page-pagination ul li.active a {
  background-color: #C80B0F;
  color: #fff;
}
.page-pagination ul li.active a img {
  filter: brightness(0) invert(1);
}

@media (max-width: 767px) {
  .desktop-btn {
    display: none;
  }
}

.mobile-btn {
  display: none;
}
@media (max-width: 767px) {
  .mobile-btn {
    display: flex;
  }
}

body {
  margin: 0;
}

.header {
  border-bottom: 1px solid rgba(50, 47, 48, 0.1);
  background-color: #fff;
  position: relative;
  z-index: 1000;
}
.header .header-top {
  background: #000000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 8px 40px;
}
@media (max-width: 991px) {
  .header .header-top {
    justify-content: center;
    gap: 10px 0;
    padding: 8px 20px;
    display: none;
  }
}
.header .header-top .header-top-block {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header .header-top .header-top-block .header-top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 24px;
  font-size: 16px;
  line-height: 150%;
  color: #ffffff;
}
.header .header-top .header-top-block .header-top-item img, .header .header-top .header-top-block .header-top-item svg {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header .header-top .header-top-block span.header-top-item {
  cursor: default;
}
.header .header-top .header-top-block span.header-top-item img,
.header .header-top .header-top-block span.header-top-item svg {
  cursor: default;
}
.header .header-top .header-top-block a {
  display: flex;
  align-items: center;
  color: #ffffff;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.header .header-top .header-top-block a img {
  margin-left: 5px;
}
.header .header-top .header-top-block a:hover {
  color: #cacaca;
}
.header .header-top .header-top-block a:hover img {
  filter: brightness(0) saturate(100%) invert(93%) sepia(0%) saturate(1434%) hue-rotate(161deg) brightness(80%) contrast(118%);
  -webkit-filter: brightness(0) saturate(100%) invert(93%) sepia(0%) saturate(1434%) hue-rotate(161deg) brightness(80%) contrast(118%);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  position: relative;
}
@media (max-width: 991px) {
  .nav-wrapper {
    justify-content: space-between;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .nav-wrapper {
    padding: 20px 16px;
  }
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  body.admin-bar .navigation-block {
    height: calc(100vh - 111px);
    top: 111px;
  }
}
.navigation-block {
  margin: 0;
  flex: 0 1 auto;
}
@media (max-width: 991px) {
  .navigation-block {
    display: block;
    position: fixed;
    top: 89px;
    left: 0;
    width: 100%;
    height: calc(100vh - 89px);
    background: #fff;
    z-index: 1000;
    padding: 0 0 145px 0;
    overflow-y: auto;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
  }
  .navigation-block.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
}
@media (max-width: 767px) {
  .navigation-block {
    height: calc(100vh - 81px);
    top: 81px;
  }
}
.navigation-block .nav-links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  align-items: center;
}
@media (max-width: 991px) {
  .navigation-block .nav-links {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}
.navigation-block .nav-links .nav-item {
  position: relative;
  margin: 0;
}
@media (max-width: 991px) {
  .navigation-block .nav-links .nav-item {
    width: 100%;
  }
}
.navigation-block .nav-links .nav-item .nav-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #111111;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .navigation-block .nav-links .nav-item .nav-link {
    padding: 24px;
    font-size: 18px;
    line-height: 23px;
    color: #292929;
    border-radius: 0;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
}
.navigation-block .nav-links .nav-item .nav-link:hover {
  color: #ae0f0a;
  background-color: #ffe1dd;
}
.navigation-block .nav-links .nav-item .nav-link:hover .dropdown-icon img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(53%) saturate(6393%) hue-rotate(356deg) brightness(98%) contrast(98%);
}
.navigation-block .nav-links .nav-item .nav-link .dropdown-icon {
  width: 16px;
  height: 16px;
  display: block;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .navigation-block .nav-links .nav-item .nav-link .dropdown-icon {
    background-image: url("/wp-content/themes/xiorstudenthousing/dist/icons/dd-icon-mobile.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 24px;
    transform: none !important;
  }
}
.navigation-block .nav-links .nav-item .nav-link .dropdown-icon img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .navigation-block .nav-links .nav-item .nav-link .dropdown-icon img {
    display: none;
  }
}
.navigation-block .nav-links .nav-item.dropdown.megamenu-trigger {
  position: static;
}
.navigation-block .nav-links .nav-item.dropdown.active .nav-link {
  color: #ae0f0a;
  background-color: #ffe1dd;
}
.navigation-block .nav-links .nav-item.dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}
.navigation-block .nav-links .nav-item.dropdown.active .dropdown-icon img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(53%) saturate(6393%) hue-rotate(356deg) brightness(98%) contrast(98%);
}
.navigation-block .nav-links .nav-item .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  margin: 0;
  padding: 10px 0;
  min-width: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 10px;
}
.navigation-block .nav-links .nav-item .dropdown-menu li {
  margin: 0;
}
.navigation-block .nav-links .nav-item .dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}
.navigation-block .nav-links .nav-item .dropdown-menu li a:hover {
  background-color: #f5f5f5;
}
.navigation-block .nav-links .nav-item .megamenu {
  position: absolute;
  top: 100% !important;
  left: 0;
  width: 100vw;
  background-color: #fff;
  box-shadow: 0px 10px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  overflow: hidden;
  padding: 24px;
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
@media (max-width: 991px) {
  .navigation-block .nav-links .nav-item .megamenu {
    position: fixed;
    width: 100%;
    top: 0 !important;
    left: 0;
    height: calc(100% - 145px);
    background: #fff;
    padding: 0;
    box-shadow: none;
    overflow-y: auto;
    transform: translateX(100%);
    opacity: 1;
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }
}
.navigation-block .nav-links .nav-item .megamenu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}

.megamenu-locations-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  margin: 0 -32px;
}
@media (max-width: 991px) {
  .megamenu-locations-row {
    margin: 0;
  }
}
.megamenu-locations-row .megamenu-locations-col-sm {
  width: 400px;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 991px) {
  .megamenu-locations-row .megamenu-locations-col-sm {
    width: 100%;
    padding: 0;
    display: none;
  }
}
.megamenu-locations-row .megamenu-locations-col-lg {
  width: 100%;
  flex: 1;
  padding: 0 32px;
}
@media (max-width: 991px) {
  .megamenu-locations-row .megamenu-locations-col-lg {
    width: 100%;
    padding: 0;
  }
}

.megamenu-locations-block {
  background-color: #e4fcff;
  border-radius: 16px;
  padding: 20px;
  margin: 0;
}
.megamenu-locations-block h5 {
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.75);
  margin: 0 0 16px 0;
}
.megamenu-locations-block p {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  color: rgba(0, 0, 0, 0.75);
  letter-spacing: -0.011em;
  margin: 0 0 16px 0;
}
.megamenu-locations-block .btn-primary {
  margin: 0 0 0 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  border-radius: 100px;
  padding: 7px 16px;
  gap: 8px;
}
.megamenu-locations-block .btn-primary img {
  width: 20px;
  height: 20px;
}
.megamenu-locations-block .btn-primary:hover {
  background-color: #c80b0f;
  color: white;
}
.megamenu-locations-block .btn-primary:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(65%) saturate(51%) hue-rotate(231deg) brightness(115%) contrast(100%);
}

.megamenu-locations-block-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  margin: 0 -20px;
}
@media (max-width: 991px) {
  .megamenu-locations-block-list {
    margin: 0;
    gap: 16px 0;
  }
}
.megamenu-locations-block-list .megamenu-locations-block-list-col {
  width: 25%;
  padding: 0 20px;
}
@media (max-width: 991px) {
  .megamenu-locations-block-list .megamenu-locations-block-list-col {
    width: 100%;
    padding: 0;
  }
}
.megamenu-locations-block-list .megamenu-locations-block-list-col h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #292929;
  margin: 0 0 16px 0;
}
.megamenu-locations-block-list .megamenu-locations-block-list-col h5 a {
  color: #292929;
}
.megamenu-locations-block-list .megamenu-locations-block-list-col h5 a:hover {
  color: #c80b0f;
}
.megamenu-locations-block-list .megamenu-locations-block-list-col h5 a.is-active {
  color: #c80b0f;
}
.megamenu-locations-block-list .megamenu-locations-block-list-col ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.megamenu-locations-block-list .megamenu-locations-block-list-col ul:last-child {
  margin: 0;
}
.megamenu-locations-block-list .megamenu-locations-block-list-col ul li {
  margin: 0 0 8px 0;
}
.megamenu-locations-block-list .megamenu-locations-block-list-col ul li:last-child {
  margin: 0;
}
.megamenu-locations-block-list .megamenu-locations-block-list-col ul li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: #292929;
  text-decoration: none;
  display: block;
}
.megamenu-locations-block-list .megamenu-locations-block-list-col ul li a.is-active {
  color: #c80b0f;
}
.megamenu-locations-block-list .megamenu-locations-block-list-col ul li a:hover {
  color: #c80b0f;
}
.megamenu-locations-block-list .megamenu-locations-block-list-col ul li a span {
  font-weight: 400;
  font-size: 12px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #c80b0f;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  display: inline-block;
  padding: 2px 4px;
  background-color: #f9dad5;
  border-radius: 4px;
  margin: 0 0 0 2px;
}

.megamenu-locations-image img {
  width: 100%;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.megamenu-feature-card {
  background-color: #ae0f0a;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  gap: 16px;
  overflow: hidden;
  flex: 1;
  flex-direction: column;
}
@media (max-width: 991px) {
  .megamenu-feature-card {
    display: none;
  }
}
.megamenu-feature-card .megamenu-feature-card-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  flex: 1;
}
.megamenu-feature-card .megamenu-feature-card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  max-height: 200px;
}
.megamenu-feature-card .megamenu-feature-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  padding: 16px 0;
}
.megamenu-feature-card .megamenu-feature-card-top h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 8px 0;
}
.megamenu-feature-card .megamenu-feature-card-top p {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.011em;
  color: #ffffff;
  margin: 0;
}
.megamenu-feature-card .megamenu-feature-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 64px;
  padding: 12px 16px;
  height: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 30px;
}
.megamenu-feature-card .megamenu-feature-card-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.megamenu-feature-card .megamenu-feature-card-btn:hover {
  background-color: #ffffff;
  color: #ae0f0a;
}
.megamenu-feature-card .megamenu-feature-card-btn:hover img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(53%) saturate(6393%) hue-rotate(356deg) brightness(98%) contrast(98%);
}

.megamenu-life-at-xior-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  margin: 0 -20px;
}
@media (max-width: 991px) {
  .megamenu-life-at-xior-row {
    margin: 0;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .megamenu-life-at-xior-row {
    padding: 24px;
  }
}
.megamenu-life-at-xior-row .megamenu-life-at-xior-col {
  width: 33.33%;
  padding: 0 20px;
}
@media (max-width: 991px) {
  .megamenu-life-at-xior-row .megamenu-life-at-xior-col {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 991px) {
  .megamenu-life-at-xior-block {
    padding: 24px;
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
}
.megamenu-life-at-xior-block .megamenu-life-at-xior-block-img {
  width: 100%;
  height: 264px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .megamenu-life-at-xior-block .megamenu-life-at-xior-block-img {
    display: none;
  }
}
.megamenu-life-at-xior-block .megamenu-life-at-xior-block-content {
  padding: 24px 0 0 0;
  display: block;
}
@media (max-width: 991px) {
  .megamenu-life-at-xior-block .megamenu-life-at-xior-block-content {
    padding: 0;
  }
}
.megamenu-life-at-xior-block .megamenu-life-at-xior-block-content h5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #292929;
  margin: 0 0 8px 0;
}
@media (max-width: 991px) {
  .megamenu-life-at-xior-block .megamenu-life-at-xior-block-content h5 {
    line-height: 125%;
    margin: 0 0 12px 0;
  }
}
.megamenu-life-at-xior-block .megamenu-life-at-xior-block-content p {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.011em;
  color: #322f30;
  margin: 0 0 0 0;
}
@media (max-width: 991px) {
  .megamenu-life-at-xior-block .megamenu-life-at-xior-block-content p {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .megamenu-news-block {
    padding: 24px;
  }
}
.megamenu-news-block h4 {
  font-weight: 500;
  font-size: 12px;
  line-height: 125%;
  text-transform: uppercase;
  color: #322f30;
  opacity: 0.75;
  margin: 0 0 24px 0;
}
@media (max-width: 991px) {
  .megamenu-news-block h4 {
    margin: 0 0 16px 0;
  }
}
.megamenu-news-block .border-primary {
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #322f30;
  border-color: #f4f3f2;
  background-color: #f4f3f2;
  padding: 11px 18px;
}
.megamenu-news-block .border-primary img {
  width: 20px;
  height: 20px;
}
.megamenu-news-block .megamenu-news-block-list {
  margin: 0 0 34px 0;
}
.megamenu-news-block .megamenu-news-block-list-item {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 16px 0;
}
.megamenu-news-block .megamenu-news-block-list-item .megamenu-news-block-list-item-img {
  width: 112px;
  height: 112px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .megamenu-news-block .megamenu-news-block-list-item .megamenu-news-block-list-item-img {
    width: 88px;
    height: 88px;
  }
}
.megamenu-news-block .megamenu-news-block-list-item .megamenu-news-block-list-item-content {
  padding: 0 0 0 16px;
  width: calc(100% - 112px);
}
@media (max-width: 991px) {
  .megamenu-news-block .megamenu-news-block-list-item .megamenu-news-block-list-item-content {
    width: calc(100% - 88px);
  }
}
.megamenu-news-block .megamenu-news-block-list-item .megamenu-news-block-list-item-content h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #322f30;
  margin: 0 0 8px 0;
}
@media (max-width: 991px) {
  .megamenu-news-block .megamenu-news-block-list-item .megamenu-news-block-list-item-content h5 {
    font-size: 12px;
    margin: 0 0 4px 0;
  }
}
.megamenu-news-block .megamenu-news-block-list-item .megamenu-news-block-list-item-content p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.megamenu-news-block .megamenu-news-block-list-item .megamenu-news-block-list-item-content p,
.megamenu-news-block .megamenu-news-block-list-item .megamenu-news-block-list-item-content h6 {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.011em;
  color: #322f30;
  margin: 0 0 16px 0;
}
@media (max-width: 991px) {
  .megamenu-news-block .megamenu-news-block-list-item .megamenu-news-block-list-item-content p,
  .megamenu-news-block .megamenu-news-block-list-item .megamenu-news-block-list-item-content h6 {
    font-size: 12px;
  }
}
.megamenu-news-block .megamenu-news-block-list-item .megamenu-news-block-list-item-content h6 {
  margin: 0;
}

.header-logo {
  display: flex;
  width: 112px;
  flex: 1 1 0;
}
@media (min-width: 992px) {
  .header-logo {
    min-width: 0;
  }
}
@media (max-width: 991px) {
  .header-logo {
    flex: 0 0 auto;
  }
}
@media (max-width: 767px) {
  .header-logo {
    width: 93px;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 0;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  min-width: 0;
}
@media (max-width: 991px) {
  .header-actions {
    flex: 0 0 auto;
    margin: 0 0 0 auto;
  }
  .header-actions .user-btn {
    display: none !important;
  }
  .header-actions .header-actions-lang-wrap {
    display: none !important;
  }
}
.header-actions .user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #111111;
  background-color: #F7F6F5;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.header-actions .btn-block {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #f4f3f2;
  border-radius: 100px;
  transition: all 0.3s ease;
  border: none;
}
@media (max-width: 767px) {
  .header-actions .btn-block.user-btn {
    display: none;
  }
}
.header-actions .btn-block img {
  width: 20px;
}
.header-actions .btn-primary {
  margin: 0 0 0 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  gap: 8px;
  background-color: #ae0f0a;
  padding: 7px 16px 7px 16px;
  border-color: #ae0f0a;
  border-radius: 8px;
}
.header-actions .btn-primary img {
  width: 20px;
}

.header-actions-lang-wrap {
  position: relative;
}
.header-actions-lang-wrap .header-actions-lang-wrapper {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  width: 166px;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 8px;
}
@media (max-width: 991px) {
  .header-actions-lang-wrap .header-actions-lang-wrapper {
    width: 100%;
    margin: 0;
    position: fixed;
    top: 0;
    height: calc(100% - 145px);
    overflow-y: auto;
    padding: 0;
    opacity: 1;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }
}
.header-actions-lang-wrap .header-actions-lang-wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.header-actions-lang-wrap .header-actions-lang-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-actions-lang-wrap .header-actions-lang-wrapper ul li {
  margin: 0 0 16px 0;
}
.header-actions-lang-wrap .header-actions-lang-wrapper ul li:last-child {
  margin: 0;
}
.header-actions-lang-wrap .header-actions-lang-wrapper ul li a {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  border-radius: 8px;
  color: #000000;
  padding: 8px;
}
@media (max-width: 991px) {
  .header-actions-lang-wrap .header-actions-lang-wrapper ul li a {
    padding: 16px 24px;
  }
}
.header-actions-lang-wrap .header-actions-lang-wrapper ul li a:hover {
  background-color: #f7f6f5;
}
.header-actions-lang-wrap .header-actions-lang-wrapper ul li a img {
  width: 24px;
  height: 17px;
  -o-object-fit: contain;
     object-fit: contain;
}
.header-actions-lang-wrap .header-actions-lang-wrapper ul li a span {
  width: calc(100% - 24px);
  padding: 0 0 0 12px;
}

body .user-modal-body {
  padding: 0;
}

.modal-row {
  display: flex;
  flex-wrap: wrap;
}
.modal-row .modal-col-sm {
  width: 45%;
}
.modal-row .modal-col-sm .user-modal-body-img {
  width: 100%;
  height: 768px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 1550px) {
  .modal-row .modal-col-sm .user-modal-body-img {
    height: 640px;
  }
}
.modal-row .modal-col-lg {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.user-modal-body-header {
  padding: 24px;
  border-bottom: 1px solid rgba(50, 47, 48, 0.15);
}
.user-modal-body-header h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #000000;
}

.user-modal-body-content {
  padding: 40px;
  margin: 0 0 auto 0;
}
@media (max-width: 1550px) {
  .user-modal-body-content {
    padding: 32px;
  }
}
@media (max-width: 1199px) {
  .user-modal-body-content {
    padding: 24px;
  }
}
@media (max-width: 991px) {
  .user-modal-body-content {
    padding: 0;
  }
}
.user-modal-body-content h4 {
  color: #322F30;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
}
.user-modal-body-content h6 {
  color: #322F30;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.02em;
  margin: 16px 0 0 0;
}
.user-modal-body-content ul {
  list-style: none;
  padding: 0;
  margin: 0 -8px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 0;
}
@media (max-width: 767px) {
  .user-modal-body-content ul {
    gap: 0;
  }
}
.user-modal-body-content ul li {
  margin: 0 0 0 0;
  width: 50%;
  padding: 0 8px;
}
@media (max-width: 767px) {
  .user-modal-body-content ul li {
    width: 100%;
  }
}
.user-modal-body-content ul a {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #000000;
  padding: 16px;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.user-modal-body-content ul a:hover {
  background-color: #f7f6f5;
}
.user-modal-body-content ul a.active {
  background-color: #f7f6f5;
}
.user-modal-body-content ul a img {
  width: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.user-modal-body-content ul a span {
  width: calc(100% - 28px);
  padding: 0 0 0 16px;
}

.user-modal-body-footer {
  padding: 24px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid rgba(50, 47, 48, 0.15);
}
.user-modal-body-footer .btn-primary {
  margin: 0 0 0 auto;
  border-radius: 8px;
  font-size: 16px;
  padding: 11px 12px 11px 16px;
  gap: 8px;
}
.user-modal-body-footer .btn-primary img {
  width: 20px;
  height: 20px;
}

/* Make LI stretch properly */
.megamenu {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: 0.25s ease;
}

.toggle-menu-btn {
  display: none;
  padding: 0 0 0 8px;
}
@media (max-width: 991px) {
  .toggle-menu-btn {
    display: flex;
  }
}
.toggle-menu-btn .toggle-btn {
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  position: relative;
}
.toggle-menu-btn .toggle-btn .open-icon {
  display: block;
}
.toggle-menu-btn .toggle-btn .close-icon {
  display: none;
}
.toggle-menu-btn .toggle-btn.active .open-icon {
  display: none;
}
.toggle-menu-btn .toggle-btn.active .close-icon {
  display: block;
}

.mobile-nav-lang-wrap {
  display: none;
}
@media (max-width: 991px) {
  .mobile-nav-lang-wrap {
    display: block;
  }
}
.mobile-nav-lang-wrap .lang-btn {
  width: 100%;
  padding: 24px;
  background-color: transparent;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #292929;
  letter-spacing: -0.02em;
  color: #292929;
  text-decoration: none;
  cursor: pointer;
}
.mobile-nav-lang-wrap .lang-btn img {
  width: 28px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.mobile-nav-links {
  display: none;
}
@media (max-width: 991px) {
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 16px;
    border-top: 1px solid rgba(50, 47, 48, 0.1);
    z-index: 11111;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
  }
}
.mobile-nav-links .btn-primary {
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  padding: 7px 20px;
  gap: 8px;
}
.mobile-nav-links .btn-gray-bg {
  background-color: #F7F6F5;
  color: #111111;
  border-color: #F7F6F5;
}
.mobile-nav-links .btn-gray-bg:hover {
  background-color: #E5E3E2;
  border-color: #E5E3E2;
}

@media (max-width: 991px) {
  .megamenu-locations-wrapper {
    padding: 16px;
  }
  .megamenu-locations-wrapper .megamenu-locations-block-list-col h5 {
    font-size: 18px;
    margin: 0 0 8px 0;
  }
  .megamenu-locations-wrapper .megamenu-locations-block-list-col ul {
    padding: 0 0 0 16px;
  }
}

.megamenu-back, .lang-back {
  width: 100%;
  display: none;
  padding: 24px;
  background-color: #F7F6F5;
}
.megamenu-back .megamenu-back-btn, .megamenu-back .lang-back-btn, .lang-back .megamenu-back-btn, .lang-back .lang-back-btn {
  width: auto;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #111111;
  letter-spacing: -0.02em;
}
.megamenu-back .megamenu-back-btn img, .megamenu-back .lang-back-btn img, .lang-back .megamenu-back-btn img, .lang-back .lang-back-btn img {
  width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  .megamenu-back, .lang-back {
    display: block;
  }
}

.mobile-nav-country-login {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}
.mobile-nav-country-login.active {
  transform: translateX(0);
  visibility: visible;
}
.mobile-nav-country-login .country-login-back {
  width: 100%;
  padding: 24px;
  background-color: #F7F6F5;
}
.mobile-nav-country-login .country-login-back .country-login-back-btn {
  width: auto;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #111111;
  letter-spacing: -0.02em;
}
.mobile-nav-country-login .country-login-back .country-login-back-btn img {
  width: 24px;
  -o-object-fit: contain;
     object-fit: contain;
  transform: rotate(180deg);
}
.mobile-nav-country-login .mobile-nav-country-login-block .mobile-nav-lang-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
.mobile-nav-country-login .mobile-nav-country-login-block .country-login-block-content {
  padding: 24px;
}
.mobile-nav-country-login .mobile-nav-country-login-block .country-login-block-content h3 {
  color: #322F30;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: -0.02em;
  margin: 0 0 8px 0;
}
.mobile-nav-country-login .mobile-nav-country-login-block .country-login-block-content h6 {
  color: #322F30;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.02em;
  margin: 0 0 24px 0;
}
.mobile-nav-country-login .country-login-body-footer {
  width: 100%;
  padding: 24px 16px;
  border-top: 1px solid rgba(50, 47, 48, 0.15);
  background-color: #fff;
}
.mobile-nav-country-login .country-login-body-footer .btn-primary {
  width: 100%;
}

.footer {
  padding: 40px 0;
  background-color: #111111;
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 24px;
  }
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  padding: 0 0 48px 0;
  margin: 0 0 0 0;
}
@media (max-width: 767px) {
  .footer-row {
    padding: 0 0 40px 0;
  }
}
.footer-row .footer-col {
  padding: 0 15px 0 0;
}
@media (max-width: 767px) {
  .footer-row .footer-col {
    padding: 0 0 0 0;
  }
}
.footer-row .col-logo {
  width: 22%;
}
@media (max-width: 991px) {
  .footer-row .col-logo {
    width: 100%;
    order: 1;
  }
}
.footer-row .col-location {
  width: 17%;
}
@media (max-width: 991px) {
  .footer-row .col-location {
    width: 23%;
  }
}
@media (max-width: 767px) {
  .footer-row .col-location {
    width: 100%;
    order: 3;
  }
  .footer-row .col-location ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 0;
  }
  .footer-row .col-location ul li {
    width: 50%;
    margin: 0;
  }
}
.footer-row .col-link {
  width: 19%;
}
@media (max-width: 1199px) {
  .footer-row .col-link {
    width: 16%;
  }
}
@media (max-width: 991px) {
  .footer-row .col-link {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .footer-row .col-link {
    width: 100%;
    order: 4;
  }
}
.footer-row .col-support {
  width: 16%;
}
@media (max-width: 1199px) {
  .footer-row .col-support {
    width: 15%;
  }
}
@media (max-width: 991px) {
  .footer-row .col-support {
    width: 19%;
  }
}
@media (max-width: 767px) {
  .footer-row .col-support {
    width: 100%;
    order: 5;
  }
}
.footer-row .col-company {
  width: 13%;
}
@media (max-width: 991px) {
  .footer-row .col-company {
    width: 18%;
  }
}
@media (max-width: 767px) {
  .footer-row .col-company {
    width: 100%;
    order: 6;
  }
}
.footer-row .col-button {
  padding: 0;
  width: 13%;
}
@media (max-width: 1199px) {
  .footer-row .col-button {
    width: 15%;
  }
}
@media (max-width: 991px) {
  .footer-row .col-button {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .footer-row .col-button {
    width: 100%;
    order: 2;
  }
}

.footer-col-content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-col-content {
    text-align: center;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .footer-col-content {
    text-align: left;
    align-items: flex-start;
  }
}
.footer-col-content .footer-logo {
  display: block;
  max-width: 200px;
  width: 100%;
}
@media (max-width: 1299px) {
  .footer-col-content .footer-logo {
    max-width: 148px;
    margin-bottom: 8px;
  }
}
.footer-col-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  margin: 16px 0 0 0;
  color: #ffffff;
}
.footer-col-content p a {
  color: #ffffff;
}

.footer-col-links h5 {
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #f4f3f2;
  opacity: 0.5;
  margin: 0 0 8px 0;
}
.footer-col-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col-links li {
  margin: 0 0 8px 0;
}
@media (max-width: 767px) {
  .footer-col-links li {
    margin: 0 0 12px 0;
  }
}
.footer-col-links li:last-child {
  margin: 0;
}
.footer-col-links li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.footer-col-links li a:hover {
  color: #cacaca;
}
.footer-col-links li a img {
  width: 16px;
}

.footer-col-button {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .footer-col-button {
    padding: 16px 0 0 0;
  }
}
.footer-col-button .btn-primary {
  margin: 0 0 0 auto;
  font-size: 16px;
  gap: 8px;
  padding: 7px 16px 7px 16px;
}
@media (max-width: 767px) {
  .footer-col-button .btn-primary {
    margin: 0;
    width: 100%;
    border-radius: 8px;
  }
}
.footer-col-button .btn-primary img {
  width: 20px;
}

.social-bar-wrapper {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 767px) {
  .social-bar-wrapper {
    padding: 40px 0;
  }
}

.social-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
@media (max-width: 767px) {
  .social-bar-row {
    flex-direction: column-reverse;
  }
}
.social-bar-row .social-bar-logo {
  display: flex;
  align-items: center;
  gap: 24px 48px;
}
@media (max-width: 1299px) {
  .social-bar-row .social-bar-logo {
    gap: 16px 24px;
  }
}
@media (max-width: 767px) {
  .social-bar-row .social-bar-logo {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 1299px) {
  .social-bar-row .social-bar-logo img {
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 767px) {
  .social-bar-row .social-bar-logo img {
    height: 64px;
  }
  .social-bar-row .social-bar-logo img:nth-child(3) {
    height: 40px;
  }
}
.social-bar-row .social-bar-links h6 {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #f4f3f2;
  margin: 0 0 16px 0;
}
@media (max-width: 1299px) {
  .social-bar-row .social-bar-links h6 {
    margin: 0 0 12px 0;
  }
}
@media (max-width: 767px) {
  .social-bar-row .social-bar-links h6 {
    margin: 0 0 24px 0;
    text-align: center;
  }
}
.social-bar-row .social-bar-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .social-bar-row .social-bar-links ul {
    gap: 26px;
  }
}
.social-bar-row .social-bar-links li {
  margin: 0 0 0 0;
}
.social-bar-row .social-bar-links li a {
  display: inline-flex;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.social-bar-row .social-bar-links li a:hover {
  filter: brightness(0) saturate(100%) invert(90%) sepia(53%) saturate(0%) hue-rotate(164deg) brightness(90%) contrast(74%);
  -webkit-filter: brightness(0) saturate(100%) invert(90%) sepia(53%) saturate(0%) hue-rotate(164deg) brightness(90%) contrast(74%);
}
.social-bar-row .social-bar-links li a img {
  width: 40px;
}
@media (max-width: 1299px) {
  .social-bar-row .social-bar-links li a img {
    width: 30px;
  }
}
@media (max-width: 767px) {
  .social-bar-row .social-bar-links li a img {
    width: 40px;
  }
}

.footer-bottom-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 24px;
}
.footer-bottom-wrapper p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  opacity: 0.75;
}
@media (max-width: 767px) {
  .footer-bottom-wrapper p {
    font-size: 14px;
    text-align: center;
  }
}
.footer-bottom-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer-bottom-wrapper ul {
    justify-content: center;
  }
}
.footer-bottom-wrapper ul li {
  margin: 0 0 0 0;
}
.footer-bottom-wrapper ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #ffffff;
  opacity: 0.75;
  text-decoration: none;
}
@media (max-width: 767px) {
  .footer-bottom-wrapper ul li a {
    font-size: 14px;
  }
}

pagebuilder-component {
  position: relative;
}
pagebuilder-component span.component-rendered {
  background: cyan;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  border-radius: 4px;
}
pagebuilder-component:hover span.component-rendered {
  display: inline-block;
}

.hero-form-mobile {
  display: none;
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  padding: 0 16px;
}
@media (max-width: 767px) {
  .hero-form-mobile {
    display: block;
  }
}
.hero-form-mobile .hero-form-mobile-item {
  position: relative;
}
.hero-form-mobile .hero-form-mobile-item input {
  width: 100%;
  height: 56px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(50, 47, 48, 0.5);
  background: #fff;
  font-weight: 400;
  font-size: 16px;
  outline: none;
  box-shadow: none;
  line-height: 135%;
  letter-spacing: -0.05em;
  color: rgba(50, 47, 48, 0.75);
  font-family: "Inter", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.hero-form-mobile .hero-form-mobile-item input::-moz-placeholder {
  color: rgba(50, 47, 48, 0.75);
  opacity: 1;
}
.hero-form-mobile .hero-form-mobile-item input::placeholder {
  color: rgba(50, 47, 48, 0.75);
  opacity: 1;
}
.hero-form-mobile .hero-form-mobile-item .btn-primary {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  border: none;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.bg-red {
  background-color: #AE0F0A !important;
}

@media (max-width: 767px) {
  .hero-section {
    margin-bottom: -50px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-form-mobile {
    display: block;
    position: relative;
    top: -25px;
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 120;
    margin-top: -16px;
  }
}
.hero-section .hero-form-mobile .hero-form-row {
  display: flex;
  flex-direction: column !important;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 16px 16px 0 0;
}
.hero-section .hero-form-mobile .hero-form-item,
.hero-section .hero-form-mobile .hero-form-button {
  width: 100%;
}
.hero-section .hero-form-mobile .custom-select-trigger {
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(50, 47, 48, 0.5);
  padding: 12px 16px 12px 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: rgba(50, 47, 48, 0.75);
}
.hero-section .hero-form-mobile .custom-select-arrow {
  right: 16px;
}
.hero-section .hero-form-mobile .custom-select-arrow svg {
  width: 24px;
  height: 24px;
}
.hero-section .hero-form-mobile .hero-form-button .btn-primary {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  justify-content: center;
  padding: 12px 20px;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.form-select {
  width: 100%;
  height: 56px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid rgba(50, 47, 48, 0.5);
  background: #fff;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: rgba(50, 47, 48, 0.75);
  font-family: "Inter", sans-serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url("/wp-content/themes/xiorstudenthousing/dist/icons/select-arrow.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
}
@media (max-width: 1299px) {
  .form-select {
    font-size: 18px;
    height: 50px;
  }
}

.custom-select {
  position: relative;
}

.custom-select .cs-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fff;
  font-size: 16px;
  cursor: pointer;
}

.custom-select .cs-caret {
  margin-left: 10px;
}

.custom-select .cs-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  top: auto;
  width: 100%;
  text-align: left;
  max-height: 360px;
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 40;
  padding: 8px;
  display: none;
}

.custom-select.open .cs-panel {
  display: block;
  z-index: 1000;
}

.custom-select .cs-list {
  list-style: none;
  margin: 0;
  padding: 6px;
}

.custom-select .cs-list li {
  padding: 12px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.custom-select .cs-list li:hover {
  background: #f6f6f6;
}

.modal-panel {
  position: relative;
}

.gform-page-footer {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  max-width: 90%;
}

.gform_previous_button {
  border: 0;
  border-radius: 8px;
  height: 48px;
  padding: 12px 16px 12px 40px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #322F30 !important;
  background-color: #F4F3F2 !important;
  background-image: url("icons/arrow-black-left.svg");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: left 16px center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.gform_previous_button:hover {
  background-color: #bb0912;
}

.gform_next_button,
.gform_button[type=submit] {
  border: 0;
  border-radius: 8px;
  height: 48px;
  padding: 12px 40px 12px 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: #fff;
  background-color: #c80b0f;
  background-image: url("icons/btn-arrow.svg");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: right 16px center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-left: auto;
}
.gform_next_button:hover,
.gform_button[type=submit]:hover {
  background-color: #bb0912;
}
.gform_next_button .gform_wrapper.gravity-theme .gform_footer input.button:disabled, .gform_next_button:disabled, .gform_next_button[aria-disabled=true], .gform_next_button.is-disabled,
.gform_button[type=submit] .gform_wrapper.gravity-theme .gform_footer input.button:disabled,
.gform_button[type=submit]:disabled,
.gform_button[type=submit][aria-disabled=true],
.gform_button[type=submit].is-disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
}

.transparent-btn {
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  cursor: pointer;
}

.semester-remark {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #066c6f;
  background: #e4fcff;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  white-space: nowrap;
}
/*# sourceMappingURL=main.min.css.map */
