@charset "UTF-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ul, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
}

img, fieldset, a img {
  border: none;
}

textarea {
  -webkit-appearance: none;
  overflow: auto;
}

input[type=submit], button {
  cursor: pointer;
}

input[type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  margin: 0;
  padding: 0;
  border: 0;
}
input[type=text], input[type=email], input[type=tel] {
  -webkit-appearance: none;
}

button {
  margin: 0;
  padding: 0;
  border: 0;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  bottom: -0.5em;
}

a {
  text-decoration: none;
}

div, input, textarea, select, button, img, li, i, h1, h2, h3, h4, h5, h6, a, span, a:focus {
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
}

div, section {
  display: block;
}

ul {
  list-style-type: none;
}

ol {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
*:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, input::-moz-placeholder, textarea::-moz-placeholder, input:-moz-placeholder, textarea:-moz-placeholder, input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  color: rgba(0, 0, 0, 0.5);
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder, input:focus::-moz-placeholder, textarea:focus::-moz-placeholder, input:focus:-moz-placeholder, textarea:focus:-moz-placeholder, input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea::-webkit-outer-spin-button, textarea::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
  }
}
@media screen and (max-width: 767px) {
  * {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
button, input, textarea {
  font-weight: 400;
  background: transparent;
}

b, strong {
  font-weight: 700;
}

svg path {
  -webkit-transition: fill 0.3s, stroke 0.3s;
  -o-transition: fill 0.3s, stroke 0.3s;
  transition: fill 0.3s, stroke 0.3s;
}

body {
  --black: #000;
  --black-alt: #212121;
  --black-text: #000;
  --black-alt-text: #d5d5d5;
  --white: #fff;
  --white-alt: #ececec;
  --accent: #211308;
  --accent-alt: #e3e3e3;
  width: 100%;
  line-height: 1.4;
  min-height: 100vh;
  font-weight: 400;
  color: var(--black-text);
  background: var(--white);
  position: relative;
  overflow-x: hidden;
}

.row {
  width: 100%;
  max-width: 1360px;
  padding: 0 30px;
  height: auto;
  margin: 0 auto;
}

.btn {
  height: 56px;
  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;
  background: var(--black);
  border-radius: 12px;
  padding: 0 35px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  -webkit-transition: background 0.5s;
  -o-transition: background 0.5s;
  transition: background 0.5s;
}
.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.btn.large {
  height: 56px;
  padding: 0 35px;
  font-size: 18px;
}
.btn.large::after {
  margin-left: 15px;
  background-size: 12px auto;
}
.btn span {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.btn.accent, .btn.white {
  background: var(--accent-alt);
  color: var(--accent);
}
.btn.accent::after, .btn.white::after {
  background-image: url(../img/icon-arrow2-accent.svg);
}

.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 200%;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--black-text);
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.link::after {
  content: "";
  float: right;
  width: 12px;
  height: 12px;
  background: url(../img/icon-arrow2-black.svg) right/8px auto no-repeat;
  margin: auto 0 auto 10px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.link:hover {
  opacity: 0.7;
}
.link:hover::after {
  -webkit-transform: rotate(45deg) translateY(-1px) translateX(-1px);
      -ms-transform: rotate(45deg) translateY(-1px) translateX(-1px);
          transform: rotate(45deg) translateY(-1px) translateX(-1px);
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  border-bottom: 1px solid rgba(244, 239, 228, 0.1);
  background: var(--black);
  -webkit-transition: -webkit-box-shadow 0.5s;
  transition: -webkit-box-shadow 0.5s;
  -o-transition: box-shadow 0.5s;
  transition: box-shadow 0.5s;
  transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
}
.header__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 75px;
  -webkit-transition: height 0.5s;
  -o-transition: height 0.5s;
  transition: height 0.5s;
}
.header__logo {
  float: left;
  margin: auto 0;
  width: auto;
  height: 28px;
}
.header__logo img {
  display: block;
  height: 100%;
  width: auto;
}
.header__humb {
  display: none;
}
.header__nav {
  float: left;
  margin: auto;
}
.header__nav-list {
  float: left;
}
.header__nav-list > li {
  float: left;
}
.header__nav-list > li.active > a {
  position: relative;
}
.header__nav-list > li.active > a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -1px;
  left: 0;
  background: var(--accent);
}
.header__nav-list > li:has(> ul) {
  position: relative;
}
.header__nav-list > li:has(> ul) > a {
  padding-right: 28px;
  position: relative;
}
.header__nav-list > li:has(> ul) > a::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 8px;
  background: url(../img/icon-arrow1-white.svg) center/contain no-repeat;
  top: calc(50% - 4px);
  right: 10px;
  opacity: 0.4;
  -webkit-transition: opacity 0.5s, background 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, background 0.5s, -webkit-transform 0.5s;
  -o-transition: opacity 0.5s, transform 0.5s, background 0.5s;
  transition: opacity 0.5s, transform 0.5s, background 0.5s;
  transition: opacity 0.5s, transform 0.5s, background 0.5s, -webkit-transform 0.5s;
}
.header__nav-list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 34px;
  padding: 0 15px;
  font-weight: 400;
  white-space: nowrap;
  color: var(--white);
  font-size: 16px;
  -webkit-transition: color 0.5s, height 0.5s;
  -o-transition: color 0.5s, height 0.5s;
  transition: color 0.5s, height 0.5s;
}
.header__nav-list > li > ul {
  top: calc(100% - 2px);
  left: -50px;
}
.header__nav-list > li > ul li ul {
  top: -10px;
  left: calc(100% + 15px);
}
.header__nav-list > li > ul li ul::before {
  top: 20px;
  left: -4px;
  width: 5px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 1;
}
.header__nav-list > li ul {
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 12px;
  background: var(--white-alt);
  border: 1px solid var(--black);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 15px 25px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: visibility 0.5s, opacity 0.5s;
  -o-transition: visibility 0.5s, opacity 0.5s;
  transition: visibility 0.5s, opacity 0.5s;
}
.header__nav-list > li ul:has(> li:nth-child(7)) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(-webkit-max-content, 1fr) 30px minmax(-webkit-max-content, 1fr);
  -ms-grid-columns: minmax(max-content, 1fr) 30px minmax(max-content, 1fr);
  grid-template-columns: repeat(2, minmax(-webkit-max-content, 1fr));
  grid-template-columns: repeat(2, minmax(max-content, 1fr));
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.header__nav-list > li ul:has(> li:nth-child(7)) > li {
  width: 100%;
}
.header__nav-list > li ul > li {
  display: block;
  position: relative;
}
.header__nav-list > li ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  justify-content: space-between;
  height: 40px;
  border-bottom: 1px solid var(--black-alt);
  color: var(--black-text);
  font-size: 15px;
  -webkit-transition: background 0.5s, color 0.5s;
  -o-transition: background 0.5s, color 0.5s;
  transition: background 0.5s, color 0.5s;
}
.header__nav-list > li ul > li > a::after {
  content: "";
  float: right;
  width: 12px;
  height: 12px;
  background: url(../img/icon-arrow2-black.svg) right/8px auto no-repeat;
  margin: auto 0 auto 15px;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.header__but {
  margin: auto 0;
}
.header__but .btn {
  height: 36px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 16px;
  background: var(--white);
}

.content {
  width: 100%;
}
.content + footer > div:has(.elementor-cta__bg-overlay) {
  display: none;
}
.content:has(.teaser:first-child)::before, .content:has(.about:first-child)::before, .content:has(.kitchen-card:first-child)::before {
  content: "";
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 75px;
  background: var(--black);
  z-index: 0;
}
.content:has(.stages:last-child) + .footer, .content:has(.benefits:last-child) + .footer {
  margin-top: 0;
  border-top: 1px solid rgba(244, 239, 228, 0.1);
}
.content:has(.stages:last-child .stages__image) + .footer {
  border-top: 0;
}


.plug-svg {
  background-image: url(../img/texture2.svg);
  background-size: 100px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.plug-svg-name {
  width: auto;
  height: auto;
  margin: auto;
  padding: 25px 30px;
  border: 1px solid var(--black);
  font-size: 20px;
  text-align: center;
  font-style: italic;
  border-radius: 12px;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}

.quest {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 110px;
}
.quest:first-child {
  margin-top: 0;
}
.quest__base {
  float: left;
  width: 50%;
  min-height: 650px;
  position: relative;
}
.quest__base:has(.quest__base-image) .quest__base-block {
  padding: 55px 30px;
}
.quest__base:has(.quest__base-image) .quest__title {
  color: var(--white);
}
.quest__base:not(:has(.quest__base-image)) {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 50px 10px 0;
}
.quest__base:not(:has(.quest__base-image)) + .quest__form {
  border-radius: 12px;
  overflow: hidden;
}
.quest__base-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background: var(--black);
}
.quest__base-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quest__base-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(55.77%, rgba(39, 29, 20, 0.7)), to(rgba(102, 102, 102, 0)));
  background: -o-linear-gradient(top, rgba(39, 29, 20, 0.7) 55.77%, rgba(102, 102, 102, 0) 100%);
  background: linear-gradient(180deg, rgba(39, 29, 20, 0.7) 55.77%, rgba(102, 102, 102, 0) 100%);
}
.quest__base-block {
  width: 100%;
  position: relative;
  z-index: 2;
}
.quest__title {
  display: block;
}
.quest__title-sub {
  display: block;
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.quest__title-sub span {
  padding-left: 18px;
  position: relative;
}
.quest__title-sub span::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 4px;
  left: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background: var(--black);
}
.quest__title-name {
  display: block;
  margin-top: 20px;
  font-family: "Telex", Sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 125%;
}
.quest__title-name:first-child {
  margin-top: 0;
}
.quest__title-name span {
  font-style: italic;
}
.quest__title-desc {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  line-height: 150%;
}
.quest__title-desc p {
  display: block;
  margin-top: 15px;
}
.quest__title-desc p:first-child {
  margin-top: 0;
}
.quest__title-but {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.quest__title-dop {
  display: block;
  margin-top: 20px;
  font-size: 16px;
  line-height: 150%;
}
.quest__form {
  float: left;
  width: 50%;
  background-color: var(--white-alt);
  position: relative;
}
.quest__form-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.quest__form-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.quest__feature {
  display: block;
  margin-top: 20px;
  background: rgba(156, 143, 123, 0.08);
  border-radius: 12px;
  padding: 22px 25px;
}
.quest__feature-item {
  display: block;
  padding-left: 50px;
  position: relative;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(156, 143, 123, 0.15);
}
.quest__feature-item:not(:has(.quest__feature-desc)) .quest__feature-num {
  top: calc(50% - 5px);
}
.quest__feature-item:not(:has(.quest__feature-desc)):first-child .quest__feature-num {
  top: calc(50% - 15px);
}
.quest__feature-item:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.quest__feature-item:first-child .quest__feature-num {
  top: 3px;
}
.quest__feature-num {
  position: absolute;
  left: 0;
  top: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--black);
  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;
  font-weight: 700;
  font-size: 12px;
}
.quest__feature-name {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 112%;
  color: var(--black-text);
}
.quest__feature-desc {
  display: block;
  margin-top: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--black-alt);
}
.quest__list {
  display: block;
  margin-top: 30px;
}
.quest__list li {
  display: block;
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: var(--black-text);
  padding-left: 26px;
  margin-top: 15px;
  position: relative;
  background: url(../img/icon-check1.svg) left center/12px auto no-repeat;
}
.quest__list li:first-child {
  margin-top: 0;
}
.quest__info {
  width: 100%;
  margin-top: 30px;
  padding: 20px 18px;
  border-radius: 12px;
  background: var(--white-alt);
  max-width: 500px;
}
.quest__info-name {
  display: block;
  font-size: 20px;
  line-height: 130%;
  font-family: "Libre Caslon Text", serif;
}
.quest__info-desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 150%;
  color: var(--black-alt);
}
.quest__data {
  width: calc(100% + 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px -10px 0;
  padding-top: 20px;
  position: relative;
}
.quest__data::before {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  height: 1px;
  background: var(--black-alt);
  top: 0;
  left: 10px;
}
.quest__data-item {
  float: left;
  width: calc(100% - 20px);
  margin: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.quest__data-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(201, 239, 165, 0.4);
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
}
.quest__data-num:has(img) {
  background: transparent;
}
.quest__data-num img {
  display: block;
  width: auto;
  height: auto;
  max-width: 32px;
  max-height: 32px;
}
.quest__data-name {
  font-size: 16px;
  text-align: center;
  margin-top: 15px;
}

.stats {
  display: block;
  margin-top: 110px;
}
.stats__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.stats__item {
  float: left;
  width: 100%;
  padding: 0 25px;
  border-left: 1px solid var(--black-alt);
}
.stats__item:not(:has(.stats__item-name)) {
  text-align: center;
}
.stats__item:first-child {
  border: 0;
  padding: 0;
}
.stats__item-num {
  font-family: "Libre Caslon Text", serif;
  font-size: 64px;
  line-height: 1;
  font-weight: 400;
  color: var(--black-text);
}
.stats__item-label {
  margin-top: 15px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black-alt);
}
.stats__item-name {
  font-size: 26px;
  font-weight: 400;
  color: var(--black-text);
  font-family: "Telex", Sans-serif;
  line-height: 140%;
  padding-right: 20px;
}
.stats__item-desc {
  margin-top: 15px;
  padding-right: 20px;
}
.stats__item-desc p {
  font-size: 18px;
  line-height: 145%;
  color: var(--black-text);
  font-weight: 500;
}
.stats__item-desc span {
  display: block;
  font-size: 16px;
  line-height: 145%;
  color: var(--black-alt);
  margin-top: 12px;
}
.stats__disclaimer {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black-alt);
  max-width: 960px;
  margin: 50px auto 0;
}

.bread {
  width: 100%;
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}
.bread ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: wrap;
}
.bread li {
  float: left;
  margin-right: 25px;
  position: relative;
}
.bread li::before {
  content: "/";
  position: absolute;
  width: 25px;
  height: 100%;
  text-align: center;
  opacity: 0.5;
  font-size: 12px;
  line-height: 120%;
  color: var(--black);
  left: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bread li:last-child {
  margin: 0;
}
.bread li:last-child::before {
  display: none;
}
.bread li:last-child a {
  color: rgba(0, 0, 0, 0.4);
}
.bread li a {
  display: block;
  font-size: 13px;
  line-height: 120%;
  max-width: 160px;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  overflow: hidden;
  color: var(--black);
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}

.title.white .bread li:last-child a {
  color: rgba(255, 255, 255, 0.4);
}
.title.white .bread li::before {
  color: var(--white);
}
.title.white .bread li a {
  color: var(--white);
}
.title:not(.left) .bread ul {
  justify-content: center;
}

.title {
  text-align: center;
  width: 100%;
}
.title:has(.title__block) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.title__block {
  padding-right: 50px;
}
.title__block + .title__but {
  margin: auto 0 0 auto;
}
.title__dop {
  width: 32%;
  font-size: 18px;
  line-height: 140%;
  margin-top: auto;
  margin-left: auto;
  padding-bottom: 7px;
}
.title__dop p {
  display: block;
  margin-top: 12px;
}
.title__dop p:first-child {
  margin-top: 0;
}
.title__dop span {
  color: var(--accent);
}
.title.left {
  text-align: left;
}
.title.white {
  color: var(--white);
}
.title.white .title__name span {
  color: var(--white);
}
.title.white .title__sub span {
  color: var(--white);
}
.title.white .title__sub span::before {
  background: var(--white);
}
.title.white .title__dop span {
  color: var(--accent-alt);
}
.title__sub {
  display: block;
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.title__sub span {
  /*padding-left: 18px;*/
  position: relative;
  color: var(--accent);
}
/*.title__sub span::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  top: 4px;
  left: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background: var(--accent);
}*/
.title__name {
  display: block;
  margin-top: 20px;
  font-family: "Telex", Sans-serif;
  font-weight: 400;
  font-size: 54px;
  line-height: 125%;
}
.title__name:first-child {
  margin-top: 0;
}
.title__name span {
  font-style: italic;
  color: var(--accent);
}
.title__desc {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  line-height: 150%;
}
.title__desc p {
  display: block;
  margin-top: 15px;
}
.title__desc p:first-child {
  margin-top: 0;
}
.title__link {
  float: right;
  margin: auto 0 0 auto;
}
.title__link .link {
  border-bottom: 1px solid var(--black-alt);
}
.title__but {
  margin-top: 20px;
}
.title__but.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.stages {
  width: 100%;
  margin-top: 110px;
  padding: 110px 0;
  position: relative;
}
.stages:last-child::before {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.stages.white::before {
  display: none;
}
.stages.white .stages__item-sub, .stages.white .stages__item-name, .stages.white .stages__item-desc {
  color: var(--black-text);
}
.stages::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: var(--black);
  z-index: 0;
}
.stages .title {
  position: relative;
  z-index: 2;
}
.stages__block {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: 80px;
}
.stages__item {
  width: 100%;
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.stages__item:first-child {
  margin-top: 0;
}
.stages__item:nth-child(2n) .stages__item-image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.stages__item:nth-child(2n) .stages__item-block {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 0 50px 0 0;
}
.stages__item-image {
  float: left;
  width: 48%;
  height: auto;
  height: 430px;
}
.stages__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stages__item-block {
  float: left;
  width: 52%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 50px;
  color: var(--white);
}
.stages__item-sub {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0.11em;
  color: var(--black-alt-text);
}
.stages__item-name {
  display: block;
  margin-top: 15px;
  font-family: "Telex", Sans-serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 130%;
}
.stages__item-name:first-child {
  margin-top: 0;
}
.stages__item-name span {
  font-style: italic;
}
.stages__item-desc {
  display: block;
  margin-top: 15px;
  font-size: 18px;
  line-height: 150%;
  color: var(--black-alt-text);
}
.stages__item-desc p {
  display: block;
  margin-top: 12px;
}
.stages__item-desc p:first-child {
  margin-top: 0;
}
.stages__item-but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}
.stages__but {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.stages__but .btn {
  min-width: 250px;
}
.stages__form {
  width: 100%;
  max-width: 800px;
  margin: 30px auto 0;
}
.stages__image {
  width: 100%;
  display: block;
  margin-top: 70px;
  position: relative;
  z-index: 2;
}
.stages__image img {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.stages:not(:last-child):has(.stages__image) {
  padding-bottom: 0;
}

.video-info {
  margin-top: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.video-info__content {
  float: left;
  margin: auto 0;
  width: 44%;
  padding-right: 40px;
}
.video-info__title {
  display: block;
  font-family: "Telex", Sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 130%;
  color: var(--black-text);
}
.video-info__desc {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: var(--black-text);
  margin-top: 25px;
}
.video-info__list {
  display: block;
  margin-top: 30px;
}
.video-info__list li {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: var(--black-text);
  padding-left: 26px;
  margin-top: 15px;
  position: relative;
  background: url(../img/icon-check1.svg) left center/12px auto no-repeat;
}
.video-info__list li:first-child {
  margin-top: 0;
}
.video-info__media {
  float: left;
  width: 56%;
}
.video-info__player {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: auto;
  overflow: hidden;
  -webkit-box-shadow: 0 20px 40px rgba(39, 29, 20, 0.08);
          box-shadow: 0 20px 40px rgba(39, 29, 20, 0.08);
}
.video-info__player iframe, .video-info__player img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.essence {
  margin-top: 110px;
  width: 100%;
}
.essence__block {
  width: calc(100% + 28px);
  margin: 40px -14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.essence__item {
  float: left;
  width: calc(100% - 28px);
  margin: 0 14px;
  background: var(--white-alt);
  border: 1px solid rgba(156, 143, 123, 0.15);
  padding: 30px 25px;
}
.essence__item-num {
  display: block;
  font-size: 16px;
  color: var(--black-alt);
}
.essence__item-name {
  display: block;
  margin-top: 15px;
  font-family: "Telex", Sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 115%;
}
.essence__item-desc {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  line-height: 150%;
  color: var(--black-alt);
}

.slick-slide {
  float: left;
}
.slick-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  width: 100%;
  position: relative;
}
.slick-list {
  width: 100%;
  height: auto;
  float: left;
  overflow: hidden;
}
.slick-track {
  width: 100%;
  height: auto;
  float: left;
}
.slick-arrow {
  position: absolute;
  top: calc(50% - 24px);
  z-index: 10;
  width: 44px !important;
  height: 44px !important;
  border-radius: 0 !important;
  font-size: 0 !important;
  border: none !important;
  cursor: pointer;
  background: var(--black) url(../img/icon-arrow1-white.svg) center/10px auto no-repeat !important;
  -webkit-transition: background 0.5s, opacity 0.5s;
  -o-transition: background 0.5s, opacity 0.5s;
  transition: background 0.5s, opacity 0.5s;
}
.slick-arrow:hover {
  background-color: var(--black-alt-text);
}
.slick-arrow.slick-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.slick-prev {
  right: calc(100% + 30px);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.slick-next {
  left: calc(100% + 30px);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
  width: 100%;
}
.slick-dots li {
  margin: 0 5px;
  padding: 0;
  background: transparent;
}
.slick-dots li button {
  font-size: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0 !important;
  background: var(--black-alt);
  opacity: 0.4;
  padding: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.slick-dots li.slick-active button {
  opacity: 1;
  background: var(--black);
}

.reviews {
  margin-top: 110px;
  width: 100%;
  position: relative;
  padding: 110px 0;
}
.reviews::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: #E0E0E0;
  z-index: 0;
}
.reviews .title {
  position: relative;
  z-index: 2;
}
.reviews__slider {
  display: flex;
  flex-flow: wrap;
  width: 100%;
  max-width: 760px;
  margin: 50px auto 0;
  position: relative;
  z-index: 2;
}
.reviews__slider .slick-arrow {
  top: calc(50% - 60px);
}
.reviews__slider .slick-prev {
  right: calc(100% + 140px);
}
.reviews__slider .slick-next {
  left: calc(100% + 140px);
}
.reviews__item {
  float: left;
  width: 100%;
}
.reviews__player {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: auto;
  overflow: hidden;
  background: var(--black);
}
.reviews__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews__info {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.reviews__name {
  float: left;
  width: 30%;
  padding-right: 20px;
  font-family: "Telex", Sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 140%;
  color: var(--black-text);
}
.reviews__desc {
  float: left;
  width: 70%;
  font-size: 14px;
  line-height: 150%;
}
.reviews__but {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.benefits {
  margin-top: 110px;
  width: 100%;
  padding: 110px 0;
  position: relative;
}
.benefits::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: var(--black);
  z-index: 0;
}
.benefits .title, .benefits__block {
  position: relative;
  z-index: 2;
}
.benefits__block {
  width: 100%;
  margin: 50px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.benefits__block:first-child {
  margin-top: 0;
}
.benefits__aside {
  float: left;
  width: 48%;
}
.benefits__aside-scroll {
  width: 100%;
}
.benefits__image {
  width: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.benefits__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.benefits__price {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white-alt);
  color: var(--black-text);
  font-weight: 700;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.benefits__content {
  float: left;
  width: calc(52% - 60px);
  margin-left: auto;
  padding-top: 10px;
}
.benefits__content:first-child:last-child {
  width: 100%;
}
.benefits .title + .benefits__item {
  border-top: 1px solid rgba(156, 143, 123, 0.2);
  margin-top: 35px;
}
.benefits__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 35px 0;
  border-bottom: 1px solid rgba(156, 143, 123, 0.2);
}
.benefits__item:first-child {
  padding-top: 0;
}
.benefits__item-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(156, 143, 123, 0.5);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.benefits__item-icon img {
  display: block;
  width: auto;
  height: auto;
  margin: auto;
  max-width: 18px;
  max-height: 18px;
}
.benefits__item-info {
  float: left;
  width: calc(100% - 60px);
  margin-left: auto;
}
.benefits__item-name {
  display: block;
  font-weight: 400;
  font-family: "Telex", Sans-serif;
  font-size: 24px;
  line-height: 130%;
  color: var(--white);
}
.benefits__item-desc {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 150%;
  color: var(--black-alt-text);
}
.benefits__but {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.styles {
  margin-top: 110px;
  width: 100%;
  padding: 110px 0;
  position: relative;
}
.styles + .faq::before {
  border-top: 1px solid var(--black-alt);
}
.styles::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: #E0E0E0;
  z-index: 0;
}
.styles .title, .styles__block {
  position: relative;
  z-index: 2;
}
.styles__block {
  width: calc(100% + 28px);
  margin: 40px -14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.styles__item {
  width: calc(100% - 28px);
  margin: 0 14px;
  background: var(--white-alt);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(156, 143, 123, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.styles__item-image {
  width: 100%;
  height: 290px;
  min-height: 290px;
  background: #EAE3D5;
  position: relative;
}
.styles__item-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(0), color-stop(10%, rgba(39, 29, 20, 0.7)), color-stop(30%, rgba(102, 102, 102, 0)));
  background: -o-linear-gradient(0, rgba(39, 29, 20, 0.7) 10%, rgba(102, 102, 102, 0) 30%);
  background: linear-gradient(0, rgba(39, 29, 20, 0.7) 10%, rgba(102, 102, 102, 0) 30%);
}
.styles__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.styles__item-tag {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
}
.styles__item-content {
  padding: 25px 20px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.styles__item-name {
  display: block;
  font-family: "Telex", Sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 112%;
  color: var(--black-text);
}
.styles__item-desc {
  display: block;
  margin-top: 14px;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--black-alt);
}
.styles__item-list {
  display: block;
  margin-top: 14px;
}
.styles__item-list li {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--black-alt-text);
  margin-top: 5px;
  padding-left: 15px;
  position: relative;
}
.styles__item-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--black-alt-text);
}
.styles__item-list li:first-child {
  margin-top: 0;
}
.styles__item-link {
  margin-top: auto;
  padding-top: 14px;
}

.steps-flow {
  margin-top: 110px;
  width: 100%;
  display: block;
}
.steps-flow__box {
  width: 100%;
  margin: 50px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 2px solid var(--black);
  padding-top: 25px;
}
.steps-flow__block {
  width: calc(100% + 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
}
.steps-flow__item {
  width: calc(100% - 30px);
  margin: 0 15px;
}
.steps-flow__item-sub {
  display: block;
  font-size: 13px;
  color: var(--black-alt);
}
.steps-flow__item-name {
  display: block;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: var(--black-text);
  margin-top: 10px;
  font-family: "Telex", Sans-serif;
}
.steps-flow__item-desc {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 145%;
  color: var(--black-alt);
}

.unprepared {
  margin-top: 110px;
  width: 100%;
  display: block;
  padding: 110px 0;
  position: relative;
}
.unprepared::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: #E0E0E0;
  z-index: 0;
}
.unprepared .title, .unprepared__block {
  position: relative;
  z-index: 2;
}
.unprepared__block {
  width: calc(100% + 28px);
  margin: 50px -14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.unprepared__item {
  width: calc(33.333% - 28px);
  margin: 0 14px;
  background: var(--black);
  border-radius: 12px;
  padding: 45px 35px;
  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;
  min-height: 340px;
}
.unprepared__item-name {
  display: block;
  font-family: "Telex", Sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: var(--white);
}
.unprepared__item-desc {
  display: block;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #473D34;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--black-alt-text);
}
.unprepared__footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}
.unprepared__footer-text h3 {
  font-family: "Telex", Sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  color: var(--black-text);
}
.unprepared__footer-text p {
  font-family: "Telex", Sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--black-alt);
  margin-top: 8px;
}
.unprepared__footer-action {
  padding-bottom: 5px;
}

.video-reviews {
  margin-top: 110px;
  width: 100%;
  display: block;
}
.video-reviews__slider {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0;
  position: relative;
}
.video-reviews__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.video-reviews__slider .slick-arrow {
  top: calc(50% - 60px);
}
.video-reviews__block {
  width: 100%;
  max-width: 1200px;
  margin: 20px auto 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.video-reviews__item {
  float: left;
  padding: 0 14px;
}
.video-reviews__player {
  width: 100%;
  position: relative;
  padding-bottom: 165%;
  height: 0;
  overflow: hidden;
  background: var(--black);
}
.video-reviews__player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.video-reviews__info {
  margin-top: 20px;
  width: 100%;
}
.video-reviews__quote {
  display: block;
  font-family: "Telex", Sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}
.video-reviews__tags {
  display: block;
  margin-top: 15px;
  font-size: 13px;
  line-height: 140%;
  color: var(--black-alt);
}
.video-reviews__but {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.video-reviews__text {
  width: calc(33.3333% - 28px);
  margin: 28px 14px 0;
  background: var(--white-alt);
  border: 1px solid rgba(156, 143, 123, 0.15);
  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;
}
.video-reviews__text-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video-reviews__text-stars img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  display: inline-block !important;
}
.video-reviews__text-stars img:last-child {
  margin-right: 0;
}
.video-reviews__text-stars p {
  float: right;
  margin: auto 0 auto auto;
  font-size: 14px;
  font-weight: 500;
}
.video-reviews__text-image {
  width: 100%;
  height: 220px;
  margin-top: 15px;
}
.video-reviews__text-image img {
  display: block;
  width: 100%;
  height: 100%;
}
.video-reviews__text-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 15px;
  font-weight: 400;
  font-size: 15px;
  line-height: 155%;
  color: var(--black-text);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-reviews__text-body p {
  display: block;
  margin-top: 10px;
}
.video-reviews__text-body p:first-child {
  margin-top: 0;
}
.video-reviews__text-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-top: 25px;
  margin-top: auto;
}
.video-reviews__text-author_img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
  background: #eae3d5;
  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;
  font-size: 18px;
  font-weight: 500;
}
.video-reviews__text-author_img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-reviews__text-author_name {
  font-weight: 700;
  font-size: 15px;
  line-height: 120%;
  color: var(--black-text);
}

.studios-list {
  margin-top: 110px;
  width: 100%;
  display: block;
  padding: 110px 0;
  position: relative;
}
.studios-list + .stages::before {
  border-top: 1px solid var(--black-alt);
}
.studios-list::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: var(--black);
  z-index: 0;
}
.studios-list .title, .studios-list__block {
  position: relative;
  z-index: 2;
}
.studios-list__block {
  width: 100%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.studios-list__item {
  width: 100%;
  background: var(--white-alt);
  border-radius: 12px;
  padding: 20px;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border: 1px solid rgba(156, 143, 123, 0.15);
}
.studios-list__item:first-child {
  margin-top: 0;
}
.studios-list__logo {
  float: left;
  width: 200px;
  background: var(--white);
  margin: 0 0 0 0;
  border-radius: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.studios-list__logo + .studios-list__main {
  width: calc(75% - 230px);
}
.studios-list__logo img {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}
.studios-list__main {
  width: calc(75% - 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.studios-list__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.studios-list__name {
  font-weight: 400;
  font-size: 32px;
  font-family: "Telex", Sans-serif;
  line-height: 120%;
  color: var(--black-text);
  margin-right: 20px;
}
.studios-list__status {
  float: left;
  padding: 0 15px;
  background: var(--white);
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  font-weight: 500;
  font-size: 13px;
  color: #5b8751;
  letter-spacing: 0.02em;
}
.studios-list__status img {
  width: auto;
  height: 16px;
  margin-right: 6px;
}
.studios-list__geo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  color: var(--black-alt);
  margin-top: 10px;
  padding-left: 25px;
  position: relative;
}
.studios-list__geo img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: auto;
  height: 14px;
}
.studios-list__geo span {
  width: 4px;
  height: 4px;
  margin: auto 12px;
  background: var(--black-alt);
  border-radius: 50%;
}
.studios-list__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 13px;
  margin-top: 8px;
}
.studios-list__stars-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: 700;
  padding-left: 25px;
  position: relative;
}
.studios-list__stars-row img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: auto;
}
.studios-list__stars-count {
  float: left;
  font-weight: 400;
  padding-left: 30px;
  position: relative;
  color: var(--black-alt);
}
.studios-list__stars-count::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--black-alt);
  border-radius: 50%;
  top: calc(50% - 2px);
  left: 14px;
}
.studios-list__stars-link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 400;
  position: relative;
  margin-left: 30px;
}
.studios-list__stars-link::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--black-alt);
  border-radius: 50%;
  top: calc(50% - 2px);
  left: -16px;
}
.studios-list__stars-link:hover {
  text-decoration: none;
}
.studios-list__desc {
  display: block;
  font-size: 14px;
  line-height: 145%;
  margin-top: 10px;
}
.studios-list__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 12px;
  width: 100%;
}
.studios-list__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--white);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px;
  margin-right: 12px;
  margin-top: 8px;
}
.studios-list__tag img {
  width: auto;
  height: 18px;
  margin-right: 10px;
}
.studios-list__side {
  width: 25%;
  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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.studios-list__rating-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.studios-list__rating-label {
  font-family: "Telex", Sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--black-text);
  margin-right: 15px;
}
.studios-list__rating-num {
  width: 54px;
  height: 54px;
  background: var(--black);
  color: var(--white);
  font-family: "Telex", Sans-serif;
  font-weight: 700;
  font-size: 20px;
  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;
  border-radius: 8px;
}
.studios-list__btn {
  width: 100%;
  max-width: 240px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.situations {
  margin-top: 110px;
  width: 100%;
  display: block;
}
.situations__block {
  width: calc(100% + 14px);
  margin: 30px -7px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}
.situations__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(33.3333% - 14px);
  margin: 0 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: transparent;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
}
.situations__item-image {
  width: 100%;
  height: 250px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  background: var(--black);
}
.situations__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.situations__item-content {
  padding: 20px 15px;
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.situations__item-title {
  display: block;
  font-family: "Telex", Sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: var(--black-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 52px;
}
.situations__item-text {
  display: block;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E0E0E0;
  font-size: 14px;
  line-height: 155%;
  font-style: italic;
}
.situations__item-author {
  margin-top: auto;
  padding-top: 30px;
  font-size: 14px;
  color: var(--black-alt);
}
.situations__item-author b {
  color: var(--black-text);
  font-weight: 700;
}
.situations__cta {
  width: 100%;
  background: var(--black);
  border-radius: 12px;
  padding: 25px 35px;
  margin-top: 40px;
  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-wrap: wrap;
      flex-wrap: wrap;
}
.situations__cta-text h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 130%;
  color: var(--white);
}
.situations__cta-text p {
  font-weight: 400;
  font-size: 14px;
  color: var(--black-alt-text);
  margin-top: 6px;
}

.unsuitable {
  margin-top: 110px;
  width: 100%;
  display: block;
  padding: 110px 0;
  position: relative;
}
.unsuitable::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: var(--black);
  z-index: 0;
}
.unsuitable .title, .unsuitable__block, .unsuitable__cta {
  position: relative;
  z-index: 2;
}
.unsuitable__block {
  width: calc(100% + 28px);
  margin: 45px -14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.unsuitable__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(33.333% - 28px);
  margin: 0 14px;
  background: var(--white);
  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;
}
.unsuitable__item-image {
  width: 100%;
  height: 250px;
  position: relative;
  background: #eae3d5;
}
.unsuitable__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.unsuitable__item-badge-cross {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 36px;
  height: 36px;
  background: #d9534f;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  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;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.unsuitable__item-content {
  padding: 25px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.unsuitable__item-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--black);
  margin: auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.unsuitable__item-icon img {
  display: block;
  margin: auto;
  width: 25px;
  height: auto;
}
.unsuitable__item-title {
  float: left;
  width: calc(100% - 50px);
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: var(--black-text);
  overflow: hidden;
}
.unsuitable__cta {
  width: 100%;
  background: rgba(156, 143, 123, 0.1);
  border: 1px solid rgba(156, 143, 123, 0.2);
  padding: 35px 45px;
  margin-top: 40px;
  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-wrap: wrap;
      flex-wrap: wrap;
}
.unsuitable__cta-text h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 130%;
  color: var(--white);
}
.unsuitable__cta-text p {
  font-weight: 400;
  font-size: 14px;
  color: var(--black-alt-text);
  margin-top: 6px;
}

.faq {
  margin-top: 110px;
  width: 100%;
  padding: 110px 0;
  position: relative;
}
.faq::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: #E0E0E0;
  z-index: 0;
}
.faq .title, .faq__block {
  position: relative;
  z-index: 2;
}
.faq__block {
  width: 100%;
  margin: 60px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.faq__aside {
  width: 45%;
}
.faq__aside-scroll {
  width: 100%;
}
.faq__image {
  width: 100%;
  overflow: hidden;
}
.faq__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.faq__content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 55%;
  padding-left: 50px;
}
.faq__item {
  width: 100%;
  padding: 30px 0;
  border-bottom: 1px solid rgba(156, 143, 123, 0.2);
}
.faq__item:first-child {
  padding-top: 0;
}
.faq__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.faq__item.is-active .faq__item-arrow::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  opacity: 1;
}
.faq__item.is-active .faq__item-arrow::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.faq__item-arrow {
  float: left;
  width: 20px;
  height: 20px;
  margin-left: auto;
  position: relative;
}
.faq__item-arrow::before, .faq__item-arrow::after {
  content: "";
  position: absolute;
  background: #000;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  top: 50%;
  left: 50%;
}
.faq__item-arrow::before {
  width: 2px;
  height: 14px;
  margin-top: -7px;
  margin-left: -1px;
  opacity: 0;
}
.faq__item-arrow::after {
  width: 14px;
  height: 2px;
  margin-top: -1px;
  margin-left: -7px;
}
.faq__item-name {
  display: block;
  font-family: "Telex", Sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 135%;
  color: var(--black-text);
}
.faq__item-body {
  width: 100%;
  margin-top: 15px;
  font-size: 18px;
  line-height: 155%;
  color: var(--black-text);
}
.faq__item-body p {
  display: block;
  margin-top: 10px;
}
.faq__item-body p:first-child {
  margin-top: 0;
}

.footer {
  width: 100%;
  display: block;
  position: relative;
  margin-top: 110px;
  background: var(--black);
}
.footer__promo {
  width: 100%;
  padding-top: 80px;
  overflow: hidden;
}
.footer__promo-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
.footer__promo-title {
  font-family: "Telex", Sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 125%;
  color: var(--white);
}
.footer__promo-title span {
  font-style: italic;
  color: var(--accent-alt);
}
.footer__promo-action {
  padding-top: 5px;
}
.footer__massive-text {
  width: 100%;
  font-weight: 900;
  font-size: clamp(60px, 15vw, 240px);
  line-height: 0.85;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.2em;
  margin-top: 40px;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.footer__massive-text span {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  margin-left: 50%;
  -webkit-transform: translateX(-49%);
      -ms-transform: translateX(-49%);
          transform: translateX(-49%);
}
.footer__main {
  width: 100%;
  margin-top: 90px;
}
.footer__grid {
  width: 100%;
  margin: 0;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid rgba(156, 143, 123, 0.15);
}
.footer__col {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__col--info {
  width: 36%;
  padding-right: 40px;
}
.footer__col--links {
  width: 16%;
}
.footer__col-title {
  display: block;
  font-weight: 700;
  font-size: 12px;
  line-height: 140%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black-alt-text);
  margin-bottom: 25px;
}
.footer__logo {
  display: block;
}
.footer__logo img {
  display: block;
  width: auto;
  height: 24px;
}
.footer__desc {
  display: block;
  font-size: 14px;
  line-height: 150%;
  color: var(--white);
  margin-top: 15px;
  max-width: 320px;
}
.footer__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 15px;
}
.footer__badge {
  display: inline-block;
  border: 1px solid rgba(156, 143, 123, 0.3);
  border-radius: 20px;
  padding: 8px 15px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: var(--black-alt-text);
  margin-right: 8px;
  margin-bottom: 8px;
}
.footer__menu {
  display: block;
}
.footer__menu li {
  display: block;
  margin-top: 14px;
}
.footer__menu li:first-child {
  margin-top: 0;
}
.footer__menu a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--white);
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__menu a:hover {
  opacity: 1;
}
.footer__bottom {
  width: 100%;
  border-top: 1px solid rgba(156, 143, 123, 0.15);
  margin-top: 0;
  padding: 30px 0;
  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-wrap: wrap;
      flex-wrap: wrap;
}
.footer__copy {
  font-size: 12px;
  color: var(--white);
}
.footer__legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__legal a {
  font-size: 12px;
  color: var(--white);
  margin-left: 20px;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
.footer__legal a:first-child {
  margin-left: 0;
}
.footer__legal a:hover {
  color: var(--white-alt);
}

.solutions {
  margin-top: 110px;
  width: 100%;
}
.solutions__block {
  width: calc(100% + 28px);
  margin: 40px -14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.solutions__item {
  width: calc(33.333% - 28px);
  margin: 0 14px 28px;
  background: var(--white-alt);
  border-radius: 12px;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid rgba(156, 143, 123, 0.1);
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.solutions__item:hover {
  border-color: rgba(156, 143, 123, 0.3);
}
.solutions__item:hover .solutions__item-arrow {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.solutions__item:hover .solutions__item-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.solutions__item:hover .solutions__item-desc {
  color: var(--black);
}
.solutions__item-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 8px;
  overflow: hidden;
}
.solutions__item-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.solutions__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 20px;
  padding: 0 8px 10px;
}
.solutions__item-content:last-child {
  padding-right: 0;
}
.solutions__item-icon {
  width: 42px;
  height: 42px;
  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;
  background: rgba(156, 143, 123, 0.1);
  border-radius: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
}
.solutions__item-icon img {
  max-width: 22px;
  height: auto;
}
.solutions__item-info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-right: 15px;
}
.solutions__item-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  color: var(--black-text);
}
.solutions__item-desc {
  font-size: 14px;
  line-height: 145%;
  color: var(--black-alt);
  margin-top: 6px;
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}
.solutions__item-arrow {
  width: 12px;
  height: 12px;
  background: url(../img/icon-arrow2-black.svg) center/contain no-repeat;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 4px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.solutions__but {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.room-check {
  margin-top: 110px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: var(--white-alt);
  padding: 110px 0;
  position: relative;
}
.room-check::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: var(--white-alt);
  z-index: 0;
}
.room-check__content {
  width: 44%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}
.room-check__content .title__name {
  font-size: 48px;
}
.room-check__content .title__desc {
  color: var(--black-alt);
}
.room-check__list {
  width: 100%;
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.room-check__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(156, 143, 123, 0.15);
  margin-top: 10px;
}
.room-check__item:first-child {
  margin-top: 0;
}
.room-check__item-icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 25px;
}
.room-check__item-icon img {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
.room-check__item-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--black-text);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.room-check__item-num {
  width: 28px;
  height: 28px;
  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;
  background: #b09e89;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.room-check__actions {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.room-check__subtext {
  margin-top: 15px;
  font-size: 13px;
  color: var(--black-alt);
  padding-left: 5px;
}
.room-check__media {
  width: 52%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}
.room-check__image {
  width: 100%;
  height: auto;
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
}
.room-check__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.room-check__tip {
  margin-top: 30px;
  background: rgba(156, 143, 123, 0.06);
  border-radius: 12px;
  padding: 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.room-check__tip-icon {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.room-check__tip-icon img {
  width: 100%;
  height: auto;
}
.room-check__tip-text {
  font-size: 16px;
  line-height: 150%;
  color: var(--black-alt);
}
.room-check__tip-text strong, .room-check__tip-text b {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--black-text);
  margin-bottom: 4px;
}

.kitchen-shapes {
  margin-top: 110px;
  width: 100%;
}
.kitchen-shapes__block {
  width: calc(100% + 20px);
  margin: 40px -10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.kitchen-shapes__item {
  width: calc(100% - 20px);
  margin: 0 10px 20px;
  background: var(--white-alt);
  border: 1px solid rgba(156, 143, 123, 0.12);
  border-radius: 12px;
  padding: 15px 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: border-color 0.3s, -webkit-transform 0.3s;
  transition: border-color 0.3s, -webkit-transform 0.3s;
  -o-transition: border-color 0.3s, transform 0.3s;
  transition: border-color 0.3s, transform 0.3s;
  transition: border-color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.kitchen-shapes__item[href]:hover {
  border-color: rgba(156, 143, 123, 0.3);
}
.kitchen-shapes__item[href]:hover .kitchen-shapes__item-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.kitchen-shapes__item[href]:hover .kitchen-shapes__item-features li {
  color: var(--black);
}
.kitchen-shapes__item-name {
  display: block;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
  font-family: "Telex", Sans-serif;
  color: var(--black-text);
}
.kitchen-shapes__item-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 8px;
  background: #E0E0E0;
  overflow: hidden;
}
.kitchen-shapes__item-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.kitchen-shapes__item-features {
  width: 100%;
  margin-top: 15px;
  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: 10px;
}
.kitchen-shapes__item-features li {
  font-size: 13px;
  line-height: 140%;
  color: var(--black-alt);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}
.kitchen-shapes__item-features li img {
  display: block;
  height: auto;
  width: 14px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.kitchen-shapes__but {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.kitchen-config {
  margin-top: 110px;
  width: 100%;
}
.kitchen-config__block {
  width: calc(100% + 28px);
  margin: 40px -14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.kitchen-config__col {
  width: calc(33.333% - 28px);
  margin: 0 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.kitchen-config__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--black);
}
.kitchen-config__label img {
  width: 16px;
  height: auto;
  margin-right: 10px;
}
.kitchen-config__label::after {
  content: "";
  float: left;
  width: 100%;
  height: 1px;
  margin: auto 0 auto 15px;
  background: var(--black-alt);
}
.kitchen-config__circle-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  background: #fff url(../img/icon-arrow2-black.svg) center/10px no-repeat;
  border-radius: 50%;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 5;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.kitchen-config__colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 20px);
  margin: 0 -10px;
}
.kitchen-config__color-item {
  width: calc(50% - 20px);
  margin: 0 10px 20px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
}
.kitchen-config__color-item[href]:hover .kitchen-config__color-box {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}
.kitchen-config__color-box {
  width: 100%;
  height: 95px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(156, 143, 123, 0.15);
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
.kitchen-config__color-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kitchen-config__color-name {
  font-size: 14px;
  color: var(--black);
  margin-top: 10px;
  text-align: center;
}
.kitchen-config__surface {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  height: 100%;
}
.kitchen-config__surface-item {
  width: 100%;
  height: calc(50% - 10px);
  height: 270px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  cursor: pointer;
}
.kitchen-config__surface-item[href]:hover .kitchen-config__circle-arrow {
  -webkit-transform: scale(1.08);
      -ms-transform: scale(1.08);
          transform: scale(1.08);
}
.kitchen-config__surface-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.kitchen-config__surface-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.kitchen-config__surface-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -o-linear-gradient(83deg, rgba(39, 29, 20, 0.5) 20%, rgba(102, 102, 102, 0) 50%);
  background: linear-gradient(7deg, rgba(39, 29, 20, 0.5) 20%, rgba(102, 102, 102, 0) 50%);
}
.kitchen-config__surface-title {
  position: relative;
  z-index: 2;
  font-family: "Telex", Sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
}
.kitchen-config__style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  height: 100%;
}
.kitchen-config__style-item {
  width: 100%;
  height: 128.5px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  cursor: pointer;
}
.kitchen-config__style-item[href]:hover .kitchen-config__circle-arrow {
  -webkit-transform: scale(1.08);
      -ms-transform: scale(1.08);
          transform: scale(1.08);
}
.kitchen-config__style-item .kitchen-config__circle-arrow {
  right: 15px;
  bottom: 15px;
}
.kitchen-config__style-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.kitchen-config__style-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.kitchen-config__style-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -o-linear-gradient(83deg, rgba(39, 29, 20, 0.5) 20%, rgba(102, 102, 102, 0) 50%);
  background: linear-gradient(7deg, rgba(39, 29, 20, 0.5) 20%, rgba(102, 102, 102, 0) 50%);
}
.kitchen-config__style-title {
  position: relative;
  z-index: 2;
  font-family: "Telex", Sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}
.kitchen-config__but {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.variant-check {
  margin-top: 110px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: var(--white-alt);
  padding: 110px 0;
  position: relative;
}
.variant-check::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: var(--white-alt);
  z-index: 0;
}
.variant-check__content {
  width: 44%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}
.variant-check__content .title__name {
  font-size: 48px;
}
.variant-check__item-check {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 30px;
}
.variant-check__item-check-icon {
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.variant-check__item-check-icon img {
  width: 100%;
  height: auto;
}
.variant-check__item-check-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.variant-check__item-check-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-text);
}
.variant-check__item-check-desc {
  font-size: 15px;
  color: var(--black-alt);
  margin-top: 4px;
}
.variant-check__list {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.variant-check__list-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-text);
  margin-bottom: 5px;
}
.variant-check__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid rgba(156, 143, 123, 0.15);
  margin-top: 10px;
}
.variant-check__item:first-child {
  margin-top: 10px;
}
.variant-check__item-icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 25px;
}
.variant-check__item-icon img {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
.variant-check__item-text {
  font-size: 17px;
  font-weight: 500;
  color: var(--black-text);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.variant-check__actions {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.variant-check__actions .btn {
  width: 100%;
}
.variant-check__subtext {
  margin-top: 15px;
  font-size: 13px;
  color: var(--black-alt);
  padding-left: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.variant-check__subtext img {
  width: 14px;
  height: auto;
  margin-right: 8px;
}
.variant-check__media {
  width: 52%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}
.variant-check__image {
  width: 100%;
  height: auto;
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
}
.variant-check__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.variant-check__tip {
  margin-top: 30px;
  background: rgba(156, 143, 123, 0.06);
  border-radius: 12px;
  padding: 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.variant-check__tip-icon {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.variant-check__tip-icon img {
  width: 100%;
  height: auto;
}
.variant-check__tip-text {
  font-size: 16px;
  line-height: 150%;
  color: var(--black-alt);
}
.variant-check__tip-text strong, .variant-check__tip-text b {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--black-text);
  margin-bottom: 4px;
}

.tabletop-check {
  margin-top: 110px;
  width: 100%;
  position: relative;
}
.tabletop-check.alt {
  background: var(--white-alt);
  padding: 110px 0;
}
.tabletop-check.alt::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: var(--white-alt);
  z-index: 0;
}
.tabletop-check__top {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
.tabletop-check__content {
  width: 38%;
}
.tabletop-check__content:first-child:last-child {
  width: 100%;
}
.tabletop-check__content:first-child:last-child .title {
  text-align: center;
}
.tabletop-check__content:first-child:last-child .title__but {
  display: flex;
  justify-content: center;
}
.tabletop-check__content .title__name {
  font-size: 48px;
}
.tabletop-check__media {
  width: 60%;
  margin-left: auto;
}
.tabletop-check__image {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.tabletop-check__image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.tabletop-check__grid {
  width: 100%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}
.tabletop-check__col {
  width: 49%;
  border-radius: 12px;
  padding: 20px;
}
.tabletop-check__col.success {
  background: rgba(201, 239, 165, 0.05);
  border: 1px solid var(--accent-alt);
}
.tabletop-check__col.success .tabletop-check__status-icon {
  background: var(--accent-alt);
}
.tabletop-check__col.success .tabletop-check__item::before {
  background: var(--accent-alt);
}
.tabletop-check__col.success .tabletop-check__item-icon {
  background: rgba(201, 239, 165, 0.5);
}
.tabletop-check__col.warning {
  background: rgba(201, 239, 165, 0.05);
  border: 1px solid #E0E0E0;
}
.tabletop-check__col.warning .tabletop-check__status-icon {
  background: #E0E0E0;
}
.tabletop-check__col.warning .tabletop-check__item::before {
  background: #E0E0E0;
}
.tabletop-check__col.warning .tabletop-check__item-icon {
  background: rgba(236, 228, 212, 0.5);
}
.tabletop-check__col.error {
  background: rgba(226, 144, 130, 0.05);
  border: 1px solid rgba(226, 144, 130, 0.5);
}
.tabletop-check__col.error .tabletop-check__status-icon {
  background: rgba(226, 144, 130, 0.5);
}
.tabletop-check__col.error .tabletop-check__item::before {
  background: rgba(226, 144, 130, 0.5);
}
.tabletop-check__col.error .tabletop-check__item-icon {
  background: rgba(226, 144, 130, 0.5);
}
.tabletop-check__list-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--black-text);
  margin-bottom: 20px;
}
.tabletop-check__list-chance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--black-text);
  margin-bottom: 20px;
  margin-top: -10px;
}
.tabletop-check__status-icon {
  float: left;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tabletop-check__status-icon img {
  width: 14px;
  margin: auto;
  height: auto;
}
.tabletop-check__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.tabletop-check__desc {
  display: block;
  font-size: 18px;
  margin-bottom: 20px;
}
.tabletop-check__desc b {
  font-weight: 600;
}
.tabletop-check__desc p {
  margin-top: 10px;
  display: block;
}
.tabletop-check__desc p:first-child {
  margin-top: 0;
}
.tabletop-check__item {
  padding-top: 10px;
  margin-top: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
  position: relative;
}
.tabletop-check__item::before {
  content: "";
  position: absolute;
  width: calc(100% - 52px);
  height: 1px;
  top: 0;
  right: 0;
}
.tabletop-check__item:first-child {
  margin-top: 0;
  padding-top: 0;
}
.tabletop-check__item:first-child::before {
  display: none;
}
.tabletop-check__item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
}
.tabletop-check__item-icon img {
  margin: auto;
  max-width: 16px;
  max-height: 16px;
  height: auto;
}
.tabletop-check__item-text {
  font-size: 16px;
  color: var(--black-text);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.tabletop-check__bottom {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}
.tabletop-check__actions {
  width: 38%;
}
.tabletop-check__tip {
  width: 60%;
  background: rgba(156, 143, 123, 0.06);
  border-radius: 12px;
  padding: 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.tabletop-check__tip:first-child:last-child {
  width: 100%;
}
.tabletop-check__tip-icon {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.tabletop-check__tip-icon img {
  width: 100%;
  height: auto;
}
.tabletop-check__tip-text {
  font-size: 15px;
  line-height: 150%;
  color: var(--black-alt);
}
.tabletop-check__tip-text strong, .tabletop-check__tip-text b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-text);
  margin-bottom: 4px;
}
.tabletop-check__info {
  width: calc(100% + 16px);
  margin: 15px -8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tabletop-check__info.full .tabletop-check__info-item {
  width: calc(100% - 16px);
}
.tabletop-check__info-item {
  width: calc(100% - 16px);
  margin: 16px 8px 0;
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
  padding: 20px 16px 16px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background: var(--white-alt);
}
.tabletop-check__info-item.large .tabletop-check__info-icon {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.tabletop-check__info-item.large .tabletop-check__info-icon img {
  width: 40px;
}
.tabletop-check__info-item.large .tabletop-check__info-name {
  font-size: 20px;
}
.tabletop-check__info-item.large .tabletop-check__info-desc {
  font-size: 16px;
  padding: 0 20px;
  color: var(--black-text);
}
.tabletop-check__info-link {
  margin-top: auto;
  padding-top: 15px;
}
.tabletop-check__info-icon {
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(201, 239, 165, 0.5);
  border-radius: 50%;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.tabletop-check__info-icon img {
  margin: auto;
  width: 20px;
  height: auto;
}
.tabletop-check__info-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-text);
  font-family: "Telex", Sans-serif;
  margin-top: 15px;
}
.tabletop-check__info-desc {
  font-size: 13px;
  line-height: 145%;
  color: var(--black-alt);
  margin-top: 10px;
}
.tabletop-check__info-list {
  width: 100%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  text-align: left;
}
.tabletop-check__info-list-item {
  font-size: 13px;
  line-height: 140%;
  color: var(--black-text);
  padding-left: 30px;
  position: relative;
}
.tabletop-check__info-list-item.check::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -3px;
  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;
  width: 20px;
  height: 20px;
  font-size: 11px;
  border-radius: 50%;
  font-weight: 500;
  background: rgba(201, 239, 165, 0.5);
  color: var(--black);
}
.tabletop-check__info-list-item.question::before {
  content: "?";
  position: absolute;
  left: 0;
  top: -3px;
  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;
  width: 20px;
  height: 20px;
  font-size: 11px;
  border-radius: 50%;
  font-weight: 500;
  background: rgba(156, 143, 123, 0.15);
  color: var(--black);
}

.material-compare {
  margin-top: 110px;
  width: 100%;
  background: var(--white-alt);
  padding: 110px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.material-compare::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: var(--white-alt);
  z-index: 0;
}
.material-compare__aside {
  width: calc(35% - 30px);
  position: relative;
  z-index: 2;
}
.material-compare__aside .title__name {
  font-size: 48px;
}
.material-compare__info {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.material-compare__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.material-compare__info-icon {
  width: 24px;
  height: 24px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.material-compare__info-icon img {
  width: 100%;
  height: auto;
}
.material-compare__info-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.material-compare__info-text strong, .material-compare__info-text b {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-text);
}
.material-compare__info-text span {
  font-size: 14px;
  color: var(--black-alt);
  margin-top: 4px;
  line-height: 140%;
}
.material-compare__actions {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.material-compare__block {
  float: left;
  width: 65%;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.material-compare__grid {
  width: calc(100% + 20px);
  margin: -20px -10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.material-compare__card {
  margin: 20px 10px 0;
  width: calc(50% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
  overflow: hidden;
}
.material-compare__card.medium {
  width: calc(33.3333% - 20px);
}
.material-compare__card.small {
  width: calc(25% - 20px);
}
.material-compare__card.small .material-compare__card-image {
  height: 120px;
}
.material-compare__card.small .material-compare__card-block {
  padding: 15px;
}
.material-compare__card.small .material-compare__card-name {
  font-size: 18px;
}
.material-compare__card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}
.material-compare__card-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.material-compare__card-block {
  padding: 20px;
}
.material-compare__card-name {
  font-size: 22px;
  font-weight: 700;
  font-family: "Telex", Sans-serif;
  color: var(--black-text);
}
.material-compare__card-features {
  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;
  padding-top: 15px;
  border-top: 1px solid rgba(156, 143, 123, 0.15);
  margin-top: 12px;
}
.material-compare__card-feat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.material-compare__card-feat img {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.material-compare__card-feat span {
  font-size: 13px;
  line-height: 140%;
  color: var(--black);
}
.material-compare__tip {
  margin-top: 30px;
  background: rgba(156, 143, 123, 0.06);
  border-radius: 12px;
  padding: 20px 25px;
  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;
}
.material-compare__tip-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 65%;
}
.material-compare__tip-icon {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.material-compare__tip-icon img {
  width: 100%;
  height: auto;
}
.material-compare__tip-text {
  font-size: 13px;
  line-height: 150%;
  padding-right: 20px;
  color: var(--black-alt);
}
.material-compare__tip-text strong, .material-compare__tip-text b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-text);
  margin-bottom: 4px;
}
.material-compare__benefits {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.material-compare__benefit-item {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.material-compare__benefit-item img {
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
}
.material-compare__benefit-item span {
  font-size: 11px;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
}

.kitchen-card {
  width: 100%;
  margin-top: 110px;
  padding: 110px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.kitchen-card .bread {
  padding-bottom: 0;
}
.kitchen-card:first-child {
  margin-top: -35px !important;
  padding: 60px 0 70px;
}
.kitchen-card::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: var(--black);
  z-index: 0;
}
.kitchen-card__media {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}
.kitchen-card__slider-big {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.kitchen-card__big-item {
  width: 100%;
  height: 440px;
}
.kitchen-card__big-item img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.kitchen-card__slider-nav {
  width: 100%;
  margin-top: 16px;
  padding: 0 55px;
  position: relative;
}
.kitchen-card__slider-nav .slick-arrow {
  background-color: var(--white);
  background-image: url(../img/icon-arrow1-black.svg);
}
.kitchen-card__slider-nav .slick-prev {
  left: 0;
}
.kitchen-card__slider-nav .slick-next {
  right: 0;
  left: auto;
}
.kitchen-card__thumb {
  height: 85px;
  margin: 0 6px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  -webkit-transition: opacity 0.3s, border-color 0.3s;
  -o-transition: opacity 0.3s, border-color 0.3s;
  transition: opacity 0.3s, border-color 0.3s;
  border: 1px solid transparent;
}
.kitchen-card__thumb img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.kitchen-card__thumb:hover {
  opacity: 1;
}
.kitchen-card__thumb.slick-current {
  opacity: 1;
  border-color: var(--accent-alt);
}
.kitchen-card__content {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.kitchen-card__content .title__name {
  font-size: 38px;
  line-height: 120%;
}
.kitchen-card__content .title__desc {
  font-size: 16px;
  color: var(--black-alt-text);
}
.kitchen-card__specs {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: 1px solid rgba(244, 239, 228, 0.1);
}
.kitchen-card__spec-item {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(244, 239, 228, 0.1);
}
.kitchen-card__spec-item.full {
  width: 100%;
}
.kitchen-card__spec-icon {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0.7;
}
.kitchen-card__spec-icon img {
  margin: auto;
  width: 100%;
  max-width: 100%;
  height: auto;
}
.kitchen-card__spec-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: 2px;
}
.kitchen-card__spec-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black-alt-text);
}
.kitchen-card__spec-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.kitchen-card__actions {
  margin-top: 35px;
}
.kitchen-card__benefits {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.kitchen-card__benefit-item {
  font-size: 12px;
  color: var(--black-alt-text);
  padding-left: 18px;
  position: relative;
}
.kitchen-card__benefit-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--accent-alt);
  font-size: 12px;
  font-weight: 700;
}

.price-factors {
  margin-top: 110px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.price-factors.alt {
  padding: 110px 0;
}
.price-factors.alt.black::before {
  background: var(--black);
}
.price-factors.alt.black .price-factors__timelin-num {
  background: var(--accent-alt);
  color: var(--black);
}
.price-factors.alt.black .price-factors__timelin-name, .price-factors.alt.black .price-factors__timelin-desc {
  color: var(--white);
}
.price-factors.alt::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: #E0E0E0;
  z-index: 0;
}
.price-factors__content {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}
.price-factors__content.alt {
  width: 33%;
}
.price-factors__content.alt .title__name {
  font-size: 36px;
}
.price-factors__content.alt .title__desc {
  margin-top: 15px;
}
.price-factors__content.alt .title .price-factors__actions {
  margin-top: 15px;
}
.price-factors__content .title__name {
  font-size: 42px;
  line-height: 120%;
}
.price-factors__content .title__name.small {
  font-size: 36px;
}
.price-factors__content .title__desc {
  font-size: 16px;
}
.price-factors__content .title__desc p {
  margin-top: 10px;
}
.price-factors__actions {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.price-factors__actions:has(.btn:nth-child(2)) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.price-factors__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(67% + 16px);
  margin: -16px -8px 0;
  position: relative;
  z-index: 2;
}
.price-factors__item {
  width: calc(50% - 16px);
  margin: 16px 8px 0;
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
  padding: 15px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: var(--white);
}
.price-factors__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--black);
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.price-factors__item-icon img {
  margin: auto;
  width: 20px;
  height: auto;
}
.price-factors__item-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.price-factors__item-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--black-text);
  font-family: "Telex", Sans-serif;
}
.price-factors__item-desc {
  font-size: 13px;
  line-height: 145%;
  color: var(--black-alt);
  margin-top: 6px;
}
.price-factors__tip {
  width: calc(100% - 16px);
  margin: 16px 8px 0;
  background: var(--white);
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
  padding: 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.price-factors__tip-icon {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.price-factors__tip-icon img {
  width: 100%;
  height: auto;
}
.price-factors__tip-text {
  font-size: 15px;
  line-height: 150%;
  color: var(--black-alt);
}
.price-factors__tip-text strong, .price-factors__tip-text b {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-text);
  margin-bottom: 4px;
}
.price-factors__info {
  width: calc(67% + 16px);
  margin: -16px -8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}
.price-factors__info-item {
  width: calc(33.333% - 16px);
  margin: 16px 8px 0;
  background: var(--white);
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
  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;
}
.price-factors__info-image {
  width: 100%;
  height: 190px;
}
.price-factors__info-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.price-factors__info-content {
  padding: 20px 20px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.price-factors__info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(201, 239, 165, 0.5);
  margin-bottom: 15px;
}
.price-factors__info-icon img {
  margin: auto;
  width: 16px;
  height: auto;
}
.price-factors__info-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-text);
  font-family: "Telex", Sans-serif;
  line-height: 130%;
}
.price-factors__info-desc {
  font-size: 16px;
  line-height: 145%;
  margin-top: 10px;
}
.price-factors__timelin {
  width: 67%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 2;
}
.price-factors__timelin-item {
  width: calc(25% - 12px);
  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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
}
.price-factors__timelin-item:has(.price-factors__timelin-image)::after {
  display: none;
}
/*.price-factors__timelin-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  left: calc(50% + 40px);
  width: calc(100% - 80px);
  height: 1px;
  background: rgba(156, 143, 123, 0.25);
  z-index: 1;
}*/
.price-factors__timelin-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
  z-index: 2;
}
.price-factors__timelin-wrap:has(.price-factors__timelin-image) {
  width: 100%;
  height: 120px;
}
.price-factors__timelin-wrap:has(.price-factors__timelin-image) .price-factors__timelin-num {
  display: none;
}
.price-factors__timelin-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--white-alt);
  border: 1px solid rgba(156, 143, 123, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.price-factors__timelin-icon img {
  margin: auto;
  width: 24px;
  height: auto;
}
.price-factors__timelin-image {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(156, 143, 123, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}
.price-factors__timelin-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.price-factors__timelin-num {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 22px;
  height: 22px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  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;
  font-size: 11px;
  font-weight: 700;
  z-index: 3;
}
.price-factors__timelin-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 135%;
  color: var(--black-text);
  padding: 0 12px;
}
.price-factors__timelin-desc {
  font-size: 16px;
  line-height: 145%;
  margin-top: 10px;
  padding: 0 12px;
}
.price-factors__table {
  width: 64%;
  position: relative;
  z-index: 2;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.price-factors__table-responsive {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(156, 143, 123, 0.15);
  background: var(--white-alt);
}
.price-factors__table table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 650px;
}
.price-factors__table table th, .price-factors__table table td {
  padding: 20px 20px;
  font-size: 16px;
  line-height: 140%;
  border-bottom: 1px solid rgba(156, 143, 123, 0.12);
  vertical-align: middle;
}
.price-factors__table table th {
  font-weight: 600;
  color: #4A3E3D;
  background: rgba(156, 143, 123, 0.05);
  font-size: 16px;
  letter-spacing: 0.02em;
}
.price-factors__table table tr:last-child td {
  border-bottom: none;
}
.price-factors__table table td {
  color: var(--black-text);
}
.price-factors__table table td strong, .price-factors__table table td b {
  font-weight: 700;
  color: var(--black-text);
  font-family: "Telex", Sans-serif;
}
.price-factors__cards {
  width: 67%;
  position: relative;
  z-index: 2;
}
.price-factors__cards .price-factors__tip {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.price-factors__cards-grid {
  width: calc(100% + 10px);
  margin: -10px -5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.price-factors__cards-item {
  width: calc(20% - 10px);
  margin: 10px 5px 0;
  background: var(--white);
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
  padding: 30px 15px 24px;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
}
.price-factors__cards-num {
  position: absolute;
  top: 20px;
  left: calc(50% - 30px);
  width: 22px;
  height: 22px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  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;
  font-size: 11px;
  font-weight: 700;
}
.price-factors__cards-icon {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(201, 239, 165, 0.5);
  border-radius: 50%;
  margin-bottom: 20px;
}
.price-factors__cards-icon img {
  margin: auto;
  width: 20px;
  height: auto;
}
.price-factors__cards-name {
  font-size: 15px;
  font-weight: 700;
  line-height: 135%;
  color: var(--black-text);
}
.price-factors__cards-desc {
  font-size: 12px;
  line-height: 145%;
  color: var(--black-alt);
  margin-top: 10px;
}
.price-factors__form {
  width: 64%;
  position: relative;
  z-index: 2;
}

.glob-form {
  width: calc(100% + 16px);
  margin: -16px -8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.glob-form__subtext {
  width: calc(100% - 16px);
  margin: 20px 8px 0;
  font-size: 13px;
  line-height: 145%;
  color: var(--black-alt-text);
  text-align: center;
}

.field {
  margin: 16px 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.field:has(select)::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: url(../img/icon-arrow1-black.svg) center/contain no-repeat;
  top: calc(50% - 6px);
  right: 20px;
}
.field.large {
  width: calc(100% - 16px);
}
.field.medium {
  width: calc(50% - 16px);
}
.field.small {
  width: calc(33.333% - 16px);
}
.field input[type=text], .field input[type=email], .field input[type=tel], .field select, .field textarea {
  width: 100% !important;
  height: 54px !important;
  background: var(--white-alt) !important;
  border-radius: 8px !important;
  padding: 0 20px !important;
  font-size: 15px !important;
  color: var(--black-text) !important;
  border: 1px solid transparent !important;
  -webkit-transition: border-color 0.3s, background-color 0.3s;
  -o-transition: border-color 0.3s, background-color 0.3s;
  transition: border-color 0.3s, background-color 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.field textarea {
  padding: 10px 20px !important;
}
.field input[type=text]::-webkit-input-placeholder, .field input[type=email]::-webkit-input-placeholder, .field input[type=tel]::-webkit-input-placeholder, .field select::-webkit-input-placeholder, .field textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.field input[type=text]::-moz-placeholder, .field input[type=email]::-moz-placeholder, .field input[type=tel]::-moz-placeholder, .field select::-moz-placeholder, .field textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.field input[type=text]:-ms-input-placeholder, .field input[type=email]:-ms-input-placeholder, .field input[type=tel]:-ms-input-placeholder, .field select:-ms-input-placeholder, .field textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.field input[type=text]::-ms-input-placeholder, .field input[type=email]::-ms-input-placeholder, .field input[type=tel]::-ms-input-placeholder, .field select::-ms-input-placeholder, .field textarea::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.field input[type=text]::placeholder, .field input[type=email]::placeholder, .field input[type=tel]::placeholder, .field select::placeholder, .field textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.field input[type=text]:focus, .field input[type=email]:focus, .field input[type=tel]:focus, .field select:focus, .field textarea:focus {
  background: var(--white);
  border-color: rgba(156, 143, 123, 0.4);
}
.field select {
  background: var(--white-alt);
  cursor: pointer;
}
.field select:invalid, .field select option[value=""] {
  color: rgba(0, 0, 0, 0.4);
}
.field textarea {
  padding: 16px 20px;
  height: auto;
  min-height: 54px;
  resize: vertical;
}
.field.btn-field {
  margin-top: 24px;
}
.field.btn-field .btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 0 0;
}
.hero__container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.hero__search {
  width: 100%;
  max-width: 680px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 45px auto 0;
  gap: 20px;
}
.hero__search-input {
  width: calc(50% - 10px);
  position: relative;
  z-index: 12;
}
.hero__search-input:first-child:last-child {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.hero__search-input.active input:focus + ul {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.hero__search-input::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% - 9px);
  left: 20px;
  background: url(../img/icon-search.svg) center/contain no-repeat;
  z-index: 2;
  pointer-events: none;
}
.hero__search-input input {
  display: block;
  width: 100% !important;
  font-size: 15px !important;
  color: var(--black-text);
  height: 56px !important;
  background: var(--white-alt);
  border-radius: 12px;
  padding: 0 20px 0 50px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(156, 143, 123, 0.2) !important;
  position: relative;
  z-index: 1;
}
.hero__search-input input::-webkit-input-placeholder {
  color: var(--black-alt);
}
.hero__search-input input::-moz-placeholder {
  color: var(--black-alt);
}
.hero__search-input input:-ms-input-placeholder {
  color: var(--black-alt);
}
.hero__search-input input::-ms-input-placeholder {
  color: var(--black-alt);
}
.hero__search-input input::placeholder {
  color: var(--black-alt);
}
.hero__search-input ul {
  position: absolute;
  width: 100%;
  left: 0;
  top: calc(100% - 12px);
  border-radius: 12px;
  background: var(--white-alt);
  padding: 20px 10px 10px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  max-height: 220px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: visibility 0.5s, opacity 0.5s;
  -o-transition: visibility 0.5s, opacity 0.5s;
  transition: visibility 0.5s, opacity 0.5s;
}
.hero__search-input ul > li {
  display: block;
  margin-top: 5px;
  position: relative;
}
.hero__search-input ul > li:first-child {
  margin: 0;
}
.hero__search-input ul > li:hover > a {
  background: var(--accent-alt);
  color: var(--accent);
}
.hero__search-input ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  height: 36px;
  border-radius: 8px;
  padding: 0 20px;
  background: var(--white);
  color: var(--black-text);
  font-size: 16px;
  -webkit-transition: background 0.5s, color 0.5s;
  -o-transition: background 0.5s, color 0.5s;
  transition: background 0.5s, color 0.5s;
}
.hero__search-btn {
  width: calc(50% - 10px);
}

.city-selection {
  margin-top: 110px;
  width: 100%;
}
.city-selection__grid {
  width: calc(100% + 16px);
  margin: 30px -8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.city-selection__item {
  width: calc(25% - 16px);
  margin: 16px 8px 0;
  background: var(--white-alt);
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
  padding: 18px 24px;
  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;
  cursor: pointer;
  -webkit-transition: border-color 0.3s, background-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, background-color 0.3s, -webkit-box-shadow 0.3s;
  -o-transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, background-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.city-selection__item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--black-text);
}
.city-selection__item::after {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../img/icon-arrow2-black.svg) center/contain no-repeat;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.city-selection__item:hover {
  background: var(--white);
  border-color: rgba(156, 143, 123, 0.4);
  -webkit-box-shadow: 0 4px 15px rgba(39, 29, 20, 0.03);
          box-shadow: 0 4px 15px rgba(39, 29, 20, 0.03);
}
.city-selection__item:hover::after {
  color: var(--black-text);
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}

.city-cards {
  margin-top: 110px;
  width: 100%;
}
.city-cards__grid {
  width: calc(100% + 16px);
  margin: 30px -8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.city-cards__item {
  width: calc(25% - 16px);
  height: 180px;
  margin: 16px 8px 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  cursor: pointer;
}
.city-cards__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(39, 29, 20, 0.1)), to(rgba(39, 29, 20, 0.85)));
  background: -o-linear-gradient(top, rgba(39, 29, 20, 0.1) 0%, rgba(39, 29, 20, 0.85) 100%);
  background: linear-gradient(180deg, rgba(39, 29, 20, 0.1) 0%, rgba(39, 29, 20, 0.85) 100%);
  z-index: 2;
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.city-cards__item:hover::before {
  opacity: 1;
}
.city-cards__item:hover .city-cards__item-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.city-cards__item:hover .city-cards__item-arrow {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.city-cards__item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.city-cards__item-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.city-cards__item-content {
  width: 100%;
  position: relative;
  z-index: 3;
  padding: 20px 24px;
  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;
}
.city-cards__item-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}
.city-cards__item-arrow {
  width: 10px;
  height: 10px;
  background: url(../img/icon-arrow2-white.svg) center/contain no-repeat;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.process-sticky {
  margin-top: 110px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.process-sticky__media {
  width: 44%;
}
.process-sticky__image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(156, 143, 123, 0.15);
}
.process-sticky__image img {
  width: 100%;
  height: auto;
  display: block;
}
.process-sticky__content {
  width: 52%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.process-sticky__content .title__name {
  font-size: 44px;
  line-height: 120%;
}
.process-sticky__list {
  width: 100%;
  margin-top: 35px;
  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;
}
.process-sticky__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: var(--white-alt);
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
  padding: 25px 30px;
}
.process-sticky__item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(156, 143, 123, 0.1);
  margin-right: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
.process-sticky__item-icon img {
  margin: auto;
  width: auto;
  height: 16px;
}
.process-sticky__item-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.process-sticky__item-meta {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black-alt);
}
.process-sticky__item-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--black-text);
  font-family: "Telex", Sans-serif;
  margin-top: 6px;
}
.process-sticky__item-desc {
  font-size: 16px;
  line-height: 150%;
  color: var(--black-text);
  margin-top: 10px;
}
.process-sticky__actions {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.studios-match {
  margin-top: 110px;
  width: 100%;
}
.studios-match__grid {
  width: calc(100% + 16px);
  margin: 20px -8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.studios-match__slider {
  width: calc(100% + 16px);
  margin: 20px -8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.studios-match__item {
  width: calc(33.333% - 16px);
  margin: 16px 8px 0;
  background: var(--white-alt);
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.studios-match__item-cap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.studios-match__item-logo {
  width: 50px;
  height: 50px;
  background: var(--white);
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 6px;
  padding: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.studios-match__item-logo img {
  margin: auto;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
.studios-match__item-badge {
  padding: 8px 16px;
  background: rgba(201, 239, 165, 0.4);
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  margin: auto 0 auto auto;
}
.studios-match__item-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--black-text);
  font-family: "Telex", Sans-serif;
  margin-top: 20px;
}
.studios-match__item-desc {
  font-size: 14px;
  color: var(--black-alt);
  margin-top: 6px;
}
.studios-match__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
.studios-match__item-list li {
  height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(156, 143, 123, 0.25);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  color: var(--black-text);
  background: var(--white);
}
.studios-match__item-list li:has(img) {
  font-weight: 600;
  gap: 6px;
}
.studios-match__item-list li:has(img) img {
  width: 13px;
  height: auto;
}
.studios-match__item-bottom {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(156, 143, 123, 0.12);
  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;
}
.studios-match__item-distance {
  font-size: 13px;
  color: var(--black-alt);
}
.studios-match__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.studios-match__item-link .link {
  margin: auto 0;
}

.business-models {
  width: 100%;
  margin-top: 110px;
  padding: 110px 0;
  position: relative;
}
.business-models::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: var(--black);
  z-index: 0;
}
.business-models__container {
  width: 100%;
  position: relative;
  z-index: 2;
}
.business-models__grid {
  width: calc(100% + 16px);
  margin: 30px -8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.business-models__item {
  width: calc(33.333% - 16px);
  margin: 16px 8px 0;
  background: var(--white-alt);
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
  padding: 30px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.business-models__item-cap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  width: 100%;
}
.business-models__item-icon {
  width: 46px;
  height: 46px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--black);
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.business-models__item-icon img {
  margin: auto;
  width: 20px;
  height: auto;
}
.business-models__item-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-text);
  font-family: "Telex", Sans-serif;
  line-height: 130%;
}
.business-models__item-desc {
  font-size: 16px;
  line-height: 145%;
  color: var(--black-text);
  margin-top: 20px;
  font-weight: 500;
}
.business-models__item-list {
  width: 100%;
  margin-top: 20px;
  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;
  list-style-type: none;
  padding: 0;
}
.business-models__item-list li {
  font-size: 14px;
  line-height: 140%;
  color: var(--black-text);
  padding-left: 30px;
  position: relative;
}
.business-models__item-list li.check::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  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;
  width: 20px;
  height: 20px;
  font-size: 11px;
  border-radius: 50%;
  font-weight: 600;
  background: rgba(201, 239, 165, 0.5);
  color: var(--black);
}
.business-models__item-message {
  margin-top: 20px;
  background: rgba(156, 143, 123, 0.06);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 145%;
  color: var(--black-text);
}
.business-models__item-message strong, .business-models__item-message b {
  color: var(--black-text);
}
.business-models__item-btn {
  margin-top: auto;
  padding-top: 20px;
  width: 100%;
}
.business-models__item-btn .btn {
  width: 100%;
}

.about {
  width: 100%;
  margin-top: -35px;
  position: relative;
  padding: 90px 0;
}
.about::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: var(--black);
}
.about__base {
  position: relative;
  z-index: 2;
  width: 55%;
}
.about__base.small {
  width: 48%;
}
.about__image {
  position: absolute;
  width: 55vw;
  left: calc(50% - 5vw);
  top: 0;
  height: 100%;
}
.about__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #271d14), color-stop(70%, rgba(102, 102, 102, 0)));
  background: -o-linear-gradient(left, #271d14 0, rgba(102, 102, 102, 0) 70%);
  background: linear-gradient(90deg, #271d14 0, rgba(102, 102, 102, 0) 70%);
}
.about__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.about .title__but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about .title__but .btn {
  min-width: 50%;
}
.about .kitchen-card__benefits {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.about .quest__data-num {
  color: var(--white);
}
.about .quest__data-num:has(img) {
  border: 1px solid var(--black-alt);
}
.about .quest__data-name {
  font-size: 15px;
  color: var(--black-alt-text);
}

.kitchen-change {
  margin-top: 110px;
  width: 100%;
}
.kitchen-change__container {
  width: calc(100% + 24px);
  margin: 0 -12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.kitchen-change__col {
  width: calc(30% - 24px);
  margin: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.kitchen-change__col.base-col {
  width: calc(40% - 24px);
}
.kitchen-change__col .title__name {
  font-size: 36px;
  line-height: 125%;
}
.kitchen-change__desc {
  font-size: 16px;
  color: var(--black-text);
  font-weight: 500;
  margin-top: 25px;
}
.kitchen-change__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: 12px;
  margin-top: 16px;
  list-style-type: none;
  padding: 0;
}
.kitchen-change__list li {
  font-size: 14px;
  line-height: 140%;
  color: var(--black-text);
  padding-left: 30px;
  position: relative;
}
.kitchen-change__list li.check::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  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;
  width: 20px;
  height: 20px;
  font-size: 11px;
  border-radius: 50%;
  font-weight: 600;
  background: rgba(201, 239, 165, 0.5);
  color: var(--black);
}
.kitchen-change__tip {
  margin-top: 30px;
  background: rgba(156, 143, 123, 0.06);
  border-radius: 12px;
  padding: 16px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.kitchen-change__tip-icon {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.kitchen-change__tip-icon img {
  width: 100%;
  height: auto;
}
.kitchen-change__tip-text {
  font-size: 13px;
  line-height: 145%;
  color: var(--black-text);
  font-weight: 500;
}
.kitchen-change__actions {
  margin-top: auto;
  padding-top: 30px;
}
.kitchen-change__actions .btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.kitchen-change__image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(156, 143, 123, 0.15);
  position: relative;
}
.kitchen-change__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.kitchen-change__steps {
  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;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.kitchen-change__step-card {
  background: var(--white-alt);
  border: 1px solid rgba(156, 143, 123, 0.15);
  border-radius: 12px;
  padding: 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.kitchen-change__step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(156, 143, 123, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
  position: relative;
}
.kitchen-change__step-icon::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 50%;
  border: 1px solid rgba(156, 143, 123, 0.08);
}
.kitchen-change__step-icon img {
  margin: auto;
  width: 18px;
  height: auto;
  position: relative;
  z-index: 2;
}
.kitchen-change__step-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.kitchen-change__step-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-text);
}
.kitchen-change__step-desc {
  font-size: 13px;
  line-height: 140%;
  color: var(--black-alt);
  margin-top: 4px;
}
header > div {
  margin-bottom: 0 !important;
}

.teaser {
  width: 100%;
  position: relative;
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.teaser::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  left: calc(50% - 50vw);
  top: 0;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.teaser__base {
  position: relative;
  z-index: 2;
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.teaser__base .title {
  margin: auto 0;
}
.teaser__image {
  position: absolute;
  width: 65vw;
  right: calc(50% - 15vw);
  top: 0;
  height: 100%;
  z-index: 2;
  opacity: 0.4;
}
.teaser__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, right top, left top, color-stop(0, #271d14), color-stop(70%, rgba(102, 102, 102, 0)));
  background: -o-linear-gradient(right, #271d14 0, rgba(102, 102, 102, 0) 70%);
  background: linear-gradient(-90deg, #271d14 0, rgba(102, 102, 102, 0) 70%);
}
.teaser__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.teaser__form img {
  display: block;
  width: calc(100% + 100px);
  max-width: calc(100% + 100px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teaser__form {
  float: right;
  margin-left: auto;
  width: 42%;
  height: 650px;
  background: var(--black);
  /*overflow: hidden;*/
  position: relative;
  z-index: 2;
}
.teaser__form iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}

.teaser__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 35px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.teaser__badge-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(244, 239, 228, 0.2);
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.teaser__badge-icon {
  width: 28px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.teaser__badge-icon img {
  width: 100%;
  height: auto;
}
.teaser__badge-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  color: var(--white);
}
.teaser__badge-text strong {
  font-size: 16px;
  font-weight: 700;
}
.teaser__badge-text span {
  font-size: 14px;
}
.teaser__review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 35px;
  width: 100%;
}
.teaser__review-avatars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.teaser__review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--black-alt);
  background: #eee;
}
.teaser__review-avatar:not(:first-child) {
  margin-left: -12px;
}
.teaser__review-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.teaser__review-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: 6px;
}
.teaser__review-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
}
.teaser__review-stars img {
  width: 15px;
  height: auto;
}
.teaser__review-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  color: var(--white);
}
.teaser__review-text strong {
  font-size: 16px;
  font-weight: 700;
}
.teaser__review-text span {
  font-size: 14px;
}

.bg-block:first-child {
  margin-top: 0;
}
.bg-block + .bg-block {
  margin-top: 0;
}

.open-modal {
  cursor: pointer;
}
.open-image, .open-video {
  cursor: pointer;
}

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 115;
  -webkit-transition: visibility 0.5s, opacity 0.5s;
  -o-transition: visibility 0.5s, opacity 0.5s;
  transition: visibility 0.5s, opacity 0.5s;
}
.modal.hide {
  visibility: hidden;
  opacity: 0;
}
.modal.hide .modal__cot {
  -webkit-transform: translate(-50%, -50%) scale(0.5);
      -ms-transform: translate(-50%, -50%) scale(0.5);
          transform: translate(-50%, -50%) scale(0.5);
}
.modal.hide.load {
    opacity: 1;
    visibility: visible;
}
.modal.hide.load .modal__bg {
    background: rgba(0, 0, 0, .7) url(../img/load.svg) center/70px no-repeat;
}
.modal__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.7);
}
.modal__video {
  display: block;
  width: 100vw;
  height: auto;
  max-width: 1200px;
  position: relative;
}
.modal__video::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 60%;
}
.modal__video iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.modal__cot {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.modal__cot.image {
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.modal__cot.image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 98vw;
  margin: auto;
}
.modal__close {
  position: absolute;
  width: 40px;
  height: 40px;
  cursor: pointer;
  top: 45px;
  right: 50px;
  z-index: 2;
  border-radius: 50%;
  background: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal__close::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/icon-close2.svg) center/contain no-repeat;
  opacity: 1;
  margin: auto;
}
.modal__block {
  width: 100vw;
  height: auto;
  max-width: 630px;
  max-height: 100vh;
  background: var(--white);
  position: relative;
  padding: 50px;
  border-radius: 12px;
  overflow-x: hidden;
  overflow-y: auto;
}
.modal__logo {
  display: block;
}
.modal__logo img {
  display: block;
  width: auto;
  height: 28px;
}
.modal .title {
  width: 100%;
}
.modal .title:not(:first-child) {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(39, 29, 20, 0.1);
}
.modal .title__name {
  font-size: 42px;
}
.modal__form {
  margin-top: 25px;
  height: 640px;
  overflow: hidden;
}

.text-content {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}
.text *:first-child {
  margin-top: 0;
}
.text > div {
  margin-top: 20px;
}
.text h1, .text h2, .text h3, .text h4, .text h5, .text h6 {
  display: block;
  font-family: "Telex", Sans-serif;
  font-weight: 500;
  margin-top: 20px;
  line-height: 120%;
}
.text h1 {
  font-size: 40px;
}
.text h2 {
  font-size: 36px;
}
.text h3 {
  font-size: 30px;
}
.text h4 {
  font-size: 24px;
}
.text h5 {
  font-size: 20px;
}
.text h6 {
  font-size: 16px;
}
.text iframe {
  border-radius: 10px;
  margin-top: 10px;
}
.text a {
  color: var(--black);
  text-decoration: underline;
}
.text b, .text strong {
  font-weight: 700;
}
.text img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin-top: 10px;
}
.text p {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 140%;
}
.text ul {
  display: block;
  margin-top: 10px;
}
.text ul li {
  display: block;
  padding-left: 18px;
  font-size: 16px;
  line-height: 140%;
  position: relative;
  margin-top: 8px;
}
.text ul li:first-child {
  margin: 0;
}
.text ul li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0;
  top: 7px;
  background: var(--accent);
  -webkit-clip-path: polygon(3px 0, 100% 0, 100% 100%, 0 100%, 0 3px);
          clip-path: polygon(3px 0, 100% 0, 100% 100%, 0 100%, 0 3px);
}
.text ol {
  display: block;
  width: calc(100% - 20px);
  margin-top: 10px;
  margin-left: 0;
  counter-reset: item;
}
.text ol li {
  list-style: none;
  font-size: 16px;
  line-height: 140%;
  margin-top: 4px;
  position: relative;
  padding-left: 30px;
  counter-increment: item;
}
.text ol li:first-child {
  margin: 0;
}
.text ol li::before {
  content: counter(item, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--accent);
}
.text ol li ol, .text ol li ul {
  margin-top: 10px !important;
}
.text table {
  width: 100%;
  margin-top: 15px;
}
.text table tr th {
  padding: 15px 15px 15px 0;
  font-weight: 500;
  font-size: 14px;
  text-align: left;
}
.text table tr td {
  padding: 15px 0;
  border-top: 1px solid #eee;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: none;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
  border: 1px solid #e5e5e5;
}
.cookie-banner.active {
  display: block;
}
.cookie-banner__content {
  padding: 25px;
}
.cookie-banner__title {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
  color: #111;
}
.cookie-banner__text {
  font-size: 14px;
  line-height: 1.45;
  color: #666;
}
.cookie-banner__text a {
  color: inherit;
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.cookie-banner .btn {
  min-width: 180px;
  height: 46px;
  padding: 0 25px;
  font-size: 16px;
  font-weight: 500;
}
.cookie-banner .btn-link {
  min-width: auto;
  background: none;
  border: 0;
  padding: 0 10px;
  color: #555;
  text-decoration: underline;
  cursor: pointer;
}
.cookie-banner .btn-link:hover {
  color: #000;
}

@media screen and (max-width: 1299px) and (min-width: 1024px) {
  .row {
    padding: 0 20px;
  }

  .reviews__slider .slick-prev {
    right: calc(100% + 60px);
  }
  .reviews__slider .slick-next {
    left: calc(100% + 60px);
  }
}
@media screen and (min-width: 1024px) {
  .btn:hover {
    background: var(--black-alt);
  }
  .btn:hover::after {
    -webkit-transform: rotate(45deg) translateY(-1px) translateX(-1px);
        -ms-transform: rotate(45deg) translateY(-1px) translateX(-1px);
            transform: rotate(45deg) translateY(-1px) translateX(-1px);
  }

  .header.fixed {
    -webkit-box-shadow: 0 0 10px rgba(39, 29, 20, 0.1);
            box-shadow: 0 0 10px rgba(39, 29, 20, 0.1);
  }
  .header.fixed .header__block {
    height: 65px;
  }
  .header__nav > ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  .header__nav > ul > li:hover > a {
    color: rgba(244, 239, 228, 0.5);
  }
  .header__nav > ul > li:hover > a::after {
    -webkit-transform: scale(1, -1);
        -ms-transform: scale(1, -1);
            transform: scale(1, -1);
    opacity: 0.5;
  }
  .header__nav > ul > li ul > li:hover > a::after {
    -webkit-transform: rotate(45deg) translateY(-1px) translateX(-1px);
        -ms-transform: rotate(45deg) translateY(-1px) translateX(-1px);
            transform: rotate(45deg) translateY(-1px) translateX(-1px);
  }
}
@media screen and (max-width: 1023px) {
  .row {
    padding: 0 20px;
  }

  .btn {
    height: 48px;
    padding: 0 30px;
  }
  .btn.large {
    height: 54px;
    padding: 0 35px;
    font-size: 16px;
  }
  .btn.large::after {
    margin-left: 12px;
    background-size: 10px auto;
  }
  .btn span {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  .btn::after {
    background-size: 9px auto;
  }

  .header {
    border-bottom: 0;
  }
  .header.fixed:not(.open) {
    -webkit-box-shadow: 0 0 10px rgba(39, 29, 20, 0.1);
            box-shadow: 0 0 10px rgba(39, 29, 20, 0.1);
  }
  .header.fixed:not(.open) .header__block {
    height: 60px;
  }
  .header.open .header__humb i {
    background: rgba(0, 0, 0, 0);
  }
  .header.open .header__humb i::before {
    -webkit-transform: translateY(6px) rotate(45deg);
        -ms-transform: translateY(6px) rotate(45deg);
            transform: translateY(6px) rotate(45deg);
    background: var(--white);
  }
  .header.open .header__humb i::after {
    -webkit-transform: translateY(-6px) rotate(-45deg);
        -ms-transform: translateY(-6px) rotate(-45deg);
            transform: translateY(-6px) rotate(-45deg);
    background: var(--white);
    width: 100%;
    -webkit-transition: width 0.25s, -webkit-transform 0.5s;
    transition: width 0.25s, -webkit-transform 0.5s;
    -o-transition: transform 0.5s, width 0.25s;
    transition: transform 0.5s, width 0.25s;
    transition: transform 0.5s, width 0.25s, -webkit-transform 0.5s;
  }
  .header.open .header__nav, .header.open .header__but {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .header::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white);
    opacity: 0.1;
    z-index: 5;
    -webkit-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
  }
  .header__nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    padding: 80px 30px 30px;
    -webkit-transition: opacity 0.5s, visibility 0.5s;
    -o-transition: opacity 0.5s, visibility 0.5s;
    transition: opacity 0.5s, visibility 0.5s;
  }
  .header__nav-list {
    padding: 20px 0;
    max-height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__nav-list > li {
    margin-right: 0;
    width: 100%;
    border-bottom: 1px solid rgba(244, 239, 228, 0.1);
  }
  .header__nav-list > li:has(> ul) > a {
    padding-right: 0;
  }
  .header__nav-list > li:last-child {
    margin: 0;
  }
  .header__nav-list > li > a {
    height: 48px;
    font-size: 16px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__nav-list > li > a::before {
    display: none;
  }
  .header__nav-list > li > a::after {
    content: "";
    position: absolute;
    width: 10px !important;
    height: 10px !important;
    top: calc(50% - 5px);
    right: 2px !important;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 1 !important;
    background: url(../img/icon-arrow1-white.svg) center/contain no-repeat !important;
  }
  .header__nav-list > li ul {
    display: none !important;
  }
  .header__logo {
    width: auto;
    position: relative;
    z-index: 5;
  }
  .header__but {
    position: absolute;
    top: calc(100vh - 100px);
    left: 0;
    width: 100%;
    z-index: 5;
    margin: 0;
    visibility: hidden;
    opacity: 0;
    padding: 0 30px;
    pointer-events: none;
    -webkit-transition: opacity 0.5s, visibility 0.5s;
    -o-transition: opacity 0.5s, visibility 0.5s;
    transition: opacity 0.5s, visibility 0.5s;
  }
  .header__humb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    float: left;
    margin: auto 0 auto auto;
    width: 45px;
    height: 40px;
    border: 1px solid var(--white);
    border-radius: 6px;
    z-index: 22;
  }
  .header__humb i {
    float: left;
    position: relative;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    margin: auto;
    -webkit-transition: background 0.5s;
    -o-transition: background 0.5s;
    transition: background 0.5s;
  }
  .header__humb i::before, .header__humb i::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    left: 0;
    -webkit-transform: translateY(0) rotate(0deg);
        -ms-transform: translateY(0) rotate(0deg);
            transform: translateY(0) rotate(0deg);
    -webkit-transition: width 0.5s, background 0.5s, -webkit-transform 0.5s;
    transition: width 0.5s, background 0.5s, -webkit-transform 0.5s;
    -o-transition: transform 0.5s, width 0.5s, background 0.5s;
    transition: transform 0.5s, width 0.5s, background 0.5s;
    transition: transform 0.5s, width 0.5s, background 0.5s, -webkit-transform 0.5s;
  }
  .header__humb i::before {
    top: -6px;
  }
  .header__humb i::after {
    top: 6px;
    width: 14px;
  }

  /*.content {
    padding-top: 75px;
  }*/

  .plug-svg-name {
    padding: 20px 22px;
    font-size: 16px;
  }

  .quest {
    border-radius: 0;
    overflow: visible;
    margin-top: 70px;
  }
  .quest:first-child {
    margin-top: 0;
  }
  .quest__base {
    float: left;
    width: 100%;
    min-height: 0;
    position: relative;
  }
  .quest__base:has(.quest__base-image) .quest__base-block {
    padding: 35px 0;
  }
  .quest__base:has(.quest__base-image) .quest__title {
    color: var(--white);
  }
  .quest__base:not(:has(.quest__base-image)) {
    padding-right: 0;
    padding-top: 30px;
    padding-bottom: 0;
    padding-bottom: 20px;
  }
  .quest__base-image {
    width: calc(100% + 40px);
    left: -20px;
  }
  .quest__base-image img {
    opacity: 0.4;
  }
  .quest__base-image::before {
    display: none;
  }
  .quest__base-block {
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .quest__title-sub {
    font-size: 12px;
    letter-spacing: 0.11em;
  }
  .quest__title-name {
    font-size: 32px;
  }
  .quest__title-desc {
    font-size: 16px;
    line-height: 140%;
  }
  .quest__form {
    width: calc(100% + 40px);
    margin: 0 -20px;
    min-height: 300px;
  }
  .quest__feature {
    padding: 20px;
  }
  .quest__feature-item {
    padding-left: 40px;
    margin-top: 18px;
    padding-top: 18px;
  }
  .quest__feature-num {
    width: 28px;
    height: 28px;
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }
  .quest__feature-name {
    font-size: 16px;
  }
  .quest__feature-desc {
    font-size: 13px;
    line-height: 140%;
  }
  .quest__list {
    margin-top: 20px;
  }
  .quest__list li {
    font-size: 14px;
    padding-left: 20px;
    margin-top: 10px;
    background-size: 10px auto;
  }
  .quest__info {
    margin-top: 20px;
    padding: 16px 14px;
  }
  .quest__info-name {
    font-size: 18px;
  }
  .quest__info-desc {
    margin-top: 8px;
    font-size: 13px;
  }
  .quest__data {
    margin: 15px 0 0;
    padding-top: 15px;
    width: 100%;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    gap: 15px;
  }
  .quest__data::before {
    width: 100%;
    left: 0;
  }
  .quest__data-item {
    width: calc(50% - 15px);
    margin: 0;
  }
  .quest__data-num {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .quest__data-num img {
    max-width: 26px;
    max-height: 26px;
  }
  .quest__data-name {
    font-size: 14px;
    margin-top: 10px;
  }

  .stats {
    margin-top: 70px;
  }
  .stats__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .stats__item {
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
    border-left: 0;
    border-top: 1px solid var(--black-alt);
    margin-top: 20px;
  }
  .stats__item:first-child {
    border: 0;
    padding: 0;
    margin: 0;
  }
  .stats__item-num {
    font-size: 44px;
  }
  .stats__item-label {
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
  }
  .stats__disclaimer {
    padding-top: 20px;
    border-top: 1px solid var(--black-alt);
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
  }

  .title {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .title.white {
    color: var(--white);
  }
  .title__block {
    padding: 0;
  }
  .title__block + .title__but {
    margin: 15px 0 0;
  }
  .title__sub {
    font-size: 11px;
    letter-spacing: 0.11em;
  }
  .title__but {
    margin-top: 15px;
  }
  .title__name {
    font-size: 32px;
    margin-top: 15px;
  }
  .title__name br {
    display: none;
  }
  .title__dop {
    width: 100%;
    margin: 15px 0 0;
    font-size: 16px;
    padding-bottom: 0;
  }
  .title__desc {
    font-size: 16px;
    margin-top: 15px;
  }
  .title__desc br {
    display: none;
  }
  .title__desc p {
    margin-top: 12px;
  }
  .title__link {
    margin: 15px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .stages {
    margin-top: 70px;
    padding: 70px 0;
  }
  .stages__block {
    margin-top: 30px;
  }
  .stages__item {
    margin-top: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .stages__item-image {
    width: 100%;
    height: 230px;
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }
  .stages__item-block {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
    width: 100%;
    padding: 20px 0 0 !important;
  }
  .stages__item-sub {
    font-size: 13px;
  }
  .stages__item-name {
    font-size: 28px;
    margin-top: 12px;
  }
  .stages__item-desc {
    font-size: 16px;
    margin-top: 12px;
  }
  .stages__but {
    margin-top: 30px;
  }

  .video-info {
    margin-top: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .video-info__content {
    width: 100%;
    padding-right: 0;
  }
  .video-info__title {
    font-size: 32px;
  }
  .video-info__desc {
    font-size: 16px;
    margin-top: 15px;
  }
  .video-info__list {
    margin-top: 20px;
  }
  .video-info__list li {
    font-size: 16px;
    padding-left: 20px;
    margin-top: 10px;
    background-size: 10px auto;
  }
  .video-info__media {
    width: 100%;
    margin-top: 25px;
  }

  .essence {
    margin-top: 70px;
  }
  .essence__block {
    width: 100%;
    margin: 20px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .essence__item {
    width: 100%;
    margin: 10px 0 0;
    padding: 20px 16px;
  }
  .essence__item:first-child {
    margin-top: 0;
  }
  .essence__item-num {
    font-size: 14px;
  }
  .essence__item-name {
    margin-top: 12px;
    font-size: 20px;
    line-height: 115%;
  }
  .essence__item-name br {
    display: none;
  }
  .essence__item-desc {
    margin-top: 12px;
    font-size: 13px;
    line-height: 140%;
  }

  .reviews {
    margin-top: 70px;
    padding: 70px 0;
  }
  .reviews__slider {
    margin: 30px auto 0;
  }
  .reviews__slider .slick-arrow {
    top: calc(100% - 25px);
    background: url(../img/icon-arrow1-black.svg) center/10px auto no-repeat;
    border: 1px solid var(--black);
  }
  .reviews__slider .slick-prev {
    right: auto;
    left: 0;
  }
  .reviews__slider .slick-next {
    left: auto;
    right: 0;
  }
  .reviews__slider .slick-dots {
    margin-top: 15px;
  }
  .reviews__info {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .reviews__name {
    width: 100%;
    padding-right: 0;
    font-size: 18px;
  }
  .reviews__desc {
    width: 100%;
    font-size: 13px;
    line-height: 140%;
    margin-top: 10px;
  }
  .reviews__but {
    margin-top: 40px;
  }

  .benefits {
    margin-top: 70px;
    padding: 70px 0;
  }
  .benefits__block {
    margin: 20px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .benefits__block:first-child {
    margin-top: 0;
  }
  .benefits__aside {
    width: 100%;
  }
  .benefits__price {
    top: 12px;
    right: 12px;
    font-size: 14px;
    padding: 8px 15px;
  }
  .benefits__content {
    width: 100%;
    margin-left: 0;
    padding-top: 20px;
  }
  .benefits__item {
    padding: 25px 0;
  }
  .benefits__item-name {
    font-size: 20px;
  }
  .benefits__item-desc {
    font-size: 14px;
    line-height: 140%;
  }
  .benefits__but {
    margin-top: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .styles {
    margin-top: 70px;
    padding: 70px 0;
  }
  .styles__block {
    width: 100%;
    margin: 30px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .styles__item {
    width: 100%;
    margin: 15px 0 0;
  }
  .styles__item:first-child {
    margin-top: 0;
  }
  .styles__item-image {
    height: 190px;
    min-height: 190px;
  }
  .styles__item-tag {
    bottom: 10px;
  }
  .styles__item-content {
    padding: 20px 16px;
  }
  .styles__item-name {
    font-size: 24px;
  }
  .styles__item-desc {
    font-size: 13px;
  }
  .styles__item-list li {
    font-size: 13px;
  }
  .styles__item-link {
    margin-top: auto;
    padding-top: 10px;
  }

  .steps-flow {
    margin-top: 70px;
  }
  .steps-flow__box {
    width: 100%;
    margin: 25px 0 0;
    border: 0;
  }
  .steps-flow__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .steps-flow__item {
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid #E0E0E0;
    margin: 20px 0 0;
    text-align: center;
  }
  .steps-flow__item:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
  .steps-flow__item-name {
    font-size: 18px;
  }

  .unprepared {
    margin-top: 70px;
    padding: 70px 0;
  }
  .unprepared__block {
    width: 100%;
    margin: 30px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .unprepared__item {
    width: 100%;
    margin: 12px 0 0;
    padding: 25px 20px;
    min-height: 200px;
  }
  .unprepared__item:first-child {
    margin-top: 0;
  }
  .unprepared__item-name {
    font-size: 20px;
  }
  .unprepared__item-desc {
    margin-top: 30px;
    padding-top: 15px;
    font-size: 13px;
    line-height: 140%;
  }
  .unprepared__footer {
    margin-top: 30px;
  }
  .unprepared__footer-text {
    width: 100%;
  }
  .unprepared__footer-text h3 {
    font-size: 22px;
  }
  .unprepared__footer-text p {
    font-size: 14px;
    margin-top: 7px;
  }
  .unprepared__footer-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }

  .video-reviews {
    margin-top: 70px;
  }
  .video-reviews__slider {
    margin: 30px 0 0;
    padding-right: 30px;
  }
  .video-reviews__slider .slick-list {
    overflow: visible !important;
  }
  .video-reviews__slider .slick-arrow {
    display: none !important;
  }
  .video-reviews__item {
    padding: 0 8px;
  }
  .video-reviews__block {
    width: calc(100% + 10px);
    margin: 10px -5px 0;
  }
  .video-reviews__text {
    width: calc(50% - 10px);
    margin: 10px 5px 0;
    padding: 25px;
  }
  .video-reviews__text-body {
    font-size: 14px;
  }
  .video-reviews__info {
    margin-top: 15px;
  }
  .video-reviews__quote {
    font-size: 18px;
  }
  .video-reviews__tags {
    margin-top: 12px;
  }
  .video-reviews__but {
    margin-top: 35px;
  }

  .studios-list {
    margin-top: 70px;
    padding: 70px 0;
  }
  .studios-list__logo {
    display: none;
  }
  .studios-list__block {
    margin-top: 30px;
  }
  .studios-list__item {
    padding: 18px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .studios-list__main {
    width: 100% !important;
  }
  .studios-list__top {
    width: 100%;
  }
  .studios-list__name {
    width: 100%;
    font-size: 24px;
    margin-right: 0;
    padding-right: 90px;
  }
  .studios-list__status {
    margin-top: 10px;
    padding: 0;
    background: transparent;
    height: auto;
    border-radius: 0;
    font-weight: 400;
  }
  .studios-list__stars-row {
    position: absolute;
    top: 55px;
    right: 15px;
  }
  .studios-list__stars-count {
    padding-left: 0;
  }
  .studios-list__stars-count::before {
    display: none;
  }
  .studios-list__tags {
    margin-top: 6px;
  }
  .studios-list__tag {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
    margin-right: 0;
  }
  .studios-list__tag img {
    height: 16px;
  }
  .studios-list__side {
    width: 100%;
    margin-top: 12px;
  }
  .studios-list__rating-badge {
    position: absolute;
    top: 20px;
    right: 15px;
  }
  .studios-list__rating-label {
    font-size: 12px;
    margin-right: 10px;
  }
  .studios-list__rating-num {
    width: 26px;
    height: 26px;
    font-size: 12px;
    border-radius: 6px;
  }
  .studios-list__btn {
    width: 100%;
    max-width: 100%;
  }

  .situations {
    margin-top: 70px;
  }
  .situations__block {
    width: calc(100% + 14px);
    margin: 10px -7px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
  .situations__item {
    width: calc(100% - 14px);
    margin: 14px 7px 0;
  }
  .situations__item-image {
    height: 180px;
  }
  .situations__item-content {
    padding: 15px 12px;
  }
  .situations__item-title {
    font-size: 18px;
    height: 46px;
  }
  .situations__item-title br {
    display: none;
  }
  .situations__item-text {
    margin-top: 15px;
    padding-top: 15px;
    font-size: 14px;
  }
  .situations__item-author {
    padding-top: 20px;
    font-size: 14px;
  }
  .situations__cta {
    padding: 20px;
    margin-top: 25px;
  }
  .situations__cta-text h3 {
    font-size: 20px;
  }
  .situations__cta-text p {
    font-size: 16px;
  }
  .situations__cta-action {
    width: 100%;
    margin-top: 15px;
  }

  .unsuitable {
    margin-top: 70px;
    padding: 70px 0;
  }
  .unsuitable__block {
    width: 100%;
    margin: 25px 0 0;
  }
  .unsuitable__item {
    width: 100%;
    margin: 12px 0 0;
  }
  .unsuitable__item:first-child {
    margin-top: 0;
  }
  .unsuitable__item-image {
    height: 190px;
  }
  .unsuitable__item-badge-cross {
    top: 15px;
    left: 15px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .unsuitable__item-content {
    padding: 15px;
  }
  .unsuitable__item-icon {
    width: 45px;
    height: 45px;
    border: 1px solid var(--black);
  }
  .unsuitable__item-icon img {
    width: 20px;
  }
  .unsuitable__item-title {
    width: calc(100% - 45px);
    padding-left: 16px;
    font-size: 16px;
  }
  .unsuitable__cta {
    padding: 20px;
    margin-top: 20px;
  }
  .unsuitable__cta-text h3 {
    font-size: 20px;
  }
  .unsuitable__cta-text p {
    font-size: 16px;
  }
  .unsuitable__cta-action {
    width: 100%;
    margin-top: 15px;
  }

  .faq {
    margin-top: 70px;
    padding: 70px 0;
  }
  .faq__block {
    margin: 20px 0 0;
  }
  .faq__aside {
    width: 100%;
  }
  .faq__image {
    width: 100%;
  }
  .faq__content {
    width: 100%;
    padding: 30px 0 0;
  }
  .faq__item {
    padding: 20px 0;
  }
  .faq__item-arrow {
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
  .faq__item-name {
    font-size: 18px;
  }
  .faq__item-body {
    margin-top: 12px;
    font-size: 14px;
    line-height: 145%;
  }

  .footer {
    margin-top: 70px;
  }
  .footer__promo {
    padding-top: 40px;
  }
  .footer__promo-title {
    width: 100%;
    font-size: 24px;
    text-align: center;
  }
  .footer__promo-action {
    margin: 20px auto 0;
  }
  .footer__massive-text {
    display: none;
  }
  .footer__main {
    margin-top: 30px;
  }
  .footer__grid {
    padding: 30px 0;
  }
  .footer__col--info {
    width: 100%;
    padding-right: 0;
  }
  .footer__col--links {
    width: 50%;
    margin-top: 30px;
  }
  .footer__col-title {
    margin-bottom: 12px;
  }
  .footer__desc {
    font-size: 13px;
    line-height: 140%;
    max-width: 100%;
  }
  .footer__menu li {
    margin-top: 5px;
  }
  .footer__menu a {
    font-size: 13px;
  }
  .footer__legal {
    width: 100%;
    margin-top: 12px;
  }
  .footer__legal a {
    margin-left: 16px;
  }

  .solutions {
    margin-top: 70px;
  }
  .solutions__block {
    width: calc(100% + 14px);
    margin: 20px -7px 0;
  }
  .solutions__item {
    width: calc(50% - 14px);
    margin: 0 7px 14px;
    padding: 10px;
  }
  .solutions__item-image {
    width: 100%;
    height: 200px;
  }
  .solutions__item-content {
    margin-top: 15px;
  }
  .solutions__but {
    margin-top: 10px;
  }

  .room-check {
    margin-top: 70px;
    padding: 70px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .room-check__content {
    width: 100%;
  }
  .room-check__content .title__name {
    font-size: 32px;
  }
  .room-check__list {
    margin-top: 25px;
  }
  .room-check__item {
    padding: 12px 18px;
    margin-top: 6px;
  }
  .room-check__item-icon {
    width: 22px;
    height: 22px;
    margin-right: 15px;
  }
  .room-check__item-text {
    font-size: 16px;
  }
  .room-check__item-num {
    width: 26px;
    height: 26px;
  }
  .room-check__actions {
    margin-top: 20px;
    display: block;
  }
  .room-check__subtext {
    margin-top: 15px;
    font-size: 13px;
    color: var(--black-alt);
    padding-left: 5px;
  }
  .room-check__media {
    width: 100%;
    margin-top: 15px;
  }
  .room-check__tip {
    margin-top: 15px;
    padding: 15px 22px;
  }
  .room-check__tip-icon {
    display: none;
  }
  .room-check__tip-text {
    font-size: 14px;
    line-height: 140%;
  }
  .room-check__tip-text strong {
    font-size: 17px;
  }

  .kitchen-shapes {
    margin-top: 70px;
  }
  .kitchen-shapes__block {
    width: calc(100% + 10px);
    margin: 20px -5px 0;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
  .kitchen-shapes__item {
    width: calc(50% - 10px);
    margin: 0 5px 10px;
    padding: 12px 12px 15px;
  }
  .kitchen-shapes__item-name {
    margin-top: 16px;
  }
  .kitchen-shapes__but {
    margin-top: 10px;
  }

  .kitchen-config {
    margin-top: 70px;
  }
  .kitchen-config__block {
    width: 100%;
    margin: 30px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .kitchen-config__col {
    width: 100%;
    margin: 20px 0 0;
  }
  .kitchen-config__col:first-child {
    margin-top: 0;
  }
  .kitchen-config__label {
    margin-bottom: 15px;
  }
  .kitchen-config__colors {
    width: calc(100% + 10px);
    margin: 0 -5px;
  }
  .kitchen-config__color-item {
    width: calc(50% - 10px);
    margin: 0 5px 15px;
  }
  .kitchen-config__color-box {
    height: 100px;
  }
  .kitchen-config__color-name {
    font-size: 13px;
    margin-top: 8px;
  }
  .kitchen-config__surface {
    gap: 10px;
  }
  .kitchen-config__surface-item {
    height: 210px;
    padding: 15px 18px;
  }
  .kitchen-config__surface-title {
    font-size: 24px;
  }
  .kitchen-config__circle-arrow {
    bottom: 15px;
    right: 15px;
  }
  .kitchen-config__style {
    gap: 10px;
  }
  .kitchen-config__style-item {
    height: 120px;
    padding: 15px 18px;
  }
  .kitchen-config__style-title {
    font-size: 18px;
  }
  .kitchen-config__but {
    margin-top: 30px;
  }

  .variant-check {
    margin-top: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 70px 0;
  }
  .variant-check__content {
    width: 100%;
  }
  .variant-check__content .title__name {
    font-size: 32px;
  }
  .variant-check__item-check {
    margin-top: 20px;
  }
  .variant-check__item-check-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
  }
  .variant-check__list {
    margin-top: 25px;
  }
  .variant-check__list-title {
    font-size: 16px;
  }
  .variant-check__item {
    padding: 13px 16px;
    margin-top: 8px;
  }
  .variant-check__item:first-child {
    margin-top: 8px;
  }
  .variant-check__item-icon {
    width: 22px;
    height: 22px;
    margin-right: 15px;
  }
  .variant-check__item-text {
    font-size: 15px;
    font-weight: 500;
  }
  .variant-check__actions {
    margin-top: 20px;
  }
  .variant-check__media {
    width: 100%;
    margin-top: 15px;
  }
  .variant-check__tip {
    margin-top: 15px;
    padding: 15px 22px;
  }
  .variant-check__tip-icon {
    display: none;
  }
  .variant-check__tip-text {
    font-size: 14px;
    line-height: 140%;
  }
  .variant-check__tip-text strong {
    font-size: 17px;
  }

  .tabletop-check {
    margin-top: 70px;
  }
  .tabletop-check.alt {
    padding: 70px 0;
  }
  .tabletop-check__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tabletop-check__content {
    width: 100%;
  }
  .tabletop-check__content .title__name {
    font-size: 32px;
  }
  .tabletop-check__media {
    width: 100%;
    margin: 15px 0 0;
  }
  .tabletop-check__image {
    width: 100%;
    height: auto;
  }
  .tabletop-check__image img {
    position: relative;
    top: auto;
    left: auto;
  }
  .tabletop-check__grid {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tabletop-check__col {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
  }
  .tabletop-check__col:first-child {
    margin-top: 0;
  }
  .tabletop-check__desc {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .tabletop-check__list-title {
    font-size: 16px;
  }
  .tabletop-check__status-icon {
    width: 36px;
    height: 36px;
  }
  .tabletop-check__bottom {
    margin-top: 15px;
  }
  .tabletop-check__actions {
    width: 100%;
  }
  .tabletop-check__tip {
    margin-top: 15px;
    padding: 15px 22px;
  }
  .tabletop-check__tip:first-child {
    margin-top: 0;
  }
  .tabletop-check__tip-icon {
    display: none;
  }
  .tabletop-check__tip-text {
    font-size: 14px;
    line-height: 140%;
  }
  .tabletop-check__tip-text strong {
    font-size: 17px;
  }
  .tabletop-check__info {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
  .tabletop-check__info-item {
    width: calc(33.3333% - 16px);
  }

  .material-compare {
    margin-top: 70px;
    padding: 70px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .material-compare__aside {
    width: 100%;
  }
  .material-compare__aside .title__name {
    font-size: 32px;
  }
  .material-compare__info {
    margin-top: 25px;
    gap: 20px;
  }
  .material-compare__info-icon {
    width: 22px;
    height: 22px;
    margin-right: 15px;
  }
  .material-compare__actions {
    margin-top: 30px;
  }
  .material-compare__actions .btn {
    width: 100%;
  }
  .material-compare__block {
    width: 100%;
    margin: 20px 0 0;
  }
  .material-compare__grid {
    width: 100%;
    margin: -15px 0 0;
  }
  .material-compare__card {
    margin: 15px 0 0;
    width: 100% !important;
  }
  .material-compare__tip {
    margin-top: 15px;
    padding: 15px 22px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .material-compare__tip:first-child {
    margin-top: 0;
  }
  .material-compare__tip-block {
    width: 100%;
    max-width: 100%;
  }
  .material-compare__tip-icon {
    display: none;
  }
  .material-compare__tip-text {
    font-size: 14px;
    line-height: 140%;
  }
  .material-compare__tip-text strong {
    font-size: 17px;
  }
  .material-compare__benefits {
    margin-top: 20px;
  }

  .kitchen-card {
    margin-top: 70px;
    padding: 70px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .kitchen-card__media {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .kitchen-card__slider-big {
    margin-top: 20px;
  }
  .kitchen-card__big-item {
    height: 300px;
  }
  .kitchen-card__slider-nav {
    display: none !important;
  }
  .kitchen-card__content {
    width: 100%;
  }
  .kitchen-card__content .title__name {
    font-size: 32px;
  }
  .kitchen-card__content .title__desc {
    font-size: 16px;
  }
  .kitchen-card__specs {
    margin-top: 20px;
  }
  .kitchen-card__specs:first-child {
    margin-top: 0;
    border-top: 0;
  }
  .kitchen-card__spec-item {
    width: 100%;
  }
  .kitchen-card__spec-value {
    font-size: 15px;
  }
  .kitchen-card__actions {
    margin-top: 25px;
  }
  .kitchen-card__benefits {
    margin-top: 20px;
    gap: 14px;
  }

  .price-factors {
    margin-top: 70px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .price-factors.alt {
    padding: 70px 0;
  }
  .price-factors__content {
    width: 100%;
  }
  .price-factors__content.alt {
    width: 100%;
  }
  .price-factors__content.alt .title__name {
    font-size: 38px;
  }
  .price-factors__content .title__name {
    font-size: 32px;
  }
  .price-factors__actions {
    margin-top: 20px;
  }
  .price-factors__grid {
    width: 100%;
    width: 100%;
    margin: 20px 0 0;
  }
  .price-factors__item {
    width: 100%;
    margin: 10px 0 0;
  }
  .price-factors__item:first-child {
    margin-top: 0;
  }
  .price-factors__tip {
    margin: 15px 0 0;
    width: 100%;
    padding: 15px 22px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .price-factors__tip:first-child {
    margin-top: 0;
  }
  .price-factors__tip-block {
    width: 100%;
    max-width: 100%;
  }
  .price-factors__tip-icon {
    display: none;
  }
  .price-factors__tip-text {
    font-size: 14px;
    line-height: 140%;
  }
  .price-factors__tip-text strong {
    font-size: 17px;
  }
  .price-factors__info {
    width: 100%;
    margin: 20px 0 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .price-factors__info-item {
    width: 100%;
    margin: 10px 0 0;
  }
  .price-factors__info-item:first-child {
    margin-top: 0;
  }
  .price-factors__info-image {
    height: 140px;
  }
  .price-factors__info-content {
    padding: 15px;
  }
  .price-factors__info-icon {
    display: none;
  }
  .price-factors__timelin {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
  .price-factors__timelin-item {
    width: 100%;
    margin-top: 25px;
    padding-left: 70px;
    position: relative;
  }
  .price-factors__timelin-item:has(.price-factors__timelin-image) {
    padding-left: 0;
  }
  .price-factors__timelin-item:not(:last-child)::after {
    display: none;
  }
  .price-factors__timelin-item:first-child {
    margin-top: 0;
  }
  .price-factors__timelin-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    margin-bottom: 0;
  }
  .price-factors__timelin-wrap:has(.price-factors__timelin-image) {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: 140px;
    margin-bottom: 12px;
  }
  .price-factors__timelin-image img {
    border-radius: 12px;
  }
  .price-factors__timelin-icon img {
    width: 20px;
  }
  .price-factors__timelin-num {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 22px;
    height: 22px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    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;
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
  }
  .price-factors__timelin-name {
    font-size: 18px;
    text-align: left;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .price-factors__timelin-desc {
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
    padding: 0;
    text-align: left;
  }
  .price-factors__table {
    width: calc(100% + 40px);
    margin: 20px -20px 0;
    padding: 0 20px;
  }
  .price-factors__table-responsive {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .price-factors__table table th, .price-factors__table table td {
    padding: 16px;
    font-size: 14px;
  }
  .price-factors__table table th {
    font-size: 14px;
  }
  .price-factors__cards {
    width: 100%;
    margin-top: 10px;
  }
  .price-factors__cards-grid {
    width: calc(100% + 10px);
    margin: 10px -5px 0;
  }
  .price-factors__cards-grid:has(.price-factors__cards-item:nth-child(7)) .price-factors__cards-item {
    width: calc(50% - 10px);
  }
  .price-factors__cards-item {
    width: calc(100% - 10px);
    margin: 10px 5px 0 !important;
    padding-bottom: 15px;
  }
  .price-factors__cards-item:first-child {
    margin-top: 0;
  }

  .hero__search {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 25px auto 0;
    gap: 10px;
  }
  .hero__search-input {
    width: 100%;
  }
  .hero__search-input input {
    height: 54px;
  }
  .hero__search-btn {
    width: 100%;
  }

  .city-selection {
    margin-top: 70px;
  }
  .city-selection__grid {
    width: calc(100% + 10px);
    margin: 10px -5px 0;
  }
  .city-selection__item {
    width: calc(25% - 10px);
    margin: 10px 5px 0;
    padding: 12px 18px;
  }
  .city-selection__item span {
    font-size: 14px;
  }
  .city-selection__item::after {
    width: 9px;
    height: 9px;
  }

  .city-cards {
    margin-top: 70px;
  }
  .city-cards__grid {
    width: calc(100% + 10px);
    margin: 20px -5px 0;
  }
  .city-cards__item {
    width: calc(25% - 10px);
    height: 110px;
    margin: 10px 5px 0;
  }
  .city-cards__item-content {
    padding: 14px 16px;
  }
  .city-cards__item-name {
    font-size: 18px;
  }

  .process-sticky {
    margin-top: 70px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .process-sticky__media {
    display: none;
  }
  .process-sticky__content {
    width: 100%;
  }
  .process-sticky__content .title__name {
    font-size: 32px;
  }
  .process-sticky__list {
    margin-top: 20px;
    gap: 10px;
  }
  .process-sticky__item {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  .process-sticky__item-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    margin-right: 0;
    margin-top: 0;
  }
  .process-sticky__item-block {
    width: 100%;
  }
  .process-sticky__item-meta {
    padding-right: 45px;
  }
  .process-sticky__item-name {
    padding-right: 45px;
    font-size: 20px;
    margin-top: 6px;
  }
  .process-sticky__item-desc {
    font-size: 14px;
  }
  .process-sticky__actions {
    margin-top: 20px;
  }
  .process-sticky__actions .btn {
    width: 100%;
  }

  .studios-match {
    margin-top: 70px;
  }
  .studios-match__grid {
    width: calc(100% + 10px);
    margin: 10px -6px 0;
  }
  .studios-match__slider {
    width: calc(100% + 10px);
    margin: 10px -6px 0;
    padding-right: 30px;
  }
  .studios-match__item {
    width: calc(50% - 10px);
    margin: 10px 5px 0;
    padding: 18px;
  }
  .studios-match__item-logo {
    width: 40px;
    height: 40px;
    padding: 5px;
  }
  .studios-match__item-badge {
    padding: 6px 12px;
    font-size: 14px;
  }
  .studios-match__item-name {
    font-size: 20px;
    margin-top: 15px;
  }
  .studios-match__item-list {
    margin-top: 15px;
    gap: 6px;
  }
  .studios-match__item-list li {
    height: 28px;
    padding: 0 10px;
    font-size: 13px;
  }

  .business-models {
    margin-top: 70px;
    padding: 70px 0;
  }
  .business-models__grid {
    width: 100%;
    margin: 15px 0 0;
  }
  .business-models__item {
    width: 100%;
    margin: 12px 0 0;
    padding: 20px 18px;
  }
  .business-models__item-icon {
    width: 42px;
    height: 42px;
  }
  .business-models__item-message {
    margin-top: 15px;
  }
  .business-models__item-btn {
    padding-top: 15px;
  }

  .field.large {
    width: calc(100% - 16px);
  }
  .field.medium {
    width: calc(100% - 16px);
  }
  .field.small {
    width: calc(100% - 16px);
  }

  .about {
    margin-top: -1px;
    padding: 70px 0;
  }
  .about__base {
    width: 100% !important;
  }
  .about__image {
    width: calc(100% + 40px);
    left: -20px;
  }
  .about__image::before {
    background: var(--black);
    opacity: 0.8;
  }
  .about .title__but .btn {
    min-width: 100%;
  }
  .about .kitchen-card__benefits {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .about .quest__data-name {
    font-size: 14px;
  }

  .kitchen-change {
    margin-top: 70px;
  }
  .kitchen-change__container {
    width: 100%;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .kitchen-change__col {
    width: 100% !important;
    margin: 15px 0 0;
  }
  .kitchen-change__col:first-child {
    margin-top: 0;
  }
  .kitchen-change__col .title__name {
    font-size: 32px;
  }
  .kitchen-change__desc {
    margin-top: 20px;
  }
  .kitchen-change__tip {
    margin-top: 20px;
  }
  .kitchen-change__tip-text {
    font-size: 13px;
  }
  .kitchen-change__actions {
    padding-top: 15px;
  }
  .kitchen-change__image {
    min-height: 350px;
  }
  .kitchen-change__steps {
    gap: 10px;
    height: auto;
  }

  .teaser {
    width: 100;
    margin-top: -5px !important;
    padding: 30px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .teaser__base {
    width: 100%;
  }
  .teaser__base .title {
    margin: 0;
  }
  .teaser__image {
    width: 100vw;
    right: -20px;
    opacity: 0.3;
  }
  .teaser__image::before {
    display: none;
  }
  .teaser__form {
    margin: 20px 0 0;
    width: 100%;
    height: 500px;
    position: relative;
    z-index: 2;
  }
  .teaser__form img {
    width: 100%;
  }
  .teaser__badges {
    margin-top: 25px;
  }
  .teaser__badge-item {
    width: 100%;
    padding: 12px 15px;
    gap: 12px;
  }
  .teaser__badge-icon {
    width: 24px;
    height: 24px;
  }
  .teaser__badge-text strong {
    font-size: 14px;
  }
  .teaser__badge-text span {
    font-size: 13px;
  }
  .teaser__review {
    gap: 15px;
    margin-top: 25px;
  }
  .teaser__review-avatar {
    width: 44px;
    height: 44px;
    display: none;
  }
  .teaser__review-avatar:not(:first-child) {
    margin-left: -12px;
  }
  .teaser__review-avatar:nth-child(1), .teaser__review-avatar:nth-child(2), .teaser__review-avatar:nth-child(3) {
    display: block;
  }
  .teaser__review-info {
    gap: 5px;
  }
  .teaser__review-stars {
    gap: 3px;
  }
  .teaser__review-text strong {
    font-size: 14px;
  }
  .teaser__review-text span {
    font-size: 13px;
  }

  .modal__close {
    top: 25px;
    right: 20px;
  }
  .modal__block {
    padding: 25px 20px;
  }
  .modal .title:not(:first-child) {
    margin-top: 25px;
    padding-top: 25px;
  }
  .modal .title__name {
    font-size: 32px;
  }
  .modal__form {
    margin-top: 20px;
  }
  .stages__image {
    margin-top: 40px;
  }
  .stages__image img {
    height: 300px;
  }
  #wpadminbar {
    display: none !important;
  }
  .text h1 {
    font-size: 36px;
  }
  .text h2 {
    font-size: 30px;
  }
  .text h3 {
    font-size: 24px;
  }
  .text h4 {
    font-size: 20px;
  }
  .text h5 {
    font-size: 18px;
  }
  .text h6 {
    font-size: 16px;
  }
  .bread {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 15px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .bread ul {
    flex-flow: row;
  }
  .bread ul li a {
    max-width: 125px;
  }
}
@media screen and (max-width: 767px) {
  .video-reviews__text {
    width: calc(100% - 10px);
  }

  .solutions__item {
    width: calc(100% - 14px);
  }

  .kitchen-shapes__item {
    width: calc(100% - 10px);
  }

  .tabletop-check__info-item {
    width: calc(100% - 16px);
  }

  .city-selection__item {
    width: calc(50% - 10px);
  }

  .city-cards__item {
    width: calc(50% - 10px);
  }

  .studios-match__item {
    width: calc(100% - 10px);
  }
}