@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: 'TTMedium';
  src: url("../fonts/TTMedium.woff2") format("woff2"), url("../fonts/TTMedium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TTRegular';
  src: url("../fonts/TTRegular.woff2") format("woff2"), url("../fonts/TTRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TTItalic';
  src: url("../fonts/TTItalic.woff2") format("woff2"), url("../fonts/TTItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'TTBold';
  src: url("../fonts/TTBold.woff2") format("woff2"), url("../fonts/TTBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url("../fonts/Gilroy.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.ibg img {
  display: none;
}

.gallery__popup {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  height: 100%;
  width: 100%;
  z-index: 100;
  display: none;
}

.gallery__popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 0;
  padding-bottom: 3px;
  color: #333;
  z-index: 110;
  transition: background 0.2s;
}

.gallery__close:hover {
  background: #fff;
}

.gallery__img {
  max-width: 85%;
  max-height: 80%;
  object-fit: contain;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 110;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.2s;
  padding: 0;
}

.gallery__arrow:hover {
  background: #fff;
}

.gallery__arrow svg {
  width: 28px;
  height: 28px;
}

.gallery__arrow-prev {
  left: 5%;
}

.gallery__arrow-next {
  right: 5%;
}

.gallery__dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 110;
}

.gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}

.gallery__dot.active {
  background: #fff;
  transform: scale(1.25);
}

.gallery__dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 767.98px) {
  .gallery__close {
    top: 12px;
    right: 12px;
  }
  .gallery__arrow {
    width: 40px;
    height: 40px;
  }
  .gallery__arrow svg {
    width: 22px;
    height: 22px;
  }
  .gallery__arrow-prev {
    left: 4px;
  }
  .gallery__arrow-next {
    right: 4px;
  }
  .gallery__img {
    max-width: 92%;
    max-height: 75%;
  }
  .gallery__dots {
    bottom: 16px;
    gap: 6px;
  }
  .gallery__dot {
    width: 7px;
    height: 7px;
  }
}

textarea {
  resize: none;
  /* Запрещаем изменять размер */
}

body::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.lock .popup__content {
  visibility: visible;
}

.popup-form {
  padding: 40px;
  width: 100%;
  width: 426px;
  height: auto;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  background-color: #faf9f6;
  border-radius: 24px;
  position: relative;
}

.popup-form_b {
  /* высота определяется содержимым */
}

@media (max-width: 479.98px) {
  .popup-form {
    width: 100%;
    padding: 50px 20px 30px 20px;
  }
}

.popup-form__title {
  font-size: 32px;
  font-style: normal;
  font-family: 'TTMedium';
  line-height: 120%;
  margin-bottom: 24px;
}

@media (max-width: 479.98px) {
  .popup-form__title {
    font-size: 26px;
  }
}

.popup-form__subtitle {
  font-size: 27px;
  line-height: 140%;
}

.popup-form__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popup-form__input {
  margin-bottom: 16px;
  height: 60px;
  width: 100%;
  border-radius: 12px;
  color: #262626;
  padding-left: 24px;
  font-size: 20px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 140%;
}

.popup-form__input::-webkit-input-placeholder {
  color: #262626;
}

.popup-form__input:-ms-input-placeholder {
  color: #262626;
}

.popup-form__input::-ms-input-placeholder {
  color: #262626;
}

.popup-form__input::placeholder {
  color: #262626;
}

.popup-form__textarea {
  margin-bottom: 16px;
  height: 100px;
  width: 100%;
  border-radius: 12px;
  color: #262626;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 20px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 140%;
}

.popup-form__textarea::-webkit-input-placeholder {
  color: #262626;
}

.popup-form__textarea:-ms-input-placeholder {
  color: #262626;
}

.popup-form__textarea::-ms-input-placeholder {
  color: #262626;
}

.popup-form__textarea::placeholder {
  color: #262626;
}

.popup-form__button {
  height: 93px;
  width: 100%;
  border-radius: 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(#faaf1c), to(#d36718));
  background: linear-gradient(180deg, #faaf1c 0%, #d36718 100%);
  font-size: 32px;
  font-style: normal;
  font-family: 'TTMedium';
  color: #ffffff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-bottom: 32px;
}

.popup-form__button:hover {
  opacity: 0.7;
}

.popup-form__btns {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.popup-form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  font-size: 24px;
  font-style: normal;
  font-family: 'TTMedium';
  color: #262626;
  padding: 24px 40px;
  border: 3px #e6252a solid;
  border-radius: 24px;
}

.popup-form__btn img {
  width: 48px;
  height: 48px;
}

/* Красная кнопка «Посмотреть каталог» с пульсирующей волной */
.popup-form__btn_green {
  position: relative;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  border: 0;
  padding: 14px 28px;
  font-size: 18px;
  gap: 12px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(220, 38, 38, 0.35);
  transition: transform 0.2s, box-shadow 0.25s;
  animation: popup-form__pulse 1.8s ease-out infinite;
  z-index: 1;
  text-align: center;
}
.popup-form__btn_green:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(220, 38, 38, 0.5);
  animation-play-state: paused;
}
.popup-form__btn_green:active {
  transform: translateY(0);
}
.popup-form__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: #fff;
}
.popup-form__btn-icon svg {
  width: 22px;
  height: 22px;
}
.popup-form__btn_green p {
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}
@keyframes popup-form__pulse {
  0%   { box-shadow: 0 10px 24px rgba(220, 38, 38, 0.35), 0 0 0 0 rgba(220, 38, 38, 0.55); }
  70%  { box-shadow: 0 10px 24px rgba(220, 38, 38, 0.35), 0 0 0 20px rgba(220, 38, 38, 0); }
  100% { box-shadow: 0 10px 24px rgba(220, 38, 38, 0.35), 0 0 0 0 rgba(220, 38, 38, 0); }
}
@media (max-width: 600px) {
  .popup-form__btn_green { padding: 12px 22px; font-size: 16px; gap: 10px; }
  .popup-form__btn-icon { width: 26px; height: 26px; }
  .popup-form__btn-icon svg { width: 20px; height: 20px; }
}

.popup-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  margin: 8px 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f7f7f7;
  transition: outline-color .2s, background-color .2s;
  outline: 2px solid transparent;
  -webkit-tap-highlight-color: rgba(0,0,0,0.04);
}

.popup-form__label input {
  margin-top: 2px;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  cursor: pointer;
  accent-color: #d36718;
}

.popup-form__label.is-error {
  outline-color: #e53935;
  background: rgba(229, 57, 53, 0.08);
}

.popup-form__label p {
  font-size: 14px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 140%;
}

.popup-form__label p span {
  color: #1890ff;
  cursor: pointer;
  text-decoration: underline;
}

.popup-form__error {
  color: #e53935;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  margin: 14px 0;
  font-family: 'TTRegular';
}

.popup-form__photo {
  margin-bottom: 14px;
}
.popup-form__photo-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  background: #faf9f6;
  border: 1.5px dashed #c2bfb6;
  border-radius: 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  font-family: 'TTRegular';
  color: #444;
}
.popup-form__photo-trigger:hover {
  border-color: #d36718;
  background: #fff5e8;
}
.popup-form__photo-icon {
  flex-shrink: 0;
  color: #d36718;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-form__photo-text {
  text-align: left;
  font-size: 16px;
}
.popup-form__photo-text b {
  display: block;
  font-weight: 600;
  color: #262626;
}
.popup-form__photo-text small {
  display: block;
  color: #888;
  font-size: 12px;
  margin-top: 2px;
}
.popup-form__photo-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.popup-form__photo-previews:empty {
  display: none;
}
.popup-form__photo-thumb {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  background: #f0f0f0;
}
.popup-form__photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup-form__photo-thumb-del {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 20px;
  height: 20px;
  background: rgba(0,0,0,.55);
  color: #fff;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-form__photo-thumb-loader {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-form__photo-spin {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0,0,0,.15);
  border-top-color: #d36718;
  border-radius: 50%;
  animation: pf-spin .6s linear infinite;
}
@keyframes pf-spin { to { transform: rotate(360deg); } }
.popup-form__photo-status {
  font-size: 13px;
  color: #e53935;
  margin-top: 6px;
}

.popup-form__close {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
}

.popup-form__close img {
  width: 22px;
  height: 22px;
}

@media (max-width: 768px) {
  .popup-form__close img {
    width: 32px;
    height: 32px;
  }
}

.popup-form__success-icon {
  text-align: center;
  margin-bottom: 16px;
}

.popup-form__body_two {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}

.popup-form__body_two .popup-form__title {
  font-size: 28px;
}

.popup-form__body_two .popup-form__subtitle {
  font-size: 20px;
  color: #555;
  line-height: 1.5;
}

.popup-form__body_two .popup-form__number,
.popup-form__body_two .popup-form__number-cat {
  font-family: 'TTMedium';
  color: #262626;
}

/* Каталог: переставляем порядок и показываем подсказку и нужный subtitle */
.popup-form__body_two.is-catalog .popup-form__success-icon { order: 1; }
.popup-form__body_two.is-catalog .popup-form__title { order: 2; }
.popup-form__body_two.is-catalog .popup-form__subtitle_default { display: none; }
.popup-form__body_two.is-catalog .popup-form__subtitle_catalog { order: 3; display: block; margin-top: 14px; }
.popup-form__body_two.is-catalog .popup-form__hint { order: 4; display: block; margin: 18px 0 0; font-size: 20px; line-height: 1.5; color: #555; }
.popup-form__body_two.is-catalog .popup-form__btns { order: 5; margin: 14px 0 0; }

.popup-video {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.popup-video__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 0;
  padding-bottom: 3px;
  color: #333;
  z-index: 10;
  transition: background 0.2s;
}

.popup-video__close:hover {
  background: #fff;
}

.popup-video--vertical .popup-video__close {
  top: 12px;
  right: -48px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
}

.popup-video--vertical .popup-video__close:hover {
  background: #fff;
}

@media (max-width: 768px) {
  .popup-video__close {
    top: -44px;
    right: 4px;
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
  .popup-video--vertical .popup-video__close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
}

.popup-video.popup-video--vertical {
  width: auto;
  max-width: 90%;
  height: 90vh;
  aspect-ratio: 9 / 16;
}

.popup-video.popup-video--horizontal {
  width: 90%;
  max-width: 900px;
  height: auto;
  aspect-ratio: 16 / 9;
}

.popup-video__body {
  width: 100%;
  height: 100%;
}

.popup-video__body video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .popup-video.popup-video--vertical {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 90vh;
  }
  .popup-video.popup-video--horizontal {
    width: 100%;
    max-width: 100%;
  }
}

.wrapper {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  width: 100%;
  position: relative;
}

html.lock {
  overflow: hidden;
}

body {
  color: #262626;
  font-size: 20px;
  font-family: 'TTRegular';
  font-weight: 400;
  font-style: normal;
}

body._lock {
  overflow: hidden;
}

body.lock {
  overflow: hidden;
}

main {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

[class*='__container'] {
  max-width: 1328px;
  margin: 0 auto;
  padding: 0px 24px;
}

@media (max-width: 1441px) {
  [class*='__container'] {
    max-width: 1200px;
  }
}

@media (max-width: 375px) {
  [class*='__container'] {
    padding: 0px 10px;
  }
}

.header {
  position: relative;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 94px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo img {
  width: var(--header-logo-w, 192px);
}

.header__body {
  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;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 75%;
          flex: 0 1 75%;
}

@media (max-width: 991.98px) {
  .header__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translate(100%, 0px);
            transform: translate(100%, 0px);
    -webkit-transition: -webkit-transform 0.8s;
    transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    transition: transform 0.8s, -webkit-transform 0.8s;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 93px;
    left: 0;
    overflow: auto;
    padding: 25px 15px 30px 15px;
    background-color: #faf9f6;
    border-radius: 8px;
    z-index: 5;
    color: #262626;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header__body._active {
    -webkit-transform: translate(0px, 0%);
            transform: translate(0px, 0%);
  }
}

.header__phone {
  color: #ffffff;
  font-family: 'TTMedium';
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__phone:hover {
  color: #d36718;
}

@media (max-width: 1441px) {
  .header__phone {
    font-size: 16px;
  }
}

@media (max-width: 991.98px) {
  .header__phone {
    color: #262626;
    font-size: 20px;
    margin-bottom: 25px;
  }
}

.header__button {
  cursor: pointer;
  font-family: 'TTMedium';
  font-size: 16px;
  border-radius: 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(#faaf1c), to(#d36718));
  background: linear-gradient(180deg, #faaf1c 0%, #d36718 100%);
  padding: 9px 24px;
  color: #ffffff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.header__button:hover {
  opacity: 0.7;
}

@media (max-width: 991.98px) {
  .header__button {
    width: 100%;
    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;
  }
}

@media (max-width: 991.98px) {
  .menu {
    margin-bottom: 25px;
  }
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

@media (max-width: 991.98px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.menu__item {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.menu__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25px;
  width: 0%;
  height: 2px;
  background: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu__item:hover::before {
  width: 100%;
}

.menu__link {
  color: #ffffff;
  font-family: 'TTMedium';
}

@media (max-width: 1441px) {
  .menu__link {
    font-size: 16px;
  }
}

@media (max-width: 991.98px) {
  .menu__link {
    color: #262626;
    font-size: 20px;
  }
}

@media (max-width: 991.98px) {
  .header__burger {
    display: block;
    position: absolute;
    width: 30px;
    height: 18px;
    cursor: pointer;
    z-index: 10;
    right: 15px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .header__burger span {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    top: calc(50% - 1px);
    left: 0px;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
  }
  .header__burger span:first-child {
    top: 0px;
  }
  .header__burger span:last-child {
    top: auto;
    bottom: 0px;
  }
  .header__burger._active span {
    -webkit-transform: scale(0);
            transform: scale(0);
    background-color: #ffffff;
  }
  .header__burger._active span:first-child {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 8px;
  }
  .header__burger._active span:last-child {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: 8px;
  }
}

.intro {
  overflow: hidden;
  max-width: 100vw;
}

.intro__background {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

@media (min-width: 1328px) and (max-height: 600px) {
  .intro__background {
    height: 700px;
  }
}

@media (max-width: 1328px) and (max-height: 600px) {
  .intro__background {
    height: 600px;
  }
}

.intro__container {
  height: calc(100vh - 94px);
  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;
  color: #ffffff;
}

@media (min-width: 1328px) and (max-height: 600px) {
  .intro__container {
    height: 606px;
  }
}

@media (max-width: 1328px) and (max-height: 600px) {
  .intro__container {
    height: 506px;
  }
}

.intro__body {
  display: block;
}

.intro__suptitle {
  border-radius: 42px;
  background-color: #391085;
  width: 260px;
  height: 47px;
  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: 24px;
  font-family: 'TTMedium';
  margin-bottom: 16px;
}

@media (max-width: 1441px) {
  .intro__suptitle {
    font-size: 18px;
    width: 200px;
    height: 37px;
  }
}

@media (max-width: 767.98px) {
  .intro__suptitle {
    display: none;
  }
}

.intro__suptitle_n {
  width: 280px;
  gap: 10px;
}

.intro__suptitle_n img {
  width: 24px;
}

@media (max-width: 1441px) {
  .intro__suptitle_n img {
    width: 18px;
  }
}

@media (max-width: 1441px) {
  .intro__suptitle_n {
    width: 220px;
  }
}

@media (max-width: 767.98px) {
  .intro__suptitle_n {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 767.98px) {
  .intro__suptitle_met {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.intro__title {
  font-size: 79px;
  font-style: normal;
  font-family: 'TTBold';
  line-height: 110%;
  max-width: 1150px;
  margin-bottom: 40px;
}

@media (max-width: 1441px) {
  .intro__title {
    font-size: 55px;
    max-width: 850px;
  }
}

@media (max-width: 767.98px) {
  .intro__title {
    font-size: 32px;
    max-width: 340px;
  }
}

.intro__title_n {
  background-color: #070504cc;
  border-radius: 10px;
  padding: 5px;
}

.intro__subtitle {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.intro__subtitle img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.intro__subtitle p {
  font-size: 20px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 140%;
}

@media (max-width: 767.98px) {
  .intro__subtitle p {
    font-size: 16px;
  }
}

.intro__subtitle_n {
  background-color: #070504cc;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 10px;
  padding: 5px;
}

.intro__button {
  position: relative;
  width: 381px;
  height: 93px;
  border-radius: 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(#faaf1c), to(#d36718));
  background: linear-gradient(180deg, #faaf1c 0%, #d36718 100%);
  -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
  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-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.intro__button p {
  font-size: 32px;
  font-style: normal;
  font-family: 'TTMedium';
  line-height: 140%;
  color: #ffffff;
}

.intro__button:hover {
  opacity: 0.7;
}

@media (max-width: 991.98px) {
  .intro__button {
    width: 301px;
    height: 73px;
  }
  .intro__button p {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .intro__button {
    width: 100%;
  }
}

.intro__sale {
  position: absolute;
  right: -50px;
  top: -30px;
}

@media (max-width: 767.98px) {
  .intro__sale {
    right: -25px;
    top: -47px;
  }
}

.policy {
  position: fixed;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  visibility: hidden;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.95);
}

.policy.show {
  z-index: 160;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
  overflow: hidden;
}

.policy__wrapper {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.policy__content {
  height: 80vh;
  padding: 40px;
  width: 100%;
  max-width: 626px;
  background-color: #faf9f6;
  border-radius: 10px;
}

@media (max-width: 767.98px) {
  .policy__content {
    padding: 24px;
  }
}

.policy__close {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 60px;
  font-weight: bolder;
  color: #ffffff;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.policy__body {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 100%;
  padding-right: 10px;
}

.policy__body::-webkit-scrollbar {
  width: 4px;
}

.policy__body::-webkit-scrollbar-track {
  background-color: rgba(252, 242, 242, 0.92);
}

.policy__body::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: 8px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.policy__body::-webkit-scrollbar-thumb:hover {
  background: #393a3cb3;
}

.policy__block {
  position: relative;
  overflow: hidden;
  height: 100%;
  max-width: 100%;
}

.policy__title {
  text-align: center;
  font-size: 28px;
  font-family: 'TTBold';
  margin-bottom: 24px;
}

.policy__item:not(:last-child) {
  margin-bottom: 24px;
}

.policy__name {
  font-size: 20px;
  font-family: 'TTMedium';
  margin-bottom: 10px;
}

.policy__text {
  font-size: 16px;
  line-height: 130%;
  margin-bottom: 5px;
}

.policy__list {
  list-style-type: circle;
  margin: 15px 0px;
}

.policy__element {
  list-style-type: disc;
  list-style-position: inside;
  margin-left: 15px;
  font-size: 18px;
  line-height: 120%;
}

.policy__element:not(:last-child) {
  margin-bottom: 10px;
}

.work {
  padding: 120px 0px;
}

@media (max-width: 991.98px) {
  .work {
    padding: 60px 0px;
  }
}

@media (max-width: 767.98px) {
  .work {
    padding: 24px 0px;
  }
}

.work__title {
  font-size: 64px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 110%;
  color: #262626;
  margin-bottom: 80px;
}

@media (max-width: 1441px) {
  .work__title {
    font-size: 50px;
    margin-bottom: 60px;
  }
}

@media (min-width: 767.98px) {
  .work__title mark {
    color: #ffffff;
    background-color: #391085;
    border-radius: 10px;
    font-family: 'TTBold';
    padding: 0px 5px;
  }
}

@media (max-width: 767.98px) {
  .work__title mark {
    background-color: inherit;
    color: #262626;
  }
}

.work__title span {
  font-family: 'TTBold';
}

@media (max-width: 767.98px) {
  .work__title span {
    font-family: 'TTMedium';
  }
}

@media (max-width: 991.98px) {
  .work__title {
    font-size: 44px;
  }
}

@media (max-width: 767.98px) {
  .work__title {
    font-size: 44px;
    font-size: 32px;
    font-family: 'TTMedium';
    margin-bottom: 24px;
  }
}

.work__body {
  position: relative;
}

.work__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 72px;
  height: 72px;
  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: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#faaf1c), to(#d36718));
  background: linear-gradient(180deg, #faaf1c 0%, #d36718 100%);
  cursor: pointer;
  z-index: 5;
}

.work__arrow_prew {
  left: 8px;
}

.work__arrow_prew img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (max-width: 767.98px) {
  .work__arrow_prew {
    left: 4px;
  }
}

.work__arrow_next {
  right: 8px;
}

@media (max-width: 767.98px) {
  .work__arrow_next {
    right: 4px;
  }
}

@media (max-width: 1328px) {
  .work__arrow {
    width: 48px;
    height: 48px;
  }
  .work__arrow img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 991.98px) {
  .work__arrow {
    top: calc(35vw - 48px);
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.work__block {
  overflow: hidden;
}

.work__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.work__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media (max-width: 991.98px) {
  .work__slide {
    display: block;
  }
}

.work__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

@media (max-width: 991.98px) {
  .work__left {
    margin-bottom: 24px;
  }
}

.work__bigimg {
  width: 100%;
  padding-bottom: 69%;
  border-radius: 8px;
  cursor: pointer;
}

.work__images {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  gap: 16px;
}

.work__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  border-radius: 8px;
  padding-bottom: 23%;
  cursor: pointer;
}

.work__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.work__name {
  font-size: 30px;
  margin-top: -7px;
  font-style: normal;
  font-family: 'TTMedium';
  line-height: 120%;
  margin-bottom: 24px;
}

@media (max-width: 1441px) {
  .work__name {
    font-size: 24px;
    margin-top: -4px;
  }
}

@media (max-width: 767.98px) {
  .work__name {
    font-size: 24px;
  }
}

.work__texts {
  font-size: 16px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 140%;
  margin-bottom: 30px;
}

.work__texts p:not(:last-child) {
  margin-bottom: 15px;
}

@media (max-width: 1441px) {
  .work__texts {
    font-size: 15px;
  }
}

@media (max-width: 991.98px) {
  .work__texts {
    font-size: 16px;
  }
}

.work__values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

@media (max-width: 1441px) {
  .work__values {
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .work__values {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.work__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.work__size p {
  font-size: 24px;
  font-style: normal;
  font-family: 'TTMedium';
  line-height: 100%;
}

.work__size span {
  font-size: 14px;
  font-style: normal;
  font-family: 'TTRegular';
}

.button-work {
  border-radius: 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(#faaf1c), to(#d36718));
  background: linear-gradient(180deg, #faaf1c 0%, #d36718 100%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 24px 40px;
  width: 482px;
}

@media (max-width: 1441px) {
  .button-work {
    padding: 14px 30px;
    width: 400px;
  }
}

@media (max-width: 767.98px) {
  .button-work {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 1050px) {
  .button-work {
    padding: 20px 20px;
  }
}

.button-work__icon {
  margin-right: 24px;
}

@media (max-width: 767.98px) {
  .button-work__icon {
    display: none;
  }
}

.button-work__texts {
  color: #ffffff;
}

.button-work__name {
  font-size: 32px;
  font-style: normal;
  font-family: 'TTMedium';
  margin-bottom: 8px;
}

@media (max-width: 1441px) {
  .button-work__name {
    font-size: 26px;
  }
}

@media (max-width: 767.98px) {
  .button-work__name {
    font-size: 24px;
  }
}

.button-work__subname {
  font-size: 14px;
  font-style: italic;
  font-family: 'TTMedium';
}

.swiper__container {
  margin: 0;
}

.swiper-pagination {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767.98px) {
  .swiper-pagination {
    margin-top: 24px;
  }
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #bfbfbf;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background-color: #d36718;
}

.products {
  padding: 120px 0px;
}

@media (max-width: 991.98px) {
  .products {
    padding: 60px 0px;
  }
}

@media (max-width: 767.98px) {
  .products {
    padding: 24px 0px;
  }
}

.products__title {
  font-size: 64px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 110%;
  color: #262626;
  margin-bottom: 80px;
}

@media (max-width: 1441px) {
  .products__title {
    font-size: 50px;
    margin-bottom: 60px;
  }
}

@media (min-width: 767.98px) {
  .products__title mark {
    color: #ffffff;
    background-color: #391085;
    border-radius: 10px;
    padding: 0px 5px;
  }
}

@media (max-width: 767.98px) {
  .products__title mark {
    background-color: inherit;
    color: #262626;
  }
}

@media (max-width: 991.98px) {
  .products__title {
    font-size: 40px;
  }
}

@media (max-width: 767.98px) {
  .products__title {
    font-size: 44px;
    font-size: 32px;
    font-family: 'TTMedium';
    margin-bottom: 24px;
  }
}

.products__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
}

@media (max-width: 767.98px) {
  .products__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 24px;
  }
}

.products__bigimg {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  padding-bottom: 25%;
  border-radius: 8px;
  background-color: #faf9f6;
}

@media (max-width: 767.98px) {
  .products__bigimg {
    padding-bottom: 70%;
  }
}

.products__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.products__name {
  color: #262626;
  font-family: 'TTMedium';
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 120%;
  /* 38.4px */
}

@media (max-width: 767.98px) {
  .products__name {
    font-size: 24px;
  }
}

.products__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.products__item:not(:last-child) {
  margin-bottom: 18px;
}

.products__text {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.center-product {
  margin-bottom: 70px;
}

@media (max-width: 767.98px) {
  .center-product {
    margin-bottom: 48px;
  }
}

.center-product__title {
  font-family: 'TTMedium';
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: #262626;
  text-align: center;
  margin-bottom: 48px;
}

@media (max-width: 767.98px) {
  .center-product__title {
    margin-bottom: 24px;
  }
}

.center-product__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media (max-width: 767.98px) {
  .center-product__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.center-product__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
}

.center-product__image {
  border-radius: 8px;
  padding-bottom: 79%;
  margin-bottom: 16px;
  background-color: #faf9f6;
}

.center-product__name {
  font-family: 'TTMedium';
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  text-align: center;
}

.bottom-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media (max-width: 991.98px) {
  .bottom-products {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.bottom-products__sale {
  position: absolute;
  right: -51px;
  bottom: 43.7px;
}

.bottom-products__sale img {
  width: 102px;
  height: 102px;
}

@media (max-width: 1100px) {
  .bottom-products__sale {
    display: none;
  }
}

.bottom-products__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55%;
          flex: 0 1 55%;
}

.bottom-products__title {
  font-family: 'TTRegular';
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  color: #262626;
  margin-bottom: 8px;
}

@media (max-width: 1100px) {
  .bottom-products__title {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .bottom-products__title {
    font-family: 'TTMedium';
  }
}

.bottom-products__text {
  font-family: 'TTMedium';
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

@media (max-width: 1100px) {
  .bottom-products__text {
    font-size: 20px;
  }
}

@media (max-width: 767.98px) {
  .bottom-products__text {
    font-family: 'TTRegular';
  }
}

.bottom-products__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 461px;
          flex: 0 0 461px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

@media (max-width: 991.98px) {
  .bottom-products__right {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

@media (max-width: 767.98px) {
  .bottom-products__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.bottom-products__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 24px;
  border-radius: 24px;
  background: #faf9f6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: 'TTMedium';
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: #262626;
}

.bottom-products__icon img {
  width: 48px;
  height: 48px;
}

.production {
  padding: 120px 0px;
}

@media (max-width: 991.98px) {
  .production {
    padding: 60px 0px;
  }
}

@media (max-width: 767.98px) {
  .production {
    padding: 24px 0px;
  }
}

.production__title {
  font-size: 64px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 110%;
  color: #262626;
  margin-bottom: 80px;
}

@media (max-width: 1441px) {
  .production__title {
    font-size: 50px;
    margin-bottom: 60px;
  }
}

@media (min-width: 767.98px) {
  .production__title mark {
    color: #ffffff;
    background-color: #391085;
    border-radius: 10px;
    padding: 0px 5px;
  }
}

@media (max-width: 767.98px) {
  .production__title mark {
    background-color: inherit;
    color: #262626;
  }
}

@media (max-width: 991.98px) {
  .production__title {
    font-size: 40px;
  }
}

@media (max-width: 767.98px) {
  .production__title {
    font-size: 44px;
    font-size: 32px;
    font-family: 'TTMedium';
    margin-bottom: 24px;
  }
}

.production__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media (max-width: 991.98px) {
  .production__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.production__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.production__bigimg {
  width: 100%;
  padding-bottom: 69%;
  border-radius: 8px;
  cursor: pointer;
}

.production__images {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  gap: 16px;
}

.production__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  border-radius: 8px;
  padding-bottom: 23%;
  cursor: pointer;
}

.production__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.production__name {
  color: #262626;
  font-family: 'TTMedium';
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 120%;
  /* 38.4px */
}

@media (max-width: 767.98px) {
  .production__name {
    font-size: 24px;
  }
}

.production__items {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin-bottom: 40px;
}

.production__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.production__item:not(:last-child) {
  margin-bottom: 22px;
}

.production__text {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.quiz {
  position: relative;
  height: 1081px;
}

@media (max-width: 1441px) {
  .quiz {
    height: 961px;
  }
}

@media (max-width: 991.98px) {
  .quiz {
    height: auto;
    background-color: #262626;
  }
}

.quiz__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1081px;
}

@media (max-width: 1441px) {
  .quiz__background {
    height: 961px;
  }
}

@media (max-width: 991.98px) {
  .quiz__background {
    display: none;
  }
}

.quiz__container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 1441px) {
  .quiz__container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 991.98px) {
  .quiz__container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.quiz__title {
  font-size: 64px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 110%;
  text-align: center;
  color: #ffffff;
  margin-bottom: 80px;
}

@media (min-width: 767.98px) {
  .quiz__title mark {
    color: #ffffff;
    background: -webkit-gradient(linear, left top, left bottom, from(#faaf1c), to(#d36718));
    background: linear-gradient(180deg, #faaf1c 0%, #d36718 100%);
    border-radius: 10px;
    font-family: 'TTBold';
    padding: 0px 5px;
  }
}

@media (max-width: 767.98px) {
  .quiz__title mark {
    background-color: inherit;
    color: #ffffff;
  }
}

.quiz__title span {
  font-family: 'TTBold';
}

@media (max-width: 767.98px) {
  .quiz__title span {
    font-family: 'TTMedium';
  }
}

.quiz__title_n {
  font-size: 41px;
}

@media (max-width: 1441px) {
  .quiz__title {
    font-size: 44px;
    max-width: 869px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 60px;
  }
  .quiz__title_n {
    font-size: 41px;
  }
}

@media (max-width: 991.98px) {
  .quiz__title {
    font-size: 44px;
  }
}

@media (max-width: 767.98px) {
  .quiz__title {
    font-size: 44px;
    font-size: 32px;
    font-family: 'TTMedium';
    margin-bottom: 24px;
  }
  .quiz__title_n {
    font-size: 26px;
  }
}

@media (max-width: 390px) {
  .quiz__title {
    font-size: 23px;
  }
}

.quiz__body {
  background-color: #ffffff;
  width: 440px;
  border-radius: 16px;
  margin: 0 auto;
  padding: 40px;
  position: relative;
}

@media (max-width: 479.98px) {
  .quiz__body {
    width: 100%;
    padding: 24px;
  }
}

.quiz__decor {
  position: absolute;
  top: -54px;
  right: -65px;
}

@media (max-width: 767.98px) {
  .quiz__decor {
    display: none;
  }
}

.quiz__mobile {
  background-color: #ffffff;
  width: 440px;
  border-radius: 16px;
  margin: 0 auto;
  padding: 40px;
  display: none;
}

@media (max-width: 479.98px) {
  .quiz__mobile {
    width: 100%;
    padding: 24px;
  }
}

.quiz__name {
  font-size: 31px;
  font-style: normal;
  font-family: 'TTBold';
  line-height: 130%;
  margin-bottom: 32px;
  min-height: 81px;
}

@media (max-width: 479.98px) {
  .quiz__name {
    font-size: 24px;
    min-height: 63px;
  }
}

.quiz__elements {
  min-height: 260px;
}

.quiz__element {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.quiz__element:not(:last-child) {
  margin-bottom: 20px;
}

.quiz__element:hover .quiz__radio {
  background-color: #262626;
}

.quiz__radio {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  border: 1px solid #262626;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.quiz__value {
  font-size: 20px;
  font-style: normal;
  font-family: 'TTRegular';
}

.quiz__item {
  display: none;
}

.quiz__item.active {
  display: block;
}

.quiz__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
  margin-top: 62px;
}

@media (max-width: 479.98px) {
  .quiz__bottom {
    margin-top: 32px;
  }
}

.quiz__line {
  border-radius: 18px;
  height: 4px;
  background: #d9d9d9;
  width: 100%;
}

.quiz__progres {
  background-color: #237804;
  height: 100%;
  width: 0%;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.quiz__number {
  font-size: 24px;
  font-style: normal;
  font-family: 'TTMedium';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-quiz__name {
  font-size: 26px;
  font-style: normal;
  font-family: 'TTBold';
  line-height: 120%;
  margin-bottom: 24px;
}

@media (max-width: 479.98px) {
  .mobile-quiz__name {
    font-size: 24px;
  }
}

.mobile-quiz__subtitle {
  font-size: 20px;
  color: #555;
  line-height: 1.5;
}

.mobile-quiz__body_two {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mobile-quiz__body_two .mobile-quiz__name {
  font-size: 28px;
  font-family: 'TTMedium';
}

.mobile-quiz__body_two .mobile-quiz__number {
  font-family: 'TTMedium';
  color: #262626;
}

.mobile-quiz__body_two .mobile-quiz__subtitle {
  margin-top: 14px;
  text-align: center;
}

.mobile-quiz__body_two .mobile-quiz__hint {
  font-size: 20px;
  line-height: 1.5;
  color: #555;
  text-align: center;
  margin: 18px 0 0;
}

.mobile-quiz__body_two .mobile-quiz__btns {
  display: flex;
  justify-content: center;
  margin: 14px 0 0;
}

.mobile-quiz__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mobile-quiz__input {
  margin-bottom: 16px;
  height: 60px;
  width: 100%;
  border-radius: 12px;
  background-color: #faf9f6;
  color: #262626;
  padding-left: 24px;
  font-size: 20px;
  font-style: normal;
  font-family: 'TTRegular';
}

.mobile-quiz__input::-webkit-input-placeholder {
  color: #262626;
}

.mobile-quiz__input:-ms-input-placeholder {
  color: #262626;
}

.mobile-quiz__input::-ms-input-placeholder {
  color: #262626;
}

.mobile-quiz__input::placeholder {
  color: #262626;
}

.mobile-quiz__button {
  margin-top: 0;
  margin-bottom: 12px;
  height: 82px;
  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: 24px;
  font-style: normal;
  font-family: 'TTMedium';
  border-radius: 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(#faaf1c), to(#d36718));
  background: linear-gradient(180deg, #faaf1c 0%, #d36718 100%);
  color: #ffffff;
}

.mobile-quiz__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  cursor: pointer;
  margin: 12px 0;
  padding: 10px 14px;
  border-radius: 12px;
  background: transparent;
  outline: 2px solid transparent;
  outline-offset: 0;
  transition: outline-color .2s, background-color .2s;
  -webkit-tap-highlight-color: rgba(0,0,0,0.04);
}

.mobile-quiz__label input {
  margin-top: 2px;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  cursor: pointer;
  accent-color: #d36718;
}

.mobile-quiz__label.is-error {
  outline-color: #e53935;
  background: rgba(229, 57, 53, 0.06);
}

.mobile-quiz__label p {
  font-size: 14px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 140%;
}

.mobile-quiz__label p span {
  color: #1890ff;
  cursor: pointer;
  text-decoration: underline;
}

.mobile-quiz__error {
  color: #e53935;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  margin-top: 8px;
  font-family: 'TTRegular';
}

/* Quiz photo upload */
.quiz-upload { margin-top: 4px; margin-bottom: 0; }
.quiz-upload__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  background: #faf9f6;
  border: 1.5px dashed #c2bfb6;
  border-radius: 14px;
  cursor: pointer;
  color: #444;
  font-family: 'TTRegular';
  font-size: 16px;
  transition: border-color .2s, background .2s;
}
.quiz-upload__trigger:hover { border-color: #d36718; background: #fff5e8; }
.quiz-upload__icon {
  flex-shrink: 0;
  color: #d36718;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz-upload__text {
  text-align: left;
  font-size: 16px;
}
.quiz-upload__text b {
  display: block;
  font-weight: 600;
  color: #262626;
}
.quiz-upload__text small {
  display: block;
  color: #888;
  font-size: 12px;
  margin-top: 2px;
}
.quiz-upload__trigger input { display: none; }
.quiz-upload__previews {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.quiz-upload__preview {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}
.quiz-upload__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quiz-upload__preview-loading {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz-upload__preview-loading::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid #d36718;
  border-top-color: transparent;
  border-radius: 50%;
  animation: quiz-spin .6s linear infinite;
}
@keyframes quiz-spin { to { transform: rotate(360deg); } }
.quiz-upload__preview-remove {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  background: rgba(0,0,0,.5);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
}
.quiz-upload__preview-remove:hover { background: rgba(0,0,0,.8); }
.quiz-upload__error {
  color: #e53e3e;
  font-size: 13px;
  font-family: 'TTRegular';
  margin-top: 6px;
  min-height: 0;
}
.mobile-quiz__button.is-loading {
  opacity: .7;
  pointer-events: none;
}
.mobile-quiz__button .quiz-spinner {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: quiz-spin .6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

.quize {
  position: relative;
  height: 1081px;
}

@media (max-width: 1441px) {
  .quize {
    height: 961px;
  }
}

@media (max-width: 991.98px) {
  .quize {
    height: auto;
    background-color: #262626;
  }
}

.quize__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1081px;
}

@media (max-width: 1441px) {
  .quize__background {
    height: 961px;
  }
}

@media (max-width: 991.98px) {
  .quize__background {
    display: none;
  }
}

.quize__container {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 1441px) {
  .quize__container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 991.98px) {
  .quize__container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.quize__title {
  font-size: 64px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 110%;
  text-align: center;
  color: #ffffff;
  margin-bottom: 80px;
}

@media (min-width: 767.98px) {
  .quize__title mark {
    color: #ffffff;
    background: -webkit-gradient(linear, left top, left bottom, from(#faaf1c), to(#d36718));
    background: linear-gradient(180deg, #faaf1c 0%, #d36718 100%);
    border-radius: 10px;
    font-family: 'TTBold';
    padding: 0px 5px;
  }
}

@media (max-width: 767.98px) {
  .quize__title mark {
    background-color: inherit;
    color: #ffffff;
  }
}

.quize__title span {
  font-family: 'TTBold';
}

@media (max-width: 767.98px) {
  .quize__title span {
    font-family: 'TTMedium';
  }
}

.quize__title_n {
  font-size: 41px;
}

@media (max-width: 1441px) {
  .quize__title {
    font-size: 44px;
    max-width: 869px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 60px;
  }
  .quize__title_n {
    font-size: 41px;
  }
}

@media (max-width: 991.98px) {
  .quize__title {
    font-size: 44px;
  }
}

@media (max-width: 767.98px) {
  .quize__title {
    font-size: 44px;
    font-size: 32px;
    font-family: 'TTMedium';
    margin-bottom: 24px;
  }
  .quize__title_n {
    font-size: 26px;
  }
}

@media (max-width: 390px) {
  .quize__title {
    font-size: 23px;
  }
}

.quize__body {
  background-color: #ffffff;
  width: 440px;
  border-radius: 16px;
  margin: 0 auto;
  padding: 40px;
  position: relative;
}

@media (max-width: 479.98px) {
  .quize__body {
    width: 100%;
    padding: 24px;
  }
}

.quize__decor {
  position: absolute;
  top: -54px;
  right: -65px;
}

@media (max-width: 767.98px) {
  .quize__decor {
    display: none;
  }
}

.quize__mobile {
  background-color: #ffffff;
  width: 440px;
  border-radius: 16px;
  margin: 0 auto;
  padding: 40px;
  display: none;
}

@media (max-width: 479.98px) {
  .quize__mobile {
    width: 100%;
    padding: 24px;
  }
}

.quize__name {
  font-size: 31px;
  font-style: normal;
  font-family: 'TTBold';
  line-height: 130%;
  margin-bottom: 32px;
  min-height: 81px;
}

@media (max-width: 479.98px) {
  .quize__name {
    font-size: 24px;
    min-height: 63px;
  }
}

.quize__elements {
  min-height: 260px;
}

.quize__element {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.quize__element:not(:last-child) {
  margin-bottom: 20px;
}

.quize__element:hover .quize__radio {
  background-color: #262626;
}

.quize__radio {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  border: 1px solid #262626;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.quize__value {
  font-size: 20px;
  font-style: normal;
  font-family: 'TTRegular';
}

.quize__item {
  display: none;
}

.quize__item.active {
  display: block;
}

.quize__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
  margin-top: 62px;
}

@media (max-width: 479.98px) {
  .quize__bottom {
    margin-top: 32px;
  }
}

.quize__line {
  border-radius: 18px;
  height: 4px;
  background: #d9d9d9;
  width: 100%;
}

.quize__progres {
  background-color: #237804;
  height: 100%;
  width: 0%;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.quize__number {
  font-size: 24px;
  font-style: normal;
  font-family: 'TTMedium';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-quize__name {
  font-size: 26px;
  font-style: normal;
  font-family: 'TTBold';
  line-height: 120%;
  margin-bottom: 24px;
}

@media (max-width: 479.98px) {
  .mobile-quize__name {
    font-size: 24px;
  }
}

.mobile-quize__subtitle {
  font-size: 27px;
  line-height: 140%;
}

.mobile-quize__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mobile-quize__input {
  margin-bottom: 16px;
  height: 60px;
  width: 100%;
  border-radius: 12px;
  background-color: #faf9f6;
  color: #262626;
  padding-left: 24px;
  font-size: 20px;
  font-style: normal;
  font-family: 'TTRegular';
}

.mobile-quize__input::-webkit-input-placeholder {
  color: #262626;
}

.mobile-quize__input:-ms-input-placeholder {
  color: #262626;
}

.mobile-quize__input::-ms-input-placeholder {
  color: #262626;
}

.mobile-quize__input::placeholder {
  color: #262626;
}

.mobile-quize__button {
  margin-top: 24px;
  margin-bottom: 32px;
  height: 82px;
  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: 24px;
  font-style: normal;
  font-family: 'TTMedium';
  border-radius: 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(#faaf1c), to(#d36718));
  background: linear-gradient(180deg, #faaf1c 0%, #d36718 100%);
  color: #ffffff;
}

.mobile-quize__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.mobile-quize__label input {
  margin-top: 2px;
}

.mobile-quize__label p {
  font-size: 14px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 140%;
}

.mobile-quize__label p span {
  color: #1890ff;
  cursor: pointer;
}

.reviews__container {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 991.98px) {
  .reviews__container {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.reviews__title {
  font-size: 64px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 110%;
  margin-bottom: 40px;
}

.reviews__title span {
  font-family: 'TTBold';
}

@media (max-width: 1441px) {
  .reviews__title {
    font-size: 50px;
  }
}

@media (max-width: 767.98px) {
  .reviews__title {
    font-size: 32px;
    font-style: normal;
    font-family: 'TTMedium';
    margin-bottom: 24px;
  }
  .reviews__title span {
    font-family: 'TTMedium';
  }
}

.reviews__top {
  padding: 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;
  background-color: #faf9f6;
  border-radius: 16px;
  margin-bottom: 40px;
  display: none;
}

@media (max-width: 767.98px) {
  .reviews__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 24px;
  }
}

.reviews__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

@media (max-width: 767.98px) {
  .reviews__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 16px;
  }
}

.reviews__value {
  font-size: 24px;
  font-style: normal;
  font-family: 'TTMedium';
}

.reviews__text {
  font-size: 16px;
}

@media (max-width: 767.98px) {
  .reviews__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}

.reviews__button {
  border-radius: 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(#faaf1c), to(#d36718));
  background: linear-gradient(180deg, #faaf1c 0%, #d36718 100%);
  font-size: 24px;
  font-style: normal;
  font-family: 'TTMedium';
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 40px;
}

@media (max-width: 991.98px) {
  .reviews__button {
    padding: 24px;
  }
}

@media (max-width: 767.98px) {
  .reviews__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
}

.reviews__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.reviews__all {
  cursor: pointer;
  border-radius: 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(#faaf1c), to(#d36718));
  background: linear-gradient(180deg, #faaf1c 0%, #d36718 100%);
  font-size: 24px;
  font-style: normal;
  font-family: 'TTMedium';
  color: #ffffff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  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;
  padding: 24px 40px;
}

.reviews__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}

@media (max-width: 1441px) {
  .reviews__items {
    gap: 20px;
    row-gap: 40px;
  }
}

@media (max-width: 767.98px) {
  .reviews__items {
    margin-bottom: 24px;
  }
}

.reviews__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 27px);
          flex: 0 1 calc(33.333% - 27px);
  background-color: #faf9f6;
  border-radius: 16px;
  padding: 40px;
  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;
  overflow: hidden;
}

@media (max-width: 1328px) {
  .reviews__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(33.333% - 14px);
            flex: 0 1 calc(33.333% - 14px);
  }
}

@media (max-width: 1200px) {
  .reviews__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 10px);
            flex: 0 1 calc(50% - 10px);
  }
}

@media (max-width: 767.98px) {
  .reviews__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    padding: 24px;
  }
}

.reviews__item.none {
  display: none;
}

@media (max-width: 1200px) {
  .reviews__items--collapsed .reviews__item:nth-child(3) {
    display: none;
  }
}

.reviews__decor {
  position: absolute;
  top: 0;
  right: 0;
}

.reviews__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.reviews__avatar img {
  border-radius: 50%;
  width: 73px;
  height: 73px;
}

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

.reviews__name {
  font-size: 24px;
  font-style: normal;
  font-family: 'TTMedium';
  line-height: 130%;
}

.reviews__time {
  font-size: 16px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 140%;
}

.reviews__content {
  font-size: 16px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 140%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.reviews__links {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.reviews__link {
  font-size: 20px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 140%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #391085;
}

.stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.stars__item img {
  width: 16px;
}

.about {
  background-color: #391085;
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 1441px) {
  .about {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 991.98px) {
  .about {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.about__top {
  margin-bottom: 80px;
}

@media (max-width: 991.98px) {
  .about__top {
    margin-bottom: 24px;
  }
}

.about__bottom {
  padding-top: 80px;
}

@media (max-width: 991.98px) {
  .about__bottom {
    padding-top: 24px;
  }
}

.top-about {
  height: 688px;
  position: relative;
}

@media (max-width: 1441px) {
  .top-about {
    height: auto;
  }
}

@media (max-width: 1200px) {
  .top-about {
    height: auto;
  }
}

.top-about__background {
  height: 688px;
  width: 100%;
  border-radius: 24px;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1441px) {
  .top-about__background {
    height: 100%;
  }
}

.top-about__body {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 56px;
}

@media (max-width: 1200px) {
  .top-about__body {
    padding: 40px;
  }
}

@media (max-width: 991.98px) {
  .top-about__body {
    display: block;
    padding-bottom: 0;
  }
}

@media (max-width: 479.98px) {
  .top-about__body {
    padding: 24px 24px 0px 24px;
  }
}

.top-about__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 570px;
          flex: 0 1 570px;
}

@media (max-width: 1200px) {
  .top-about__left {
    flex: 0 1 50%;
    max-width: 550px;
  }
}

@media (max-width: 991.98px) {
  .top-about__left {
    flex: none;
    max-width: none;
    margin-bottom: 24px;
  }
}

.top-about__title {
  font-size: 64px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 110%;
  color: #ffffff;
  margin-bottom: 40px;
}

@media (max-width: 1441px) {
  .top-about__title {
    font-size: 50px;
    max-width: 500px;
  }
}

.top-about__title_met {
  font-size: 55px;
  max-width: 500px;
}

@media (max-width: 1441px) {
  .top-about__title_met {
    font-size: 50px;
    max-width: 500px;
  }
}

.top-about__title span {
  font-family: 'TTBold';
}

@media (max-width: 1200px) {
  .top-about__title {
    font-size: 40px;
    margin-bottom: 24px;
  }
}

@media (max-width: 991.98px) {
  .top-about__title {
    font-size: 32px;
  }
  .top-about__title span {
    font-family: 'TTRegular';
  }
}

.top-about__items {
  margin-bottom: 40px;
}

.top-about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.top-about__item:not(:last-child) {
  margin-bottom: 6px;
}

.top-about__item_met:not(:last-child) {
  margin-bottom: 13px;
}

@media (max-width: 991.98px) {
  .top-about__item_met:not(:last-child) {
    margin-bottom: 6px;
  }
}

.top-about__value {
  font-size: 20px;
  font-style: normal;
  font-family: 'TTRegular';
  color: #ffffff;
}

.top-about__text {
  font-size: 24px;
  font-style: normal;
  font-family: 'TTMedium';
  line-height: 130%;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .top-about__text {
    font-size: 20px;
    font-family: 'TTRegular';
  }
}

.top-about__right {
  position: absolute;
  bottom: -3px;
  right: 88px;
}

@media (max-width: 1441px) {
  .top-about__right {
    right: 40px;
  }
}

@media (max-width: 1200px) {
  .top-about__right {
    right: 20px;
  }
  .top-about__image img {
    width: 320px;
    height: auto;
  }
}

@media (max-width: 991.98px) {
  .top-about__right {
    position: relative;
    right: 0;
    display: flex;
    justify-content: center;
  }
  .top-about__image img {
    width: 360px;
  }
}

@media (max-width: 479.98px) {
  .top-about__image img {
    width: 100%;
  }
}

.top-about__content {
  position: absolute;
  top: 217px;
  left: 201px;
}

@media (max-width: 1200px) {
  .top-about__content {
    top: 150px;
    left: 140px;
  }
}

@media (max-width: 991.98px) {
  .top-about__content {
    width: 250px;
    left: 0;
    top: auto;
    bottom: 40px;
  }
}

.top-about__content span {
  font-size: 64px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 110%;
  color: #ffffff;
}

.top-about__elements {
  border-radius: 4px;
  background: #8950d8;
  padding: 16px;
  -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.05);
  font-size: 16px;
  font-style: normal;
  font-family: 'TTMedium';
  color: #ffffff;
}

.top-about__elements:not(:last-child) {
  margin-bottom: 2px;
}

.center-about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media (max-width: 991.98px) {
  .center-about__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.center-about__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33%;
          flex: 0 1 33%;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #ffffff;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .center-about__item {
    padding: 24px;
  }
}

.center-about__icon {
  margin-bottom: 24px;
}

.center-about__name {
  font-family: 'TTMedium';
  font-size: 32px;
  margin-bottom: 24px;
}

.center-about__text {
  font-size: 16px;
  line-height: 140%;
}

.bottom-about {
  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;
}

@media (max-width: 991.98px) {
  .bottom-about {
    display: block;
  }
}

.bottom-about__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 800px;
          flex: 0 1 800px;
}

@media (max-width: 1441px) {
  .bottom-about__left {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 750px;
            flex: 0 1 750px;
  }
}

@media (max-width: 991.98px) {
  .bottom-about__left {
    margin-bottom: 24px;
  }
}

.bottom-about__title {
  color: #ffffff;
  font-size: 64px;
  margin-bottom: 8px;
}

.bottom-about__title span {
  font-family: 'TTBold';
}

@media (max-width: 1441px) {
  .bottom-about__title {
    font-size: 50px;
  }
}

@media (max-width: 767.98px) {
  .bottom-about__title {
    font-size: 32px;
    font-family: 'TTMedium';
  }
  .bottom-about__title span {
    font-family: 'TTMedium';
  }
}

.bottom-about__text {
  font-size: 24px;
  font-family: 'TTMedium';
  line-height: 130%;
  color: #ffffff;
}

@media (max-width: 1441px) {
  .bottom-about__text {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .bottom-about__text {
    font-size: 20px;
    font-family: 'TTRegular';
    max-width: 90%;
  }
}

.bottom-about__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

@media (max-width: 767.98px) {
  .bottom-about__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.bottom-about__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px;
  border-radius: 24px;
  background-color: #ffffff;
  gap: 14px;
  position: relative;
}

@media (max-width: 1441px) {
  .bottom-about__button {
    padding: 20px;
    gap: 10px;
  }
}

.bottom-about__button_sad {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.bottom-about__button_sad .bottom-about__texts {
  height: 24px;
}

@media (max-width: 767.98px) {
  .bottom-about__button_sad .bottom-about__texts {
    height: auto;
  }
}

.bottom-about__decor {
  position: absolute;
  top: -78px;
  right: -30px;
}

@media (max-width: 767.98px) {
  .bottom-about__decor {
    top: -61px;
    right: -45px;
  }
}

.bottom-about__icon img {
  width: 48px;
  height: 48px;
}
.bottom-about__icon_red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  flex: 0 0 auto;
  box-shadow: 0 6px 14px rgba(220, 38, 38, 0.28);
}

@media (max-width: 767.98px) {
  .bottom-about__icon img {
    width: 48px;
    height: 48px;
  }
}

.bottom-about__texts {
  color: #262626;
}

.bottom-about__texts p {
  font-family: 'TTMedium';
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}

@media (max-width: 767.98px) {
  .bottom-about__texts p {
    font-size: 20px;
  }
}

@media (max-width: 1441px) {
  .bottom-about__texts p {
    font-size: 18px;
  }
}

.bottom-about__texts span {
  font-family: 'TTItalic';
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 140%;
}

.video {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 991.98px) {
  .video {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.video__title {
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  text-align: center;
  margin-bottom: 80px;
}

.video__title span {
  font-family: 'TTMedium';
}

@media (max-width: 1441px) {
  .video__title {
    margin: 0 auto;
    margin-bottom: 60px;
    max-width: 1000px;
    font-size: 50px;
  }
}

@media (max-width: 991.98px) {
  .video__title {
    font-size: 32px;
    font-family: 'TTMedium';
    margin-bottom: 24px;
  }
}

.video__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media (max-width: 991.98px) {
  .video__body {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 479.98px) {
  .video__body {
    gap: 24px;
  }
}

.video__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33.333%;
          flex: 0 1 33.333%;
  text-align: center;
}

@media (max-width: 991.98px) {
  .video__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 20px);
            flex: 0 1 calc(50% - 20px);
  }
}

@media (max-width: 479.98px) {
  .video__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

.video__image {
  width: 100%;
  padding-bottom: 109%;
  border-radius: 16px;
  position: relative;
  margin-bottom: 32px;
  cursor: pointer;
}

.video__image:hover .video__play {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
}

.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.video__play img {
  display: block;
  width: 100%;
  height: 100%;
}

.video__name {
  font-size: 24px;
  font-family: 'TTMedium';
  margin-bottom: 12px;
}

.video__status {
  font-size: 16px;
}

.probe {
  background-color: #391085;
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 1441px) {
  .probe {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 991.98px) {
  .probe {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.probe__container {
  color: #ffffff;
}

.probe__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media (max-width: 991.98px) {
  .probe__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.probe__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 55%;
          flex: 0 1 55%;
  background-color: #2e0d6a;
  border-radius: 8px;
}

.probe__img img {
  width: 100%;
}

.probe__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.probe__title {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 17px;
}

.probe__title span {
  color: #ffffff;
  background: -webkit-gradient(linear, left top, left bottom, from(#faaf1c), to(#d36718));
  background: linear-gradient(180deg, #faaf1c 0%, #d36718 100%);
  border-radius: 10px;
  padding: 0px 3px;
}

@media (max-width: 991.98px) {
  .probe__title {
    display: none;
  }
}

.probe__name {
  font-family: 'TTMedium';
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 24px;
}

@media (max-width: 991.98px) {
  .probe__name {
    font-size: 24px;
  }
}

.probe__text {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  font-family: 'Gilroy';
  margin-bottom: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

@media (max-width: 991.98px) {
  .probe__text {
    font-size: 16px;
  }
}

.probe .bottom-about__button {
  padding: 16px 24px;
}

.probe__title_mob {
  display: none;
}

@media (max-width: 991.98px) {
  .probe__title_mob {
    display: block;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    font-family: 'TTMedium';
    margin-bottom: 24px;
  }
}

.footer {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 991.98px) {
  .footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}

@media (max-width: 991.98px) {
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
  }
}

.footer__logo img {
  width: 249px;
}

.footer__name {
  font-size: 24px;
  font-family: 'TTMedium';
  margin-bottom: 10px;
}

.footer__item:not(:last-child) {
  margin-bottom: 10px;
}

.footer__link {
  font-size: 16px;
  color: #262626;
  border-bottom: 1px solid #262626;
  cursor: pointer;
}

.footer__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__phone {
  font-size: 32px;
  font-family: 'TTMedium';
  color: #262626;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  margin-bottom: 23px;
}

.footer__phone:hover {
  color: #d36718;
}

.footer__local {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.footer__local p {
  font-size: 16px;
  line-height: 140%;
  max-width: 250px;
}

.footer__copy {
  font-size: 16px;
  line-height: 140%;
}

.footer__copy span {
  color: #391085;
  border-bottom: 1px solid #391085;
  cursor: pointer;
}

.footer__policy-link {
  color: #391085;
  border-bottom: 1px solid #391085;
  cursor: pointer;
  text-decoration: none;
}
.footer__policy-link:hover {
  opacity: 0.8;
}

.catalog {
  background-color: #391085;
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 1441px) {
  .catalog {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 991.98px) {
  .catalog {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.catalog__container {
  color: #ffffff;
}

.catalog__title {
  font-size: 64px;
  font-style: normal;
  font-family: 'TTRegular';
  line-height: 110%;
  text-align: center;
  color: #ffffff;
  margin-bottom: 80px;
}

@media (min-width: 991.98px) {
  .catalog__title mark {
    color: #ffffff;
    background: -webkit-gradient(linear, left top, left bottom, from(#faaf1c), to(#d36718));
    background: linear-gradient(180deg, #faaf1c 0%, #d36718 100%);
    border-radius: 10px;
    padding: 0px 5px;
  }
}

@media (max-width: 991.98px) {
  .catalog__title mark {
    background-color: inherit;
    color: #ffffff;
  }
}

@media (max-width: 1441px) {
  .catalog__title {
    font-size: 44px;
    max-width: 869px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 60px;
  }
}

@media (max-width: 991.98px) {
  .catalog__title {
    text-align: left;
    font-size: 44px;
    font-size: 32px;
    font-family: 'TTMedium';
    margin-bottom: 24px;
  }
}

.catalog__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 40px 70px 40px;
  border-radius: 16px;
  border: 1px solid #ffffff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

@media (max-width: 991.98px) {
  .catalog__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 24px;
  }
}

.catalog__body_sad {
  padding: 30px 40px 40px 40px;
}

.catalog__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 59%;
          flex: 0 1 59%;
  position: relative;
}

.catalog__left_sad {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 40%;
          flex: 0 1 40%;
}

.catalog__image {
  padding-top: 40px;
}

.catalog__image img {
  width: 100%;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}

.catalog__image_sad {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0;
}

.catalog__image_sad img {
  width: 60%;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

.catalog__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 41%;
          flex: 0 1 41%;
}

.catalog__right_sad {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
}

.catalog__decor {
  position: absolute;
  right: 36px;
  top: -13px;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .catalog__decor {
    right: 3%;
    top: 7%;
  }
}

@media (max-width: 767.98px) {
  .catalog__decor {
    right: 2%;
    top: 10%;
  }
}

.catalog__decor img {
  width: 87px;
  height: 87px;
}

@media (max-width: 991.98px) {
  .catalog__decor img {
    width: 54px;
    height: 54px;
  }
}

.catalog__name {
  font-size: 32px;
  font-style: normal;
  margin-bottom: 24px;
  font-family: 'TTMedium';
}

@media (max-width: 1441px) {
  .catalog__name {
    font-size: 29px;
  }
}

@media (max-width: 991.98px) {
  .catalog__name {
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 16px;
  }
}

.catalog__text {
  font-family: 'Gilroy';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 24px;
}

@media (max-width: 991.98px) {
  .catalog__text {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.catalog__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 40px;
  border-radius: 24px;
  background-color: #ffffff;
  max-width: 386px;
  gap: 24px;
  position: relative;
}

@media (max-width: 767.98px) {
  .catalog__button {
    gap: 12px;
    padding: 16px 24px;
  }
}

.catalog__button_sad {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.catalog__button_sad .bottom-about__texts {
  height: 20px;
}

.catalog__icon img {
  width: 48px;
  height: 48px;
}

@media (max-width: 767.98px) {
  .catalog__icon img {
    width: 48px;
    height: 48px;
  }
}

.catalog__texts {
  color: #262626;
}

.catalog__texts p {
  font-family: 'TTMedium';
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
}

@media (max-width: 991.98px) {
  .catalog__texts p {
    font-size: 16px;
  }
}

.catalog__texts span {
  font-family: 'TTItalic';
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 140%;
}

.catalog__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

@media (max-width: 767.98px) {
  .catalog__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.catalog-f {
  border-radius: 16px;
  border: 1px solid #ffffff;
  padding: 40px;
}

@media (max-width: 767.98px) {
  .catalog-f {
    padding: 24px;
  }
}

.catalog-f__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.catalog-f__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(33.333% - 30px);
          flex: 0 1 calc(33.333% - 30px);
}

@media (max-width: 767.98px) {
  .catalog-f__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

.catalog-f__img {
  margin-bottom: 16px;
}

.catalog-f__img img {
  border-radius: 18px;
  width: 100%;
}

.catalog-f__name {
  text-align: center;
  font-family: 'Gilroy';
  font-size: 20px;
}

.catalog-f__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media (max-width: 991.98px) {
  .catalog-f__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .catalog-f__bottom {
    gap: 16px;
  }
}

.catalog-f__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.catalog-f__textbig {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 767.98px) {
  .catalog-f__textbig {
    font-size: 24px;
    line-height: 130%;
  }
}

.catalog-f__text {
  font-family: 'Gilroy';
  font-size: 20px;
  line-height: 140%;
}

.catalog-f__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.catalog-f__right a {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

@media (max-width: 767.98px) {
  .catalog-f__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.ba2{padding:80px 0;background:#faf9f6}
.ba2__container{max-width:1328px;margin:0 auto;padding:0 24px}
@media(max-width:1441px){.ba2__container{max-width:1200px}}
@media(max-width:375px){.ba2__container{padding:0 10px}}
.ba2__title{font-size:64px;font-family:'TTRegular';color:#262626;line-height:110%;text-align:center;margin-bottom:12px}
.ba2__title span{font-family:'TTBold'}
.ba2__meter{display:flex;align-items:center;gap:16px;margin-bottom:36px;max-width:960px;margin-left:auto;margin-right:auto;padding:0 4px}
.ba2__meter-label{font-size:16px;font-family:'TTMedium';color:#888;white-space:nowrap;flex-shrink:0;letter-spacing:0.3px;text-transform:uppercase}
.ba2__meter-track{flex:1;height:6px;border-radius:3px;background:#e8e5df;position:relative;overflow:hidden}
.ba2__meter-fill{position:absolute;inset:0;border-radius:3px;background:linear-gradient(90deg,#faaf1c,#d36718);transform:scaleX(0);transform-origin:left;transition:transform 0.08s ease-out}
.ba2__meter-val{font-size:22px;font-family:'TTBold';color:#d36718;min-width:52px;text-align:right;flex-shrink:0;transition:color 0.3s}
.ba2__meter-val.is-zero{color:#bbb}
.ba2__wrap{position:relative;max-width:960px;margin:0 auto;border-radius:16px;overflow:hidden;aspect-ratio:16/9;user-select:none;-webkit-user-select:none;box-shadow:0 12px 48px rgba(211,103,24,0.12),0 2px 8px rgba(0,0,0,0.06)}
.ba2__layer{position:absolute;inset:0}
.ba2__layer img{width:100%;height:100%;object-fit:cover;display:block;pointer-events:none}
.ba2__before{z-index:2;clip-path:inset(0 97% 0 0)}
.ba2__tag{position:absolute;bottom:16px;padding:6px 18px;border-radius:20px;font-size:14px;font-family:'TTMedium';letter-spacing:0.5px;text-transform:uppercase;pointer-events:none}
.ba2__tag--before{left:25%;background:rgba(100,100,100,0.85);color:#fff;backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px)}
.ba2__tag--after{right:25%;background:linear-gradient(90deg,#faaf1c,#d36718);color:#fff}
.ba2__line{position:absolute;top:0;bottom:0;left:3%;z-index:10;width:3px;transform:translateX(-50%);background:#fff;box-shadow:0 0 12px rgba(0,0,0,0.3);pointer-events:none}
.ba2__grip{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:48px;height:48px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;box-shadow:0 2px 16px rgba(211,103,24,0.2);pointer-events:auto;cursor:col-resize}
.ba2__track{position:relative;max-width:960px;margin:16px auto 0;height:56px}
.ba2__track-rail{position:absolute;top:50%;left:0;right:0;height:4px;background:#e8e5df;border-radius:2px;transform:translateY(-50%)}
.ba2__track-fill{position:absolute;top:50%;left:0;height:4px;background:linear-gradient(90deg,#faaf1c,#d36718);border-radius:2px;transform:translateY(-50%);width:3%;transition:width 0.08s ease-out}
.ba2__handle{position:absolute;top:50%;left:3%;transform:translate(-50%,-50%);width:52px;height:52px;border-radius:50%;background:linear-gradient(180deg,#faaf1c 0%,#d36718 100%);display:flex;align-items:center;justify-content:center;cursor:grab;box-shadow:0 4px 20px rgba(211,103,24,0.35);z-index:11;touch-action:none}
@keyframes ba2-hint{0%,100%{transform:translate(-50%,-50%)}50%{transform:translate(calc(-50% + 10px),-50%)}}
.ba2__handle{animation:ba2-hint 1.5s ease-in-out infinite}
.ba2__handle.is-active{animation:none;cursor:grabbing}
.ba2__sub{font-size:20px;font-family:'TTRegular';color:#888;text-align:center;margin-top:8px}
.ba2__form-card{max-width:960px;margin:20px auto 0;background:#fff;border-radius:16px;padding:18px 24px 16px;box-shadow:0 6px 32px rgba(211,103,24,0.07),0 2px 6px rgba(0,0,0,0.04)}
.ba2__form-title{font-family:'TTMedium';font-size:17px;color:#262626;text-align:center;margin-bottom:14px;line-height:130%}
.ba2__row{display:flex;gap:10px;align-items:stretch}
.ba2__drop{border:2px dashed #e5e2dd;border-radius:12px;padding:0 14px;cursor:pointer;transition:border-color .2s,background .2s;background:#faf9f6;position:relative;flex:1;min-width:0}
.ba2__drop:hover,.ba2__drop.is-over{border-color:#d36718;background:#fff8f0}
.ba2__drop-inner{display:flex;align-items:center;gap:10px;height:100%;min-height:46px}
.ba2__drop-icon{flex-shrink:0;color:#d36718}
.ba2__drop-icon svg{width:24px;height:24px}
.ba2__drop-text{font-family:'TTRegular';font-size:13px;color:#888;line-height:130%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ba2__drop-text span{color:#d36718;cursor:pointer}
.ba2__drop-input{position:absolute;inset:0;opacity:0;cursor:pointer}
.ba2__previews{display:flex;flex-wrap:wrap;gap:6px;margin-top:10px}
.ba2__previews:empty{display:none}
.ba2__thumb{position:relative;width:52px;height:52px;border-radius:8px;overflow:hidden;background:#f2f0ed}
.ba2__thumb img{width:100%;height:100%;object-fit:cover;display:block}
.ba2__thumb-del{position:absolute;top:2px;right:2px;width:18px;height:18px;border-radius:50%;background:rgba(0,0,0,0.6);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#fff;font-size:11px;line-height:1;transition:background .2s}
.ba2__thumb-del:hover{background:rgba(211,103,24,0.9)}
.ba2__error{font-family:'TTRegular';font-size:13px;color:#e74c3c;margin-top:6px;display:none}
.ba2__phone{width:200px;flex-shrink:0;height:46px;border:2px solid #e5e2dd;border-radius:12px;padding:0 14px;font-family:'TTMedium';font-size:15px;color:#262626;background:#faf9f6;transition:border-color .2s;outline:none}
.ba2__phone:focus{border-color:#d36718}
.ba2__phone::placeholder{color:#aaa;font-family:'TTRegular'}
.ba2__submit{height:46px;padding:0 24px;border-radius:12px;background:linear-gradient(180deg,#faaf1c 0%,#d36718 100%);color:#fff;font-family:'TTMedium';font-size:15px;border:none;cursor:pointer;transition:opacity .2s;white-space:nowrap;flex-shrink:0}
.ba2__submit:hover{opacity:0.9}
.ba2__submit:disabled{opacity:0.5;cursor:not-allowed}
.ba2__agree{font-family:'TTRegular';font-size:11px;color:#aaa;text-align:center;margin-top:10px;line-height:140%}
.ba2__agree span{color:#d36718;cursor:pointer}
.ba2__consent{display:flex;align-items:flex-start;gap:12px;margin:12px 0 0;padding:12px 14px;border-radius:12px;background:#f7f7f7;font-size:13px;color:#555;line-height:1.45;cursor:pointer;outline:2px solid transparent;transition:outline-color .2s, background .2s;-webkit-tap-highlight-color:rgba(0,0,0,0.04)}
.ba2__consent.is-error{outline-color:#e14a4a;background:rgba(225,74,74,.08);color:#e14a4a}
.ba2__consent input{margin-top:2px;width:22px;height:22px;flex-shrink:0;accent-color:#d36718;cursor:pointer}
.ba2__consent .ba2__policy-link{color:#d36718;cursor:pointer;text-decoration:underline}
.ba2__consent-error{color:#e14a4a;font-size:13px;line-height:1.4;text-align:center;margin-top:8px;font-family:'TTRegular'}
.ba2__success{display:none;text-align:center;padding:28px 0}
.ba2__success.is-show{display:block}
.ba2__success-icon{margin-bottom:16px}
.ba2__success-title{font-family:'TTMedium';font-size:28px;color:#262626;margin-bottom:12px}
.ba2__success-text{font-family:'TTRegular';font-size:20px;color:#555;line-height:1.5}
.ba2__submit.is-loading{pointer-events:none;opacity:0.7}
.ba2__spinner{display:inline-block;width:18px;height:18px;border:2.5px solid rgba(255,255,255,0.3);border-top-color:#fff;border-radius:50%;animation:ba2-spin .6s linear infinite;vertical-align:middle;margin-right:8px}
.ba2__thumb-loader{position:absolute;inset:0;background:rgba(0,0,0,0.45);display:flex;align-items:center;justify-content:center;border-radius:8px}
.ba2__thumb-spin{display:block;width:20px;height:20px;border:2.5px solid rgba(255,255,255,0.3);border-top-color:#fff;border-radius:50%;animation:ba2-spin .6s linear infinite}
.ba2__form-body.is-hide{display:none}
@media(max-width:1441px){.ba2{padding:48px 0}.ba2__title{font-size:50px}.ba2__wrap{max-width:700px}.ba2__track{max-width:700px;height:48px;margin-top:10px}.ba2__meter{margin-bottom:24px;max-width:700px}.ba2__sub{font-size:18px;margin-top:6px}.ba2__form-card{max-width:700px;margin-top:16px}}
@media(max-width:1100px){.ba2{padding:36px 0}.ba2__title{font-size:36px;margin-bottom:8px}.ba2__wrap{max-width:580px}.ba2__track{max-width:580px;height:44px;margin-top:8px}.ba2__meter{margin-bottom:16px;max-width:580px}.ba2__meter-label{font-size:14px}.ba2__meter-val{font-size:20px}.ba2__sub{font-size:16px;margin-top:4px}.ba2__form-card{max-width:580px;margin-top:12px;padding:14px 18px 12px}.ba2__form-title{font-size:15px;margin-bottom:10px}.ba2__phone{width:170px}.ba2__submit{padding:0 18px;font-size:14px}}
@media(max-width:767.98px){.ba2{padding:48px 0}.ba2__title{font-size:32px;font-family:'TTMedium'}.ba2__title span{font-family:'TTMedium'}.ba2__sub{font-size:16px}.ba2__wrap{border-radius:12px;cursor:default}.ba2__grip{display:none}.ba2__tag{font-size:11px;padding:5px 12px;bottom:12px}.ba2__tag--before{left:20%}.ba2__tag--after{right:20%}.ba2__meter{gap:10px}.ba2__meter-label{font-size:12px}.ba2__meter-val{font-size:18px;min-width:44px}.ba2__handle{width:48px;height:48px}.ba2__form-card{padding:20px 16px 18px;border-radius:16px;margin-top:20px;max-width:100%}.ba2__form-title{font-size:18px;margin-bottom:16px}.ba2__row{flex-direction:column;gap:10px}.ba2__drop{padding:16px 14px}.ba2__drop-inner{min-height:auto}.ba2__drop-icon svg{width:28px;height:28px}.ba2__drop-text{font-size:14px;white-space:normal}.ba2__phone{width:100%;height:48px;font-size:16px}.ba2__submit{height:48px;font-size:16px;width:100%}.ba2__thumb{width:56px;height:56px}}
.ba3{padding:80px 0;background:#faf9f6}
.ba3__container{max-width:1328px;margin:0 auto;padding:0 24px}
@media(max-width:1441px){.ba3__container{max-width:1200px}}
@media(max-width:375px){.ba3__container{padding:0 10px}}
.ba3__title{font-size:64px;font-family:'TTRegular';color:#262626;line-height:110%;text-align:center;margin-bottom:12px}
.ba3__title span{font-family:'TTBold'}
.ba3__meter{display:flex;align-items:center;gap:16px;margin-bottom:36px;max-width:960px;margin-left:auto;margin-right:auto;padding:0 4px}
.ba3__meter-label{font-size:16px;font-family:'TTMedium';color:#888;white-space:nowrap;flex-shrink:0;letter-spacing:0.3px;text-transform:uppercase}
.ba3__meter-track{flex:1;height:6px;border-radius:3px;background:#e8e5df;position:relative;overflow:hidden}
.ba3__meter-fill{position:absolute;inset:0;border-radius:3px;background:linear-gradient(90deg,#faaf1c,#d36718);transform:scaleX(0);transform-origin:left;transition:transform 0.08s ease-out}
.ba3__meter-val{font-size:22px;font-family:'TTBold';color:#d36718;min-width:52px;text-align:right;flex-shrink:0;transition:color 0.3s}
.ba3__meter-val.is-zero{color:#bbb}
.ba3__video-wrap{position:relative;max-width:960px;margin:0 auto;border-radius:16px;overflow:hidden;box-shadow:0 12px 48px rgba(211,103,24,0.12),0 2px 8px rgba(0,0,0,0.06)}
.ba3__video{width:100%;display:block}
.ba3__video--mobile{display:none}
@media(max-width:767.98px){.ba3__video--desktop{display:none}.ba3__video--mobile{display:block}}
.ba3__form-card{max-width:960px;margin:20px auto 0;background:#fff;border-radius:16px;padding:18px 24px 16px;box-shadow:0 6px 32px rgba(211,103,24,0.07),0 2px 6px rgba(0,0,0,0.04)}
.ba3__form-title{font-family:'TTMedium';font-size:17px;color:#262626;text-align:center;margin-bottom:14px;line-height:130%}
.ba3__row{display:flex;gap:10px;align-items:stretch}
.ba3__drop{border:2px dashed #e5e2dd;border-radius:12px;padding:0 14px;cursor:pointer;transition:border-color .2s,background .2s;background:#faf9f6;position:relative;flex:1;min-width:0}
.ba3__drop:hover,.ba3__drop.is-over{border-color:#d36718;background:#fff8f0}
.ba3__drop-inner{display:flex;align-items:center;gap:10px;height:100%;min-height:46px}
.ba3__drop-icon{flex-shrink:0;color:#d36718}
.ba3__drop-icon svg{width:24px;height:24px}
.ba3__drop-text{font-family:'TTRegular';font-size:13px;color:#888;line-height:130%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.ba3__drop-text span{color:#d36718;cursor:pointer}
.ba3__drop-input{position:absolute;inset:0;opacity:0;cursor:pointer}
.ba3__previews{display:flex;flex-wrap:wrap;gap:6px;margin-top:10px}
.ba3__previews:empty{display:none}
.ba3__thumb{position:relative;width:52px;height:52px;border-radius:8px;overflow:hidden;background:#f2f0ed}
.ba3__thumb img{width:100%;height:100%;object-fit:cover;display:block}
.ba3__thumb-del{position:absolute;top:2px;right:2px;width:18px;height:18px;border-radius:50%;background:rgba(0,0,0,0.6);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;color:#fff;font-size:11px;line-height:1;transition:background .2s}
.ba3__thumb-del:hover{background:rgba(211,103,24,0.9)}
.ba3__error{font-family:'TTRegular';font-size:13px;color:#e74c3c;margin-top:6px;display:none}
.ba3__phone{width:200px;flex-shrink:0;height:46px;border:2px solid #e5e2dd;border-radius:12px;padding:0 14px;font-family:'TTMedium';font-size:15px;color:#262626;background:#faf9f6;transition:border-color .2s;outline:none}
.ba3__phone:focus{border-color:#d36718}
.ba3__phone::placeholder{color:#aaa;font-family:'TTRegular'}
.ba3__submit{height:46px;padding:0 24px;border-radius:12px;background:linear-gradient(180deg,#faaf1c 0%,#d36718 100%);color:#fff;font-family:'TTMedium';font-size:15px;border:none;cursor:pointer;transition:opacity .2s;white-space:nowrap;flex-shrink:0}
.ba3__submit:hover{opacity:0.9}
.ba3__submit:disabled{opacity:0.5;cursor:not-allowed}
.ba3__agree{font-family:'TTRegular';font-size:11px;color:#aaa;text-align:center;margin-top:10px;line-height:140%}
.ba3__agree span{color:#d36718;cursor:pointer}
.ba3__thumb-loader{position:absolute;inset:0;background:rgba(0,0,0,0.45);display:flex;align-items:center;justify-content:center;border-radius:8px}
.ba3__thumb-spin{display:block;width:20px;height:20px;border:2.5px solid rgba(255,255,255,0.3);border-top-color:#fff;border-radius:50%;animation:ba3-spin .6s linear infinite}
.ba3__form-body.is-hide{display:none}
@media(max-width:1441px){.ba3{padding:48px 0}.ba3__title{font-size:50px}.ba3__video-wrap{max-width:700px}.ba3__meter{margin-bottom:24px;max-width:700px}.ba3__form-card{max-width:700px;margin-top:16px}}
@media(max-width:1100px){.ba3{padding:36px 0}.ba3__title{font-size:36px;margin-bottom:8px}.ba3__video-wrap{max-width:580px}.ba3__meter{margin-bottom:16px;max-width:580px}.ba3__meter-label{font-size:14px}.ba3__meter-val{font-size:20px}.ba3__form-card{max-width:580px;margin-top:12px;padding:14px 18px 12px}.ba3__form-title{font-size:15px;margin-bottom:10px}.ba3__phone{width:170px}.ba3__submit{padding:0 18px;font-size:14px}}
@media(max-width:767.98px){.ba3{padding:48px 0}.ba3__title{font-size:32px;font-family:'TTMedium'}.ba3__title span{font-family:'TTMedium'}.ba3__video-wrap{border-radius:12px}.ba3__meter{gap:10px}.ba3__meter-label{font-size:12px}.ba3__meter-val{font-size:18px;min-width:44px}.ba3__form-card{padding:20px 16px 18px;border-radius:16px;margin-top:20px;max-width:100%}.ba3__form-title{font-size:18px;margin-bottom:16px}.ba3__row{flex-direction:column;gap:10px}.ba3__drop{padding:16px 14px}.ba3__drop-inner{min-height:auto}.ba3__drop-icon svg{width:28px;height:28px}.ba3__drop-text{font-size:14px;white-space:normal}.ba3__phone{width:100%;height:48px;font-size:16px}.ba3__submit{height:48px;font-size:16px;width:100%}.ba3__thumb{width:56px;height:56px}}
.sketch{padding:80px 0;background:#faf9f6}
.sketch__title{font-size:64px;font-family:'TTRegular';color:#262626;line-height:110%;text-align:center;margin-bottom:12px}
.sketch__title span{font-family:'TTBold';color:#d36718}
.sketch__sub{font-size:20px;font-family:'TTRegular';color:#888;text-align:center;margin-bottom:36px}
.sketch__body{max-width:960px;margin:0 auto}
.sketch__toolbar{display:flex;gap:8px;margin-bottom:12px;flex-wrap:wrap}
.sketch__tool{display:inline-flex;align-items:center;gap:6px;padding:8px 16px;border-radius:12px;border:2px solid #e8e5df;background:#fff;font-family:'TTMedium';font-size:14px;color:#262626;cursor:pointer;transition:all .2s;user-select:none;-webkit-user-select:none}
.sketch__tool:hover{border-color:#d36718;color:#d36718}
.sketch__tool--active{border-color:#d36718;background:linear-gradient(180deg,#faaf1c 0%,#d36718 100%);color:#fff}
.sketch__tool--active:hover{color:#fff}
.sketch__tool svg{flex-shrink:0}
.sketch__canvas-wrap{position:relative;margin-bottom:24px;border-radius:16px;border:2px solid #e8e5df;overflow:hidden;box-shadow:0 4px 24px rgba(0,0,0,0.06)}
.sketch__canvas{width:100%;cursor:crosshair;touch-action:auto;display:block}
.sketch__text-input{position:absolute;border:2px dashed #d36718;background:rgba(255,255,255,0.9);font-family:'TTMedium';font-size:16px;color:#d36718;padding:4px 8px;outline:none;border-radius:8px;min-width:60px;z-index:2}
.sketch__hint{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center;pointer-events:none;transition:opacity .3s;z-index:1}
.sketch__hint.is-hidden{opacity:0}
.sketch__hint-bg{position:absolute;top:0;left:0;width:100%;height:100%}
.sketch__hint-center{display:flex;flex-direction:column;align-items:center;gap:12px;z-index:2}
.sketch__hint-text{font-family:'TTMedium';font-size:16px;color:#bbb}
.sketch__form{display:flex;gap:12px;max-width:520px;margin:0 auto 12px}
.sketch__phone{flex:1;height:56px !important;border-radius:16px !important;border:2px solid #e8e5df !important;padding:0 20px !important;font-family:'TTMedium';font-size:18px !important;color:#262626;outline:none;transition:border-color .2s;background:#fff !important}
.sketch__phone:focus{border-color:#d36718}
.sketch__submit{height:56px;padding:0 36px;border-radius:16px;background:linear-gradient(180deg,#faaf1c 0%,#d36718 100%);color:#fff;font-family:'TTMedium';font-size:18px;border:none;cursor:pointer;transition:opacity .3s;white-space:nowrap}
.sketch__submit:hover{opacity:.9}
.sketch__submit:disabled{opacity:.5;cursor:not-allowed}
.sketch__submit.is-loading{pointer-events:none;opacity:0.7}
.sketch__spinner{display:inline-block;width:18px;height:18px;border:2.5px solid rgba(255,255,255,0.3);border-top-color:#fff;border-radius:50%;animation:sketch-spin .6s linear infinite;vertical-align:middle;margin-right:8px}
.sketch__label{display:flex;align-items:flex-start;gap:12px;max-width:520px;margin:8px auto 12px;padding:12px 14px;font-size:13px;color:#888;font-family:'TTRegular';line-height:1.4;cursor:pointer;border-radius:12px;background:#f7f7f7;outline:2px solid transparent;transition:outline-color .2s, background-color .2s;-webkit-tap-highlight-color:rgba(0,0,0,0.04)}
.sketch__label span{color:#d36718;cursor:pointer;text-decoration:underline}
.sketch__label.is-error{outline-color:#e53935;background:rgba(229,57,53,0.06)}
.sketch__checkbox{margin-top:2px;flex-shrink:0;width:22px;height:22px;cursor:pointer;accent-color:#d36718}
.sketch__error{color:#e53935;font-size:14px;line-height:1.4;text-align:center;margin-top:8px;font-family:'TTRegular';max-width:520px;margin-left:auto;margin-right:auto}
.sketch__success{text-align:center;padding:28px 0}
.sketch__success-icon{display:block;margin:0 auto 16px}
.sketch__success-title{font-family:'TTMedium';font-size:28px;color:#262626;margin-bottom:12px}
.sketch__success-text{font-family:'TTRegular';font-size:20px;color:#555;line-height:1.5}
@media(max-width:1441px){.sketch__title{font-size:50px}}
@media(max-width:767.98px){.sketch{padding:48px 0}.sketch__title{font-size:28px;font-family:'TTMedium'}.sketch__title span{font-family:'TTMedium'}.sketch__sub{font-size:16px;margin-bottom:24px}.sketch__toolbar{gap:6px}.sketch__tool{padding:6px 10px;font-size:12px;border-radius:10px;gap:4px}
  /* На мобиле — порядок: phone → consent → submit. Делаем sketch__form прозрачным
     (display:contents), чтобы phone и submit стали детьми sketch__body, и используем order. */
  .sketch__body{display:flex;flex-direction:column}
  .sketch__form{display:contents}
  .sketch__toolbar{order:1}
  .sketch__canvas-wrap{order:2}
  .sketch__phone{order:3;flex:none;height:60px !important;font-size:18px !important;border-radius:16px !important;margin:0 auto 12px;max-width:100%;width:100%}
  .sketch__error{order:4}
  .sketch__label{order:5;max-width:100%;margin-bottom:12px}
  .sketch__submit{order:6;height:60px;font-size:18px;padding:0 24px;border-radius:16px;width:100%;max-width:100%;margin:0 auto}
  .sketch__hint-bg{display:none}.sketch__hint{display:flex;align-items:center;justify-content:center}.sketch__hint-center{align-items:center;text-align:center}}
