@charset "UTF-8";
:root {
  --font-family: "Montserrat", sans-serif;
  --content-width: 1500px;
  --container-offset: 20px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background-color: #323335;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  padding-top: calc(var(--header-height, 0px));
}
.page__body.body-padding {
  padding-top: calc(var(--header-height, 0px));
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100svh;
}

main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

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

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
  width: 100%;
}
@media (max-width: 1024px) {
  .container {
    --container-offset: 15px;
  }
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 16px 48px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 100px;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
  overflow: hidden;
}
@media (max-width: 768px) {
  .btn {
    font-size: 15px;
    padding-left: 32px;
    padding-right: 32px;
    min-width: 200px;
  }
}
.btn--primary {
  background: linear-gradient(129deg, #F15F3A 3.55%, #F98E53 99.96%), #E53617;
  background-color: black;
  color: var(--light-color);
  position: relative;
}
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(129deg, #F15F3A 3.55%, #F98E53 99.96%), #E53617;
  opacity: 0;
  background-size: 300% 100%;
  -webkit-transition: background 0.4s ease, opacity 0.4s ease;
  transition: background 0.4s ease, opacity 0.4s ease;
}
.btn--primary span {
  position: relative;
  z-index: 1;
}
.btn--primary:hover::before {
  opacity: 1;
  background-position: right center;
  -webkit-transition: background 0.4s ease, opacity 0.4s ease;
  transition: background 0.4s ease, opacity 0.4s ease;
}
.btn--secondary {
  background-color: var(--light-color);
  color: #000;
  position: relative;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
.btn--secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(129deg, #F15F3A 3.55%, #F98E53 99.96%), #E53617;
  opacity: 0;
  background-size: 200% 100%;
  -webkit-transition: background 0.4s ease, opacity 0.4s ease;
  transition: background 0.4s ease, opacity 0.4s ease;
}
.btn--secondary span {
  position: relative;
  z-index: 2;
}
.btn--secondary:hover {
  color: var(--light-color);
}
.btn--secondary:hover span {
  color: var(--light-color);
}
.btn--secondary:hover::before {
  opacity: 1;
  background-position: right center;
  -webkit-transition: background 0.4s ease, opacity 0.4s ease;
  transition: background 0.4s ease, opacity 0.4s ease;
}

/* 1. Оранжево-красный градиент */
.bg-gradient-sunset {
  background: linear-gradient(129deg, #f15f3a 3.55%, #f98e53 99.96%);
}

/* 2. Бирюзовый градиент */
.bg-gradient-mint {
  background: linear-gradient(131deg, #6ec1ad 2.37%, #469985 99.92%);
}

/* 3. Тёплый персиковый */
.bg-solid-peach {
  background: #fdcf9a;
}

/* 4. Синий градиент */
.bg-gradient-ocean {
  background: linear-gradient(130deg, #8fa5ff 0.08%, #7187eb 99.92%);
}

/* 5. Оранжевый */
.bg-solid-apricot {
  background: #f8b26f;
}

/* 6. Фиолетовый градиент */
.bg-gradient-lavender {
  background: linear-gradient(129deg, #ac91c4 -0.08%, #987db0 99.96%);
}

.graph-modal__container {
  border-radius: 16px;
  width: calc(100% - 30px);
  padding: 20px;
}
.graph-modal__container[data-graph-target=callback] {
  max-width: 546px;
}
@media (min-width: 1025px) {
  .graph-modal__container {
    border-radius: 24px;
    padding: 48px;
  }
}
.graph-modal__close {
  background: none;
  width: 18px;
  height: 18px;
  top: 20px;
  right: 20px;
}

:root {
  --accent: #ff7a3a;
  --accent-dark: #e6602a;
  --border: #e6e0d9;
  --bg-file: #fff7f0;
  --error: #cc3b3b;
  --radius: 40px;
}

.form__title {
  color: rgb(0, 0, 0);
  font-size: 42px;
  font-weight: 600;
  line-height: 110%;
  text-align: left;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .form__title {
    font-size: 24px;
  }
}
.form__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.form__row {
  position: relative;
}
.form__label {
  display: none;
}
.form__input {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 15px 18px 15px 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.form__input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.form__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.form__input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.form__input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.form__input::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.form__input:focus-visible {
  border-color: #f98e53;
  outline: 2px solid #f98e53;
}
@media (max-width: 768px) {
  .form__input {
    padding: 15px;
    font-size: 14px;
  }
}
.form__error {
  color: var(--error);
  font-size: 13px;
  margin-top: 8px;
  display: none;
  position: absolute;
  bottom: 3px;
  left: 20px;
  z-index: 1;
  border-radius: 4px;
  font-size: 10px;
}
.form__error.is-visible {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.form__textarea {
  min-height: 100px;
  resize: vertical;
  max-height: 200px;
}
.form__file .form__label {
  display: block;
  color: rgb(0, 0, 0);
  font-size: 15px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 16px;
}
@media (min-width: 1025px) {
  .form__file .form__label {
    font-size: 16px;
  }
}
.form__dropzone {
  border: 1px solid rgba(253, 207, 154, 0.5);
  border-radius: 4px;
  background: rgba(253, 207, 154, 0.1);
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 18px 15px 18px;
  cursor: pointer;
}
.form__file-cta {
  background: linear-gradient(134.7deg, rgb(241, 95, 58), rgb(249, 142, 83) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: left;
}
.form__file-list {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.form__file-list:empty {
  display: none;
}
.form__file-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.form__file-name {
  font-size: 14px;
  font-weight: 500;
}
.form__file-size {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
.form__file-remove {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  font-size: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 7L7 17M7 7L17 17' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 1025px) {
  .form__submit {
    max-width: 220px;
  }
}
.form__policy {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: left;
  opacity: 0.6;
  margin: 24px 0 0;
}
@media (max-width: 768px) {
  .form__policy {
    font-size: 12px;
  }
}
.form__policy a {
  text-decoration: underline;
  color: inherit;
}

.header {
  background-color: #323335;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
}
.header.fixed {
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.header.fixed .header__wrapper {
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (min-width: 1025px) {
  .header.fixed .header__logo {
    height: 42px;
  }
}
.header .container {
  position: relative;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 1279px) {
  .header__wrapper {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.header__wrapper-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header__burger {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.48px;
}
@media (max-width: 1279px) {
  .header__burger {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 1279px) {
  .header__social {
    display: none;
  }
}
.header__social-link {
  display: inline-block;
  width: 25px;
  height: 25px;
}
.header__social-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__phone {
  color: var(--light-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.54px;
}
@media (max-width: 1279px) {
  .header__phone {
    display: none;
  }
}
.header__logo {
  width: 244px;
  height: 54px;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1025px) {
  .header__logo {
    margin-left: -40px;
  }
}
@media (max-width: 1279px) {
  .header__logo {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    height: 42px;
  }
}
@media (max-width: 768px) {
  .header__logo {
    width: 127px;
    height: 28px;
  }
}
.header__logo img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .header__logo img {
    -o-object-position: left center;
    object-position: left center;
  }
}
@media (max-width: 1279px) {
  .header__wrapper-right {
    display: none;
  }
}
.header__contacts {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}
.header__contacts-item {
  color: var(--light-color);
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.28px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.header__contacts-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
}
.header__nav {
  position: absolute;
  left: 20px;
  border-radius: 0 0 24px 0;
  padding: 64px 64px 64px 24px;
  height: auto;
  z-index: 3;
  background: #323335;
  opacity: 0;
  -webkit-transform: translateX(-250px);
  -ms-transform: translateX(-250px);
  transform: translateX(-250px);
  visibility: hidden;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (min-width: 1025px) {
  .header__nav {
    min-width: 332px;
  }
}
@media (max-width: 1024px) {
  .header__nav {
    left: 0;
  }
}
@media (max-width: 576px) {
  .header__nav {
    height: calc(100svh - 56px);
    width: 100%;
    padding: 48px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.header__nav.menu--active {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  visibility: visible;
}
.header__nav .header__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: -0.03em;
}
.header__nav .header__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.header__nav .header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.header__nav .header__contacts-item {
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
  letter-spacing: -0.02em;
  gap: 12px;
}
.header__nav .header__contacts-item img {
  width: 16px;
  height: 16px;
}
.header__nav-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  margin-top: 86px;
}
@media (min-width: 1280px) {
  .header__nav-footer {
    display: none;
  }
}

.burger {
  --burger-width: 15px;
  --burger-height: 30px;
  --burger-line-height: 1px;
  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  background-color: transparent;
  cursor: pointer;
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 24px;
  width: var(--burger-width);
  height: var(--burger-line-height);
  background: linear-gradient(330deg, #f18832 -15.38%, #e53617 111.57%), #f18832;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .burger::before, .burger::after {
    left: 15px;
  }
}
.burger::before {
  top: 16px;
}
.burger::after {
  bottom: 16px;
}
.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active::after {
  top: 50%;
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.burger--active .burger__line {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.burger {
  width: auto;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  border-radius: 100px;
  position: relative;
  background-color: #323335;
  background-image: url("data:image/svg+xml,%3Csvg width='119' height='40' viewBox='0 0 119 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1' y='1' width='117' height='38' rx='19' stroke='url(%23paint0_linear_746_88)' stroke-width='2'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_746_88' x1='99' y1='43.0651' x2='85.0193' y2='-24.7364' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F18832'/%3E%3Cstop offset='1' stop-color='%23E53617'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_746_88' x1='37.9288' y1='19.2853' x2='37.8506' y2='17.2775' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F18832'/%3E%3Cstop offset='1' stop-color='%23E53617'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_746_88' x1='37.9288' y1='23.2853' x2='37.8506' y2='21.2775' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F18832'/%3E%3Cstop offset='1' stop-color='%23E53617'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .burger {
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: -0.03em;
  }
}
.burger__line {
  position: relative;
  width: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  opacity: 0;
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.nav__link {
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
@media (max-width: 768px) {
  .nav__link {
    font-size: 15px;
  }
}
.nav__link img {
  display: inline-block;
  -o-object-fit: contain;
  object-fit: contain;
  width: 17px;
  height: 17px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .nav__link img {
    width: 15px;
    height: 15px;
  }
}
.nav__link:hover {
  color: #EA621B;
}

.footer {
  padding: 64px 0 48px 0;
  border-radius: 48px 48px 0 0;
  background: rgba(0, 0, 0, 0.15);
}
@media (max-width: 576px) {
  .footer {
    border-radius: 24px 24px 0 0;
    padding-top: 48px;
  }
}
.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 48px;
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  gap: 48px;
}
@media (max-width: 1024px) {
  .footer__wrapper {
    gap: 32px;
  }
}
@media (max-width: 576px) {
  .footer__wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__logo {
  display: block;
  max-width: 245px;
  width: 150px;
  height: 35px;
}
@media (min-width: 1025px) {
  .footer__logo {
    width: 245px;
    height: 54px;
  }
}
.footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 576px) {
  .footer__logo {
    max-width: 150px;
  }
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1024px) {
  .footer__menu {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 3fr;
    grid-template-columns: 2fr 3fr;
    grid-gap: 24px 32px;
  }
}
@media (max-width: 576px) {
  .footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
  }
}
.footer__menu-link {
  color: #fff;
  font-size: 15px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.footer__menu-link:hover {
  color: #EA621B;
}
.footer__copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  gap: 24px;
}
@media (max-width: 576px) {
  .footer__copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.footer__copyright-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}
@media (max-width: 576px) {
  .footer__copyright-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
}
.footer__copyright-link {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  color: var(--light-color);
  opacity: 0.6;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.footer__copyright-link:hover {
  opacity: 1;
}
@media (min-width: 1025px) {
  .footer__callback {
    padding-left: 41px;
    padding-right: 41px;
  }
}
.footer__develop {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 6px;
}
.footer__develop span {
  color: var(--light-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 160%;
}
.footer__develop img {
  display: block;
  max-width: 112px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0.6;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.footer__develop:hover img {
  opacity: 1;
}

.scroll-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: #fff;
  color: var(--light-color);
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  opacity: 0;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.scroll-to-top svg {
  width: 20px;
  height: 20px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.scroll-to-top.visible {
  opacity: 1;
}
.scroll-to-top:active, .scroll-to-top:hover {
  color: #EA621B;
}

.hero {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .hero {
    margin-bottom: 32px;
  }
}
.hero__wrapper {
  background: #fdcf9a;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .hero__wrapper {
    border-radius: 16px;
  }
}
.hero__slide {
  height: 650px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 64px;
  padding-right: 32px;
  overflow: hidden;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  .hero__slide {
    height: 600px;
  }
}
@media (max-width: 1024px) {
  .hero__slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 32px;
  }
}
@media (max-width: 768px) {
  .hero__slide {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.hero__content {
  max-width: 555px;
}
@media (max-width: 768px) {
  .hero__content {
    max-width: 100%;
    padding: 32px 20px 8px;
  }
}
.hero__title {
  font-weight: 700;
  font-size: 48px;
  color: #000;
  margin-bottom: 24px;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.4s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.4s ease-in-out;
  opacity: 0;
  -webkit-transform: translateX(-150px);
  -ms-transform: translateX(-150px);
  transform: translateX(-150px);
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 24px;
    margin-bottom: 16px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.swiper-slide-active .hero__title {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.hero__subtitle {
  font-weight: 400;
  font-size: 18px;
  color: #333;
  margin-bottom: 32px;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.4s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.4s ease-in-out;
  -webkit-transform: translateX(-150px);
  -ms-transform: translateX(-150px);
  transform: translateX(-150px);
  opacity: 0;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 14px;
    margin-bottom: 16px;
    text-wrap: balance;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.swiper-slide-active .hero__subtitle {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
.hero__button {
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.4s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.4s ease-in-out;
  -webkit-transform: translateX(-150px);
  -ms-transform: translateX(-150px);
  transform: translateX(-150px);
  opacity: 0;
}
.swiper-slide-active .hero__button {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media (min-width: 1025px) {
  .hero__button {
    min-width: 260px;
  }
}
@media (max-width: 768px) {
  .hero__button {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.hero__image-wrapper {
  max-height: 100%;
  height: 100%;
  max-width: calc(100% - 615px);
}
@media (max-width: 1024px) {
  .hero__image-wrapper {
    max-width: 100%;
    max-height: 330px;
    padding-top: 16px;
  }
}
@media (max-width: 768px) {
  .hero__image-wrapper {
    min-height: 394px;
    max-width: 100%;
    padding-top: 0;
  }
}
.hero__image {
  -webkit-transform: translate(55px, 55px);
  -ms-transform: translate(55px, 55px);
  transform: translate(55px, 55px);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom right;
  object-position: bottom right;
}
.swiper-slide-active .hero__image {
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}
@media (max-width: 768px) {
  .hero__image {
    -webkit-transform: translateY(55px);
    -ms-transform: translateY(55px);
    transform: translateY(55px);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom center;
    object-position: bottom center;
  }
}
.hero__pagination {
  --swiper-pagination-bullet-horizontal-gap: 4px;
}
.hero__pagination.swiper-pagination {
  position: absolute;
  left: 64px;
  z-index: 2;
  bottom: 32px;
  text-align: left;
}
@media (max-width: 768px) {
  .hero__pagination.swiper-pagination {
    left: 0;
    bottom: 24px;
    text-align: center;
  }
}
.hero__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border: 1px solid #E53617;
  border-radius: 50%;
  background-color: transparent;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.hero__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E53617;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
@media (max-width: 768px) {
  .hero__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
  }
}

@media (max-width: 768px) {
  .grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
  }
}
@media (max-width: 1280px) {
  .categories__list .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
  }
}
/* Стили для центрирования слайдов когда их мало */
.categories__list.centered-slides .swiper-wrapper {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
  .categories__list .swiper-wrapper {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }
  .categories__list .swiper-slide {
    width: auto !important;
    height: auto !important;
  }
  .categories__controls {
    display: none !important;
  }
  .categories__list .swiper-wrapper.grid {
    display: -ms-grid !important;
    display: grid !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .categories__list .swiper-wrapper {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Убираем loop стили которые могут мешать */
.swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.categories__header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .categories__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
  }
}
.categories__button {
  cursor: pointer;
  background: linear-gradient(135deg, #f15f3a 0%, #f98e53 100%);
  border-radius: 100px;
  padding: 12px 24px;
  height: 40px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
@media (max-width: 576px) {
  .categories__button {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
    height: 38px;
  }
}
.categories__button svg {
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}
.categories__button.active svg {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.categories__header-list {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  border-radius: 8px;
  z-index: 1000;
  max-height: 476px;
  overflow-y: auto;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 576px) {
  .categories__header-list {
    width: 100%;
    max-height: 435px;
  }
}
.categories__header-list.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.categories__header-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  gap: 12px;
  font-weight: 400;
  font-size: 14px;
  line-height: 110%;
  color: #000;
}
@media (max-width: 576px) {
  .categories__header-item {
    line-height: 130%;
  }
}
.categories__header-item:hover {
  color: #EA621B;
}
.categories__header-item img {
  display: block;
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .categories__header-item img {
    width: 25px;
    height: 25px;
  }
}
.categories__header-checked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 576px) {
  .categories__header-checked {
    gap: 12px;
  }
  .categories__header-checked:not(:empty) {
    margin-bottom: 12px;
  }
  .categories__header-checked:empty {
    display: none;
  }
}
.categories__header-choose {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  border-radius: 100px;
  padding: 12px 24px;
  min-height: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #fff;
  position: relative;
  border: none;
  background: #333;
}
.categories__header-choose span {
  position: relative;
  z-index: 2;
}
.categories__header-choose::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* толщина градиентного бордера */
  border-radius: inherit;
  background: linear-gradient(135deg, #f15f3a 0%, #f98e53 100%);
  z-index: 0;
  pointer-events: none;
  border-radius: 100px;
}
.categories__header-choose::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #333;
  border-radius: 100px;
}
.categories__header-delete {
  position: relative;
  z-index: 2;
  display: inline-block;
  cursor: pointer;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='path-1-inside-1_114_22838' fill='white'%3E%3Cpath d='M0.561192 10L0 9.43881L4.43881 5L0 0.561192L0.561192 0L5 4.43881L9.43881 0L10 0.561192L5.56119 5L10 9.43881L9.43881 10L5 5.56119L0.561192 10Z' /%3E%3C/mask%3E%3Cpath d='M0.561192 10L0 9.43881L4.43881 5L0 0.561192L0.561192 0L5 4.43881L9.43881 0L10 0.561192L5.56119 5L10 9.43881L9.43881 10L5 5.56119L0.561192 10Z' fill='black' /%3E%3Cpath d='M0.561192 10L-0.145914 10.7071L0.561193 11.4142L1.2683 10.7071L0.561192 10ZM0 9.43881L-0.707107 8.7317L-1.41421 9.43881L-0.707106 10.1459L0 9.43881ZM4.43881 5L5.14591 5.70711L5.85302 5L5.14591 4.29289L4.43881 5ZM0 0.561192L-0.707107 -0.145915L-1.41421 0.561192L-0.707107 1.2683L0 0.561192ZM0.561192 0L1.2683 -0.707107L0.561192 -1.41421L-0.145915 -0.707107L0.561192 0ZM5 4.43881L4.29289 5.14591L5 5.85302L5.70711 5.14591L5 4.43881ZM9.43881 0L10.1459 -0.707106L9.43881 -1.41421L8.7317 -0.707107L9.43881 0ZM10 0.561192L10.7071 1.2683L11.4142 0.561193L10.7071 -0.145914L10 0.561192ZM5.56119 5L4.85409 4.29289L4.14698 5L4.85409 5.70711L5.56119 5ZM10 9.43881L10.7071 10.1459L11.4142 9.43881L10.7071 8.7317L10 9.43881ZM9.43881 10L8.7317 10.7071L9.43881 11.4142L10.1459 10.7071L9.43881 10ZM5 5.56119L5.70711 4.85409L5 4.14698L4.29289 4.85409L5 5.56119ZM0.561192 10L1.2683 9.29289L0.707106 8.7317L0 9.43881L-0.707106 10.1459L-0.145914 10.7071L0.561192 10ZM0 9.43881L0.707107 10.1459L5.14591 5.70711L4.43881 5L3.7317 4.29289L-0.707107 8.7317L0 9.43881ZM4.43881 5L5.14591 4.29289L0.707107 -0.145915L0 0.561192L-0.707107 1.2683L3.7317 5.70711L4.43881 5ZM0 0.561192L0.707107 1.2683L1.2683 0.707107L0.561192 0L-0.145915 -0.707107L-0.707107 -0.145915L0 0.561192ZM0.561192 0L-0.145915 0.707107L4.29289 5.14591L5 4.43881L5.70711 3.7317L1.2683 -0.707107L0.561192 0ZM5 4.43881L5.70711 5.14591L10.1459 0.707107L9.43881 0L8.7317 -0.707107L4.29289 3.7317L5 4.43881ZM9.43881 0L8.7317 0.707106L9.29289 1.2683L10 0.561192L10.7071 -0.145914L10.1459 -0.707106L9.43881 0ZM10 0.561192L9.29289 -0.145915L4.85409 4.29289L5.56119 5L6.2683 5.70711L10.7071 1.2683L10 0.561192ZM5.56119 5L4.85409 5.70711L9.29289 10.1459L10 9.43881L10.7071 8.7317L6.2683 4.29289L5.56119 5ZM10 9.43881L9.29289 8.7317L8.7317 9.29289L9.43881 10L10.1459 10.7071L10.7071 10.1459L10 9.43881ZM9.43881 10L10.1459 9.29289L5.70711 4.85409L5 5.56119L4.29289 6.2683L8.7317 10.7071L9.43881 10ZM5 5.56119L4.29289 4.85409L-0.145915 9.29289L0.561192 10L1.2683 10.7071L5.70711 6.2683L5 5.56119Z' fill='white' mask='url(%23path-1-inside-1_114_22838)' /%3E%3Cpath d='M0.561192 10L-0.145914 10.7071L0.561193 11.4142L1.2683 10.7071L0.561192 10ZM0 9.43881L-0.707107 8.7317L-1.41421 9.43881L-0.707106 10.1459L0 9.43881ZM4.43881 5L5.14591 5.70711L5.85302 5L5.14591 4.29289L4.43881 5ZM0 0.561192L-0.707107 -0.145915L-1.41421 0.561192L-0.707107 1.2683L0 0.561192ZM0.561192 0L1.2683 -0.707107L0.561192 -1.41421L-0.145915 -0.707107L0.561192 0ZM5 4.43881L4.29289 5.14591L5 5.85302L5.70711 5.14591L5 4.43881ZM9.43881 0L10.1459 -0.707106L9.43881 -1.41421L8.7317 -0.707107L9.43881 0ZM10 0.561192L10.7071 1.2683L11.4142 0.561193L10.7071 -0.145914L10 0.561192ZM5.56119 5L4.85409 4.29289L4.14698 5L4.85409 5.70711L5.56119 5ZM10 9.43881L10.7071 10.1459L11.4142 9.43881L10.7071 8.7317L10 9.43881ZM9.43881 10L8.7317 10.7071L9.43881 11.4142L10.1459 10.7071L9.43881 10ZM5 5.56119L5.70711 4.85409L5 4.14698L4.29289 4.85409L5 5.56119ZM0.561192 10L1.2683 9.29289L0.707106 8.7317L0 9.43881L-0.707106 10.1459L-0.145914 10.7071L0.561192 10ZM0 9.43881L0.707107 10.1459L5.14591 5.70711L4.43881 5L3.7317 4.29289L-0.707107 8.7317L0 9.43881ZM4.43881 5L5.14591 4.29289L0.707107 -0.145915L0 0.561192L-0.707107 1.2683L3.7317 5.70711L4.43881 5ZM0 0.561192L0.707107 1.2683L1.2683 0.707107L0.561192 0L-0.145915 -0.707107L-0.707107 -0.145915L0 0.561192ZM0.561192 0L-0.145915 0.707107L4.29289 5.14591L5 4.43881L5.70711 3.7317L1.2683 -0.707107L0.561192 0ZM5 4.43881L5.70711 5.14591L10.1459 0.707107L9.43881 0L8.7317 -0.707107L4.29289 3.7317L5 4.43881ZM9.43881 0L8.7317 0.707106L9.29289 1.2683L10 0.561192L10.7071 -0.145914L10.1459 -0.707106L9.43881 0ZM10 0.561192L9.29289 -0.145915L4.85409 4.29289L5.56119 5L6.2683 5.70711L10.7071 1.2683L10 0.561192ZM5.56119 5L4.85409 5.70711L9.29289 10.1459L10 9.43881L10.7071 8.7317L6.2683 4.29289L5.56119 5ZM10 9.43881L9.29289 8.7317L8.7317 9.29289L9.43881 10L10.1459 10.7071L10.7071 10.1459L10 9.43881ZM9.43881 10L10.1459 9.29289L5.70711 4.85409L5 5.56119L4.29289 6.2683L8.7317 10.7071L9.43881 10ZM5 5.56119L4.29289 4.85409L-0.145915 9.29289L0.561192 10L1.2683 10.7071L5.70711 6.2683L5 5.56119Z' fill='url(%23paint0_linear_114_22838)' mask='url(%23path-1-inside-1_114_22838)' /%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_114_22838' x1='0.494214' y1='3.63636' x2='10.8668' y2='10.036' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F15F3A' /%3E%3Cstop offset='1' stop-color='%23F98E53' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center right;
}
.categories__list .swiper-wrapper {
  min-width: 100%;
}
.categories__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .categories__controls {
    display: none;
  }
}
.categories__arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #fff;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-transition: border-color 0.3s ease, color 0.3s ease;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.categories__arrow svg {
  width: 8px;
  height: 13px;
}
.categories__arrow:hover {
  border-color: #EA621B;
  color: #EA621B;
}
.categories__arrow:hover circle {
  stroke-opacity: 1;
}
.categories__footer {
  display: none;
}
@media (max-width: 768px) {
  .categories__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 32px;
  }
}
.categories__showmore {
  color: #fff;
  border: 1px solid #f18832;
}

.shop-card {
  background: #fafafa;
  border-radius: 24px;
  padding: 24px 24px 20px;
  height: 100%;
}
@media (max-width: 768px) {
  .shop-card {
    padding: 15px;
    border-radius: 16px;
  }
}
.shop-card__logo {
  height: 184px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 24px;
  padding: 22px 0;
}
@media (max-width: 768px) {
  .shop-card__logo {
    height: 64px;
    margin-bottom: 16px;
    padding: 0;
  }
}
.shop-card__title {
  font-weight: 600;
  font-size: 16px;
  color: #000;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .shop-card__title {
    font-size: 15px;
  }
}
.shop-card__tag {
  font-weight: 400;
  font-size: 14px;
  color: #000;
  opacity: 0.5;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .shop-card__tag {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.shop-card__floor {
  font-weight: 400;
  font-size: 14px;
  color: #000;
  margin-top: 16px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .shop-card__floor {
    font-size: 12px;
    margin-top: 10px;
  }
}

.events {
  margin: 64px 0 60px;
}
@media (max-width: 768px) {
  .events {
    margin: 48px 0;
  }
}
.events .container {
  position: relative;
}
.events__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 48px;
  position: relative;
}
@media (max-width: 1024px) {
  .events__header {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .events__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 24px;
  }
}
.events__title {
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 42px;
  color: #fff;
  line-height: 110%;
}
@media (max-width: 768px) {
  .events__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.events__filters {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 1280px) {
  .events__filters {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 0;
    top: 6px;
  }
}
@media (max-width: 1024px) {
  .events__filters {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 576px) {
  .events__filters {
    display: -ms-grid;
    display: grid;
    width: 100%;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.events__filter {
  min-width: 120px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 500;
  padding: 12px 32px;
}
.events__filter:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 576px) {
  .events__filter {
    width: 100%;
  }
}
.events__filter--active {
  background: linear-gradient(129deg, #F15F3A 3.55%, #F98E53 99.96%), #E53617;
}
.events__filter--active:hover {
  background: linear-gradient(129deg, #F15F3A 3.55%, #F98E53 99.96%), #E53617;
  pointer-events: none;
}
.events__more {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  background: linear-gradient(121deg, #f15f3a 0%, #f98e53 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (min-width: 1025px) {
  .events__more {
    margin-top: 25px;
  }
}
.events__more:hover svg {
  -webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);
}
.events__more svg {
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 8px;
  height: 13px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
@media (max-width: 1024px) {
  .events__more {
    display: none;
  }
}
.events__tabs {
  position: relative;
}
.events__tab:not(.events__tab--active) {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.events__tab--active {
  opacity: 1;
  position: relative;
  pointer-events: all;
}
@media (max-width: 768px) {
  .events__list {
    overflow: visible;
  }
}
.events__list .swiper-slide {
  height: initial;
}
.events__list .promo-card {
  height: 100%;
}
.events__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .events__controls {
    display: none;
  }
}
.events__arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #fff;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  -webkit-transition: border-color 0.3s ease, color 0.3s ease;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.events__arrow svg {
  width: 8px;
  height: 13px;
}
.events__arrow:hover {
  border-color: #EA621B;
  color: #EA621B;
}
.events__arrow:hover circle {
  stroke-opacity: 1;
}
.events__footer {
  display: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .events__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .events__footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 32px;
  }
}
.events__showmore {
  color: #fff;
  border: 1px solid #f18832;
}

.contacts {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .contacts {
    margin-bottom: 48px;
  }
}
.contacts__wrapper {
  position: relative;
  padding: 48px;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .contacts__wrapper {
    padding: 0;
    border-radius: 16px;
  }
}
.contacts__card {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  background: #fff;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  max-width: 690px;
  padding: 48px;
  background-image: url("data:image/svg+xml,%3Csvg width='203' height='236' viewBox='0 0 203 236' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='148.5' cy='87.5' r='148.5' fill='%23F8B26F' /%3E%3Ccircle cx='148.5' cy='87.5' r='148.5' fill='url(%23paint0_linear_93_2228)' /%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_93_2228' x1='9.62504' y1='-49.3529' x2='321.315' y2='206.071' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F15F3A' /%3E%3Cstop offset='1' stop-color='%23F98E53' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35 0C54.3304 0 70 15.6696 70 35C70 54.3304 54.3304 70 35 70C15.6697 70 0 54.3304 0 35C0 15.6696 15.6697 0 35 0ZM35 54.5806C45.8145 54.5806 54.5806 45.8145 54.5806 35C54.5806 24.1855 45.8145 15.4194 35 15.4194C24.1855 15.4194 15.4194 24.1855 15.4194 35C15.4194 45.8145 24.1855 54.5806 35 54.5806Z' fill='%23F8B26F' /%3E%3Cpath d='M35 0C54.3304 0 70 15.6696 70 35C70 54.3304 54.3304 70 35 70C15.6697 70 0 54.3304 0 35C0 15.6696 15.6697 0 35 0ZM35 54.5806C45.8145 54.5806 54.5806 45.8145 54.5806 35C54.5806 24.1855 45.8145 15.4194 35 15.4194C24.1855 15.4194 15.4194 24.1855 15.4194 35C15.4194 45.8145 24.1855 54.5806 35 54.5806Z' fill='url(%23paint0_linear_93_2227)' /%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_93_2227' x1='67.7315' y1='2.7451' x2='-5.73074' y2='62.946' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F15F3A' /%3E%3Cstop offset='1' stop-color='%23F98E53' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top right, bottom 45px right 133px;
  background-size: 203px 236px, 70px;
}
@media (max-width: 1024px) {
  .contacts__card {
    border-radius: 16px 16px 0 0;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .contacts__card {
    padding: 32px 20px;
    background-size: 91px 127px, 38px;
    background-position: top right, top 170px right 54px;
  }
}
.contacts__title {
  color: #000;
  font-size: 42px;
  font-weight: 600;
  line-height: 110%;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .contacts__title {
    margin-bottom: 24px;
    font-size: 24px;
  }
}
.contacts__list {
  margin-bottom: 48px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (225px)[2];
  grid-template-columns: repeat(2, 225px);
  grid-gap: 32px 25px;
}
@media (max-width: 1024px) {
  .contacts__list {
    grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  }
}
@media (max-width: 768px) {
  .contacts__list {
    margin-bottom: 24px;
    gap: 16px;
  }
}
.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}
@media (max-width: 768px) {
  .contacts__item {
    gap: 8px;
    max-width: 225px;
  }
}
.contacts__label {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  background: linear-gradient(338deg, #f18832 0%, #e53617 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .contacts__label {
    font-size: 12px;
  }
}
.contacts__value {
  color: #000;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 23.4px */
  letter-spacing: -0.54px;
}
@media (max-width: 768px) {
  .contacts__value {
    font-size: 16px;
    text-wrap: balance;
  }
}
.contacts__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}
.contacts__social {
  width: 32px;
  height: 32px;
}
.contacts__social img {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.contacts__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media (max-width: 1024px) {
  .contacts__map {
    position: relative;
    height: 320px;
  }
}
.contacts__map-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contacts__map-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ececec;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.contacts__map-frame--active {
  opacity: 1;
}
.contacts__map-frame .ymaps-2-1-79-ground-pane {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
.contacts__map-frame .ymaps-2-1-79-zoom,
.contacts__map-frame .ymaps-2-1-79-copyrights-pane,
.contacts__map-frame .ymaps-2-1-79-map-copyrights-promo {
  display: none;
}
.contacts__navigation {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #fff;
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
}
.contacts__navigation-button {
  width: 50px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 32px;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
.contacts__navigation-button:hover {
  background-color: #efefef;
}

a.contacts__value {
  color: #000;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
a.contacts__value:hover {
  text-decoration: none;
  color: #EA621B;
}

.genplan__container {
  position: relative;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.15);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 180px 1fr 180px;
  grid-template-columns: 180px 1fr 180px;
  gap: 0;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .genplan__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.genplan__left {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 1024px) {
  .genplan__left {
    padding: 16px;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (max-width: 1024px) {
  .genplan__left-top {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
  }
}
.genplan__right {
  position: relative;
}
.genplan__backlink {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -3%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 0;
}
@media (max-width: 576px) {
  .genplan__backlink {
    position: relative;
    width: 100%;
    gap: 8px;
    font-size: 12px;
  }
}
.genplan__backlink svg {
  display: block;
  width: 8px;
  height: 13px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: inherit;
  fill: currentColor;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 576px) {
  .genplan__backlink svg {
    width: 5px;
    height: 9px;
  }
}
.genplan__backlink:hover {
  color: #EA621B;
}
.genplan__controls {
  margin-top: 250px;
  margin-bottom: auto;
}
@media (max-width: 1024px) {
  .genplan__controls {
    margin-top: 0;
  }
}
.genplan__controls-title {
  color: var(--light-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -2%;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .genplan__controls-title {
    margin-bottom: 12px;
  }
}
.genplan__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .genplan__tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.genplan__tab {
  border: 1px solid rgba(255, 255, 255, 0.25);
  width: 48px;
  height: 48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}
.genplan__tab--active {
  background: linear-gradient(129deg, #F15F3A 3.55%, #F98E53 99.96%), #E53617;
  border-color: #EA621B;
}
.genplan__tab:hover {
  background: linear-gradient(129deg, #F15F3A 3.55%, #F98E53 99.96%), #E53617;
  border-color: #EA621B;
}
@media (max-width: 576px) {
  .genplan__tab {
    width: 40px;
    height: 40px;
    font-size: 12px;
    line-height: 15px;
  }
}
.genplan__content {
  min-height: 673px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 64px;
}
@media (max-width: 1024px) {
  .genplan__content {
    min-height: 300px;
    padding: 64px 10px;
  }
}
.genplan__floor {
  position: relative;
  display: none;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  inset: 0;
  z-index: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  visibility: hidden;
  margin: auto;
}
.genplan__floor--active {
  display: block;
  z-index: 1;
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.genplan__svg {
  opacity: 0;
  width: 100%;
  display: block;
  height: auto;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.genplan__floor--active .genplan__svg {
  opacity: 1;
}
.genplan__svg path:not(.js-place-hover) {
  pointer-events: none;
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__svg {
    height: 109.375vw;
  }
}
@media (max-width: 320px) {
  .genplan__svg {
    height: 350px;
  }
}
.genplan__svg-container {
  position: relative;
}
.genplan__place {
  color: #D0864C;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.genplan__place:hover {
  color: #E57024;
}
.genplan__modal {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  border-radius: 24px;
  background: rgb(250, 250, 250);
  z-index: 10;
}
@media (max-width: 768px) {
  .genplan__modal {
    border-radius: 8px;
  }
}
.genplan__modal--active {
  opacity: 1;
  visibility: visible;
}
.genplan__modal-close {
  --burger-width: 17px;
  --burger-height: 30px;
  --burger-line-height: 1.125px;
  position: absolute;
  width: 36px;
  height: 36px;
  padding: 11px;
  top: 12px;
  right: 12px;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.genplan__modal-close::before, .genplan__modal-close::after {
  content: "";
  position: absolute;
  left: 10px;
  width: var(--burger-width);
  height: var(--burger-line-height);
  background: linear-gradient(330deg, #f18832 -15.38%, #e53617 111.57%), #f18832;
}
@media (max-width: 768px) {
  .genplan__modal-close::before, .genplan__modal-close::after {
    left: 7px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-close::before, .genplan__modal-close::after {
    left: 2.5vw;
  }
}
.genplan__modal-close::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.genplan__modal-close::after {
  top: 50%;
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.genplan__modal-close:hover {
  color: #EA621B;
}
@media (max-width: 768px) {
  .genplan__modal-close {
    top: 4px;
    right: 4px;
    width: 30px;
    height: 30px;
    padding: 9px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-close {
    top: 1.25vw;
    right: 1.25vw;
    width: 9.375vw;
    height: 9.375vw;
    padding: 2.8125vw;
  }
}
.genplan__modal-header {
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .genplan__modal-header {
    margin-bottom: 12px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-header {
    margin-bottom: 3.75vw;
  }
}
@media (max-width: 320px) {
  .genplan__modal-header {
    margin-bottom: 12px;
  }
}
.genplan__modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px;
  min-width: 250px;
  min-height: 300px;
}
@media (max-width: 768px) {
  .genplan__modal-content {
    min-height: unset;
    min-width: 200px;
    padding: 12px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-content {
    min-width: 62.5vw;
    padding: 3.75vw;
  }
}
@media (max-width: 320px) {
  .genplan__modal-content {
    min-width: 200px;
    max-width: 270px;
  }
}
@media (max-width: 768px) {
  .genplan__modal-content-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-content-box {
    gap: 2.5vw;
    margin-bottom: 3.75vw;
  }
}
@media (max-width: 320px) {
  .genplan__modal-content-box {
    gap: 8px;
    margin-bottom: 12px;
  }
}
.genplan__modal-number {
  color: rgb(0, 0, 0);
  font-size: 16px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: -2%;
}
@media (max-width: 768px) {
  .genplan__modal-number {
    line-height: 1;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-number {
    font-size: 3.125vw;
  }
}
@media (max-width: 320px) {
  .genplan__modal-number {
    font-size: 9px;
  }
}
.genplan__modal-image {
  height: 101px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 16px;
}
.genplan__modal-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 768px) {
  .genplan__modal-image {
    margin-bottom: 0;
    height: unset;
    max-width: 40px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-image {
    max-width: 12.5vw;
  }
}
@media (max-width: 320px) {
  .genplan__modal-image {
    max-width: 37px;
  }
}
.genplan__modal-img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .genplan__modal-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-info {
    gap: 1.5625vw;
  }
}
.genplan__modal-title {
  color: rgb(0, 0, 0);
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .genplan__modal-title {
    margin-bottom: 0;
    line-height: 1.2;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-title {
    font-size: 3.75vw;
  }
}
@media (max-width: 320px) {
  .genplan__modal-title {
    font-size: 12px;
  }
}
.genplan__modal-tag {
  color: rgb(0, 0, 0);
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  opacity: 0.5;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .genplan__modal-tag {
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 0;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-tag {
    font-size: 3.125vw;
  }
}
@media (max-width: 320px) {
  .genplan__modal-tag {
    font-size: 10px;
  }
}
.genplan__modal-worktime {
  position: relative;
  color: rgb(0, 0, 0);
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  margin: 0 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .genplan__modal-worktime {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    gap: 5px;
    margin-bottom: 5px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-worktime {
    font-size: 3.125vw;
    margin-bottom: 1.5625vw;
    gap: 1.5625vw;
  }
}
@media (max-width: 320px) {
  .genplan__modal-worktime {
    font-size: 10px;
  }
}
.genplan__modal-worktime::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 13.1992 13.2002' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='13.199219' height='13.200195' fill='none' customFrame='%23000000'%3E%3Cdefs%3E%3ClinearGradient id='paint_linear_0' x1='11.7426414' x2='1.23538876' y1='16.0233345' y2='-1.9707365' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='rgb(241,136,50)' offset='0' stop-opacity='1' /%3E%3Cstop stop-color='rgb(229,54,23)' offset='1' stop-opacity='1' /%3E%3C/linearGradient%3E%3ClinearGradient id='paint_linear_1' x1='9.6979599' x2='6.07848501' y1='8.20551968' y2='2.8682127' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='rgb(241,136,50)' offset='0' stop-opacity='1' /%3E%3Cstop stop-color='rgb(229,54,23)' offset='1' stop-opacity='1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Group 1'%3E%3Cpath id='Vector' d='M0.599609 6.6001C0.599609 9.9126 3.28711 12.6001 6.59961 12.6001C9.91211 12.6001 12.5996 9.9126 12.5996 6.6001C12.5996 3.2876 9.91211 0.600098 6.59961 0.600098C3.28711 0.600098 0.599609 3.2876 0.599609 6.6001Z' fill-rule='nonzero' stroke='url(%23paint_linear_0)' stroke-width='1.20000005' /%3E%3Cpath id='Vector' d='M6.59961 3.2251L6.59961 7.1001L9.93624 7.1001' fill-rule='nonzero' stroke='rgb(241,136,50)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.20000005' /%3E%3Cpath id='Vector' d='M6.59961 3.2251L6.59961 7.1001L9.93624 7.1001' fill-rule='nonzero' stroke='url(%23paint_linear_1)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.20000005' /%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .genplan__modal-worktime::before {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-worktime::before {
    width: 3.75vw;
    height: 3.75vw;
  }
}
@media (max-width: 320px) {
  .genplan__modal-worktime::before {
    width: 9px;
    height: 9px;
  }
}
.genplan__modal-phone {
  position: relative;
  color: rgb(0, 0, 0);
  font-size: 15px;
  font-weight: 400;
  line-height: 17px;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .genplan__modal-phone {
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    gap: 5px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-phone {
    font-size: 3.125vw;
    gap: 1.5625vw;
  }
}
@media (max-width: 320px) {
  .genplan__modal-phone {
    font-size: 10px;
  }
}
.genplan__modal-phone::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 13.1992 13.2002' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='13.199219' height='13.200195' fill='none' customFrame='%23000000'%3E%3Cdefs%3E%3ClinearGradient id='paint_linear_2' x1='11.7426414' x2='1.23538876' y1='16.0233345' y2='-1.9707365' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='rgb(241,136,50)' offset='0' stop-opacity='1' /%3E%3Cstop stop-color='rgb(229,54,23)' offset='1' stop-opacity='1' /%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath id='Vector' d='M5.34781 4.05334C5.34781 4.74398 4.31184 5.43463 3.96652 6.12528C3.62119 6.81593 4.31184 7.50657 5.00249 8.19722C5.27184 8.46657 6.38378 9.57852 7.07443 9.23319C7.76508 8.88787 8.45572 7.8519 9.14637 7.8519C9.4917 7.8519 12.5996 9.23319 12.5996 9.57852C12.5996 10.9598 11.5636 11.9958 10.5277 12.3411C9.4917 12.6864 8.80105 12.6864 7.41975 12.3411C6.03846 11.9958 5.00249 11.6505 3.27587 9.92384C1.54925 8.19722 1.20393 7.16125 0.858602 5.77995C0.513278 4.39866 0.513278 3.70801 0.858602 2.67204C1.20393 1.63607 2.2399 0.600098 3.62119 0.600098C3.96652 0.600098 5.34781 3.70801 5.34781 4.05334Z' fill-rule='nonzero' stroke='url(%23paint_linear_2)' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.20000005' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .genplan__modal-phone::before {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .genplan__modal-phone::before {
    width: 3.75vw;
    height: 3.75vw;
  }
}
@media (max-width: 320px) {
  .genplan__modal-phone::before {
    width: 9px;
    height: 9px;
  }
}

.promos {
  margin-top: 44px;
  margin-bottom: 64px;
}
.promos__header {
  margin-bottom: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 48px 16px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .promos__header {
    gap: 16px;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .promos__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.promos__title {
  color: var(--light-color);
  font-size: 42px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
@media (max-width: 768px) {
  .promos__title {
    font-size: 24px;
  }
}
.promos__filters {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.promos__filter {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 12px 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  color: var(--light-color);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 768px) {
  .promos__filter {
    font-size: 14px;
  }
}
.promos__filter:hover {
  background: rgba(255, 255, 255, 0.25);
}
.promos__filter_active {
  background: linear-gradient(129deg, #F15F3A 3.55%, #F98E53 99.96%), #E53617;
}
.promos__filter_active:hover {
  background: linear-gradient(129deg, #F15F3A 3.55%, #F98E53 99.96%), #E53617;
}
.promos__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  gap: 48px 24px;
}
@media (max-width: 1024px) {
  .promos__list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: dense;
  }
}
@media (max-width: 768px) {
  .promos__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
  }
}
.promos__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .promos__pagination {
    margin-top: 24px;
  }
}
.promos__showmore {
  color: #fff;
  border: 1px solid #f18832;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  background: transparent;
}
.promos__showmore:hover {
  background: linear-gradient(129deg, #F15F3A 3.55%, #F98E53 99.96%), #E53617;
}

.promo-card {
  border-radius: 24px;
  background: #fafafa;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
.promo-card--hidden {
  display: none !important;
}
.promo-card__link {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.promo-card__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 255px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  position: relative;
}
@media (max-width: 768px) {
  .promo-card--sm .promo-card__image {
    height: 120px;
  }
}
@media (max-width: 768px) {
  .promo-card--lg .promo-card__image {
    height: 160px;
  }
}
.promo-card__icon {
  max-width: calc(100% - 36px);
  max-height: 224px;
  display: inline-block;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 768px) {
  .promo-card--sm .promo-card__icon {
    max-height: 101px;
  }
}
@media (max-width: 768px) {
  .promo-card--lg .promo-card__icon {
    max-height: 147px;
  }
}
.promo-card__background {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.promo-card__content {
  padding: 24px;
}
@media (max-width: 768px) {
  .promo-card--sm .promo-card__content {
    padding: 15px 12px;
  }
}
@media (max-width: 768px) {
  .promo-card--lg .promo-card__content {
    padding: 16px;
  }
}
.promo-card__title {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  margin-top: 0;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .promo-card--sm .promo-card__title {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .promo-card--lg .promo-card__title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.promo-card__description {
  color: rgba(0, 0, 0, 0.6);
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin: 0 0 16px;
}
@media (max-width: 768px) {
  .promo-card--sm .promo-card__description {
    font-size: 12px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .promo-card--lg .promo-card__description {
    font-size: 14px;
  }
}
.promo-card__date {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid #f18832;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  margin: 0;
}
.promo-card__date img {
  display: inline-block;
  width: 9px;
  height: 10px;
  -o-object-fit: contain;
  object-fit: contain;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .promo-card--sm .promo-card__date {
    padding: 4px 6px;
    font-size: 8px;
    text-wrap: balance;
  }
  .promo-card--sm .promo-card__date img {
    height: 7px;
    width: 7px;
  }
}
@media (max-width: 768px) {
  .promo-card--lg .promo-card__date {
    font-size: 12px;
  }
}

.promo-card--sm {
  -ms-grid-column-span: 1;
  grid-column: span 1;
}

.promo-card--lg {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.promo-card--hidden {
  display: none;
}

.promo-card__image--peach {
  background-color: #f8b26f;
}

.promo-card__image--sand {
  background-color: #fdcf9a;
}

.promo-card__image--lavender-gradient {
  background: linear-gradient(129deg, #ac91c4 -0.08%, #987db0 99.96%);
}

.promo-card__image--blue-gradient {
  background: linear-gradient(130deg, #8fa5ff 0.08%, #7187eb 99.92%);
}

.promo-card__image--mint-gradient {
  background: linear-gradient(131deg, #6ec1ad 2.37%, #469985 99.92%);
}

.promo-card__image--orange-gradient {
  background: linear-gradient(129deg, #f15f3a 3.55%, #f98e53 99.96%);
}

.news-article {
  max-width: 1240px;
  margin: 0 auto;
  margin-top: 12px;
}
.news-article__header {
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .news-article__header {
    margin-bottom: 16px;
  }
}
.news-article__back {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 0;
  margin-bottom: 16px;
}
@media screen and (min-width: 1440px) {
  .news-article__back {
    position: absolute;
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 0;
    right: 0;
    padding: 0 var(--container-offset);
  }
}
@media (max-width: 576px) {
  .news-article__back {
    position: relative;
    margin-bottom: 16px;
    width: 100%;
    font-size: 12px;
  }
}
.news-article__back svg {
  display: block;
  width: 8px;
  height: 13px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: inherit;
  fill: currentColor;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.news-article__back:hover {
  color: #EA621B;
}
.news-article__image {
  border-radius: 24px;
  background-color: #fdcf9a;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .news-article__image {
    aspect-ratio: 290/160;
    min-height: 160px;
    border-radius: 16px;
  }
}
.news-article__image img {
  aspect-ratio: 46/35;
  max-height: 95%;
}
@media (max-width: 576px) {
  .news-article__image img {
    aspect-ratio: 197/150;
    height: 100%;
  }
}
.news-article__body {
  border-radius: 24px;
  background: #fff;
  padding: 48px;
}
@media (max-width: 768px) {
  .news-article__body {
    padding: 24px 16px;
  }
}
.news-article__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 148px;
  grid-template-columns: 1fr 148px;
  grid-gap: 48px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .news-article__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.news-article__left {
  padding-right: 64px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 1024px) {
  .news-article__left {
    padding-right: 32px;
    border-right: 0;
  }
}
@media (max-width: 768px) {
  .news-article__left {
    padding-right: 0;
  }
}
.news-article__title {
  color: #000;
  font-size: 42px;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .news-article__title {
    font-size: 22px;
    margin-bottom: 12px;
  }
}
.news-article__date {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid #f18832;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  margin: 0;
}
.news-article__date img {
  display: inline-block;
  width: 9px;
  height: 10px;
  -o-object-fit: contain;
  object-fit: contain;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .news-article__date img {
    width: 8px;
    height: 9px;
  }
}
.news-article__content {
  color: #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .news-article__content {
    margin-top: 24px;
    font-size: 14px;
  }
}
.news-article__content p {
  margin-top: 0;
}
.news-article__content p:not(:last-child) {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .news-article__content p:not(:last-child) {
    margin-bottom: 1em;
  }
}
.news-article__content ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
}
.news-article__content h3 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 768px) {
  .news-article__content h3 {
    font-size: 14px;
  }
}
.news-article__published {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  margin-top: 32px;
}
.news-article__published::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath opacity='0.5' d='M7 0.5C3.41146 0.5 0.5 3.41146 0.5 7C0.5 10.5885 3.41146 13.5 7 13.5C10.5885 13.5 13.5 10.5885 13.5 7C13.5 3.41146 10.5885 0.5 7 0.5Z' stroke='black' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M7 3.34375V7.54167L10.6147 7.54167' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.news-article__logo {
  max-width: 148px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .news-article__logo {
    aspect-ratio: 258/48;
    max-width: 100%;
    width: 100%;
    min-height: 48px;
    max-height: 100%;
    height: auto;
    -o-object-position: left center;
    object-position: left center;
  }
}
.news-article + .feedback {
  margin-top: 32px;
}
@media (max-width: 768px) {
  .news-article + .feedback {
    margin-top: 24px;
  }
}

.page-content {
  max-width: 1240px;
  margin: 0 auto;
  margin-top: 12px;
  margin-bottom: 80px;
}
@media (max-width: 576px) {
  .page-content {
    margin-bottom: 48px;
  }
}
.page-content__header {
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .page-content__header {
    margin-bottom: 16px;
  }
}
.page-content__back {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.48px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 0;
}
@media screen and (min-width: 1440px) {
  .page-content__back {
    position: absolute;
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 0;
    right: 0;
    padding: 0 var(--container-offset);
  }
}
@media (max-width: 576px) {
  .page-content__back {
    position: relative;
    width: 100%;
    font-size: 12px;
  }
}
.page-content__back svg {
  display: block;
  width: 8px;
  height: 13px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: inherit;
  fill: currentColor;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 576px) {
  .page-content__back svg {
    width: 5px;
    height: 9px;
  }
}
.page-content__back:hover {
  color: #EA621B;
}
.page-content__body {
  border-radius: 24px;
  background: #fff;
  padding: 48px;
}
@media (max-width: 768px) {
  .page-content__body {
    border-radius: 16px;
    padding: 32px 20px;
  }
}
@media (max-width: 576px) {
  .page-content__body {
    padding: 24px 16px;
  }
}
.page-content__title {
  color: #000;
  font-size: 42px;
  font-weight: 600;
  line-height: normal;
  max-width: 950px;
  margin: 0 auto 32px;
}
@media (max-width: 576px) {
  .page-content__title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.page-content__content {
  color: #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 576px) {
  .page-content__content {
    font-size: 14px;
  }
}
.page-content__content p:not(:last-child) {
  margin-bottom: 1rem;
}
.page-content__content ul {
  list-style: none;
  padding: 0;
  margin-top: 0;
}
.page-content__content h3 {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}

.feedback {
  margin: 60px 0 80px;
}
@media (max-width: 768px) {
  .feedback {
    margin-bottom: 48px;
    margin-top: 48px;
  }
}
.feedback__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feedback__wrapper--fullwidth {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.feedback__wrapper--fullwidth.w-100 {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 1279px) {
  .feedback__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .feedback__wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.question-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 48px 48px 53px;
  border-radius: 24px;
  background: #fdcf9a;
  min-height: 387px;
}
@media (max-width: 768px) {
  .question-block {
    padding: 32px 20px;
    min-height: 280px;
  }
}
.question-block--fullwidth {
  min-height: 316px;
}
.question-block__background {
  position: absolute;
  z-index: 0;
  bottom: 48px;
  right: 48px;
  -o-object-fit: contain;
  object-fit: contain;
  height: auto;
  width: 100%;
  max-width: 192px;
}
@media (max-width: 768px) {
  .question-block__background {
    max-width: 125px;
  }
}
@media (max-width: 576px) {
  .question-block__background {
    display: none;
  }
}
.question-block--fullwidth .question-block__background {
  top: 48px;
  bottom: 48px;
  right: 48px;
  max-width: 220px;
  margin: auto;
}
.question-block__title {
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 42px;
  font-weight: 600;
  line-height: 110%;
  margin-top: 0;
  max-width: 408px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .question-block__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .question-block__title {
    font-size: 7.5vw;
    margin-bottom: 5vw;
  }
}
@media (max-width: 320px) {
  .question-block__title {
    max-width: 100%;
    font-size: 24px;
  }
}
.question-block__desc {
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 408px;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .question-block__desc {
    font-size: 14px;
    text-wrap: balance;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .question-block__desc {
    font-size: 4.375vw;
    margin-bottom: 7.5vw;
  }
}
@media (max-width: 320px) {
  .question-block__desc {
    font-size: 14px;
  }
}
.question-block__button {
  margin-top: auto;
}
@media (min-width: 321px) and (max-width: 575px) {
  .question-block__button {
    font-size: 4.6875vw;
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

.tenant-block {
  position: relative;
  padding: 48px;
  min-height: 387px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-radius: 24px;
  overflow: hidden;
}
.tenant-block--fullwidth {
  min-height: 370px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .tenant-block--fullwidth {
    min-height: 280px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.tenant-block--fullwidth .tenant-block__title {
  text-align: center;
  max-width: 100%;
}
@media (max-width: 768px) {
  .tenant-block--fullwidth .tenant-block__title {
    text-align: left;
  }
}
.tenant-block--fullwidth .tenant-block__button {
  margin-top: 0;
}
@media (max-width: 768px) {
  .tenant-block--fullwidth .tenant-block__button {
    margin-top: auto;
  }
}
@media (max-width: 768px) {
  .tenant-block {
    padding: 32px 20px;
    min-height: 280px;
  }
}
@media (max-width: 768px) and (min-width: 321px) and (max-width: 575px) {
  .tenant-block {
    min-height: 87.5vw;
  }
}
.tenant-block::before {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 24px;
  background: linear-gradient(286deg, rgba(0, 0, 0, 0) 1.52%, rgba(0, 0, 0, 0.5) 96.84%), linear-gradient(0deg, rgba(50, 51, 53, 0.3) 0%, rgba(50, 51, 53, 0.3) 100%) no-repeat;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tenant-block__background {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.tenant-block__title {
  position: relative;
  z-index: 2;
  color: var(--light-color);
  font-size: 42px;
  font-weight: 600;
  line-height: 110%;
  margin-top: 0;
  max-width: 408px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .tenant-block__title {
    font-size: 24px;
    margin-bottom: 16px;
    max-width: 75%;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .tenant-block__title {
    font-size: 7.5vw;
    margin-bottom: 5vw;
  }
}
@media (max-width: 320px) {
  .tenant-block__title {
    max-width: 100%;
    font-size: 24px;
  }
}
.tenant-block__button {
  position: relative;
  z-index: 2;
  margin-top: auto;
}
@media (min-width: 1025px) {
  .tenant-block__button {
    min-width: 220px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .tenant-block__button {
    font-size: 4.6875vw;
    padding-left: 10vw;
    padding-right: 10vw;
  }
}

.hero-tenant {
  margin-bottom: 32px;
}
.hero-tenant__container {
  background: #fdcf9a;
  border-radius: 24px;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 64px;
  height: 550px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-tenant__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 42px;
    height: auto;
    padding: 32px 20px 0;
    border-radius: 16px;
  }
}
.hero-tenant__container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 126px;
  height: 130px;
  background-image: url("data:image/svg+xml,%3Csvg width='126' height='130' viewBox='0 0 126 130' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.4' d='M31.5 -59C83.692 -59 126 -16.692 126 35.5C126 87.692 83.692 130 31.5 130C-20.6919 130 -63 87.692 -63 35.5C-63 -16.692 -20.6919 -59 31.5 -59ZM31.5 88.3676C60.6991 88.3676 84.3677 64.6991 84.3677 35.5C84.3677 6.30093 60.6991 -17.3676 31.5 -17.3676C2.30096 -17.3676 -21.3676 6.30093 -21.3676 35.5C-21.3676 64.6991 2.30096 88.3676 31.5 88.3676Z' fill='white' /%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 768px) {
  .hero-tenant__container::before {
    right: 0;
    height: 62px;
    width: 62px;
    left: auto;
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
  }
}
.hero-tenant__content {
  position: relative;
  z-index: 1;
  max-width: 500px;
}
.hero-tenant__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 48px;
  color: #000;
  margin-top: 0;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .hero-tenant__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.hero-tenant__description {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #323335;
  margin-bottom: 24px;
  text-wrap: balance;
}
@media (max-width: 768px) {
  .hero-tenant__description {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1025px) {
  .hero-tenant__button {
    min-width: 260px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .hero-tenant__button {
    font-size: 15px;
    padding-left: 35px;
    padding-right: 35px;
  }
}
.hero-tenant__image-wrapper {
  height: calc(100% - 40px);
  margin-top: auto;
}
@media (max-width: 768px) {
  .hero-tenant__image-wrapper {
    aspect-ratio: 290/245;
    height: auto;
  }
}
.hero-tenant__image {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom center;
  object-position: bottom center;
}
@media (max-width: 768px) {
  .hero-tenant__image {
    -o-object-position: bottom left;
    object-position: bottom left;
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.info {
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .info {
    margin-bottom: 24px;
  }
}
.info__container {
  position: relative;
  padding: 48px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-image: url("data:image/svg+xml,%3Csvg width='202' height='236' viewBox='0 0 202 236' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle opacity='0.2' cx='148.5' cy='87.5' r='148.5' fill='%23F8B26F' /%3E%3C/svg%3E"), url("data:image/svg+xml,%3Csvg width='93' height='93' viewBox='0 0 93 93' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M46.5 0C72.1818 0 93 20.8182 93 46.5C93 72.1818 72.1818 93 46.5 93C20.8183 93 0 72.1818 0 46.5C0 20.8182 20.8183 0 46.5 0ZM46.5 72.5142C60.8678 72.5142 72.5143 60.8678 72.5143 46.5C72.5143 32.1322 60.8678 20.4858 46.5 20.4858C32.1322 20.4858 20.4858 32.1322 20.4858 46.5C20.4858 60.8678 32.1322 72.5142 46.5 72.5142Z' fill='%23F8B26F' /%3E%3Cpath d='M46.5 0C72.1818 0 93 20.8182 93 46.5C93 72.1818 72.1818 93 46.5 93C20.8183 93 0 72.1818 0 46.5C0 20.8182 20.8183 0 46.5 0ZM46.5 72.5142C60.8678 72.5142 72.5143 60.8678 72.5143 46.5C72.5143 32.1322 60.8678 20.4858 46.5 20.4858C32.1322 20.4858 20.4858 32.1322 20.4858 46.5C20.4858 60.8678 32.1322 72.5142 46.5 72.5142Z' fill='url(%23paint0_linear_142_124)' /%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_142_124' x1='89.9861' y1='3.64706' x2='-7.61369' y2='83.6283' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F15F3A' /%3E%3Cstop offset='1' stop-color='%23F98E53' /%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-position: top 0 right 0, bottom 37px right 123px;
  background-size: 202px 236px, 93px;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .info__container {
    background-image: none;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .info__container {
    padding: 32px 20px;
    border-radius: 16px;
  }
}
.info__card--main {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 82px;
}
@media (max-width: 768px) {
  .info__card--main {
    padding-right: 0;
    padding-bottom: 32px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.info__title {
  margin: 0 0 64px;
  color: #000;
  font-size: 42px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .info__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.info__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 276px 252px;
  grid-template-columns: 276px 252px;
  grid-gap: 48px 92px;
}
@media (max-width: 1024px) {
  .info__list {
    grid-template-columns: repeat(auto-fit, minmax(276px, 1fr));
    gap: 20px 32px;
  }
}
@media (max-width: 768px) {
  .info__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.info__icon {
  display: inline-block;
  width: 49px;
  height: 49px;
  -o-object-fit: contain;
  object-fit: contain;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .info__icon {
    width: 42px;
    height: 42px;
  }
}
.info__label {
  font-weight: 500;
  font-size: 20px;
  line-height: 140%;
}
@media (max-width: 768px) {
  .info__label {
    font-size: 16px;
  }
}
.info__card--stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 80px;
  padding-left: 80px;
}
@media (max-width: 768px) {
  .info__card--stats {
    padding-top: 32px;
    padding-left: 0;
    gap: 24px;
  }
}
.info__stat-value {
  font-weight: 600;
  font-size: 42px;
  line-height: 100%;
  background: linear-gradient(135deg, #f15f3a 0%, #f98e53 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .info__stat-value {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
.info__stat-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #000;
  max-width: 305px;
}
@media (max-width: 768px) {
  .info__stat-label {
    font-size: 14px;
  }
}

.building {
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .building {
    margin-bottom: 24px;
  }
}
.building__container {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1500/731;
}
@media (max-width: 576px) {
  .building__container {
    border-radius: 16px;
    aspect-ratio: 1/1;
  }
}
.building__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.location-advertising {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .location-advertising {
    margin-bottom: 24px;
  }
}
.location-advertising__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 32px;
}
@media (max-width: 1024px) {
  .location-advertising__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.location-advertising__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .location-advertising__column {
    gap: 24px;
  }
}
.location-advertising__card {
  border-radius: 24px;
  background: #fff;
  padding: 48px;
  height: 100%;
}
@media (max-width: 768px) {
  .location-advertising__card {
    border-radius: 16px;
    padding: 32px 20px;
  }
}
.location-advertising__title {
  color: #000;
  font-size: 42px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  max-width: 560px;
}
@media (max-width: 768px) {
  .location-advertising__title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.location-advertising__text {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .location-advertising__text {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.location-advertising__text p {
  margin-top: 0;
}
.location-advertising__text p:not(:last-child) {
  margin-bottom: 1rem;
}
.location-advertising__advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.location-advertising__advantage {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
}
.location-advertising__advantage:has(.location-advertising__desc) .location-advertising__advantage-title {
  margin-top: 0;
}
@media (max-width: 768px) {
  .location-advertising__advantage {
    font-size: 14px;
    gap: 12px;
  }
}
.location-advertising__icon {
  display: inline-block;
  width: 38px;
  height: 38px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .location-advertising__icon {
    width: 24px;
    height: 24px;
  }
}
.location-advertising__advantage-title {
  margin-top: 6px;
}
@media (max-width: 768px) {
  .location-advertising__advantage-title {
    margin-top: 0;
  }
}
.location-advertising__desc {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin: 8px 0 0;
}
@media (max-width: 768px) {
  .location-advertising__desc {
    font-size: 12px;
  }
}
.location-advertising__card--advertising {
  position: relative;
}
.location-advertising__card--advertising::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='170' height='182' viewBox='0 0 170 182' fill='none'%3E%3Cpath d='M136 -90C211.112 -90 272 -29.1122 272 46C272 121.112 211.112 182 136 182C60.8878 182 0 121.112 0 46C0 -29.1122 60.8878 -90 136 -90ZM136 122.085C178.022 122.085 212.085 88.022 212.085 46C212.085 3.97805 178.022 -30.0846 136 -30.0846C93.9781 -30.0846 59.9154 3.97805 59.9154 46C59.9154 88.022 93.9781 122.085 136 122.085Z' fill='%23F8B26F'/%3E%3Cpath d='M136 -90C211.112 -90 272 -29.1122 272 46C272 121.112 211.112 182 136 182C60.8878 182 0 121.112 0 46C0 -29.1122 60.8878 -90 136 -90ZM136 122.085C178.022 122.085 212.085 88.022 212.085 46C212.085 3.97805 178.022 -30.0846 136 -30.0846C93.9781 -30.0846 59.9154 3.97805 59.9154 46C59.9154 88.022 93.9781 122.085 136 122.085Z' fill='url(%23paint0_linear_142_276)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_142_276' x1='263.185' y1='-79.3333' x2='-22.268' y2='154.59' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F15F3A'/%3E%3Cstop offset='1' stop-color='%23F98E53'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  width: 170px;
  height: 182px;
  z-index: 0;
}
@media (max-width: 768px) {
  .location-advertising__card--advertising::before {
    width: 84px;
    height: 90px;
  }
}
.location-advertising__options {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (235px)[2];
  grid-template-columns: repeat(2, 235px);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 32px 110px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .location-advertising__options {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin-top: 32px;
  }
}
@media (max-width: 768px) {
  .location-advertising__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
  }
}
.location-advertising__option-icon {
  display: inline-block;
  max-width: 80px;
  max-height: 80px;
  margin-bottom: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .location-advertising__option-icon {
    width: 48px;
    max-height: 48px;
    margin-bottom: 0;
  }
}
.location-advertising__option-title {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  text-wrap: balance;
  margin: 0;
}
@media (max-width: 768px) {
  .location-advertising__option-title {
    font-size: 14px;
  }
}

.cta-banner__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 48px;
  border-radius: 24px;
  background: #fdcf9a;
  min-height: 283px;
}
@media (max-width: 768px) {
  .cta-banner__content {
    padding: 32px 20px 182px;
  }
}
.cta-banner__title {
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
  margin-top: 0;
  max-width: 408px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .cta-banner__title {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.cta-banner__text {
  position: relative;
  z-index: 2;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin-top: 0;
  margin-bottom: 24px;
  max-width: 432px;
}
@media (max-width: 768px) {
  .cta-banner__text {
    font-size: 14px;
    margin-bottom: 16px;
    text-wrap: balance;
  }
}
.cta-banner__button {
  margin-top: auto;
}
@media (min-width: 1025px) {
  .cta-banner__button {
    padding-left: 41px;
    padding-right: 41px;
  }
}
@media (max-width: 768px) {
  .cta-banner__button {
    margin-top: 0;
    font-size: 15px;
  }
}
.cta-banner__background {
  position: absolute;
  z-index: 0;
  bottom: 48px;
  right: 48px;
  -o-object-fit: contain;
  object-fit: contain;
  height: auto;
  width: 100%;
  max-width: 187px;
}
@media (max-width: 768px) {
  .cta-banner__background {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: scale(-1, -1);
    -ms-transform: scale(-1, -1);
    transform: scale(-1, -1);
    max-width: 160px;
  }
}

.documents {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .documents {
    margin-bottom: 48px;
  }
}
.documents__wrapper {
  border-radius: 24px;
  background: #fff;
  padding: 48px;
}
@media (max-width: 768px) {
  .documents__wrapper {
    border-radius: 16px;
    padding: 32px 20px;
  }
}
.documents__title {
  color: #000;
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .documents__title {
    font-size: 24px;
    margin-bottom: 2rem;
  }
}
.documents__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
}
@media (max-width: 1024px) {
  .documents__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .documents__list {
    grid-gap: 12px 24px;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  }
}
.documents__link {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
@media (max-width: 576px) {
  .documents__link {
    padding: 12px;
  }
}
.documents__icon {
  width: 26px;
  height: 32px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .documents__icon {
    width: 20px;
    height: 25px;
  }
}
.documents__link-content {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  height: 100%;
  margin-left: 0;
  margin-right: auto;
}
.documents__link-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}
@media (max-width: 768px) {
  .documents__link-name {
    font-size: 13px;
  }
}
.documents__size {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .documents__size {
    font-size: 12px;
  }
}
.documents__download {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .documents__download {
    width: 25px;
    height: 25px;
  }
}