@charset "UTF-8";
@font-face {
  font-family: "Hauora";
  src: url("/assets-dist/fonts/Hauora-ExtraLight.woff2") format("woff2"), url("/assets-dist/fonts/Hauora-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hauora";
  src: url("/assets-dist/fonts/Hauora-Light.woff2") format("woff2"), url("/assets-dist/fonts/Hauora-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hauora";
  src: url("/assets-dist/fonts/Hauora-Regular.woff2") format("woff2"), url("/assets-dist/fonts/Hauora-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hauora";
  src: url("/assets-dist/fonts/Hauora-Medium.woff2") format("woff2"), url("/assets-dist/fonts/Hauora-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hauora";
  src: url("/assets-dist/fonts/Hauora-SemiBold.woff2") format("woff2"), url("/assets-dist/fonts/Hauora-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hauora";
  src: url("/assets-dist/fonts/Hauora-Bold.woff2") format("woff2"), url("/assets-dist/fonts/Hauora-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Hauora";
  src: url("/assets-dist/fonts/Hauora-ExtraBold.woff2") format("woff2"), url("/assets-dist/fonts/Hauora-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Убирает синий фон при нажатии на кнопу, ссылку... */
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

*:focus-visible {
  outline: 2px solid #ff9900;
  outline-offset: 2px;
  border-radius: 2px;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  /* Маскировака браузерных стилей при автоподстановке (заменить цвета)
  &:-webkit-autofill {
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    border-color: transparent;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  }

  &:focus,
  &:hover,
  &:-webkit-autofill:hover,
  &:-webkit-autofill:focus {
    background: transparent;
    border-color: #FFF;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  } */
}

input::placeholder,
button::placeholder,
textarea::placeholder,
select::placeholder {
  font: inherit;
  color: #b2b4bd;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

button {
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

img {
  vertical-align: top;
}

svg {
  color: inherit;
}

.button {
  display: flex;
  align-items: center;
  column-gap: 4px;
  padding: 8px 16px;
  border-radius: 30px;
  background: #496ffe;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 600;
  white-space: nowrap;
  color: #ffffff;
  transition: background-color 0.25s ease-in-out;
}
.button:not(.icon) {
  min-width: 40px;
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  .button:hover:hover {
    background-color: #2d50d0;
  }
}
@media (min-width: 1728px) {
  .button:not(.icon) {
    min-width: 60px;
  }
  .button {
    padding: 18px 24px;
  }
}
.button.icon {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f4f7fa;
  transition: background-color 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .button.icon:hover:hover {
    background-color: #e7ecee;
  }
}
@media (min-width: 1728px) {
  .button.icon {
    width: 60px;
    height: 60px;
    padding: 14px;
  }
}
.button.icon:active {
  background-color: #e7ecee;
}
.button.icon svg {
  display: inline-block;
  color: #496ffe;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.button.icon.small {
  width: 24px;
  height: 24px;
  padding: 4px;
}
@media (min-width: 1728px) {
  .button.icon.small {
    width: 32px;
    height: 32px;
  }
}
.button.text, .button.link {
  padding: 0;
  background: transparent;
  color: #496ffe;
  transition: color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .button.text:hover, .button.link:hover {
    color: #2d50d0;
    background: transparent;
  }
}
.button.text .icon, .button.link .icon {
  width: 16px;
  height: 16px;
}
@media (min-width: 1728px) {
  .button.text .icon, .button.link .icon {
    width: 24px;
    height: 24px;
  }
}
.button.text {
  font-size: 13px;
  line-height: 16px;
}
@media (min-width: 1280px) {
  .button.text {
    font-size: 16px;
    line-height: 24px;
  }
}
.button.link {
  font-size: 16px;
  line-height: 24px;
}
.button.link .icon-chevron {
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
}
.button.--light {
  background: #ffffff;
  color: #496ffe;
}
@media (hover: hover) and (pointer: fine) {
  .button.--light:hover:hover {
    background-color: #e7ecee;
  }
}
.button.--secondary {
  background: #f4f7fa;
  color: #496ffe;
}
@media (hover: hover) and (pointer: fine) {
  .button.--secondary:hover:hover {
    background-color: #e7ecee;
  }
}
@media (min-width: 1728px) {
  .button.--secondary {
    padding: 12px 20px;
  }
}
.button.small {
  font-size: 13px;
  line-height: 16px;
}
.button.small:not(.link):not(.text):not(.icon) {
  padding: 4px 12px;
}
.button.--favorite .icon {
  fill: transparent;
  transition: fill 0.25s ease-in-out;
}
.button.--favorite.active .icon {
  fill: #496ffe;
}

.link {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #496ffe;
  transition: color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .link:hover {
    color: #2d50d0;
  }
}
.link .icon-chevron {
  width: 24px;
  height: 24px;
  transform: rotate(-90deg);
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 20px;
  background: #ff9900;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0;
  color: #ffffff;
}

.select {
  width: 100%;
  position: relative;
  display: inline-block;
  color: #22252f;
}
.select.text .select__wrapper {
  padding: 0;
  color: #496ffe;
  background: transparent;
  border-color: transparent;
  transition: color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .select.text .select__wrapper:hover {
    color: #22252f;
  }
}
.select.--active .select__wrapper {
  border-color: #496ffe;
  color: #496ffe;
}
.select[aria-expanded=true] .icon {
  transform: rotate(180deg);
}
.select__label {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  font-weight: 600;
  color: #b2b4bd;
  margin-bottom: 4px;
}
.select__value {
  flex: 1;
}
.select__wrapper {
  display: flex;
  align-items: center;
  padding: 6px 14px;
  background: #f4f7fa;
  border-radius: 16px;
  border: 2px solid #f4f7fa;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .select__wrapper:hover {
    background: #e7ecee;
    border-color: #e7ecee;
  }
}
.select__wrapper input {
  height: 100%;
  width: 100%;
  margin-right: 4px;
  cursor: inherit;
}
.select__wrapper .icon {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  transition: transform 0.25s ease-in-out;
}
.select__dropdown-wrapper {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
  z-index: 300;
  border-radius: 16px;
  box-shadow: 0px 8px 48px 0px rgba(34, 37, 47, 0.1215686275), 0px 0px 16px 0px rgba(34, 37, 47, 0.0392156863);
  overflow: hidden;
}
.select__dropdown-wrapper.--active {
  opacity: 1;
  pointer-events: auto;
}
.select__dropdown {
  display: flex;
  background: #ffffff;
  padding: 8px 0;
}
.select__dropdown--scroll::after {
  content: "";
  flex: 0 0 12px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 100%;
  background: #f8fafb;
}
.select__dropdown--scroll .select__option {
  padding-right: 4px;
}
.select__head {
  display: none;
}
.select__options {
  position: relative;
  flex: 1 1 100%;
  height: 100%;
  max-height: 228px;
  overflow: auto;
  z-index: 1;
}
.select__options::-webkit-scrollbar {
  width: 12px;
}
.select__options::-webkit-scrollbar-track {
  background: #f8fafb;
}
.select__options::-webkit-scrollbar-thumb {
  background-color: #b2b4bd;
  border-radius: 20px;
  border: 4px solid #f8fafb;
}
.select__option-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}
.select__option {
  position: relative;
  padding: 0 16px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 600;
  color: #717584;
  cursor: pointer;
  transition: background 0.25s ease-in-out;
}
.select__option::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.25s ease-in-out;
}
.select__option:not(:last-child) .select__option-inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #eff2f6;
  border-radius: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (hover: hover) and (pointer: fine) {
  .select__option:hover:not(.disabled) {
    background: #e7ecee;
  }
  .select__option:hover:not(.disabled) .select__option-inner:after {
    background: #e7ecee;
  }
  .select__option:hover:not(.disabled)::before {
    background: #e7ecee;
  }
}
.select__option .icon {
  color: #496ffe;
  width: 24px;
  height: 24px;
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.select__option.selected:not(.disabled) {
  color: #22252f;
}
.select__option.selected:not(.disabled) .icon {
  opacity: 1;
}
.select__option.disabled {
  color: #b2b4bd;
  background: transparent !important;
  cursor: default;
  pointer-events: none;
}
.select__option.disabled::before {
  background: transparent;
}
.select__option.disabled .select__option-inner::after {
  background: #eff2f6;
}
.select__option.disabled .icon {
  opacity: 0.3;
  color: #b2b4bd;
}
@media (max-width: 1279px) {
  .select__dropdown-wrapper.--mobile-modal {
    position: fixed;
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    border-radius: 0;
    background: rgba(34, 37, 47, 0.4);
  }
}
@media (max-width: 1279px) and (min-width: 768px) {
  .select__dropdown-wrapper.--mobile-modal {
    flex-direction: row;
  }
}
@media (max-width: 1279px) {
  .select__dropdown-wrapper.--mobile-modal .select__dropdown {
    max-width: 100%;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 16px;
  }
}
@media (max-width: 1279px) and (min-width: 768px) {
  .select__dropdown-wrapper.--mobile-modal .select__dropdown {
    flex: 0 0 400px;
    height: 100%;
    width: 400px;
  }
}
@media (max-width: 1279px) {
  .select__dropdown-wrapper.--mobile-modal .select__head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 8px 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #d0d6dd;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    font-weight: 600;
  }
  .select__dropdown-wrapper.--mobile-modal .select__head .close {
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
}

.checkbox {
  display: inline-flex;
  align-items: start;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 600;
  color: #717584;
  cursor: pointer;
  user-select: none;
}
.checkbox a {
  color: #496ffe;
}
.checkbox__box {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background: #ffffff;
  border-radius: 2px;
  border: 2px solid #496ffe;
}
.checkbox__box .icon {
  position: relative;
  top: -2px;
  left: -2px;
  width: 24px;
  height: 24px;
  color: #496ffe;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
input:checked + .checkbox__box .icon {
  opacity: 1;
}

.input-phone {
  width: 100%;
  position: relative;
  display: inline-block;
}
.input-phone__label {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  font-weight: 600;
  color: #b2b4bd;
  margin-bottom: 4px;
}
.input-phone__wrapper {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: #f4f7fa;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.25s ease-in-out;
}
.input-phone__wrapper:hover {
  background: #e7ecee;
}
.input-phone__wrapper input {
  height: 100%;
  width: 100%;
  margin-right: 4px;
  cursor: inherit;
}
.input-phone__dropdown {
  position: fixed;
  display: flex;
  overflow: hidden;
  padding: 8px 0;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 8px 48px 0px rgba(34, 37, 47, 0.1215686275), 0px 0px 16px 0px rgba(34, 37, 47, 0.0392156863);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
  z-index: 300;
}
.input-phone__dropdown[aria-expanded=true][aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.input-phone__dropdown--scroll::after {
  content: "";
  flex: 0 0 12px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 100%;
  background: #eff2f6;
}
.input-phone__options {
  position: relative;
  flex: 1 1 100%;
  height: 100%;
  max-height: 228px;
  overflow: auto;
  z-index: 1;
}
.input-phone__options::-webkit-scrollbar {
  width: 12px;
}
.input-phone__options::-webkit-scrollbar-track {
  background: #f8fafb;
}
.input-phone__options::-webkit-scrollbar-thumb {
  background-color: #b2b4bd;
  border-radius: 20px;
  border: 4px solid #f8fafb;
}
.input-phone__option-inner {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}
.input-phone__option {
  position: relative;
  padding: 0 16px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 600;
  color: #717584;
  cursor: pointer;
  transition: background 0.25s ease-in-out;
}
.input-phone__option::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.25s ease-in-out;
}
.input-phone__option:not(:last-child) .input-phone__option-inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #eff2f6;
  border-radius: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (hover: hover) and (pointer: fine) {
  .input-phone__option:hover {
    background: #e7ecee;
  }
  .input-phone__option:hover .select__option-inner:after {
    background: #e7ecee;
  }
  .input-phone__option:hover::before {
    background: #e7ecee;
  }
}
.input-phone__option .icon {
  color: #496ffe;
  width: 24px;
  height: 24px;
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.input-phone__option.selected {
  color: #22252f;
}
.input-phone__option.selected .icon {
  opacity: 1;
}

.iti {
  flex: 1 1 100%;
}

.iti__selected-country-primary {
  padding: 0 !important;
}
.iti__selected-country-primary:hover {
  background: transparent !important;
}

.iti__arrow,
.iti--fullscreen-popup,
.iti__dropdown-content {
  display: none !important;
}

.input {
  width: 100%;
  position: relative;
  display: inline-block;
}
.input.error .input__field {
  border-color: #ff3700;
}
.input.error .error-tooltip {
  width: auto;
  opacity: 1;
  pointer-events: auto;
}
.input__label {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  font-weight: 600;
  color: #b2b4bd;
  margin-bottom: 4px;
}
.input__field {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: #f4f7fa;
  border-radius: 16px;
  border: 2px solid #f4f7fa;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  transition: background 0.25s ease-in-out, border-color 0.25s ease-in-out;
}
.input__field:hover {
  background: #e7ecee;
  border-color: #e7ecee;
}
.input__field input {
  flex: 1 1 100%;
  padding: 8px 0;
}
.input__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}
.input__icon.--append {
  margin-left: 4px;
}
.input__icon.--prepend {
  margin-left: 4px;
}
.input .error-tooltip {
  width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
}
.input .error-tooltip svg {
  width: 100%;
  height: 100%;
}
.input input {
  width: 100%;
}

.textarea {
  width: 100%;
  position: relative;
  display: inline-block;
}
.textarea.error .textarea__field {
  border-color: #ff3700;
}
.textarea.error .error-tooltip {
  width: auto;
  opacity: 1;
  pointer-events: auto;
}
.textarea__label {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  font-weight: 600;
  color: #b2b4bd;
  margin-bottom: 4px;
}
.textarea__field {
  display: flex;
  flex-direction: column;
  height: 108px;
  padding: 8px 16px;
  background: #f4f7fa;
  border-radius: 16px;
  border: 2px solid #f4f7fa;
  transition: background 0.25s ease-in-out, border-color 0.25s ease-in-out;
}
.textarea__field:hover {
  background: #e7ecee;
  border-color: #e7ecee;
}
.textarea__field-inner {
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}
.textarea__field-inner textarea {
  height: 100%;
  flex: 1 1 100%;
  resize: none;
  margin-bottom: 4px;
}
.textarea__symbol-length {
  display: flex;
  align-items: center;
  justify-content: end;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  text-align: right;
  color: #b2b4bd;
}
.textarea__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}
.textarea__icon.--append {
  margin-left: 4px;
}
.textarea__icon.--prepend {
  margin-left: 4px;
}
.textarea .error-tooltip {
  width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
}
.textarea .error-tooltip svg {
  width: 100%;
  height: 100%;
}

.choice-group {
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.choice-group__label {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  font-weight: 600;
  color: #b2b4bd;
  margin-bottom: 4px;
}
.choice-group__wrapper {
  display: flex;
  align-items: center;
  column-gap: 4px;
  row-gap: 4px;
}
.choice-group__item .icon {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.choice-group__item input:checked + div {
  border-color: #496ffe;
  color: #496ffe;
}
@media (hover: hover) and (pointer: fine) {
  .choice-group__item:hover .choice-group__item-value:hover {
    background: #e7ecee;
  }
  .choice-group__item:hover input:not(:checked) + .choice-group__item-value {
    border-color: #e7ecee;
  }
}
.choice-group__item.hide {
  display: none;
  opacity: 0;
}
.choice-group__item-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  width: auto;
  height: 40px;
  padding: 6px 14px;
  background: #f4f7fa;
  border-radius: 16px;
  border: 2px solid #f4f7fa;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 600;
  color: #22252f;
  transition: background 0.25s ease-in-out, border-color 0.25s ease-in-out;
  cursor: pointer;
}
.choice-group__counter {
  display: none;
  padding: 6px 8px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  color: #496ffe;
  cursor: pointer;
  transition: color 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .choice-group__counter:hover {
    color: #2d50d0;
  }
}
@media (min-width: 1728px) {
  .choice-group__counter {
    font-size: 16px;
    line-height: 24px;
  }
}
.choice-group.square .choice-group__item:not(.not-square) .choice-group__item-value {
  width: 40px;
  height: 40px;
  padding: 6px;
}

.range-slider {
  width: 245px;
  color: #22252f;
}
.range-slider.--histogram {
  width: 100%;
}
.range-slider.--histogram canvas {
  max-width: 100%;
  height: 80px;
}
.range-slider.--histogram .range-slider__inputs {
  background: transparent;
  border-radius: 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 16px;
}
.range-slider.--histogram .range-slider__input .label {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  font-weight: 600;
  color: #b2b4bd;
  margin-bottom: 4px;
}
.range-slider.--histogram .range-slider__input input {
  width: 100%;
  background: #f4f7fa;
  border-radius: 16px;
  padding: 8px 16px;
}
.range-slider.--histogram .range-slider__track {
  left: 0;
  right: 0;
  bottom: -8.5px;
  width: 100%;
}
.range-slider.--histogram .range-slider__track::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #eff2f6;
}
.range-slider.--once .range-slider__inputs {
  grid-template-columns: 1fr;
}
.range-slider.--once .range-slider__inputs input {
  text-align: left;
}
.range-slider__histogram {
  position: relative;
  margin-bottom: 16px;
}
.range-slider__label {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  font-weight: 600;
  color: #b2b4bd;
  margin-bottom: 4px;
}
.range-slider__inputs {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  background: #f4f7fa;
  border-radius: 16px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}
.range-slider__inputs input {
  min-width: 0;
  text-align: center;
  font-weight: 600;
}
.range-slider__dash {
  color: #b2b4bd;
  margin: 0 4px;
}
.range-slider__track {
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  transform: translateY(calc(50% - 2px));
  width: calc(100% - 32px);
  height: 12px;
  background: transparent;
}
.range-slider__track input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  appearance: none;
  pointer-events: none;
  z-index: 1;
}
.range-slider__track input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #496ffe;
  border: 1px solid #ffffff;
  cursor: pointer;
  pointer-events: auto;
}
.range-slider__track input[type=range]::-ms-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #496ffe;
  border: 1px solid #ffffff;
  cursor: pointer;
  pointer-events: auto;
}
.range-slider__track input[type=range]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #496ffe;
  border: 1px solid #ffffff;
  cursor: pointer;
  pointer-events: auto;
}
.range-slider__track .range-fill {
  position: absolute;
  top: calc(50% + 1px);
  transform: translateY(-50%);
  height: 1px;
  background: #496ffe;
}
.range-slider__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 4px;
  margin-top: 16px;
}
.range-slider__tag {
  padding: 2px 6px;
  border-radius: 12px;
  background: #f4f7fa;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  border: 1px solid #f4f7fa;
  transition: background 0.25s ease-in-out, border-color 0.25s ease-in-out, color 0.25s ease-in-out;
  cursor: pointer;
}
.range-slider__tag:hover {
  background: #e7ecee;
  border-color: #e7ecee;
}
input:checked + .range-slider__tag {
  border-color: #496ffe;
  color: #496ffe;
}

.switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.switch__slider {
  position: relative;
  width: 42px;
  height: 24px;
  background: #f4f7fa;
  border-radius: 12px;
  border: 2px solid #496ffe;
  margin-right: 8px;
  transition: background 0.25s ease-in-out;
}
.switch__slider::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #496ffe;
  border-radius: 50%;
  transition: transform 0.25s ease-in-out, background 0.25s ease-in-out;
}
input:checked + .switch__slider {
  background: #496ffe;
}
input:checked + .switch__slider::before {
  transform: translateX(16px);
  background: #ffffff;
}
.switch__label {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 600;
}

.button-switch {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  padding: 4px;
  background: #f4f7fa;
  border-radius: 24px;
}
@media (min-width: 1280px) {
  .button-switch {
    max-width: 100%;
    overflow: auto;
    scroll-behavior: smooth;
  }
  .button-switch::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .button-switch::-webkit-scrollbar-track {
    background: transparent;
  }
  .button-switch::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 0;
    border: none;
  }
}
.button-switch__wrapper {
  max-width: 100vw;
  position: relative;
  padding: 0 16px;
  margin: 0 -16px;
  overflow: auto;
  display: flex;
}
.button-switch__wrapper::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.button-switch__wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.button-switch__wrapper::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
.button-switch__wrapper::after {
  content: "";
  display: block;
  width: 0;
  flex-shrink: 0;
}
@media (min-width: 1280px) {
  .button-switch__wrapper {
    max-width: auto;
    display: block;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}
.button-switch__item {
  flex: 0 0 auto;
  min-width: 0;
  padding: 14px 8px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}
.button-switch__item span {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 600;
  color: #717584;
  transition: color 0.25s ease-in-out;
  z-index: 2;
}
.button-switch__item .count {
  padding: 0 4px;
  border-radius: 12px;
  background: #ffffff;
  margin-right: -4px;
  font-weight: 600;
  color: #496ffe;
}
.button-switch input:checked + span {
  color: #ffffff;
}
.button-switch__bg {
  position: absolute;
  border-radius: 20px;
  background: #496ffe;
  top: 4px;
  bottom: 4px;
  left: 4px;
  transition: width 0.25s ease-in-out, left 0.25s ease-in-out;
}
.button-switch__controls {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  border-radius: 24px;
  background: linear-gradient(270deg, rgba(244, 247, 250, 0) 80%, #f4f7fa 93%, #f4f7fa 100%), linear-gradient(90deg, rgba(244, 247, 250, 0) 80%, #f4f7fa 93%, #f4f7fa 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}
.button-switch__controls.--hide-left {
  background: linear-gradient(90deg, rgba(244, 247, 250, 0) 80%, #f4f7fa 93%, #f4f7fa 100%);
}
.button-switch__controls.--hide-left .button-switch__control:nth-child(1) {
  opacity: 0;
}
.button-switch__controls.--hide-left .button-switch__control:nth-child(1) .button-switch__control-left {
  pointer-events: none;
}
.button-switch__controls.--hide-right {
  background: linear-gradient(270deg, rgba(244, 247, 250, 0) 80%, #f4f7fa 93%, #f4f7fa 100%);
}
.button-switch__controls.--hide-right .button-switch__control:nth-child(2) {
  opacity: 0;
}
.button-switch__controls.--hide-right .button-switch__control:nth-child(2) .button-switch__control-right {
  pointer-events: none;
}
.button-switch__controls.--hide-left.--hide-right {
  display: none;
}
.button-switch__control {
  height: 100%;
  padding: 4px 0;
  background: #f4f7fa;
  border-radius: 24px;
  transition: opacity 0.25s ease-in-out;
}
.button-switch__control:nth-child(1) {
  padding-left: 4px;
}
.button-switch__control:nth-child(2) {
  padding-right: 4px;
}
.button-switch__control-left, .button-switch__control-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  background: #ffffff;
  cursor: pointer;
  color: #496ffe;
  pointer-events: auto;
}
.button-switch__control-left .icon, .button-switch__control-right .icon {
  width: 24px;
  height: 24px;
}

.dropdown[data-open=true] .dropdown__icon {
  transform: rotate(180deg);
}
.dropdown__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.dropdown__subtitle {
  margin-top: 8px;
}
.dropdown__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}
.dropdown__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  transition: transform 0.25s ease-in-out;
}
@media (min-width: 1280px) {
  .dropdown__icon {
    width: 32px;
    height: 32px;
  }
}

.banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 212px;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
}
.banner__content {
  color: #ffffff;
  position: relative;
  height: 100%;
  max-width: 400px;
  margin-bottom: 40px;
  z-index: 3;
}
.banner h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  letter-spacing: -2%;
  margin-bottom: 8px;
}
.banner .button {
  position: relative;
  margin-top: auto;
  z-index: 3;
}
.banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.banner__blackout {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(34, 37, 47, 0.48) 0%, rgba(34, 37, 47, 0) 100%);
  z-index: 2;
}

.pagination {
  display: flex;
  align-items: center;
  z-index: 2;
}
.pagination__list {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.pagination__item {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0;
  color: #717584;
  transition: color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .pagination__item:hover {
    color: #22252f;
  }
}
@media (min-width: 1728px) {
  .pagination__item {
    font-size: 16px;
    line-height: 24px;
  }
}
.pagination__item.active {
  color: #496ffe;
}
.pagination__button {
  margin-left: 24px;
}

.tooltip {
  flex: 0 0 auto;
  width: auto;
  display: inline-flex;
  align-items: center;
}
.tooltip.error-tooltip .tooltip__trigger {
  width: 24px;
  height: 24px;
  color: #ff3700;
  border: 2px solid #ff3700;
}
.tooltip.error-tooltip .tooltip__trigger svg {
  width: 22px;
  height: 22px;
}
.tooltip__wrapper > * {
  display: inline-flex;
  vertical-align: middle;
}
.tooltip__trigger {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 4px;
  font-size: 13px;
  line-height: 16px;
  color: #496ffe;
  background-color: #f4f7fa;
  transition: background-color 0.2s;
}
@media (min-width: 1728px) {
  .tooltip__trigger {
    width: 24px;
    height: 24px;
  }
  .tooltip__trigger svg {
    width: 18px;
    height: 18px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .tooltip__trigger:hover:hover {
    background-color: #e7ecee;
  }
}
.tooltip__content-wrapper {
  --tooltip-translate: 8px;
  position: relative;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transform: translateY(var(--tooltip-translate, 0));
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
  z-index: 300;
}
.tooltip__content-wrapper.--active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.tooltip__content-wrapper .corner {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 16px;
  color: #ffffff;
  z-index: 300;
}
.tooltip__content-wrapper .corner--top {
  top: 0;
  transform: translate(-50%, -14px);
}
.tooltip__content-wrapper .corner--bottom {
  top: calc(100% - 2px);
  transform: translate(-50%, 0) rotate(180deg);
}
.tooltip__content {
  position: relative;
  display: flex;
  max-width: 300px;
  padding: 16px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 8px 48px 0px rgba(34, 37, 47, 0.1215686275), 0px 0px 16px 0px rgba(34, 37, 47, 0.0392156863);
  z-index: 100;
}
.tooltip__head {
  display: none;
}
.tooltip__popup {
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  max-width: 240px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1279px) {
  .tooltip__content-wrapper.--mobile-modal {
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: rgba(34, 37, 47, 0.4);
  }
}
@media (max-width: 1279px) and (min-width: 768px) {
  .tooltip__content-wrapper.--mobile-modal {
    flex-direction: row;
  }
}
@media (max-width: 1279px) {
  .tooltip__content-wrapper.--mobile-modal .corner {
    display: none;
  }
  .tooltip__content-wrapper.--mobile-modal .tooltip__content {
    max-width: 100%;
    transform: translateY(0);
    border-radius: 0;
    flex-direction: column;
  }
}
@media (max-width: 1279px) and (min-width: 768px) {
  .tooltip__content-wrapper.--mobile-modal .tooltip__content {
    flex: 0 0 400px;
    height: 100%;
    width: 400px;
  }
}
@media (max-width: 1279px) {
  .tooltip__content-wrapper.--mobile-modal .tooltip__head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding: 8px 16px;
    margin: -16px -16px 16px;
    border-bottom: 1px solid #d0d6dd;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    font-weight: 600;
  }
  .tooltip__content-wrapper.--mobile-modal .tooltip__head .close {
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
}

.breadcrumbs {
  padding: 8px 0;
  margin-bottom: 16px;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
}
.breadcrumbs__item {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  transition: color 0.25s ease-in-out;
}
.breadcrumbs__item + .breadcrumbs__item {
  padding-left: 4px;
  margin-left: 4px;
}
.breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  position: relative;
  left: -4px;
  color: #b2b4bd;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumbs__item:hover {
    color: #496ffe;
  }
}
.breadcrumbs__item:last-child {
  color: #b2b4bd;
  pointer-events: none;
}

.progress {
  display: flex;
  align-items: center;
}
.progress.--green .progress__graph-item.--active {
  background: #21c900;
}
.progress.--green .progress__rating span {
  color: #21c900;
}
.progress.--red .progress__graph-item.--active {
  background: #ff3700;
}
.progress.--red .progress__rating span {
  color: #ff3700;
}
.progress.--yellow .progress__graph-item.--active {
  background: #f7ce00;
}
.progress.--yellow .progress__rating span {
  color: #f7ce00;
}
.progress.--orange .progress__graph-item.--active {
  background: #ff9900;
}
.progress.--orange .progress__rating span {
  color: #ff9900;
}
.progress.small .progress__graph-item {
  width: 4px;
  height: 20px;
}
.progress.small .progress__rating {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}
.progress.medium .progress__graph-item {
  width: 5px;
  height: 24px;
}
.progress.medium .progress__rating {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
.progress__graph {
  display: flex;
  column-gap: 2px;
}
.progress__graph-item {
  height: 28px;
  width: 6px;
  border-radius: 1px;
  background: #d0d6dd;
}
.progress__rating {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #b2b4bd;
  margin-left: 8px;
}

.dotted-list {
  display: block;
  margin: 0;
  padding: 0;
}
.dotted-list__item {
  display: flex;
  align-items: end;
  letter-spacing: -1ex;
  margin: 4px 0;
  font-weight: 600;
}
.dotted-list__item:first-child {
  margin-top: 0;
}
.dotted-list__item:last-child {
  margin-bottom: 0;
}
.dotted-list__left {
  flex: 1;
  display: inline-block;
  align-items: center;
  padding-right: 4px;
  vertical-align: top;
  overflow: hidden;
  letter-spacing: normal;
  color: #717584;
}
.dotted-list__left::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  margin: 0 -99% 0 4px;
  vertical-align: baseline;
  background-image: url('data:image/svg+xml,<svg width="100%" height="1" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="1" x2="100%" y2="1" stroke="%23D0D6DD" stroke-width="2" stroke-linecap="round" stroke-dasharray="3,5" /></svg>');
  background-repeat: repeat-x;
}
.dotted-list__content {
  display: inline-flex;
  align-items: center;
}
.dotted-list__right {
  display: inline-block;
  letter-spacing: normal;
  padding-left: 4px;
  vertical-align: bottom;
  white-space: nowrap;
  color: #b2b4bd;
}
.dotted-list a {
  color: #496ffe;
  transition: color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .dotted-list a:hover:hover {
    color: #2d50d0;
  }
}

.tags {
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  column-gap: 4px;
  row-gap: 8px;
}

.tag {
  white-space: nowrap;
  padding: 4px 8px;
  background: #fef2e0;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
}
@media (min-width: 1728px) {
  .tag {
    font-size: 16px;
    line-height: 24px;
  }
}
.tag.--accent {
  background: #ff9900;
  color: #ffffff;
}
.tag.--default {
  background: #f8fafb;
}

.more-tags {
  position: relative;
  transition: background 0.25s ease-in-out;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .more-tags:hover {
    background: #fde4bf;
  }
}
.more-tags__content {
  position: fixed;
  flex-wrap: wrap;
  max-width: calc(100vw - 32px);
  width: max-content;
  padding: 8px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 8px 48px 0px rgba(34, 37, 47, 0.1215686275), 0px 0px 16px 0px rgba(34, 37, 47, 0.0392156863);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 0.25s ease-in-out;
  z-index: 300;
  cursor: default;
}
.more-tags__content[aria-expanded=true][aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
}

.installment-plan {
  position: relative;
  border-radius: 16px;
  min-width: 320px;
  padding: 16px;
  overflow: hidden;
  background: #fef2e0;
}
@media (min-width: 1280px) {
  .installment-plan {
    min-width: 385px;
    padding: 24px;
  }
}
@media (min-width: 1728px) {
  .installment-plan {
    min-width: 540px;
  }
}
.installment-plan[data-open-modal] {
  cursor: pointer;
  transition: background 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .installment-plan[data-open-modal]:hover {
    background: #fde4bf;
  }
}
.installment-plan .--decor {
  position: absolute;
  top: 85px;
  right: -190px;
  width: 760px;
  height: auto;
  transform: rotate(-43deg);
  pointer-events: none;
  color: #ff9900;
}
.installment-plan__title {
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
}
.installment-plan__text {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  color: #717584;
}
.installment-plan + .installment-plan .--decor {
  top: -35px;
  right: -350px;
  transform: rotate(-150deg);
}

.navigations {
  display: flex;
  align-items: center;
  column-gap: 4px;
}
.navigations .button-prev:not(.swiper-button-lock),
.navigations .button-next:not(.swiper-button-lock) {
  display: flex;
}

.callback-form {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 16px;
  background: #fef2e0;
}
.callback-form__head {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.callback-form__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.callback-form__subtitle {
  max-width: 600px;
  font-weight: 400;
  color: #717584;
}
.callback-form__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .callback-form__inner {
    grid-auto-flow: column;
    grid-template-columns: repeat(2, 1fr) auto;
  }
}
.callback-form__inner .button {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .callback-form__inner .button {
    margin-top: 0;
    margin-left: 8px;
  }
}
.callback-form__policy {
  position: relative;
  z-index: 1;
}
.callback-form__policy a {
  color: #496ffe;
  transition: color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .callback-form__policy a:hover {
    color: #2d50d0;
  }
}
.callback-form .input__field {
  background: #ffffff;
  border-color: #ffffff;
}
.callback-form .--decor {
  position: absolute;
  top: 210px;
  right: -70px;
  width: 648px;
  height: auto;
  transform: rotate(-40deg);
  pointer-events: none;
  color: #ff9900;
}
@media (min-width: 768px) {
  .callback-form .--decor {
    top: 60px;
    transform: rotate(-30deg);
  }
}
@media (min-width: ) {
  .callback-form .--decor {
    width: 760px;
  }
}

.video {
  display: inline-block;
  position: relative;
}
.video.--playing .video__button, .video.--playing .video__blackout {
  opacity: 0;
  pointer-events: none;
}
.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video__button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  color: #ffffff;
  transition: opacity 0.25s ease-in-out;
  z-index: 2;
}
.video__button .icon {
  width: 100%;
  height: 100%;
}
.video__blackout {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(34, 37, 47, 0.4);
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
  z-index: 1;
}

.card {
  display: flex;
  flex-direction: column;
  flex: 0 0 253px;
  border-radius: 16px;
  padding: 16px;
  background: #ffffff;
}
.card.--accent {
  background: #fef2e0;
}
@media (min-width: 768px) {
  .card {
    flex: 0 0 297px;
  }
}
@media (min-width: 1024px) {
  .card {
    flex: 0 0 calc(50% - 8px);
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .card {
    border-radius: 24px;
    padding: 24px;
    flex: 0 0 calc(50% - 12px);
  }
}
.card__left {
  order: 1;
}
@media (min-width: 1024px) {
  .card__left {
    order: 0;
  }
}
.card__left-wrapper {
  display: flex;
}
.card__left-prepend {
  flex: 0 0 auto;
  margin-right: 4px;
  font-weight: 600;
  color: #ff9900;
}
@media (min-width: 1024px) {
  .card__left-prepend {
    margin-right: 8px;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
  }
}
@media (min-width: 1728px) {
  .card__left-prepend {
    font-size: 24px;
    line-height: 32px;
  }
}
.card__right {
  order: 0;
}
@media (min-width: 1024px) {
  .card__right {
    order: 1;
  }
}
@media (min-width: 1728px) {
  .card {
    flex-direction: row;
  }
}
.card__title {
  font-weight: 600;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .card__title {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
}
@media (min-width: 1728px) {
  .card__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.card__content {
  font-size: 13px;
  line-height: 16px;
}
@media (min-width: 1024px) {
  .card__content {
    font-size: 16px;
    line-height: 24px;
    max-width: 400px;
  }
}
.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  padding: 8px;
  border-radius: 50%;
  background: #f8fafb;
}
.card__icon.--accent {
  background: #ff9900;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .card__icon {
    margin-bottom: 0;
    margin-left: 16px;
  }
}
@media (min-width: 1280px) {
  .card__icon {
    margin-left: 24px;
  }
}
@media (min-width: 1728px) {
  .card__icon {
    width: 60px;
    height: 60px;
    padding: 14px;
    margin-left: 40px;
  }
}
.card__icon .icon {
  width: 100%;
  height: 100%;
}
.card .button {
  width: 100%;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .card .button {
    margin-top: 32px;
  }
}
@media (min-width: 1728px) {
  .card .button {
    width: auto;
    margin-top: 0;
    margin-left: 40px;
  }
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: #ffffff;
  height: 57px;
}
@media (min-width: 1728px) {
  .header {
    height: 77px;
  }
}
.header__inner {
  padding: 8px 0;
  border-bottom: 1px solid #eff2f6;
}
.header__container {
  display: flex;
  align-items: center;
}
.header__logo {
  height: 40px;
  width: 102px;
}
@media (min-width: 1728px) {
  .header__logo {
    height: 60px;
    width: 153px;
  }
}
.header__logo .icon {
  width: 100%;
  height: 100%;
}
.header__actions {
  display: flex;
  align-items: center;
  column-gap: 4px;
  margin-left: auto;
}
@media (min-width: 1280px) {
  .header__actions {
    margin-left: 24px;
  }
}
@media (min-width: 1728px) {
  .header__actions {
    margin-left: 40px;
  }
}
.header__actions .button.--callback {
  display: none;
}
@media (min-width: 768px) {
  .header__actions .button.--callback {
    display: block;
  }
}
.header__burger {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 2px;
  margin-left: 16px;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .header__burger {
    display: none;
  }
}
.header__burger span {
  position: absolute;
  left: 2px;
  right: 2px;
  display: block;
  width: calc(100% - 4px);
  height: 2px;
  border-radius: 2px;
  background: #22252f;
  transition: top 0.25s ease-in-out, bottom 0.25s ease-in-out, transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
.header__burger span:nth-child(1) {
  top: 5px;
}
.header__burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__burger span:nth-child(3) {
  bottom: 5px;
}
.header__burger.--active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__burger.--active span:nth-child(2) {
  opacity: 0;
}
.header__burger.--active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.header__nav {
  display: none;
}
@media (min-width: 1280px) {
  .header__nav {
    display: block;
    margin-left: 24px;
    margin-bottom: 1px;
  }
}
@media (min-width: 1728px) {
  .header__nav {
    margin-left: 40px;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
@media (min-width: 1728px) {
  .header__nav-list {
    column-gap: 16px;
  }
}
.header__nav-item a {
  display: inline-block;
  padding-right: 0.5px;
  font-size: 13px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0;
  color: #22252f;
  transition: color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav-item a:hover:hover {
    color: #496ffe;
  }
}
@media (min-width: 1728px) {
  .header__nav-item a {
    font-size: 16px;
    line-height: 24px;
  }
}
.header__nav-item a:active {
  color: #496ffe;
}
.header__nav-item.--open > a {
  color: #496ffe;
}
.header__nav-item.--add {
  position: relative;
}
.header__nav-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  color: #22252f;
  transition: color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .header__nav-button:hover:hover {
    color: #496ffe;
  }
}
@media (min-width: 1728px) {
  .header__nav-button {
    width: 24px;
    height: 24px;
  }
}
.header__nav-button:active, .header__nav-button.--active {
  color: #496ffe;
}
.header__nav-button.--active + .header__nav-add {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.header__nav-add {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translate(-50%, -200px);
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0px 8px 48px 0px rgba(34, 37, 47, 0.1215686275);
  box-shadow: 0px 0px 16px 0px rgba(34, 37, 47, 0.0392156863);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
  z-index: 100;
}
.header__nav-add .corner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -14px);
  width: 24px;
  height: 16px;
  color: #ffffff;
}
.header__nav-add-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.header__info {
  display: none;
}
@media (min-width: 1280px) {
  .header__info {
    display: flex;
    align-items: center;
    column-gap: 8px;
    margin-left: auto;
  }
}
@media (min-width: 1728px) {
  .header__info {
    column-gap: 16px;
  }
}
.header__info svg {
  width: 16px;
  height: 16px;
}
@media (min-width: 1728px) {
  .header__info svg {
    width: 24px;
    height: 24px;
  }
}
.header__info-item {
  display: flex;
  align-items: center;
  column-gap: 4px;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0;
  color: #717584;
}
@media (min-width: 1728px) {
  .header__info-item {
    font-size: 16px;
    line-height: 24px;
  }
}
.header__social-links {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.header__social-links svg {
  width: 24px;
  height: 24px;
}

.desktop-drop {
  display: none;
}
@media (min-width: 1280px) {
  .desktop-drop {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 57px);
    background: rgba(34, 37, 47, 0.4);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
  }
}
@media (min-width: 1280px) and (min-width: 1728px) {
  .desktop-drop {
    height: calc(100vh - 77px);
  }
}
@media (min-width: 1280px) {
  .desktop-drop.--open {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.desktop-drop__inner {
  padding: 24px 0;
  background: #ffffff;
}
.desktop-drop__container {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
}
.desktop-drop .header__nav-list {
  flex-direction: column;
  align-items: start;
  row-gap: 4px;
}
.desktop-drop .header__nav-item a {
  display: flex;
  align-items: center;
  column-gap: 4px;
}

.mobile-drop {
  position: fixed;
  top: 57px;
  right: 0;
  left: 0;
  height: calc(100vh - 57px);
  background: rgba(34, 37, 47, 0.4);
  z-index: 100;
  opacity: 0;
  transform: translateX(100%);
  pointer-events: none;
  transition: opacity 0.25s ease-in-out, transform 0s 0.25s ease-in-out;
}
@supports (height: 100svh) {
  .mobile-drop {
    height: calc(100svh - 57px);
  }
}
.mobile-drop.--open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  transition: opacity 0.25s ease-in-out, transform 0s 0s;
}
.mobile-drop.--open .mobile-drop__container {
  transform: translateX(0);
}
.mobile-drop__container {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  min-width: 300px;
  max-width: 400px;
  width: calc(100% - 75px);
  height: 100%;
  padding: 16px;
  margin-left: auto;
  background: #ffffff;
  overflow: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease-in-out;
}
@media (min-width: 1280px) {
  .mobile-drop {
    display: none;
  }
}
.mobile-drop .header__nav-list {
  flex-direction: column;
  align-items: start;
}
.mobile-drop .header__nav-item {
  width: 100%;
}
.mobile-drop .header__nav-item.--border {
  padding: 8px 0;
}
.mobile-drop .header__nav-item.--border:not(:last-child) {
  border-bottom: 1px solid #eff2f6;
}
.mobile-drop .header__nav-item.dropdown .header__nav-list {
  row-gap: 4px;
}
.mobile-drop .header__nav-item.dropdown .header__nav-list:first-child {
  padding-top: 8px;
}
.mobile-drop .header__nav-item.dropdown .dropdown__header .icon {
  transform: rotate(0deg);
  transition: transform 0.25s ease-in-out;
}
.mobile-drop .header__nav-item.dropdown[data-open=true] .dropdown__header a {
  color: #496ffe;
}
.mobile-drop .header__nav-item.dropdown[data-open=true] .dropdown__header .icon {
  color: #496ffe;
  transform: rotate(180deg);
}
.mobile-drop .header__nav-item a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0;
}
.mobile-drop .header__nav-item .icon {
  width: 24px;
  height: 24px;
}
.mobile-drop .header__info {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.mobile-drop .header__info svg {
  width: 24px;
  height: 24px;
}
.mobile-drop .header__info-item {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0;
  color: #22252f;
}

.footer {
  background: #22252f;
  padding: 32px 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .footer {
    padding: 64px 0;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 80px 0;
  }
}
.footer__logo {
  display: inline-block;
  height: 40px;
  width: 102px;
  margin-bottom: 32px;
}
@media (min-width: 1728px) {
  .footer__logo {
    height: 60px;
    width: 153px;
  }
}
.footer__logo .icon {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .footer__logo.--mobile {
    display: none;
  }
}
.footer__logo.--tablet {
  display: none;
}
@media (min-width: 768px) {
  .footer__logo.--tablet {
    display: inline-block;
    margin-bottom: 0;
  }
}
.footer__actions {
  display: grid;
  row-gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .footer__actions {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    margin-bottom: 64px;
  }
  .footer__actions .footer__contacts {
    grid-row: 1/2;
    grid-column: 1/2;
  }
  .footer__actions .footer__buttons {
    grid-row: 1/2;
    grid-column: 2/3;
  }
}
@media (min-width: 1024px) {
  .footer__actions {
    margin-bottom: 80px;
  }
}
.footer__buttons {
  display: flex;
  align-items: center;
  column-gap: 4px;
}
@media (min-width: 768px) {
  .footer__buttons {
    justify-content: flex-end;
  }
}
.footer__buttons .--callback {
  flex: 1 1 100%;
}
@media (min-width: 768px) {
  .footer__buttons .--callback {
    flex: 0 0 auto;
  }
}
.footer__buttons .--scroll-up {
  flex: 0 0 auto;
}
.footer__buttons .--scroll-up .icon {
  transform: rotate(180deg);
}
.footer__contacts {
  display: flex;
  column-gap: 16px;
}
@media (min-width: 1728px) {
  .footer__contacts {
    column-gap: 24px;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
  }
}
.footer__contacts-item {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0;
}
.footer__contacts-item a {
  display: flex;
  align-items: center;
  column-gap: 4px;
  transition: color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .footer__contacts-item a:hover {
    color: #496ffe;
  }
}
.footer__contacts-item .icon {
  width: 24px;
  height: 24px;
}
.footer__info-wrapper {
  display: flex;
  align-items: end;
  justify-content: space-between;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
}
@media (min-width: 1728px) {
  .footer__info-wrapper {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
  }
}
.footer__info {
  display: grid;
  grid-row-gap: 16px;
}
.footer__socials-wrapper {
  display: flex;
  align-items: center;
}
.footer__copy {
  position: relative;
  padding-right: 16px;
  margin-right: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}
@media (min-width: 1728px) {
  .footer__copy {
    column-gap: 24px;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
  }
}
.footer__copy::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 1px;
  height: 16px;
  background: #ffffff;
}
@media (min-width: 1728px) {
  .footer__copy::after {
    height: 24px;
  }
}
.footer__socials {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.footer__socials a {
  display: flex;
  align-items: center;
  transition: color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .footer__socials a:hover {
    color: #496ffe;
  }
}
.footer__socials .icon {
  width: 24px;
  height: 24px;
}
@media (min-width: 1728px) {
  .footer__socials .icon {
    width: 32px;
    height: 32px;
  }
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 8px;
}
.footer__nav-item a {
  transition: color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .footer__nav-item a:hover {
    color: #496ffe;
  }
}
.footer__address {
  color: #b2b4bd;
  margin-bottom: 8px;
}
.footer__policy-and-developers {
  display: grid;
  grid-row-gap: 8px;
  color: #b2b4bd;
}
@media (min-width: 768px) {
  .footer__policy-and-developers {
    display: flex;
    align-items: center;
    column-gap: 16px;
  }
}
.footer__policy-and-developers a {
  transition: color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .footer__policy-and-developers a:hover {
    color: #496ffe;
  }
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background: rgba(34, 37, 47, 0.4);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.modal.--open {
  pointer-events: auto;
  opacity: 1;
}
.modal [data-content] {
  visibility: hidden;
}
.modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 16px;
  transform: translate(-50%, -40%);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  transition: transform 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .modal__inner {
    border-radius: 24px;
  }
}
.modal__inner.--active {
  transform: translate(-50%, -50%);
}
.modal__head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border-bottom: 1px solid #d0d6dd;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  font-weight: 600;
}
@media (min-width: 1280px) {
  .modal__head {
    padding: 8px 24px;
    font-size: 24px;
    line-height: 32px;
  }
}
.modal__head .close {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .modal__head .close {
    width: 32px;
    height: 32px;
  }
}
.modal__content {
  padding: 16px;
  flex: 1 1 auto;
  overflow: auto;
}
.modal__content::-webkit-scrollbar {
  width: 12px;
}
.modal__content::-webkit-scrollbar-track {
  background: #f8fafb;
}
.modal__content::-webkit-scrollbar-thumb {
  background-color: #b2b4bd;
  border-radius: 20px;
  border: 4px solid #f8fafb;
}
@media (min-width: 1280px) {
  .modal__content {
    padding: 24px;
  }
}
.modal__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  column-gap: 4px;
  padding: 8px 16px;
  box-shadow: 0px 8px 48px 0px rgba(34, 37, 47, 0.1215686275), 0px 0px 16px 0px rgba(34, 37, 47, 0.0392156863);
}
@media (min-width: 1280px) {
  .modal__actions {
    padding: 8px 24px;
  }
}
.modal__actions .button {
  flex: 1 1 100%;
}

.filter-modal {
  max-width: 600px;
  width: 100%;
}
.filter-modal.modal__inner {
  height: 100vh;
  border-radius: 0;
}
@supports (height: 100svh) {
  .filter-modal.modal__inner {
    height: 100svh;
  }
}
@media (min-width: 768px) {
  .filter-modal.modal__inner {
    height: auto;
    max-height: calc(100vh - 64px);
    border-radius: 24px;
  }
  @supports (height: 100svh) {
    .filter-modal.modal__inner {
      max-height: calc(100svh - 64px);
    }
  }
}
@media (min-width: 1024px) {
  .filter-modal.modal__inner {
    max-height: calc(100vh - 80px);
  }
  @supports (height: 100svh) {
    .filter-modal.modal__inner {
      max-height: calc(100svh - 80px);
    }
  }
}
.filter-modal__content {
  display: grid;
  row-gap: 16px;
  padding-top: 16px;
}
.filter-modal__row {
  display: grid;
  grid-gap: 16px;
}
@media (min-width: 768px) {
  .filter-modal__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.filter-modal__item-description {
  margin-top: 8px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
}
.filter-modal .dropdown-group {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.filter-modal .dropdown__header {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  font-weight: 600;
}
@media (min-width: 1280px) {
  .filter-modal .dropdown__header {
    font-size: 24px;
    line-height: 32px;
  }
}
.filter-modal .choice-group__wrapper {
  flex-wrap: wrap;
}
.filter-modal .range-slider {
  width: 100%;
}
.filter-modal .range-slider__histogram {
  margin-bottom: 24px;
}
.filter-modal__price-type-button-switch {
  width: 100%;
  max-width: 100%;
}
.filter-modal__price-type-button-switch .button-switch__item {
  flex-basis: 50%;
}
.filter-modal__switch-group {
  padding-top: 0;
  margin-top: 8px;
}
.filter-modal__infra-choices .choice-group {
  max-height: 104px;
  overflow: hidden;
}

.callback-modal {
  max-width: 400px;
  width: calc(100% - 32px);
}
.callback-modal__subtitle {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  margin-bottom: 16px;
  color: #717584;
}
.callback-modal__form {
  display: grid;
  grid-row-gap: 16px;
}
.callback-modal__form .button {
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .callback-modal__form .button {
    margin-top: 24px;
  }
}
.callback-modal__form .button:disabled {
  background-color: #ccc;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}

.consultation-modal {
  max-width: 600px;
  width: calc(100% - 32px);
}
.consultation-modal__subtitle {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  margin-bottom: 16px;
  color: #717584;
}
.consultation-modal__form, .consultation-modal__contacts {
  display: grid;
  grid-row-gap: 16px;
}
@media (min-width: 768px) {
  .consultation-modal__contacts {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 16px;
  }
}
.consultation-modal .button {
  margin-top: 16px;
}
@media (min-width: 1280px) {
  .consultation-modal .button {
    margin-top: 24px;
  }
}

.callback-success-modal {
  max-width: 400px;
  width: calc(100% - 32px);
}
.callback-success-modal__content {
  display: flex;
  flex-direction: column;
}
.callback-success-modal__icon {
  width: 32px;
  height: 32px;
  margin: 0 auto;
  margin-bottom: 16px;
}
@media (min-width: 1280px) {
  .callback-success-modal__icon {
    margin-bottom: 24px;
  }
}
.callback-success-modal__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
@media (min-width: 1728px) {
  .callback-success-modal__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.callback-success-modal__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #717584;
  max-width: 250px;
  margin-bottom: 32px;
}
@media (min-width: 1280px) {
  .callback-success-modal__text {
    margin-bottom: 40px;
  }
}
.callback-success-modal .button {
  width: 100%;
}

.personalization-modal {
  max-width: 400px;
  width: calc(100% - 32px);
}
.personalization-modal__switch {
  width: 100%;
  margin-bottom: 32px;
}
@media (min-width: 1280px) {
  .personalization-modal__switch {
    margin-bottom: 40px;
  }
}
.personalization-modal__switch .button-switch__item {
  flex: 0 0 33.33%;
  padding: 4px 8px;
}
.personalization-modal__search {
  margin-bottom: 16px;
}
@media (min-width: 1280px) {
  .personalization-modal__search {
    margin-bottom: 24px;
  }
}
.personalization-modal__option-item {
  position: relative;
  padding: 0 16px;
  margin: 0 -16px;
  cursor: pointer;
  transition: background 0.25s ease-in-out;
}
.personalization-modal__option-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.25s ease-in-out;
}
.personalization-modal__option-item:not(:last-child) label::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #eff2f6;
  border-radius: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (hover: hover) and (pointer: fine) {
  .personalization-modal__option-item:hover {
    background: #e7ecee;
  }
  .personalization-modal__option-item:hover .select__option-inner:after {
    background: #e7ecee;
  }
  .personalization-modal__option-item:hover::before {
    background: #e7ecee;
  }
}
@media (min-width: 1280px) {
  .personalization-modal__option-item {
    padding: 0 24px;
    margin: 0 -24px;
  }
}
.personalization-modal__option-item label {
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 600;
  color: #717584;
  cursor: pointer;
}
.personalization-modal__option-item input:checked ~ span {
  color: #22252f;
}
.personalization-modal__option-item input:checked ~ .icon {
  opacity: 1;
}
.personalization-modal__option-item .icon {
  color: #496ffe;
  width: 24px;
  height: 24px;
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.personalization-modal .tab-wrapper {
  position: relative;
}
.personalization-modal .tab-wrapper .tab:not(.active) {
  display: none;
}

.installment-plan-modal {
  max-width: calc(100% - 32px);
  width: 100%;
  background: #fef2e0;
}
@media (min-width: 768px) {
  .installment-plan-modal {
    max-width: 400px;
  }
}
.installment-plan-modal__content {
  position: relative;
  z-index: 1;
}
.installment-plan-modal__description {
  margin-bottom: 8px;
}
.installment-plan-modal__date {
  font-weight: 600;
}
.installment-plan-modal .button {
  width: 100%;
  margin-top: 32px;
}
.installment-plan-modal .--decor {
  position: absolute;
  top: 100px;
  right: -165px;
  width: 780px;
  height: 180px;
  transform: rotate(-40deg);
  pointer-events: none;
  color: #ff9900;
}

.gallery-modal {
  border-radius: 0;
  width: 100vw;
  height: 100vh;
  background: #22252f;
  color: #ffffff;
}
@supports (width: 100svw) {
  .gallery-modal {
    width: 100svw;
  }
}
@supports (height: 100svh) {
  .gallery-modal {
    height: 100svh;
  }
}
.gallery-modal__slider {
  min-width: 0;
}
.gallery-modal__navigations {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  column-gap: 4px;
  margin-left: auto;
}
.gallery-modal__navigations .button-prev,
.gallery-modal__navigations .button-next {
  display: none;
}
@media (min-width: 1280px) {
  .gallery-modal__navigations .button-prev:not(.swiper-button-lock),
  .gallery-modal__navigations .button-next:not(.swiper-button-lock) {
    display: flex;
  }
}
.gallery-modal .modal__content {
  flex: 1 1 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (min-width: 1024px) {
  .gallery-modal .modal__content {
    padding-left: 53px;
    padding-right: 53px;
  }
}
.gallery-modal .main-slider {
  flex: 1 1 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .gallery-modal .main-slider {
    margin: 0 -16px;
  }
}
.gallery-modal .main-slider .swiper {
  width: 100%;
  height: 100%;
}
.gallery-modal .main-slider .swiper-slide {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal .main-slider .swiper-slide img,
.gallery-modal .main-slider .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 1280px) {
  .gallery-modal .main-slider .swiper-slide img,
  .gallery-modal .main-slider .swiper-slide video {
    width: auto;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
  }
}
.gallery-modal .thumb-slider {
  flex: 0 0 40px;
  margin: 0 -16px;
}
@media (min-width: 1024px) {
  .gallery-modal .thumb-slider {
    margin: 0;
  }
}
.gallery-modal .thumb-slider .swiper {
  padding: 0 16px;
}
@media (min-width: 1024px) {
  .gallery-modal .thumb-slider .swiper {
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .gallery-modal .thumb-slider .swiper {
    width: 740px;
  }
}
.gallery-modal .thumb-slider .swiper-slide {
  position: relative;
  height: 40px;
  width: 58px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-modal .thumb-slider .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: border-color 0.25s ease-in-out;
}
.gallery-modal .thumb-slider .swiper-slide-thumb-active::after {
  border-color: #496ffe;
}
.gallery-modal .thumb-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overall-rating-modal {
  max-width: calc(100% - 32px);
  width: 100%;
}
@media (min-width: 768px) {
  .overall-rating-modal {
    max-width: 600px;
  }
}
.overall-rating-modal.modal__inner {
  max-height: calc(100vh - 80px);
}
@supports (height: 100svh) {
  .overall-rating-modal.modal__inner {
    max-height: calc(100svh - 80px);
  }
}
.overall-rating-modal .modal__content {
  padding-right: 4px;
}
.overall-rating-modal__head-left {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.overall-rating-modal__head-left .progress {
  margin-left: 12px;
}
@media (min-width: ) {
  .overall-rating-modal__head-left .progress {
    margin-left: 16px;
  }
}
.overall-rating-modal__section {
  padding: 16px 0;
}
.overall-rating-modal__section + .overall-rating-modal__section {
  border-top: 1.5px solid #eff2f6;
}
.overall-rating-modal__section:first-child {
  padding-top: 0;
}
.overall-rating-modal__section:last-child {
  padding-bottom: 0;
}
.overall-rating-modal__section-head {
  margin-bottom: 24px;
}
.overall-rating-modal__section-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.overall-rating-modal__section-description {
  color: #717584;
}
.overall-rating-modal__cards-wrapper {
  display: grid;
  grid-gap: 24px;
}
.overall-rating-modal .overall-rating__charts {
  grid-template-columns: 1fr;
}
.overall-rating-modal .analitics-form {
  margin-top: 0;
}
.overall-rating-modal .analitics-form__inner {
  grid-auto-flow: row;
  grid-template-columns: 1fr;
}
.overall-rating-modal .analitics-form__bottom {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}
.overall-rating-modal .analitics-form__bottom .button {
  order: 0;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .overall-rating-modal .analitics-form__bottom {
    flex-direction: row;
  }
  .overall-rating-modal .analitics-form__bottom .button {
    order: 1;
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media (min-width: 1280px) {
  .overall-rating-modal .analitics-form__bottom {
    margin-top: 24px;
  }
}
.overall-rating-modal .analitics-form__policy {
  order: 1;
}
@media (min-width: 768px) {
  .overall-rating-modal .analitics-form__policy {
    order: 0;
  }
}
.overall-rating-modal__slider .swiper-slide {
  aspect-ratio: 552/368;
  border-radius: 16px;
  overflow: hidden;
}
.overall-rating-modal__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overall-rating-modal__slider .navigations {
  display: none;
}
@media (min-width: 1280px) {
  .overall-rating-modal__slider .navigations {
    display: flex;
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 1;
  }
}
.overall-rating-modal__slider .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.overall-rating-modal__slider .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  margin: 0 2px !important;
  background: #ffffff;
  opacity: 1;
  transition: background 0.25s ease-in-out;
}
.overall-rating-modal__slider .swiper-pagination-bullet-active {
  background: #496ffe;
}
@media (min-width: 1280px) {
  .overall-rating-modal__slider .swiper-pagination {
    display: none;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 57px;
  font-family: "Hauora", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #22252f;
}
@media (min-width: 1728px) {
  body {
    padding-top: 77px;
  }
}
body.tooltip-is-open, body.select-is-open {
  overflow: hidden;
}

header {
  flex-shrink: 0;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

.section {
  padding: 32px 0;
}
@media (min-width: 1280px) {
  .section {
    padding: 40px 0;
  }
}
.section.--light-accent {
  background: #fef2e0;
}
.section.--grey {
  background: #f8fafb;
}
.section__head {
  margin-bottom: 32px;
}
@media (min-width: 1728px) {
  .section__head {
    margin-bottom: 40px;
  }
}
.section__head-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
@media (min-width: 768px) {
  .section__head-top {
    flex-direction: row;
    align-items: center;
  }
}
.section__head-top.--center {
  justify-content: center;
  text-align: center;
}
.section__head-bottom {
  margin-top: 16px;
}
@media (min-width: 1280px) {
  .section__head-bottom {
    margin-top: 24px;
  }
}
.section__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .section__title {
    margin-right: 16px;
  }
}
@media (min-width: 1728px) {
  .section__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.section__link {
  display: none;
}
@media (min-width: 768px) {
  .section__link {
    display: flex;
    align-items: center;
    margin-left: auto;
    color: #496ffe;
    transition: color 0.25s ease-in-out;
  }
}
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .section__link:hover {
    color: #2d50d0;
  }
}
@media (min-width: 768px) {
  .section__link .icon {
    width: 24px;
    height: 24px;
    transform: rotate(-90deg);
  }
}
.section__subtitle {
  margin-top: 16px;
  max-width: 600px;
}

.subsection {
  margin-top: 48px;
}
.subsection__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .subsection__title {
    margin-right: 16px;
  }
}
@media (min-width: 1728px) {
  .subsection__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.container {
  padding: 0 16px;
}
@media (min-width: 1280px) {
  .container {
    padding: 0 40px;
  }
}
@media (min-width: 1728px) {
  .container {
    max-width: 1920px;
    padding: 0 128px;
    margin: 0 auto;
  }
}

svg {
  width: 100%;
  height: 100%;
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  pointer-events: none;
}

.text-truncate {
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}
.text-truncate:not(.show) {
  display: -webkit-box;
}

[data-js=text-truncate-trigger] .close {
  display: none;
}
[data-js=text-truncate-trigger].--active .icon {
  transform: rotate(180deg);
}
[data-js=text-truncate-trigger].--active .open {
  display: none;
}
[data-js=text-truncate-trigger].--active .close {
  display: block;
}

.--gold {
  color: #ff9900;
}

.blog__link.--tablet {
  display: none;
}
@media (min-width: 768px) {
  .blog__link.--tablet {
    display: flex;
  }
}
.blog__link.--mobile {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .blog__link.--mobile {
    display: none;
  }
}
.blog__slider-actions {
  display: flex;
  align-items: center;
  column-gap: 4px;
  margin-left: auto;
}

.default-slider {
  min-width: 0;
}
.default-slider .swiper {
  padding: 16px;
  padding-bottom: 36px;
  margin: -16px;
}
@media (min-width: 1280px) {
  .default-slider .swiper {
    padding: 8px;
    margin: -8px;
  }
}
.default-slider .swiper-pagination {
  bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.default-slider .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  margin: 0 2px !important;
  background: #b2b4bd;
  opacity: 1;
  transition: background 0.25s ease-in-out;
}
.default-slider .swiper-pagination-bullet-active {
  background: #496ffe;
}
@media (min-width: 1280px) {
  .default-slider .swiper-pagination {
    display: none;
  }
}
.default-slider__navigations {
  display: flex;
  align-items: center;
  column-gap: 4px;
  margin-left: auto;
  display: none;
}
@media (min-width: 1280px) {
  .default-slider__navigations:not(.swiper-button-lock) {
    display: flex;
  }
}
.default-slider__link {
  margin-left: auto;
}
.default-slider__link.--tablet {
  display: none;
}
@media (min-width: 768px) {
  .default-slider__link.--tablet {
    display: block;
  }
}
.default-slider__link.--mobile {
  width: 100%;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .default-slider__link.--mobile {
    display: none;
  }
}
.default-slider__link + .default-slider__navigations {
  margin-left: 4px;
}

.unit-slide__inner {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 8px;
  margin: -8px;
  border-radius: 24px;
  transition: background 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .unit-slide__inner:hover {
    background: #f8fafb;
  }
}
.unit-slide__image {
  position: relative;
  aspect-ratio: 343/231;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .unit-slide__image {
    aspect-ratio: 1/1;
  }
}
.unit-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.unit-slide__favorite-button {
  position: absolute;
  top: 8px;
  left: 8px;
}
.unit-slide__content {
  display: grid;
  grid-row-gap: 4px;
}
@media (min-width: 1728px) {
  .unit-slide__content {
    grid-row-gap: 8px;
  }
}
.unit-slide__rating-and-tags {
  display: flex;
  align-items: start;
  column-gap: 4px;
}
.unit-slide__rating {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 20px;
  overflow: hidden;
  background: #f8fafb;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  color: #b2b4bd;
}
@media (min-width: 1728px) {
  .unit-slide__rating {
    font-size: 16px;
    line-height: 24px;
  }
}
.unit-slide__rating .--gold {
  display: flex;
  align-items: center;
}
.unit-slide__rating .icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
@media (min-width: 1728px) {
  .unit-slide__rating .icon {
    width: 24px;
    height: 24px;
  }
}
.unit-slide__tags {
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  column-gap: 4px;
  row-gap: 8px;
}
.unit-slide__tag {
  white-space: nowrap;
  padding: 4px 8px;
  background: #fef2e0;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
}
@media (min-width: 1728px) {
  .unit-slide__tag {
    font-size: 16px;
    line-height: 24px;
  }
}
.unit-slide__title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}
@media (min-width: 1728px) {
  .unit-slide__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.unit-slide__title .icon {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}
@media (min-width: 1728px) {
  .unit-slide__title .icon {
    width: 32px;
    height: 32px;
    margin-left: 8px;
  }
}
.unit-slide__price {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #b2b4bd;
}
@media (min-width: 1728px) {
  .unit-slide__price {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
  }
}
.unit-slide__remarks {
  display: grid;
  grid-row-gap: 4px;
}
.unit-slide__remarks-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 4px;
  margin: 0 -3.5px;
  overflow: hidden;
}
.unit-slide__remark {
  display: flex;
  align-items: center;
  padding: 0 3.5px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  white-space: nowrap;
  color: #717584;
}
@media (min-width: 1728px) {
  .unit-slide__remark {
    font-size: 16px;
    line-height: 24px;
  }
}
.unit-slide__remark .icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
@media (min-width: 1728px) {
  .unit-slide__remark .icon {
    width: 24px;
    height: 24px;
  }
}
.unit-slide__remark + .unit-slide__remark {
  position: relative;
}
.unit-slide__remark + .unit-slide__remark::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #b2b4bd;
  position: absolute;
  top: 50%;
  left: -3.5px;
}

.residential-slide__inner {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 8px;
  margin: -8px;
  border-radius: 24px;
  transition: background 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .residential-slide__inner:hover {
    background: #f8fafb;
  }
}
.residential-slide__image {
  position: relative;
  aspect-ratio: 343/231;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .residential-slide__image {
    aspect-ratio: 1/1;
  }
}
.residential-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.residential-slide__favorite-button {
  position: absolute;
  top: 8px;
  left: 8px;
}
.residential-slide__content {
  display: grid;
  grid-row-gap: 4px;
}
.residential-slide__rating-and-tags {
  display: flex;
  align-items: start;
  column-gap: 4px;
}
.residential-slide__rating {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 20px;
  overflow: hidden;
  background: #f8fafb;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  color: #b2b4bd;
}
@media (min-width: 1728px) {
  .residential-slide__rating {
    font-size: 16px;
    line-height: 24px;
  }
}
.residential-slide__rating .--gold {
  display: flex;
  align-items: center;
}
.residential-slide__rating .icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
@media (min-width: 1728px) {
  .residential-slide__rating .icon {
    width: 24px;
    height: 24px;
  }
}
.residential-slide__tags {
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  column-gap: 4px;
  row-gap: 8px;
}
.residential-slide__tag {
  white-space: nowrap;
  padding: 4px 8px;
  background: #fef2e0;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
}
@media (min-width: 1728px) {
  .residential-slide__tag {
    font-size: 16px;
    line-height: 24px;
  }
}
.residential-slide__title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}
@media (min-width: 1728px) {
  .residential-slide__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.residential-slide__title .icon {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}
@media (min-width: 1728px) {
  .residential-slide__title .icon {
    width: 32px;
    height: 32px;
    margin-left: 8px;
  }
}
.residential-slide__price {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #b2b4bd;
}
@media (min-width: 1728px) {
  .residential-slide__price {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
  }
}
.residential-slide__remarks {
  display: grid;
  grid-row-gap: 4px;
}
.residential-slide__remarks-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 4px;
  margin: 0 -3.5px;
  overflow: hidden;
}
.residential-slide__remark {
  display: flex;
  align-items: center;
  padding: 0 3.5px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  white-space: nowrap;
  color: #717584;
}
@media (min-width: 1728px) {
  .residential-slide__remark {
    font-size: 16px;
    line-height: 24px;
  }
}
.residential-slide__remark .icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
@media (min-width: 1728px) {
  .residential-slide__remark .icon {
    width: 24px;
    height: 24px;
  }
}
.residential-slide__remark + .residential-slide__remark {
  position: relative;
}
.residential-slide__remark + .residential-slide__remark::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #b2b4bd;
  position: absolute;
  top: 50%;
  left: -3.5px;
}

.blog-slide__inner {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 8px;
  margin: -8px;
  border-radius: 24px;
  transition: background 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .blog-slide__inner:hover {
    background: #f8fafb;
  }
}
.blog-slide__image {
  position: relative;
  aspect-ratio: 343/231;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog-slide__image {
    aspect-ratio: 1/1;
  }
}
.blog-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-slide__float-tag {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
}
@media (min-width: 1728px) {
  .blog-slide__float-tag {
    font-size: 16px;
    line-height: 24px;
  }
}
.blog-slide__content {
  display: grid;
  grid-row-gap: 4px;
}
.blog-slide__title {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}
@media (min-width: 1728px) {
  .blog-slide__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.blog-slide__title .icon {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}
@media (min-width: 1728px) {
  .blog-slide__title .icon {
    width: 32px;
    height: 32px;
    margin-left: 8px;
  }
}
.blog-slide__description {
  font-size: 13px;
  line-height: 16px;
  color: #717584;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (min-width: 1728px) {
  .blog-slide__description {
    font-size: 16px;
    line-height: 24px;
  }
}
.blog-slide__date {
  margin-top: 4px;
  font-size: 13px;
  line-height: 16px;
  text-align: right;
  color: #b2b4bd;
}
@media (min-width: 1728px) {
  .blog-slide__date {
    font-size: 16px;
    line-height: 24px;
  }
}

.short-info {
  padding: 16px 0 32px;
}
.short-info__head {
  margin-bottom: 16px;
}
@media (min-width: 1280px) {
  .short-info__head {
    margin-bottom: 24px;
  }
}
.short-info__body {
  display: grid;
  align-items: center;
  grid-gap: 16px;
}
@media (min-width: 768px) {
  .short-info__body {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .short-info__body {
    grid-template-columns: auto auto;
    grid-gap: 22px;
  }
}
@media (min-width: 768px) {
  .short-info__list {
    grid-row: 1/2;
    grid-column: 1/-1;
  }
}
@media (min-width: 1280px) {
  .short-info__list {
    grid-row: auto;
    grid-column: auto;
  }
}
@media (min-width: 768px) {
  .short-info__installment-plan {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}
@media (min-width: 1280px) {
  .short-info__installment-plan {
    grid-row: auto;
    grid-column: auto;
  }
}
@media (min-width: 768px) {
  .short-info__residential {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
@media (min-width: 1280px) {
  .short-info__residential.--mobile {
    display: none;
  }
}
.short-info__tags {
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 8px;
  margin-bottom: 8px;
}
.short-info__tag {
  white-space: nowrap;
  padding: 4px 8px;
  background: #fef2e0;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
}
@media (min-width: 1728px) {
  .short-info__tag {
    font-size: 16px;
    line-height: 24px;
  }
}
.short-info__tag.--accent {
  background: #ff9900;
  color: #ffffff;
}
.short-info__title {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
@media (min-width: 1280px) {
  .short-info__title {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1728px) {
  .short-info__title {
    font-size: 40px;
    line-height: 48px;
  }
}
.short-info__title .--verification {
  width: 32px;
  height: 32px;
  margin-left: 8px;
}
.short-info__price {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #b2b4bd;
}
@media (min-width: 1280px) {
  .short-info__price {
    display: none;
  }
}
@media (min-width: 1024px) {
  .short-info__price.--laptop {
    display: none;
  }
}
.short-info__list {
  display: grid;
  grid-row-gap: 4px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  overflow: hidden;
  box-shadow: 0px 8px 48px 0px rgba(34, 37, 47, 0.1215686275), 0px 0px 16px 0px rgba(34, 37, 47, 0.0392156863);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .short-info__list {
    grid-auto-flow: column;
    justify-content: space-between;
  }
}
@media (min-width: 1280px) {
  .short-info__list {
    padding: 24px;
  }
}
@media (min-width: 1728px) {
  .short-info__list {
    width: auto;
    justify-content: start;
  }
}
.short-info__list .separator {
  display: none;
}
@media (min-width: 768px) {
  .short-info__list .separator {
    display: block;
    width: 1px;
    height: 40px;
    background-color: #d0d6dd;
  }
}
.short-info__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .short-info__item {
    flex-direction: column;
    align-items: start;
  }
}
@media (min-width: 1280px) {
  .short-info__item {
    padding: 0 16px;
  }
  .short-info__item:first-child {
    padding-left: 0;
  }
  .short-info__item:last-child {
    padding-right: 0;
  }
}
.short-info__item .dash {
  position: relative;
  top: 5px;
  content: "";
  flex-grow: 1;
  height: 1px;
  background-image: url('data:image/svg+xml,<svg width="100%" height="1" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="1" x2="100%" y2="1" stroke="%23D0D6DD" stroke-width="2" stroke-linecap="round" stroke-dasharray="3,5" /></svg>');
  background-repeat: repeat-x;
  margin: 0 4px;
}
@media (min-width: 768px) {
  .short-info__item .dash {
    display: none;
  }
}
.short-info__item a {
  color: #496ffe;
}
@media (hover: hover) and (pointer: fine) {
  .short-info__item a:hover {
    color: #2d50d0;
  }
}
.short-info__item.--price {
  display: none;
}
.short-info__item.--price + .separator {
  display: none;
}
@media (min-width: 1024px) {
  .short-info__item.--price.--laptop {
    display: flex;
  }
  .short-info__item.--price.--laptop + .separator {
    display: block;
  }
}
@media (min-width: 1280px) {
  .short-info__item.--price {
    display: flex;
  }
  .short-info__item.--price + .separator {
    display: block;
  }
}
@media (min-width: 1728px) {
  .short-info__item .tooltip__trigger {
    width: 16px;
    height: 16px;
  }
}
.short-info__item-label {
  display: flex;
  align-items: center;
  color: #717584;
}
@media (min-width: 768px) {
  .short-info__item-label {
    order: 1;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
  }
}
@media (min-width: 768px) {
  .short-info__item-value {
    order: 0;
  }
}

.residential {
  display: flex;
  align-items: center;
  border-radius: 16px;
  padding-right: 16px;
  overflow: hidden;
  transition: background 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .residential:hover {
    background: #f8fafb;
  }
}
@media (min-width: 1280px) {
  .residential {
    border-radius: 24px;
  }
}
.residential__avatar {
  width: 96px;
  height: 96px;
  margin-right: 16px;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .residential__avatar {
    border-radius: 24px;
  }
}
@media (min-width: 1728px) {
  .residential__avatar {
    width: 128px;
    height: 128px;
  }
}
.residential__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.residential__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  margin-bottom: 4px;
}
@media (min-width: 1728px) {
  .residential__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
  }
}
.residential__short-info {
  display: flex;
  align-items: center;
  column-gap: 4px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
}
@media (min-width: 1728px) {
  .residential__short-info {
    font-size: 16px;
    line-height: 24px;
  }
}
.residential__short-info .type {
  color: #717584;
}
.residential__short-info .dot {
  width: 3px;
  height: 3px;
  background: #b2b4bd;
  border-radius: 50%;
}
.residential__short-info .units-count {
  color: #496ffe;
}

.about__list {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(5, auto);
  grid-gap: 16px 0;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .about__list {
    display: flex;
    align-items: center;
    column-gap: 32px;
  }
}
@media (min-width: 1280px) {
  .about__list {
    margin-bottom: 24px;
  }
}
.about__list .separator {
  width: 1px;
  height: 40px;
  background-color: #d0d6dd;
  margin: 0 16px;
}
@media (min-width: 768px) {
  .about__list .separator {
    display: none;
  }
}
.about__item {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .about__item {
    position: relative;
  }
  .about__item::before {
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    background-color: #d0d6dd;
    position: absolute;
    top: 50%;
    left: -16px;
    transform: translate(0, -50%);
  }
}
.about__item-label {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  color: #717584;
}
.about__item-value {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
}
.about__description {
  max-width: 800px;
}
.about__description .text-truncate {
  -webkit-line-clamp: 6;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}
.about__description .text-truncate p + p {
  margin-top: 1em;
}
.about__action-and-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.about__publish-date {
  color: #b2b4bd;
}
.about__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
  column-gap: 16px;
  margin-top: 32px;
}
@media (min-width: 1728px) {
  .about__tags {
    column-gap: 24px;
  }
}
.about__tag {
  display: flex;
  align-items: center;
  font-weight: 600;
}
.about__tag svg {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}

.info-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0px 8px 48px 0px rgba(34, 37, 47, 0.1215686275), 0px 0px 16px 0px rgba(34, 37, 47, 0.0392156863);
}
.info-card__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.info-card__price {
  display: flex;
  align-items: center;
  white-space: nowrap;
  column-gap: 4px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #b2b4bd;
}

.overall-rating__charts {
  display: grid;
  grid-gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .overall-rating__charts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .overall-rating__charts {
    grid-template-columns: 1fr;
    grid-gap: 24px;
  }
}
@media (min-width: 1728px) {
  .overall-rating__charts {
    grid-template-columns: repeat(2, 1fr);
  }
}
.overall-rating__doughnut-chart {
  display: flex;
  align-items: center;
}
@media (min-width: 1728px) {
  .overall-rating__doughnut-chart {
    align-items: start;
  }
}
.overall-rating__doughnut-chart .doughnut-chart {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  margin-right: 16px;
}
@media (min-width: 1024px) {
  .overall-rating__doughnut-chart .doughnut-chart {
    width: 160px;
    height: 160px;
  }
}
.overall-rating__title {
  font-weight: 600;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .overall-rating__title {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
}
@media (min-width: 1728px) {
  .overall-rating__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.overall-rating__text {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
}
@media (min-width: 1024px) {
  .overall-rating__text {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1728px) {
  .overall-rating__text {
    color: #717584;
  }
}
.overall-rating__tooltip {
  flex-direction: column;
}
.overall-rating__tooltip-description {
  margin-bottom: 16px;
}
@media (min-width: 1280px) {
  .overall-rating__tooltip-description {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 16px;
  }
}
@media (min-width: 1280px) {
  .overall-rating__tooltip .dotted-list {
    font-size: 13px;
    line-height: 16px;
  }
}
.overall-rating__cards {
  display: flex;
  row-gap: 16px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .overall-rating__cards {
    flex-direction: row;
    column-gap: 16px;
  }
}
.overall-rating__cards-wrapper {
  display: grid;
  grid-row-gap: 16px;
}
@media (min-width: 768px) {
  .overall-rating__cards-wrapper {
    flex: 0 0 calc(50% - 8px);
  }
}
.overall-rating__card {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: #f8fafb;
}
.overall-rating__card .tooltip__trigger {
  width: 24px;
  height: 24px;
}
.overall-rating__card .tooltip__trigger svg {
  width: 22px;
  height: 22px;
}
.overall-rating__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  font-weight: 600;
}
.overall-rating__link-info.--mobile {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .overall-rating__link-info.--mobile {
    display: none;
  }
}
.overall-rating__link-info.--desktop {
  display: none;
}
@media (min-width: 768px) {
  .overall-rating__link-info.--desktop {
    display: flex;
    margin-left: auto;
  }
}
.overall-rating .progress {
  margin-left: 16px;
}
@media (min-width: 1728px) {
  .overall-rating .progress {
    margin-left: 24px;
  }
}
.overall-rating .tooltip__trigger {
  background: #ffffff;
}

.unit-location__map-head {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .unit-location__map-head {
    margin-bottom: 16px;
  }
}
.unit-location__region {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  color: #717584;
}
.unit-location__region .icon {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.unit-location__link.--mobile {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .unit-location__link.--mobile {
    display: none;
  }
}
.unit-location__link.--tablet {
  display: none;
}
@media (min-width: 768px) {
  .unit-location__link.--tablet {
    display: flex;
    margin-left: auto;
  }
}
.unit-location__map-wrapper.full-size {
  position: fixed;
  top: 57px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 57px);
  margin: 0;
  background: #ffffff;
  display: flex;
  flex-direction: column-reverse;
  z-index: 11;
}
@media (min-width: 1728px) {
  .unit-location__map-wrapper.full-size {
    top: 77px;
    height: calc(100% - 77px);
  }
}
.unit-location__map-wrapper.full-size .--full-size {
  display: none;
}
.unit-location__map-wrapper.full-size .--default-size {
  display: block;
}
.unit-location__map-wrapper.full-size .unit-location__map {
  flex: 1 1 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
}
.unit-location__map-wrapper.full-size .unit-location__filters {
  margin: 0;
}
.unit-location__map-wrapper.full-size .unit-location__filters-list {
  padding: 8px 16px;
  flex-wrap: nowrap;
  overflow: auto;
}
.unit-location__map-wrapper.full-size .unit-location__filters-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.unit-location__map-wrapper.full-size .unit-location__filters-list::-webkit-scrollbar-track {
  background: transparent;
}
.unit-location__map-wrapper.full-size .unit-location__filters-list::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
@media (min-width: 1280px) {
  .unit-location__map-wrapper.full-size .unit-location__filters-list {
    padding: 8px 40px;
  }
}
@media (min-width: 1728px) {
  .unit-location__map-wrapper.full-size .unit-location__filters-list {
    max-width: 1920px;
    padding: 8px 128px;
    margin: 0 auto;
  }
}
.unit-location__map {
  position: relative;
  height: 500px;
  margin: 0 -16px;
}
@media (min-width: 768px) {
  .unit-location__map {
    height: auto;
    aspect-ratio: 1.77/1;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
  }
}
@media (min-width: 1280px) {
  .unit-location__map {
    border-radius: 24px;
  }
}
.unit-location__map #map {
  width: 100%;
  height: 100%;
}
.unit-location__map .custom-unit-marker {
  display: flex;
  align-items: center;
  padding: 2px;
  padding-right: 8px;
  border-radius: 24px;
  background: #ffffff;
  transform: translateX(50%);
}
.unit-location__map .custom-unit-marker__image {
  width: 40px;
  height: 40px;
  border-radius: 32px;
  overflow: hidden;
  margin-right: 4px;
}
.unit-location__map .custom-unit-marker__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.unit-location__map .custom-unit-marker__title {
  font-family: "Hauora", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.01em;
}
.unit-location__map-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 8;
}
.unit-location__map-controls * {
  pointer-events: auto;
}
.unit-location__map-controls .--full-size,
.unit-location__map-controls .--default-size {
  position: absolute;
  top: 16px;
  right: 16px;
}
@media (min-width: 1728px) {
  .unit-location__map-controls .--full-size,
  .unit-location__map-controls .--default-size {
    top: 24px;
    right: 24px;
  }
}
.unit-location__map-controls .--default-size {
  display: none;
}
.unit-location__map-controls .--distance {
  position: absolute;
  right: 16px;
  bottom: 16px;
}
@media (min-width: 1728px) {
  .unit-location__map-controls .--distance {
    right: 24px;
    bottom: 24px;
  }
}
.unit-location__map-zoom-wrapper {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate(0, -50%);
  display: grid;
  grid-row-gap: 4px;
}
@media (min-width: 1728px) {
  .unit-location__map-zoom-wrapper {
    right: 24px;
  }
}
.unit-location__filters {
  margin-top: 16px;
}
.unit-location__filters-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 8px;
}
@media (min-width: 1728px) {
  .unit-location__filters-list {
    column-gap: 24px;
  }
}
.unit-location__filter-label {
  position: relative;
  cursor: pointer;
}
.unit-location__filter-wrapper {
  display: flex;
  align-items: center;
  column-gap: 4px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  color: #b2b4bd;
  transition: color 0.25s ease-in-out;
}
@media (min-width: 1728px) {
  .unit-location__filter-wrapper {
    font-size: 16px;
    line-height: 24px;
  }
}
.unit-location__filter-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #b2b4bd;
  color: #ffffff;
  transition: background 0.25s ease-in-out;
}
@media (min-width: 1728px) {
  .unit-location__filter-icon {
    width: 32px;
    height: 32px;
  }
}
.unit-location__filter-icon .icon {
  width: 16px;
  height: 16px;
}
@media (min-width: 1728px) {
  .unit-location__filter-icon .icon {
    width: 24px;
    height: 24px;
  }
}
.unit-location__filter input:checked + .unit-location__filter-wrapper {
  color: #22252f;
}
.unit-location__filter input:checked + .unit-location__filter-wrapper .--leisure {
  background: #8f00c0;
}
.unit-location__filter input:checked + .unit-location__filter-wrapper .--medicine {
  background: #1631ff;
}
.unit-location__filter input:checked + .unit-location__filter-wrapper .--sports {
  background: #00c04e;
}
.unit-location__filter input:checked + .unit-location__filter-wrapper .--trade {
  background: #ff3516;
}
.unit-location__filter input:checked + .unit-location__filter-wrapper .--food {
  background: #ffb516;
}
.unit-location__filter input:checked + .unit-location__filter-wrapper .--education {
  background: #02bbdc;
}
@media (min-width: 1728px) {
  .unit-location .map-distance-select__trigger {
    padding: 18px 13px;
  }
}
.unit-location .map-distance-select__dropdown {
  position: absolute;
  top: -16px;
  right: 60px;
  transform: translateY(-100%);
  min-width: 128px;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease-in-out;
  z-index: 1;
  border-radius: 16px;
  box-shadow: 0px 8px 48px 0px rgba(34, 37, 47, 0.1215686275), 0px 0px 16px 0px rgba(34, 37, 47, 0.0392156863);
}
.unit-location .map-distance-select__dropdown.--active {
  opacity: 1;
  pointer-events: auto;
}
.unit-location .map-distance-select__dropdown .corner {
  position: absolute;
  bottom: 5px;
  right: 0;
  transform: translateY(100%);
  width: 24px;
  height: 19px;
  color: #ffffff;
}
.unit-location .map-distance-select__options {
  position: relative;
  flex: 1 1 100%;
  height: 100%;
  max-height: 228px;
  padding: 8px 0;
  overflow: auto;
  z-index: 1;
}
.unit-location .map-distance-select__options::-webkit-scrollbar {
  width: 12px;
}
.unit-location .map-distance-select__options::-webkit-scrollbar-track {
  background: #f8fafb;
}
.unit-location .map-distance-select__options::-webkit-scrollbar-thumb {
  background-color: #b2b4bd;
  border-radius: 20px;
  border: 4px solid #f8fafb;
}
.unit-location .map-distance-select__option-inner {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}
.unit-location .map-distance-select__option {
  position: relative;
  padding: 0 16px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: 600;
  color: #717584;
  cursor: pointer;
  transition: background 0.25s ease-in-out;
}
.unit-location .map-distance-select__option::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.25s ease-in-out;
}
.unit-location .map-distance-select__option:not(:last-child) .map-distance-select__option-inner {
  border-bottom: 2px solid #eff2f6;
}
@media (hover: hover) and (pointer: fine) {
  .unit-location .map-distance-select__option:hover {
    background: #e7ecee;
  }
  .unit-location .map-distance-select__option:hover .select__option-inner {
    border-color: #e7ecee;
  }
  .unit-location .map-distance-select__option:hover::before {
    background: #e7ecee;
  }
}
.unit-location .map-distance-select__option .icon {
  color: #496ffe;
  width: 24px;
  height: 24px;
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.unit-location .map-distance-select__option.selected {
  color: #22252f;
}
.unit-location .map-distance-select__option.selected .icon {
  opacity: 1;
}

.apartment-finishing__button-switch {
  margin: 16px 0 32px;
}
@media (min-width: 1728px) {
  .apartment-finishing__button-switch {
    margin: 24px 0 40px;
  }
}
@media (max-width: 1727px) {
  .apartment-finishing__button-switch .button-switch__item {
    padding: 4px 8px;
  }
}
.apartment-finishing__slider {
  position: relative;
}
@media (max-width: 767px) {
  .apartment-finishing__slider {
    margin: 0 -16px;
  }
}
.apartment-finishing__slider-actions {
  position: absolute;
  right: 16px;
  bottom: 28px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 4px;
}
@media (min-width: 768px) {
  .apartment-finishing__slider-actions {
    bottom: 16px;
  }
}
@media (max-width: 1727px) {
  .apartment-finishing__slider-actions .button {
    padding: 4px 12px;
    font-size: 13px;
    line-height: 16px;
  }
}
@media (min-width: 1728px) {
  .apartment-finishing__slider-actions .button {
    padding: 14px 24px;
  }
}
.apartment-finishing__slider-actions .button .icon {
  width: 16px;
  height: 16px;
}
@media (min-width: 1728px) {
  .apartment-finishing__slider-actions .button .icon {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 767px) {
  .apartment-finishing .swiper {
    padding-bottom: 12px;
  }
}
@media (min-width: 768px) {
  .apartment-finishing .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 16px;
    row-gap: 16px;
  }
}
@media (max-width: 767px) {
  .apartment-finishing .swiper-slide {
    aspect-ratio: 375/254;
  }
}
@media (min-width: 768px) {
  .apartment-finishing .swiper-slide {
    border-radius: 16px;
    overflow: hidden;
  }
  .apartment-finishing .swiper-slide.--hide {
    display: none;
  }
  .apartment-finishing .swiper-slide:nth-child(1), .apartment-finishing .swiper-slide:nth-child(4) {
    flex: 0 0 calc(59% - 8px);
  }
  .apartment-finishing .swiper-slide:nth-child(2), .apartment-finishing .swiper-slide:nth-child(3) {
    flex: 0 0 calc(41% - 8px);
  }
}
.apartment-finishing .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apartment-finishing .swiper-pagination {
  bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .apartment-finishing .swiper-pagination {
    display: none;
  }
}
.apartment-finishing .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  margin: 0 2px !important;
  background: #b2b4bd;
  opacity: 1;
  transition: background 0.25s ease-in-out;
}
.apartment-finishing .swiper-pagination-bullet-active {
  background: #496ffe;
}

.apartments__button-switch {
  padding: 0 16px;
  margin: 16px -16px 0;
  overflow: auto;
}
.apartments__button-switch::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.apartments__button-switch::-webkit-scrollbar-track {
  background: transparent;
}
.apartments__button-switch::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
@media (min-width: 768px) {
  .apartments__button-switch {
    margin: 0;
    margin-top: 16px;
    padding: 0;
    overflow: visible;
  }
}
@media (min-width: 1728px) {
  .apartments__button-switch {
    margin-top: 24px;
  }
}
@media (max-width: 1727px) {
  .apartments__button-switch .button-switch__item {
    padding: 4px 8px;
  }
}
.apartments__cards-head {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  color: #b2b4bd;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .apartments__cards-head {
    display: none;
  }
}
.apartments__cards-wrapper {
  display: grid;
  grid-row-gap: 16px;
}

.how-buy__list {
  display: flex;
  align-items: start;
  column-gap: 16px;
  overflow: auto;
  margin: 0 -16px;
  padding: 0 16px;
}
.how-buy__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.how-buy__list::-webkit-scrollbar-track {
  background: transparent;
}
.how-buy__list::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
@media (min-width: 1280px) {
  .how-buy__list {
    overflow: visible;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    column-gap: 24px;
    row-gap: 40px;
  }
}
.how-buy__item {
  flex: 0 0 253px;
}
@media (min-width: 768px) {
  .how-buy__item {
    flex-basis: 297px;
  }
}
@media (min-width: 1024px) {
  .how-buy__item {
    flex-basis: 404px;
  }
}
@media (min-width: 1280px) {
  .how-buy__item {
    flex-basis: calc(50% - 12px);
  }
}
.how-buy__icon-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.how-buy__icon-wrapper::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1.5px;
  margin-left: 16px;
  background-image: url('data:image/svg+xml,<svg width="100%" height="1" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="1" x2="100%" y2="1" stroke="%23D0D6DD" stroke-width="2" stroke-linecap="round" stroke-dasharray="3,5" /></svg>');
  background-repeat: repeat-x;
}
@media (min-width: 1280px) {
  .how-buy__icon-wrapper::after {
    display: none;
  }
}
.how-buy__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 50%;
  background: #f8fafb;
}
.how-buy__icon.--finally {
  background: #ff9900;
}
.how-buy__icon.--finally .icon {
  color: #ffffff;
}
.how-buy__icon .icon {
  width: 100%;
  height: 100%;
  color: #22252f;
}
@media (min-width: 1728px) {
  .how-buy__icon {
    width: 60px;
    height: 60px;
    padding: 14px;
  }
}
.how-buy__content {
  display: flex;
  align-items: start;
}
.how-buy__left {
  flex: 0 0 auto;
  margin-right: 4px;
  font-weight: 600;
  color: #ff9900;
}
@media (min-width: 1024px) {
  .how-buy__left {
    margin-right: 8px;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
  }
}
.how-buy__title {
  font-weight: 600;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .how-buy__title {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
  }
}

.installment-calculator__form {
  display: grid;
  max-width: 100%;
  margin-bottom: 32px;
}
@media (min-width: 1280px) {
  .installment-calculator__form .section__head {
    min-width: 0;
    overflow: hidden;
  }
}
.installment-calculator__form-content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  column-gap: 16px;
}
@media (min-width: 768px) {
  .installment-calculator__form-content {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 500px;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .installment-calculator__form-content {
    max-width: 100%;
  }
}
.installment-calculator__button-switch-wrapper {
  width: calc(100vw - 32px);
  height: 40px;
  margin-top: 16px;
}
@media (min-width: 1280px) {
  .installment-calculator__button-switch-wrapper {
    width: auto;
  }
}
@media (min-width: 1728px) {
  .installment-calculator__button-switch-wrapper {
    height: 60px;
    margin-top: 24px;
  }
}
@media (max-width: 1727px) {
  .installment-calculator__button-switch .button-switch__item {
    padding: 4px 8px;
  }
}
.installment-calculator__form-item:last-child {
  margin-top: 16px;
}

.installment-card {
  padding: 16px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 8px 48px 0px rgba(34, 37, 47, 0.1215686275), 0px 0px 16px 0px rgba(34, 37, 47, 0.0392156863);
}
.installment-card:not(.--active) {
  display: none;
}
@media (min-width: 1280px) {
  .installment-card {
    padding: 24px;
    border-radius: 24px;
  }
}
.installment-card__head {
  display: flex;
  align-items: start;
  column-gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 1280px) {
  .installment-card__head {
    margin-bottom: 24px;
  }
}
.installment-card__head-right {
  margin-left: auto;
}
.installment-card__subtitle {
  max-width: 500px;
}
.installment-card__promo-wrapper {
  display: grid;
  grid-gap: 4px;
}
@media (min-width: 768px) {
  .installment-card__promo-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.installment-card__promo-wrapper .installment-plan {
  min-width: auto;
}
@media (max-width: 767px) {
  .installment-card__callback.--tablet {
    display: none;
  }
}
.installment-card__callback.--mobile {
  width: 100%;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .installment-card__callback.--mobile {
    display: none;
  }
}
.installment-card__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.installment-card__item {
  display: grid;
  grid-row-gap: 24px;
}
.installment-card__item:not(:last-child) {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1.5px solid #eff2f6;
}
@media (min-width: 1280px) {
  .installment-card__item:not(:last-child) {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.installment-card__values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}
@media (min-width: 768px) {
  .installment-card__values-list {
    display: flex;
    column-gap: 32px;
  }
}
@media (min-width: 1728px) {
  .installment-card__values-list {
    column-gap: 40px;
  }
}
.installment-card__values-text {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #b2b4bd;
}
@media (min-width: 1728px) {
  .installment-card__values-text {
    font-size: 32px;
    line-height: 40px;
  }
}
.installment-card__values-text .--gold {
  display: inline-block;
  margin-right: 4px;
}
.installment-card__values-label {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  color: #b2b4bd;
}
@media (min-width: 1728px) {
  .installment-card__values-label {
    font-size: 16px;
    line-height: 24px;
  }
}
.installment-card__dropdown-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
}
.installment-card__dropdown-subtitle {
  max-width: 500px;
  margin-top: 8px;
}
.installment-card__table {
  margin-top: 16px;
}
.installment-card__table table {
  width: 100%;
  text-align: left;
  border-collapse: separate;
  border-spacing: 0 4px;
}
.installment-card__table table thead {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .installment-card__table table thead {
    display: none;
  }
}
@media (max-width: 767px) {
  .installment-card__table table tbody {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
  }
  .installment-card__table table tbody tr {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 4px;
    padding: 8px 16px;
    border-radius: 16px;
  }
  .installment-card__table table tbody tr td {
    flex: 1 1 auto;
  }
  .installment-card__table table tbody tr td:nth-child(1) {
    flex-basis: calc(65% - 16px);
    order: 0;
  }
  .installment-card__table table tbody tr td:nth-child(2) {
    flex-basis: calc(65% - 16px);
    order: 2;
    color: #b2b4bd;
  }
  .installment-card__table table tbody tr td:nth-child(3) {
    flex-basis: calc(35% - 16px);
    order: 3;
    text-align: right;
  }
  .installment-card__table table tbody tr td:nth-child(4) {
    flex-basis: calc(35% - 16px);
    order: 1;
    text-align: right;
  }
}
.installment-card__table table tbody tr {
  background: #f4f7fa;
  transition: background 0.25s ease-in-out;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .installment-card__table table tbody tr:hover {
    background: #e7ecee;
  }
}
@media (min-width: 768px) {
  .installment-card__table table tbody tr td:first-child {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
  }
  .installment-card__table table tbody tr td:last-child {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
  }
}
.installment-card__table table th,
.installment-card__table table td {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  vertical-align: top;
}
@media (min-width: 768px) {
  .installment-card__table table th,
  .installment-card__table table td {
    padding-left: 16px;
  }
  .installment-card__table table th:last-child,
  .installment-card__table table td:last-child {
    padding-right: 16px;
  }
  .installment-card__table table th:nth-child(3), .installment-card__table table th:nth-child(4),
  .installment-card__table table td:nth-child(3),
  .installment-card__table table td:nth-child(4) {
    text-align: right;
  }
}
@media (min-width: 1728px) {
  .installment-card__table table th,
  .installment-card__table table td {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 768px) {
  .installment-card__table table th {
    padding-bottom: 8px;
    color: #b2b4bd;
  }
}
@media (min-width: 768px) {
  .installment-card__table table td {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.installment-card__table table td .empty {
  color: #b2b4bd;
}
@media (max-width: 767px) {
  .installment-card__table table td .empty {
    display: none;
  }
}
.installment-card__table table .tooltip__trigger {
  background: #ffffff;
}
.installment-card__table-total {
  padding: 0 16px;
  margin-top: 8px;
  text-align: right;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  color: #b2b4bd;
}
@media (min-width: 1728px) {
  .installment-card__table-total {
    font-size: 16px;
    line-height: 24px;
  }
}

.analitics__form {
  display: grid;
  margin-bottom: 32px;
}
.analitics__form-content {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  column-gap: 16px;
}
@media (min-width: 768px) {
  .analitics__form-content {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .analitics__form-content {
    max-width: 100%;
  }
}
.analitics__button-switch-wrapper {
  width: calc(100vw - 32px);
  height: 40px;
  margin-top: 16px;
}
@media (min-width: 1280px) {
  .analitics__button-switch-wrapper {
    width: auto;
  }
}
@media (min-width: 1728px) {
  .analitics__button-switch-wrapper {
    height: 60px;
    margin-top: 24px;
  }
}
.analitics__button-switch {
  padding: 0 16px;
  margin: 0 -16px;
  overflow: auto;
}
.analitics__button-switch::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.analitics__button-switch::-webkit-scrollbar-track {
  background: transparent;
}
.analitics__button-switch::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
@media (min-width: 768px) {
  .analitics__button-switch {
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}
@media (min-width: 1280px) {
  .analitics__button-switch {
    position: absolute;
  }
}
@media (max-width: 1727px) {
  .analitics__button-switch .button-switch__item {
    padding: 4px 8px;
  }
}
@media (min-width: 768px) {
  .analitics__graph-wrapper {
    display: flex;
    align-items: center;
  }
}
.analitics__statistics {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .analitics__statistics {
    flex: 0 0 auto;
    min-width: 172px;
    margin-bottom: 0;
    margin-right: 16px;
  }
}
@media (min-width: 1024px) {
  .analitics__statistics {
    min-width: 236px;
  }
}
@media (min-width: 1280px) {
  .analitics__statistics {
    min-width: 180px;
  }
}
@media (min-width: 1728px) {
  .analitics__statistics {
    min-width: 256px;
  }
}
.analitics__chart {
  height: 250px;
}
@media (min-width: 768px) {
  .analitics__chart {
    flex: 1 1 100%;
  }
}
@media (min-width: 1024px) {
  .analitics__chart {
    height: 380px;
  }
}
@media (min-width: 1280px) {
  .analitics__chart {
    height: 250px;
  }
}
@media (min-width: 1728px) {
  .analitics__chart {
    height: 300px;
  }
}
.analitics__chart canvas {
  width: 100%;
  height: 100%;
}

.analitics-form {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 16px;
  background: #fef2e0;
  margin-top: 32px;
}
@media (min-width: 1280px) {
  .analitics-form {
    margin-top: 40px;
    padding: 24px;
  }
}
.analitics-form__head {
  margin-bottom: 32px;
}
.analitics-form__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.analitics-form__subtitle {
  font-weight: 400;
  color: #717584;
}
.analitics-form__inner {
  display: grid;
  align-items: end;
  grid-gap: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .analitics-form__inner {
    grid-auto-flow: column;
    grid-template-columns: repeat(3, 1fr) auto;
  }
}
.analitics-form__inner .button {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .analitics-form__inner .button {
    margin-top: 0;
    margin-left: 8px;
  }
}
@media (min-width: 1728px) {
  .analitics-form__inner .button {
    margin-left: 24px;
  }
}
.analitics-form .input__field {
  background: #ffffff;
  border-color: #ffffff;
}
.analitics-form .input__field:hover {
  background: #e7ecee;
  border-color: #e7ecee;
}
.analitics-form .--decor {
  position: absolute;
  top: 210px;
  right: -70px;
  width: 648px;
  height: auto;
  transform: rotate(-40deg);
  pointer-events: none;
  color: #ff9900;
}
@media (min-width: 768px) {
  .analitics-form .--decor {
    top: 60px;
    transform: rotate(-30deg);
  }
}
@media (min-width: ) {
  .analitics-form .--decor {
    width: 760px;
  }
}

.share-popup__tooltip-content {
  flex-direction: column;
  width: 300px;
  padding: 8px 0;
}
.share-popup__list-item {
  position: relative;
  width: 100%;
  font-weight: 600;
  color: #717584;
  transition: background 0.25s ease-in-out;
}
.share-popup__list-item .icon {
  width: 24px;
  height: 24px;
}
.share-popup__list-item::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.25s ease-in-out;
}
.share-popup__list-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  border-bottom: 2px solid #eff2f6;
}
@media (hover: hover) and (pointer: fine) {
  .share-popup__list-item:hover {
    background: #e7ecee;
  }
  .share-popup__list-item:hover::after {
    border-color: #e7ecee;
  }
  .share-popup__list-item:hover::before {
    background: #e7ecee;
  }
}
.share-popup__list-item .copied {
  display: none;
}
.share-popup__list-item .copy-check {
  display: none;
}
.share-popup__list-item.--copy-success {
  color: #22252f;
}
.share-popup__list-item.--copy-success .not-copied {
  display: none;
}
.share-popup__list-item.--copy-success .copied {
  display: inline;
}
.share-popup__list-item.--copy-success .copy-check {
  display: block;
  margin-left: auto;
  width: 24px;
  height: 24px;
  color: #496ffe;
}
.share-popup__item-content {
  display: flex;
  align-items: center;
  column-gap: 4px;
  padding: 8px 16px;
  cursor: pointer;
}

.statistics__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}
@media (min-width: 768px) {
  .statistics__list {
    grid-template-columns: 1fr;
  }
}
.statistics__list.--hide {
  display: none;
}
.statistics__item {
  color: #b2b4bd;
}
.statistics__item-value {
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
}
@media (min-width: 1728px) {
  .statistics__item-value {
    font-size: 32px;
    line-height: 40px;
  }
}
.statistics__item-value.--positive-dinamic {
  color: #21c900;
}
.statistics__item-value.--negative-dinamic {
  color: #ff3700;
}
.statistics__item-value .icon {
  width: 32px;
  height: 32px;
}
.statistics__item-label {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
}
@media (min-width: 1728px) {
  .statistics__item-label {
    font-size: 16px;
    line-height: 24px;
  }
}

.residential-section__developer {
  display: grid;
  align-items: center;
  grid-template-columns: 96px 1fr;
  grid-column-gap: 8px;
  font-weight: 600;
}
@media (min-width: 1728px) {
  .residential-section__developer {
    grid-template-columns: 128px 1fr;
  }
}
.residential-section__developer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96px;
  height: 96px;
  border-radius: 6px;
  overflow: hidden;
  background: #f8fafb;
}
@media (min-width: 1728px) {
  .residential-section__developer-logo {
    width: 128px;
    height: 128px;
  }
}
.residential-section__developer-logo img {
  width: 100%;
  height: 100%;
}
.residential-section__developer-name {
  margin-bottom: 4px;
}
@media (min-width: 1728px) {
  .residential-section__developer-name {
    font-size: 16px;
    line-height: 24px;
  }
}
.residential-section__developer-type {
  display: flex;
  align-items: center;
  column-gap: 4px;
  font-size: 13px;
  line-height: 16px;
}
.residential-section__developer-type .type {
  color: #717584;
}
.residential-section__developer-type .dot {
  width: 3px;
  height: 3px;
  background: #b2b4bd;
  border-radius: 50%;
}
.residential-section__developer-type .projects-count {
  color: #496ffe;
}
.residential-section__developer-info {
  margin-bottom: 32px;
}
@media (min-width: 1728px) {
  .residential-section__developer-info {
    margin-bottom: 40px;
  }
}
.residential-section__description {
  max-width: 800px;
}
@media (min-width: 1280px) {
  .residential-section__description {
    max-width: 100%;
  }
}
.residential-section__description .text-truncate {
  -webkit-line-clamp: 6;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}
.residential-section__description .text-truncate p + p {
  margin-top: 1em;
}
.residential-section__description-action {
  margin-top: 8px;
  font-size: 16px !important;
  line-height: 24px !important;
}

.developer-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 16px;
  column-gap: 16px;
}
@media (min-width: 768px) {
  .developer-info {
    column-gap: 32px;
  }
}
.unit-page .developer-info {
  column-gap: 16px;
}
@media (min-width: 1728px) {
  .unit-page .developer-info {
    column-gap: 32px;
  }
}
.developer-info__item {
  flex: 0 0 calc(50% - 8px);
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  color: #b2b4bd;
}
@media (min-width: 768px) {
  .developer-info__item {
    flex: 0 0 auto;
  }
}
@media (min-width: 1728px) {
  .developer-info__item {
    font-size: 16px;
    line-height: 24px;
  }
}
.developer-info__item .--gold {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
}
@media (min-width: 1728px) {
  .developer-info__item .--gold {
    font-size: 32px;
    line-height: 40px;
  }
}

.other-offers {
  min-width: 0;
}
.other-offers__button-switch-wrapper {
  width: 100vw;
  height: 40px;
  padding: 0 16px;
  margin: 16px -16px 0;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .other-offers__button-switch-wrapper {
    margin: 0;
    margin-top: 16px;
    padding: 0;
    overflow: visible;
  }
}
@media (min-width: 1280px) {
  .other-offers__button-switch-wrapper {
    width: auto;
  }
}
@media (min-width: 1728px) {
  .other-offers__button-switch-wrapper {
    height: 60px;
    margin-top: 24px;
  }
}
.other-offers__button-switch {
  padding: 0 16px;
  margin: 0 -16px;
  overflow: auto;
}
.other-offers__button-switch::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.other-offers__button-switch::-webkit-scrollbar-track {
  background: transparent;
}
.other-offers__button-switch::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
@media (min-width: 768px) {
  .other-offers__button-switch {
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}
@media (min-width: 1280px) {
  .other-offers__button-switch {
    position: absolute;
  }
}
@media (max-width: 1727px) {
  .other-offers__button-switch .button-switch__item {
    padding: 4px 8px;
  }
}
.other-offers__cards-head {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  color: #b2b4bd;
  padding-left: 16px;
}
@media (max-width: 767px) {
  .other-offers__cards-head {
    display: none;
  }
}
.other-offers__cards-wrapper {
  display: grid;
  grid-row-gap: 16px;
}
.other-offers__slider {
  position: relative;
}
.other-offers__slider.--final-slide::after {
  opacity: 0;
}
@media (min-width: 1280px) {
  .other-offers__slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 92%, #ffffff 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.25s ease-in-out;
  }
}

.offers-card {
  background: #f4f7fa;
  border-radius: 16px;
  padding: 16px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  transition: background 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .offers-card:hover {
    background: #e7ecee;
  }
}
@media (min-width: 768px) {
  .offers-card {
    padding-left: 32px;
  }
}
@media (max-width: 1727px) {
  .offers-card .link {
    font-size: 13px;
    line-height: 16px;
  }
}
.offers-card.--open {
  background: #ffffff;
  box-shadow: 0px 8px 48px 0px rgba(34, 37, 47, 0.12), 0px 0px 16px 0px rgba(34, 37, 47, 0.04);
}
@media (min-width: 768px) {
  .offers-card .dropdown__header,
  .offers-card .dropdown__content {
    margin-left: -16px;
  }
}
.offers-card .dropdown__content {
  display: grid;
  grid-row-gap: 4px;
}
.offers-card .dropdown__icon {
  width: 16px;
  height: 16px;
}
@media (min-width: 1728px) {
  .offers-card .dropdown__icon {
    width: 24px;
    height: 24px;
  }
}
.offers-card__row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 8px;
  row-gap: 4px;
}
@media (min-width: 768px) {
  .offers-card__row {
    column-gap: 16px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
.offers-card__row.--offer {
  padding: 8px 16px;
  border-radius: 16px;
  background: #f4f7fa;
  transition: background 0.25s ease-in-out;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .offers-card__row.--offer:hover {
    background: #e7ecee;
  }
}
@media (min-width: 768px) {
  .offers-card__row.--offer {
    padding: 8px 0;
  }
}
.offers-card__row.--offer:first-child {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .offers-card__row.--offer:first-child {
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .offers-card__row:not(.--offer) .offers-card__row-item:nth-child(1) {
    flex: 0 0 100%;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
  }
}
@media (max-width: 767px) {
  .offers-card__row:not(.--offer) .offers-card__row-item:nth-child(2) {
    display: none;
  }
}
@media (max-width: 767px) {
  .offers-card__row:not(.--offer) .offers-card__row-item:nth-child(3) {
    position: relative;
    flex: 0 0 auto;
    margin-left: 3px;
  }
  .offers-card__row:not(.--offer) .offers-card__row-item:nth-child(3)::before {
    content: "";
    display: block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #b2b4bd;
    position: absolute;
    top: 50%;
    left: -6px;
    transform: translateY(-50%);
  }
}
@media (max-width: 767px) {
  .offers-card__row:not(.--offer) .offers-card__row-item:nth-child(4) {
    flex: 0 0 auto;
  }
}
@media (max-width: 767px) {
  .offers-card__row:not(.--offer) .offers-card__row-item:nth-child(5) {
    order: 4;
    margin: 0 auto;
    margin-top: 8px;
  }
}
.offers-card__row-item {
  display: flex;
  align-items: center;
}
.offers-card__row-item:nth-child(1) {
  flex: 0 0 calc(33.33% - 8px);
}
@media (min-width: 768px) {
  .offers-card__row-item:nth-child(1) {
    padding-left: 16px;
    flex: 0 0 calc(20% - 16px);
  }
}
@media (min-width: 1024px) {
  .offers-card__row-item:nth-child(1) {
    flex: 0 0 calc(24% - 16px);
  }
}
@media (min-width: 1280px) {
  .offers-card__row-item:nth-child(1) {
    flex: 0 0 calc(20% - 16px);
  }
}
.offers-card__row-item:nth-child(2) {
  flex: 0 0 calc(33.33% - 8px);
}
@media (min-width: 768px) {
  .offers-card__row-item:nth-child(2) {
    flex: 1 1 100%;
  }
}
.offers-card__row-item:nth-child(3) {
  text-align: right;
  justify-content: end;
}
@media (max-width: 767px) {
  .offers-card__row-item:nth-child(3) {
    order: 3;
    flex: 0 0 100%;
  }
}
@media (min-width: 768px) {
  .offers-card__row-item:nth-child(3) {
    flex: 0 0 calc(17% - 16px);
  }
}
.offers-card__row-item:nth-child(4) {
  text-align: right;
  justify-content: end;
}
@media (max-width: 767px) {
  .offers-card__row-item:nth-child(4) {
    order: 2;
    flex: 0 0 calc(33.33% - 8px);
  }
}
@media (min-width: 768px) {
  .offers-card__row-item:nth-child(4) {
    flex: 0 0 calc(28% - 16px);
  }
}
@media (min-width: 1024px) {
  .offers-card__row-item:nth-child(4) {
    flex: 0 0 calc(20% - 16px);
  }
}
@media (min-width: 1280px) {
  .offers-card__row-item:nth-child(4) {
    flex: 0 0 calc(28% - 16px);
  }
}
@media (min-width: 768px) {
  .offers-card__row-item:nth-child(5) {
    text-align: right;
    justify-content: end;
    flex: 0 0 calc(23% - 16px);
  }
}
@media (min-width: 1024px) {
  .offers-card__row-item:nth-child(5) {
    flex: 0 0 calc(20% - 16px);
  }
}
@media (min-width: 1280px) {
  .offers-card__row-item:nth-child(5) {
    flex: 0 0 calc(25% - 16px);
  }
}
.offers-card__logo {
  height: 16px;
}
.offers-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.offers-card__link {
  margin-top: 8px;
  justify-content: center;
}
@media (min-width: 768px) {
  .offers-card__link {
    justify-content: end;
  }
}
.offers-card__link .icon {
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}
@media (min-width: 1728px) {
  .offers-card__link .icon {
    width: 24px;
    height: 24px;
  }
}

.construction-progress__card {
  display: none;
}
@media (min-width: 768px) {
  .construction-progress__card {
    display: grid;
    row-gap: 16px;
    padding: 16px;
    border-radius: 16px;
    background: #f8fafb;
  }
}
.construction-progress__card-title {
  font-weight: 600;
}
.construction-progress__card-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
}
.construction-progress__slider {
  position: relative;
}
.construction-progress__slider.--final-slide::after {
  opacity: 0;
}
@media (min-width: 1280px) {
  .construction-progress__slider::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 92%, #ffffff 100%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.25s ease-in-out;
  }
}

.construction-progress-slide__inner {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding: 8px;
  margin: -8px;
  border-radius: 24px;
  transition: background 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .construction-progress-slide__inner:hover {
    background: #f8fafb;
  }
}
.construction-progress-slide__image {
  position: relative;
  aspect-ratio: 343/231;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .construction-progress-slide__image {
    aspect-ratio: 1/1;
  }
}
.construction-progress-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease-in-out;
}
.construction-progress-slide__images-count {
  position: absolute;
  top: 4px;
  left: 4px;
  padding: 4px 8px;
  border-radius: 20px;
  background: #ffffff;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
}
@media (min-width: 1728px) {
  .construction-progress-slide__images-count {
    font-size: 16px;
    line-height: 24px;
  }
}
.construction-progress-slide__title {
  font-weight: 600;
}
@media (min-width: 1728px) {
  .construction-progress-slide__title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
  }
}
.construction-progress-slide .add-image {
  visibility: hidden;
}

@media (max-width: 1279px) {
  .footer {
    padding-bottom: 89px;
  }
}
@media (min-width: 768px) {
  .footer {
    padding-bottom: 121px;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding-bottom: 137px;
  }
}

.unit-page__breadcrumbs {
  display: none;
}
@media (min-width: 1280px) {
  .unit-page__breadcrumbs {
    display: block;
  }
}
@media (min-width: 768px) {
  .unit-page__content {
    padding-bottom: 28px;
  }
}
@media (min-width: 1280px) {
  .unit-page__content {
    padding-bottom: 40px;
  }
}
@media (max-width: 1279px) {
  .unit-page__slider {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .unit-page__slider .swiper {
    padding-bottom: 12px;
  }
}
@media (min-width: 768px) {
  .unit-page__slider .swiper {
    padding: 0 16px;
  }
}
@media (min-width: 1280px) {
  .unit-page__slider .swiper {
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .unit-page__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    grid-gap: 24px;
  }
}
.unit-page__slider .swiper-slide {
  position: relative;
}
@media (max-width: 1279px) {
  .unit-page__slider .swiper-slide {
    aspect-ratio: 375/255;
  }
}
@media (min-width: 768px) {
  .unit-page__slider .swiper-slide {
    border-radius: 16px;
    overflow: hidden;
  }
}
@media (min-width: 1280px) {
  .unit-page__slider .swiper-slide.--hide {
    display: none;
  }
  .unit-page__slider .swiper-slide:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  .unit-page__slider .swiper-slide {
    cursor: pointer;
  }
}
@media (min-width: 1280px) and (hover: hover) and (pointer: fine) {
  .unit-page__slider .swiper-slide:hover img {
    transform: scale(1.1);
  }
}
.unit-page__slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease-in-out;
}
@media (max-width: 1279px) {
  .unit-page__slider .swiper-slide .more-images {
    display: none;
  }
}
.unit-page__slider .swiper-slide .more-images {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 37, 47, 0.4);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #ffffff;
  cursor: pointer;
}
.unit-page__slider .swiper-pagination {
  bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.unit-page__slider .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  margin: 0 2px !important;
  background: #b2b4bd;
  opacity: 1;
  transition: background 0.25s ease-in-out;
}
.unit-page__slider .swiper-pagination-bullet-active {
  background: #496ffe;
}
@media (min-width: 768px) {
  .unit-page__slider .swiper-pagination {
    display: none;
  }
}
.unit-page__nav {
  background: #ffffff;
  border-bottom: 1px solid #eff2f6;
}
.unit-page__nav.--fixed {
  position: fixed;
  left: 0;
  right: 0;
  top: 57px;
  box-shadow: 0px 8px 48px 0px rgba(34, 37, 47, 0.1215686275), 0px 0px 16px 0px rgba(34, 37, 47, 0.0392156863);
  z-index: 99;
}
@media (min-width: 1728px) {
  .unit-page__nav.--fixed {
    top: 77px;
  }
}
@media (max-width: 767px) {
  .unit-page__nav-container {
    padding: 0;
  }
}
.unit-page__nav-list {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  column-gap: 8px;
  overflow: auto;
}
.unit-page__nav-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.unit-page__nav-list::-webkit-scrollbar-track {
  background: transparent;
}
.unit-page__nav-list::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
  border: 0 solid transparent;
}
@media (min-width: 768px) {
  .unit-page__nav-list {
    overflow: visible;
    padding: 8px 0;
    column-gap: 16px;
  }
}
.unit-page__nav-item {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  white-space: nowrap;
  color: #717584;
  transition: color 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .unit-page__nav-item {
    font-size: 16px;
    line-height: 24px;
  }
}
.unit-page__nav-item.--active {
  color: #496ffe;
}
@media (hover: hover) and (pointer: fine) {
  .unit-page__nav-item:hover:hover {
    color: #22252f;
  }
}
@media (min-width: 1280px) {
  .unit-page__content-container {
    position: relative;
    display: grid;
    align-items: start;
    grid-template-columns: 1fr 385px;
    grid-column-gap: 126px;
  }
}
@media (min-width: 1728px) {
  .unit-page__content-container {
    grid-template-columns: 1fr 540px;
    grid-column-gap: 164px;
  }
}
.unit-page__content-block {
  min-width: 0;
}
.unit-page__sticky-block {
  display: none;
}
@media (min-width: 1280px) {
  .unit-page__sticky-block {
    position: sticky;
    top: 137px;
    right: 0;
    display: grid;
    grid-row-gap: 24px;
    margin: 40px 0;
  }
}
.unit-page__actions {
  display: flex;
  align-items: center;
  column-gap: 4px;
  margin-top: 40px;
}
.unit-page__actions .button {
  flex: 1 1 100%;
}
.unit-page__actions .button.icon {
  flex: 0 0 auto;
}
@media (min-width: 1280px) {
  .unit-page__actions.--mobile {
    display: none;
  }
}
.unit-page__actions.--mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 57px;
  padding: 8px 16px;
  background: #ffffff;
  border-bottom: 1px solid #eff2f6;
  box-shadow: 0px 8px 48px 0px rgba(34, 37, 47, 0.1215686275), 0px 0px 16px 0px rgba(34, 37, 47, 0.0392156863);
  z-index: 100;
}