@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;
}

.blog-card {
  cursor: pointer;
  display: block;
  padding: 8px;
  margin: -8px;
  border-radius: 24px;
  transition: background 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .blog-card:hover {
    background: #f8fafb;
  }
}
.blog-card__image {
  position: relative;
  aspect-ratio: 343/231;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .blog-card__image {
    aspect-ratio: 1;
  }
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__topic {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 4px 8px;
  border-radius: 20px;
  background: #ffffff;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
}
.blog-card__tags {
  margin-bottom: 4px;
}
.blog-card__title {
  font-weight: 600;
  margin-bottom: 4px;
}
@media (min-width: 1728px) {
  .blog-card__title {
    margin-bottom: 8px;
  }
}
.blog-card__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 4px;
  overflow: hidden;
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  color: #717584;
}
.blog-card__date {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  text-align: right;
  color: #b2b4bd;
}

.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;
  }
}

.terms-how-buy {
  padding-top: 228px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.384) 50%, rgba(0, 0, 0, 0.64) 100%), url("/assets-dist/images/terms-block-bg.jpg") no-repeat center;
  background-size: cover;
}
.terms-how-buy .section__title {
  color: #ffffff;
}
@media (min-width: 1728px) {
  .terms-how-buy {
    padding-top: 80px;
  }
}
.terms-how-buy__cards {
  display: flex;
  align-items: start;
  column-gap: 16px;
  margin: 0 -16px 32px;
  padding: 0 16px;
  overflow: auto;
}
.terms-how-buy__cards::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.terms-how-buy__cards::-webkit-scrollbar-track {
  background: transparent;
}
.terms-how-buy__cards::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
@media (min-width: 1024px) {
  .terms-how-buy__cards {
    display: block;
    max-width: 930px;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .terms-how-buy__cards {
    column-gap: 24px;
    row-gap: 24px;
  }
}
@media (min-width: 1024px) {
  .terms-how-buy .card {
    width: 448px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .terms-how-buy__button.--mobile {
    display: none;
  }
}
@media (max-width: 1023px) {
  .terms-how-buy__button.--laptop {
    display: none;
  }
}
@media (min-width: 768px) {
  .terms-how-buy__button {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .terms-how-buy__button {
    justify-content: start;
    margin-top: 16px;
  }
}
@media (min-width: 1728px) {
  .terms-how-buy__button {
    margin-top: 24px;
  }
}

.terms-cards__list {
  display: flex;
  align-items: start;
  column-gap: 16px;
  margin: 0 -16px;
  padding: 0 16px;
  overflow: auto;
}
.terms-cards__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.terms-cards__list::-webkit-scrollbar-track {
  background: transparent;
}
.terms-cards__list::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
@media (min-width: 1024px) {
  .terms-cards__list {
    flex-wrap: wrap;
    row-gap: 16px;
    overflow: visible;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .terms-cards__list {
    column-gap: 24px;
    row-gap: 24px;
  }
}

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

.main-banner {
  position: relative;
  height: 600px;
  max-height: calc(100vh - 57px);
  background-image: url("/assets-dist/images/main-banner.jpg");
  background-color: rgba(0, 0, 0, 0.239);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-blend-mode: overlay;
  color: #ffffff;
}
@supports (max-height: 100svh) {
  .main-banner {
    max-height: calc(100svh - 57px);
  }
}
@media (min-width: 768px) {
  .main-banner {
    height: 512px;
  }
}
@media (min-width: 1024px) {
  .main-banner {
    height: 682px;
  }
}
@media (min-width: 1280px) {
  .main-banner {
    height: 720px;
  }
}
@media (min-width: 1728px) {
  .main-banner {
    max-height: calc(100vh - 77px);
  }
  @supports (max-height: 100svh) {
    .main-banner {
      max-height: calc(100svh - 57px);
    }
  }
}
.main-banner .container {
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .main-banner__content {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translate(0, -50%);
  }
}
@media (min-width: 1280px) {
  .main-banner__content {
    position: static;
    transform: translate(0, 0);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
}
.main-banner__content-body {
  max-width: 423px;
}
@media (min-width: 1280px) {
  .main-banner__content-body {
    max-width: 574px;
  }
}
.main-banner__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .main-banner__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1728px) {
  .main-banner__title {
    font-size: 40px;
    line-height: 48px;
  }
}
.main-banner__remarks {
  display: grid;
  grid-row-gap: 4px;
}
.main-banner__remarks-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 4px;
  margin: 0 -3.5px;
  overflow: hidden;
}
.main-banner__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;
}
@media (min-width: 1024px) {
  .main-banner__remark {
    font-size: 16px;
    line-height: 24px;
  }
}
.main-banner__remark .icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}
@media (min-width: 1728px) {
  .main-banner__remark .icon {
    width: 24px;
    height: 24px;
  }
}
.main-banner__remark + .main-banner__remark {
  position: relative;
}
.main-banner__remark + .main-banner__remark::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.48;
  position: absolute;
  top: 50%;
  left: -3.5px;
}
.main-banner__choices {
  margin-top: 32px;
}
@media (min-width: 1280px) {
  .main-banner__choices {
    display: none;
  }
}
.main-banner__choices .choice-group__wrapper {
  flex-wrap: wrap;
}
.main-banner__choices .choice-group__item-value {
  height: 32px;
  font-size: 13px;
  line-height: 16px;
}
.main-banner__filters {
  display: none;
}
@media (min-width: 1280px) {
  .main-banner__filters {
    display: block;
  }
}
@media (max-width: 1727px) {
  .main-banner .button-switch .button-switch__item {
    padding: 4px 8px;
  }
}

.filters {
  margin-top: 40px;
}
.filters__wrapper {
  display: flex;
  align-items: end;
  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);
}
.filters__container {
  display: flex;
  align-items: end;
}
.filters__form {
  display: grid;
  grid-gap: 24px;
}
.filters__form-inner {
  flex: 1 1 100%;
  display: flex;
  align-items: end;
  column-gap: 16px;
  margin-right: 24px;
}
.filters__select-group {
  flex: 1 1 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 16px;
}
@media (min-width: 1728px) {
  .filters__select-group {
    grid-template-columns: 1fr 1fr auto;
  }
}
.filters__select-group .select {
  width: 100%;
}
.filters__form-item.--wide {
  display: none;
}
@media (min-width: 1728px) {
  .filters__form-item.--wide {
    display: block;
  }
}
@media (min-width: 1728px) {
  .filters__form-item.--to-wide {
    display: none;
  }
}
.filters__form-item.--desktop {
  display: none;
}
@media (min-width: 1280px) {
  .filters__form-item.--desktop {
    display: block;
  }
}
.filters__actions {
  display: flex;
  align-items: end;
  margin-left: auto;
  column-gap: 4px;
}
.filters__actions .filter-button {
  position: relative;
}
.filters__actions .filter-button .count {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(4px, -4px);
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  overflow: hidden;
  background: #496ffe;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  box-shadow: 0px 1px 2px 0px rgba(34, 37, 47, 0.1019607843), 0px 4px 4px 0px rgba(34, 37, 47, 0.0901960784), 0px 9px 6px 0px rgba(34, 37, 47, 0.0509803922), 0px 17px 7px 0px rgba(34, 37, 47, 0.0117647059), 0px 26px 7px 0px rgba(34, 37, 47, 0);
}
.filters__actions .button-show {
  width: 137px;
}
@media (min-width: 1728px) {
  .filters__actions .button-show {
    width: 180px;
  }
}

.property-navigator__switch-button-wrapper {
  width: 100vw;
  height: 40px;
  padding: 0 16px;
  margin: 0 -16px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .property-navigator__switch-button-wrapper {
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    margin-top: 16px;
    overflow: visible;
  }
}
@media (min-width: 1280px) {
  .property-navigator__switch-button-wrapper {
    margin-top: 24px;
  }
}
@media (min-width: 1728px) {
  .property-navigator__switch-button-wrapper {
    margin-top: 40px;
  }
}
.property-navigator__switch-button {
  padding: 0 16px;
  margin: 0 -16px;
  overflow: auto;
}
.property-navigator__switch-button::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.property-navigator__switch-button::-webkit-scrollbar-track {
  background: transparent;
}
.property-navigator__switch-button::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
@media (min-width: 768px) {
  .property-navigator__switch-button {
    margin: 0;
    padding: 0;
    overflow: visible;
  }
}
@media (max-width: 1727px) {
  .property-navigator__switch-button .button-switch__item {
    padding: 4px 8px;
  }
}
@media (min-width: 1280px) {
  .property-navigator .section__head {
    margin-bottom: 40px;
  }
}
.property-navigator__scroll-wrapper {
  margin: 0 -16px;
  overflow: auto;
}
.property-navigator__scroll-wrapper::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.property-navigator__scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.property-navigator__scroll-wrapper::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
@media (min-width: 1024px) {
  .property-navigator__scroll-wrapper {
    overflow: visible;
  }
}
@media (min-width: 1280px) {
  .property-navigator__scroll-wrapper {
    padding: 0;
    margin: 0;
  }
}
.property-navigator__wrapper {
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
  width: calc(147.5% + 16px);
}
@media (min-width: 768px) {
  .property-navigator__wrapper {
    width: calc(132% + 16px);
  }
}
@media (min-width: 1024px) {
  .property-navigator__wrapper {
    display: flex;
    column-gap: 16px;
    row-gap: 16px;
    width: 100%;
    overflow: auto;
  }
  .property-navigator__wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
  .property-navigator__wrapper::-webkit-scrollbar-track {
    background: transparent;
  }
  .property-navigator__wrapper::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 0;
    border: none;
  }
}
@media (min-width: 1280px) {
  .property-navigator__wrapper {
    overflow: visible;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    grid-gap: 24px;
  }
}
.property-navigator__item {
  position: relative;
  aspect-ratio: 253/170;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 16px;
  color: #ffffff;
}
.property-navigator__item:nth-child(5) {
  display: none;
}
@media (min-width: 1024px) {
  .property-navigator__item:nth-child(5) {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .property-navigator__item {
    flex: 0 0 40.75%;
  }
}
@media (min-width: 1280px) {
  .property-navigator__item {
    flex: 0 0 auto;
    border-radius: 24px;
  }
  .property-navigator__item:nth-child(1) {
    aspect-ratio: auto;
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
.property-navigator__image-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.property-navigator .blackout {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(178.85deg, rgba(34, 37, 47, 0.08) 61.27%, rgba(34, 37, 47, 0.64) 98.03%);
  pointer-events: none;
  z-index: 2;
}
.property-navigator__item-name {
  position: relative;
  word-break: none;
  z-index: 3;
  max-width: 90%;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.02em;
  vertical-align: bottom;
}
.property-navigator__item-name .no-wrap-group {
  white-space: nowrap;
  display: inline;
}

.reviews__actions {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
@media (min-width: 768px) {
  .reviews__actions {
    margin-left: auto;
  }
}
.reviews__link {
  display: flex;
  align-items: center;
  column-gap: 4px;
}
.reviews__link .icon {
  width: 32px;
  height: 32px;
}
.reviews__slider-navigations {
  display: none;
}
@media (min-width: 1280px) {
  .reviews__slider-navigations {
    display: flex;
    align-items: center;
    column-gap: 4px;
    margin-left: 24px;
  }
}
.reviews .swiper {
  margin: 0 -16px;
  padding: 0 16px;
  padding-bottom: 32px;
}
@media (min-width: 1280px) {
  .reviews .swiper {
    margin: 0;
    padding: 0;
  }
}
.reviews .swiper-pagination {
  bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  margin: 0 2px !important;
  background: #b2b4bd;
  opacity: 1;
  transition: background 0.25s ease-in-out;
}
.reviews .swiper-pagination-bullet-active {
  background: #496ffe;
}
@media (min-width: 1280px) {
  .reviews .swiper-pagination {
    display: none;
  }
}

.review-slide__preview {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 8px;
  cursor: pointer;
}
.review-slide__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .review-slide__preview {
    margin-bottom: 16px;
  }
}
.review-slide__preview::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 37, 47, 0.4784313725);
  z-index: 1;
}
.review-slide__preview .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  color: #ffffff;
  z-index: 2;
}
.review-slide__name {
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  text-align: center;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .review-slide__name {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 1728px) {
  .review-slide__name {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
}
.review-slide__rating {
  display: flex;
  align-self: center;
  justify-content: center;
}
.review-slide__rating .icon {
  width: 16px;
  height: 16px;
  color: #b2b4bd;
}
@media (min-width: 1728px) {
  .review-slide__rating .icon {
    width: 24px;
    height: 24px;
  }
}
.review-slide__rating[data-rating="1"] .icon:nth-child(1) {
  color: #ff9900;
}
.review-slide__rating[data-rating="2"] .icon:nth-child(1),
.review-slide__rating[data-rating="2"] .icon:nth-child(2) {
  color: #ff9900;
}
.review-slide__rating[data-rating="3"] .icon:nth-child(1),
.review-slide__rating[data-rating="3"] .icon:nth-child(2),
.review-slide__rating[data-rating="3"] .icon:nth-child(3) {
  color: #ff9900;
}
.review-slide__rating[data-rating="4"] .icon:nth-child(1),
.review-slide__rating[data-rating="4"] .icon:nth-child(2),
.review-slide__rating[data-rating="4"] .icon:nth-child(3),
.review-slide__rating[data-rating="4"] .icon:nth-child(4) {
  color: #ff9900;
}
.review-slide__rating[data-rating="5"] .icon {
  color: #ff9900;
}

.company-info {
  position: relative;
  padding-bottom: 0;
  margin-bottom: 188px;
  height: 804px;
  background-color: #74645f;
  background-image: url("/assets-dist/images/company-info-bg.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}
@media (min-width: 768px) {
  .company-info {
    height: 1000px;
    margin-bottom: 102px;
  }
}
@media (min-width: 1024px) {
  .company-info {
    height: 1300px;
    margin-bottom: 125px;
  }
}
@media (min-width: 1280px) {
  .company-info {
    height: 1600px;
    margin-bottom: 150px;
  }
}
@media (min-width: 1728px) {
  .company-info {
    margin-bottom: 120px;
  }
}
.company-info .section__head {
  text-align: center;
  color: #ffffff;
}
.company-info .section__head-top {
  justify-content: center;
}
.company-info .section__subtitle {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.company-info__cards-wrapper {
  display: flex;
  align-items: start;
  column-gap: 16px;
  margin: 0 -16px;
  padding: 0 16px;
  overflow: auto;
}
.company-info__cards-wrapper::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.company-info__cards-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.company-info__cards-wrapper::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 0;
  border: none;
}
@media (min-width: 1024px) {
  .company-info__cards-wrapper {
    flex-wrap: wrap;
    row-gap: 16px;
    overflow: visible;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .company-info__cards-wrapper {
    max-width: 792px;
    column-gap: 24px;
    row-gap: 24px;
    margin: 0 auto;
  }
}
@media (min-width: 1728px) {
  .company-info__cards-wrapper {
    max-width: 1101px;
  }
}
.company-info__link-wrapper {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .company-info__link-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1280px) {
  .company-info__link-wrapper {
    margin-top: 40px;
  }
}
.company-info__link {
  width: 100%;
}
@media (min-width: 768px) {
  .company-info__link {
    width: auto;
  }
}

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

.consultation {
  position: absolute;
  top: calc(100% - 32px);
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 32px);
  padding: 16px;
  border-radius: 16px;
  background: #fef2e0;
}
@media (min-width: 768px) {
  .consultation {
    top: calc(100% - 94px);
    width: 360px;
  }
}
@media (min-width: 1024px) {
  .consultation {
    top: calc(100% - 112px);
    width: 487px;
  }
}
@media (min-width: 1280px) {
  .consultation {
    top: calc(100% - 110px);
    width: 588px;
    padding: 24px;
  }
}
@media (min-width: 1728px) {
  .consultation {
    top: calc(100% - 80px);
    width: 820px;
    display: flex;
    align-items: end;
  }
}
.consultation__title {
  font-weight: 600;
  margin-bottom: 4px;
}
@media (min-width: 1024px) {
  .consultation__title {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }
}
.consultation__content {
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
}
@media (min-width: 1024px) {
  .consultation__content {
    font-size: 16px;
    line-height: 24px;
  }
}
.consultation__button {
  flex: 0 0 auto;
  width: 100%;
  margin-top: 16px;
}
@media (min-width: 1280px) {
  .consultation__button {
    margin-top: 24px;
  }
}
@media (min-width: 1728px) {
  .consultation__button {
    width: auto;
    margin-top: 0;
    margin-left: 24px;
  }
}

.attachments {
  margin-top: 4px;
}
.attachments__action.--hide {
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  overflow: hidden;
}
.attachments__button {
  display: flex;
  align-items: center;
  column-gap: 4px;
  font-weight: 600;
  color: #496ffe;
  cursor: pointer;
  transition: color 0.25s ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .attachments__button:hover {
    color: #22252f;
  }
}
.attachments__button .icon {
  width: 24px;
  height: 24px;
}
.attachments__info {
  margin-top: 4px;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  color: #b2b4bd;
}
.attachments__file {
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  padding: 4px 8px;
  border-radius: 16px;
  background: #f4f7fa;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  white-space: nowrap;
}
.attachments__file.--hide {
  display: none;
}
.attachments__file .name {
  text-transform: uppercase;
}
.attachments__file .size {
  color: #b2b4bd;
}
.attachments__file .delete {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.company-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
}
@media (min-width: 768px) {
  .company-rating {
    column-gap: 16px;
  }
}
.company-rating__star {
  width: 32px;
  height: 32px;
  cursor: pointer;
}
@media (min-width: 1728px) {
  .company-rating__star {
    width: 60px;
    height: 60px;
  }
}
.company-rating__star .icon {
  width: 100%;
  height: 100%;
  color: #b2b4bd;
  transition: color 0.25s ease-in-out;
}
.company-rating input:checked + .icon,
.company-rating input.--filled + .icon {
  color: #ff9900;
}

@media (min-width: 1280px) {
  .section.main-banner {
    padding-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .section.property-navigator {
    padding: 32px 0 64px;
  }
}
@media (min-width: 1280px) {
  .section.property-navigator {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .section.promo-section {
    padding-top: 64px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1280px) {
  .section.promo-section {
    padding: 80px 0;
  }
}
.section.promo-section .tag:not(.--accent) {
  background: #ffffff;
}
.section.new-buildings-section {
  padding-top: 64px;
}
@media (min-width: 768px) {
  .section.new-buildings-section {
    padding-bottom: 40px;
  }
}
@media (min-width: 1024px) {
  .section.new-buildings-section {
    padding: 64px 0 80px;
  }
}
@media (min-width: 1280px) {
  .section.new-buildings-section {
    padding: 40px 0;
  }
}
@media (min-width: 1728px) {
  .section.new-buildings-section {
    padding: 40px 0 80px;
  }
}
.section.units-section {
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .section.units-section {
    padding-bottom: 64px;
  }
}
@media (min-width: 1280px) {
  .section.units-section {
    padding: 40px 0 80px;
  }
}
@media (min-width: 768px) {
  .section.terms-section, .section.reviews {
    padding: 64px 0;
  }
}
@media (min-width: 1280px) {
  .section.terms-section, .section.reviews {
    padding: 80px 0;
  }
}
@media (min-width: 768px) {
  .section.blog {
    padding-bottom: 40px;
  }
}
@media (min-width: 1280px) {
  .section.blog {
    padding: 40px 0;
  }
}
.section.rating-section {
  position: relative;
}
.section.rating-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #eff2f6;
}
@media (min-width: 1280px) {
  .section.rating-section::before {
    left: 40px;
    right: 40px;
  }
}
@media (min-width: 1728px) {
  .section.rating-section::before {
    left: 128px;
    right: 128px;
  }
}
@media screen and (min-width: 1920px) {
  .section.rating-section::before {
    max-width: 1664px;
    width: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .section.rating-section {
    padding-bottom: 64px;
  }
}
@media (min-width: 1280px) {
  .section.rating-section {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .catalog-sliders {
    padding: 32px 0;
  }
}

.terms-section .card.--accent .card__left {
  display: flex;
  flex-direction: column;
}

.terms-section .card.--accent .terms-buy-item__action {
  margin-top: auto;
  padding-top: 12px;
}

.terms-section .card.--accent .terms-buy-item__action .button {
  width: auto;
  margin: 0;
}
