@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap&subset=cyrillic-ext");
:root {
  --primary: #262626;
  --black: #000;
  --white: #fff;
  --light: #f2f2f2;
  --light-gray: #ADADAD;
  --gray: #9E9E9E;
  --dark-gray: #5C5C5C;
  --op-gray: #00000033;
  --green: #B3C997;
  --red: #DB131B;
  --light-red: #DB131B1A;
}

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a {
  color: inherit;
}

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

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

html, body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-size: 10px;
  font-family: "Inter", sans-serif;
  color: var(--primary);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: "Inter", sans-serif;
}

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

button {
  cursor: pointer;
  background-color: transparent;
}

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

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

a:hover {
  text-decoration: none;
}

ul, li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*--------------------*/
html {
  scroll-behavior: smooth;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  scrollbar-gutter: stable;
  background: #F2F2F2;
}
body.lock {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}
@media (max-width: 1515px) {
  body {
    font-size: 9px;
  }
}
@media (max-width: 1436.98px) {
  body {
    font-size: 8.2px;
  }
}
@media (max-width: 1279.98px) {
  body {
    font-size: 7px;
  }
}
@media (max-width: 991.98px) {
  body {
    font-size: 8px;
  }
}

.wrapper {
  min-height: 100%;
  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;
}
.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.container {
  max-width: 1515px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  padding: 0 15px;
}

/*links*/
.link {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background: currentColor;
  -webkit-transition: width 0.3s ease 0s;
  transition: width 0.3s ease 0s;
}
@media (any-hover: hover) {
  .link:hover::before {
    width: 100%;
  }
}

/*title text*/
.title-main {
  font-weight: 600;
  font-size: 4em;
  line-height: 100%;
  position: relative;
  padding-left: 0.75em;
}
.title-main::before {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 1.2em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  border-radius: 1em;
  background: var(--red);
}

.title, .title-l, .title-m, .title-s {
  font-size: 4em;
  line-height: 110%;
}

.title-l {
  font-size: 3.2em;
}

.title-m {
  font-size: 2.8em;
}

.title-s {
  font-size: 2em;
}

.text-main, .text-xl, .text-m, .text-s {
  font-size: 2em;
  line-height: 120%;
}

.text-xl {
  font-size: 2.4em;
}

.text-l {
  font-size: 1.8em;
}

.text-m {
  font-size: 1.6em;
}

.text-s {
  font-size: 1.4em;
}

/*form block*/
.form__body {
  padding-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.form__body._sending {
  position: relative;
}
.form__body._sending::before {
  content: "";
  position: absolute;
  z-index: 5;
  border-radius: 2em;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: url("../img/icons/loading.gif") center/8em no-repeat, rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 2em 1em rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 2em 1em rgba(0, 0, 0, 0.1);
}
.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
.form__input-body {
  position: relative;
  padding: 2em;
  border-radius: 1em;
  border: 1px solid var(--light-gray);
}
@media (any-hover: hover) {
  .form__input-body:hover .form__label-file i {
    background: var(--white);
  }
}
.form__label {
  position: absolute;
  padding: 0 1em;
  background: var(--white);
  top: -0.8em;
  left: 1em;
}
.form__label-file {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  font-size: 2em;
  line-height: 100%;
  font-weight: 500;
}
.form__label-file i {
  width: 1.5em;
  height: 1.5em;
  border: 1px solid var(--light-red);
  background: var(--light-red);
  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: 0.25em;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
.form__file-input {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.form__input {
  width: 100%;
}
.form__footer {
  color: var(--light-gray);
}
@media (min-width: 767.98px) {
  .form__footer {
    max-width: 18em;
  }
}
.form__policy {
  font-size: 1.2em;
  line-height: 110%;
}

/*contacts block*/
.contacts__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.contacts__desc {
  color: var(--red);
  font-weight: 500;
  font-size: 1.6em;
  line-height: 100%;
}
.contacts__link {
  white-space: nowrap;
  color: var(--dark-gray);
  font-weight: 500;
  font-size: 3.2em;
  line-height: 100%;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .contacts__link:hover {
    color: var(--red);
  }
}

/*slider buttons*/
.slider-controls {
  margin-top: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5rem;
}
.slider-controls__prev, .slider-controls__next {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  cursor: pointer;
  position: relative;
  border-radius: 0.5em;
  width: 5em;
  height: 5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.slider-controls__prev.swiper-button-disabled, .slider-controls__next.swiper-button-disabled {
  opacity: 0.4;
}
@media (any-hover: hover) {
  .slider-controls__prev:not(.swiper-button-disabled):hover, .slider-controls__next:not(.swiper-button-disabled):hover {
    color: var(--red);
    background: var(--white);
  }
}
.slider-controls__prev svg, .slider-controls__next svg {
  width: 1.5em;
  height: 1.2em;
}
.slider-controls__prev svg path, .slider-controls__next svg path {
  stroke: currentColor;
}
@media (max-width: 767.98px) {
  .slider-controls__prev, .slider-controls__next {
    width: 3.4em;
    height: 3.4em;
  }
}
.slider-controls__prev {
  background: transparent;
  color: var(--op-gray);
  border: 1px solid var(--op-gray);
  z-index: 1;
}
.slider-controls__next {
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  z-index: 2;
}
.slider-controls__dots.swiper-pagination-horizontal, .slider-controls__dots.swiper-pagination-vertical {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  margin-left: auto;
  margin-right: auto;
}
.slider-controls__dots .swiper-pagination-bullet {
  margin: 0 4px;
  opacity: 1;
  width: 1em;
  height: 0.4em;
  background: rgba(255, 255, 255, 0.6);
  -webkit-transition: width 0.3s ease 0s;
  transition: width 0.3s ease 0s;
  cursor: pointer;
  position: relative;
  border-radius: 0;
}
.slider-controls__dots .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  z-index: 5;
  width: 1em;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0.2em;
}
.slider-controls__dots .swiper-pagination-bullet-active {
  width: 5.6em;
}
.slider-controls__dots .swiper-pagination-bullet-active::before {
  background-color: var(--white);
  width: 100%;
  -webkit-transition: width 3s linear 0s;
  transition: width 3s linear 0s;
}

.scrollbar {
  margin: 1.25em 0;
  height: 2px;
  background: var(--primary);
}
.scrollbar .swiper-scrollbar-drag {
  cursor: pointer;
  height: 2.4em;
  border-radius: 1em;
  background: var(--light);
  border: 2px solid var(--gray3);
  top: calc(50% - 1.3em);
  position: relative;
  -webkit-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
}
.scrollbar .swiper-scrollbar-drag::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--gray3);
}
@media (any-hover: hover) {
  .scrollbar .swiper-scrollbar-drag:hover {
    background: var(--light);
  }
}

/*Buttons*/
.button-red, .button-red-tr, .button-white-tr {
  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;
  text-align: center;
  gap: 0.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 1em;
  font-weight: 600;
  font-size: 1.6em;
  line-height: 110%;
  color: var(--white);
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 1em;
  -webkit-transition: color 0.3s ease 0s, background 0.3s ease 0s;
  transition: color 0.3s ease 0s, background 0.3s ease 0s;
}
.button-red i, .button-red-tr i, .button-white-tr i {
  width: 1.125em;
  height: 1.125em;
}
.button-red svg path, .button-red-tr svg path, .button-white-tr svg path {
  -webkit-transition: fill 0.3s ease 0s;
  transition: fill 0.3s ease 0s;
  fill: currentColor;
}
@media (any-hover: hover) {
  .button-red:hover, .button-red-tr:hover, .button-white-tr:hover {
    color: var(--primary);
    background: var(--white);
  }
}
.button-red:disabled, .button-red-tr:disabled, .button-white-tr:disabled {
  pointer-events: none;
  opacity: 0.7;
}

.button-red-tr, .button-white-tr {
  color: var(--primary);
  background: transparent;
}
@media (any-hover: hover) {
  .button-red-tr:hover, .button-white-tr:hover {
    color: var(--white);
    background: var(--red);
  }
}

.button-white-tr {
  border: 1px solid var(--dark-gray);
}

/*checkbox*/
.checkbox {
  position: relative;
}
.checkbox:not(:last-child) {
  margin-bottom: 5px;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.checkbox__input:focus + .checkbox__label:before {
  -webkit-box-shadow: 0 0 5px var(--black);
          box-shadow: 0 0 5px var(--black);
}
.checkbox__input:checked + .checkbox__label:before {
  background: url("../img/icons/check.svg") center no-repeat, transparent;
}
.checkbox__label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 1rem;
  font-size: 1.2em;
}
.checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  border-radius: 0.325em;
  width: 2em;
  height: 2em;
  border: 1px solid var(--white);
}
.checkbox__label a {
  text-decoration: underline;
  -webkit-transition: -webkit-text-decoration 0.3s ease 0s;
  transition: -webkit-text-decoration 0.3s ease 0s;
  transition: text-decoration 0.3s ease 0s;
  transition: text-decoration 0.3s ease 0s, -webkit-text-decoration 0.3s ease 0s;
}
@media (any-hover: hover) {
  .checkbox__label a:hover {
    text-decoration: none;
  }
}

/*input*/
input[type=text], input[type=email], input[type=tel], textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  color: var(--primary);
  background: transparent;
  width: 100%;
  display: block;
  font-size: 2em;
  line-height: 120%;
}
.input::-webkit-input-placeholder {
  color: var(--dark-gray);
}
.input::-moz-placeholder {
  color: var(--dark-gray);
}
.input:-ms-input-placeholder {
  color: var(--dark-gray);
}
.input::-ms-input-placeholder {
  color: var(--dark-gray);
}
.input::placeholder {
  color: var(--dark-gray);
}

textarea.input {
  resize: none;
}

/*popup*/
.popup {
  z-index: 20;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-transition: all 0.8s ease 0s;
  transition: all 0.8s ease 0s;
  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;
}
.popup.open {
  opacity: 1;
  visibility: visible;
}
.popup__content {
  position: relative;
  padding: 4em;
  background: var(--white);
}
@media (min-width: 767.98px) {
  .popup__content {
    max-width: 60em;
  }
}
.popup__header {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  margin-bottom: 2em;
}
.popup__title {
  color: var(--dark-gray);
}
@media (max-width: 767.98px) {
  .popup__title {
    font-size: 2.4em;
  }
}
.popup__text {
  color: var(--dark-gray);
}
.popup__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3em;
  height: 3em;
}
.popup__close span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.popup__close span::before, .popup__close span::after {
  content: "";
  position: absolute;
  width: 2.5em;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transition: -webkit-transform 0.9s ease 0s;
  transition: -webkit-transform 0.9s ease 0s;
  transition: transform 0.9s ease 0s;
  transition: transform 0.9s ease 0s, -webkit-transform 0.9s ease 0s;
  background: var(--red);
}
.popup__close span::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.popup__close span::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media (any-hover: hover) {
  .popup__close span:hover::before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .popup__close span:hover::after {
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
            transform: translate(-50%, -50%) rotate(135deg);
  }
}
.popup__form {
  position: relative;
  z-index: 5;
}
@media (max-width: 991.98px) {
  .popup__form {
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .popup__form {
    width: 100%;
  }
}
.popup__input-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.popup__input-block:not(:last-child) {
  margin-bottom: 2em;
}
/*header*/
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  top: 2em;
}
.header.fixed {
  top: 0;
}
.header.fixed .header__wrap {
  padding: 1em 2em;
  -webkit-box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.2);
}
.header__wrap {
  padding: 2em 4em;
  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-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  background: var(--white);
  border-radius: 3em;
  position: relative;
}
@media (max-width: 991.98px) {
  .header__wrap::before {
    content: "";
    position: absolute;
    z-index: 7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--white);
    border-radius: 3em;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 767.98px) {
  .header__wrap {
    padding: 1em 2em;
    border-radius: 2em;
  }
  .header__wrap::before {
    border-radius: 2em;
  }
}
.header__logo {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  z-index: 10;
  width: 20em;
  height: 6em;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .header__logo {
    width: 16em;
    height: auto;
  }
}
.header__body {
  width: 100%;
}
@media (max-width: 991.98px) {
  .header__body {
    -webkit-transform: translate(0, -200%);
            transform: translate(0, -200%);
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    overflow: auto;
    padding: 17em 2em 2em;
    background: var(--white);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
  .header__body.active {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
}
@media (max-width: 767.98px) {
  .header__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    height: 100vh;
  }
}
.header__list {
  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-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    z-index: 5;
  }
}
.header__link, .header__link_mail, .header__link_phone {
  white-space: nowrap;
  font-size: 1.6em;
  line-height: 120%;
}
@media (max-width: 767.98px) {
  .header__link, .header__link_mail, .header__link_phone {
    font-size: 2.4em;
  }
}
.header__link_mail, .header__link_phone {
  font-weight: 600;
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header__link_mail:hover, .header__link_phone:hover {
    color: var(--gray);
  }
}
.header__link_phone {
  color: var(--red);
}
.header__link_mail {
  color: var(--black);
}
.header__buttons {
  position: relative;
  z-index: 10;
  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-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .header__buttons {
    margin-left: auto;
  }
}
.header__button {
  position: relative;
  z-index: 10;
}
@media (max-width: 991.98px) {
  .header__button {
    margin-left: auto;
  }
}
@media (max-width: 479.98px) {
  .header__button {
    margin-left: 0;
  }
}

/*burger*/
.icon-menu {
  display: none;
}
@media (max-width: 991.98px) {
  .icon-menu {
    display: block;
    position: relative;
    width: 3em;
    height: 2em;
    cursor: pointer;
    z-index: 10;
  }
  .icon-menu span, .icon-menu::before, .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    left: 0;
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--primary);
  }
  .icon-menu::before {
    top: 0;
  }
  .icon-menu::after {
    bottom: 0;
  }
  .icon-menu span {
    top: calc(50% - 1px);
  }
  .icon-menu.active span {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .icon-menu.active::before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .icon-menu.active::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}

/*footer*/
.footer {
  padding-top: 8em;
  padding-bottom: 3em;
}
.footer__wrap {
  padding: 2em 4em;
  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-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  background: var(--white);
  border-radius: 3em;
}
@media (max-width: 991.98px) {
  .footer__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 767.98px) {
  .footer__wrap {
    padding: 1em 2em;
    border-radius: 2em;
  }
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3em;
}
@media (max-width: 767.98px) {
  .footer__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.footer__buttons {
  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-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .footer__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
@media (max-width: 479.98px) {
  .footer__buttons {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 479.98px) {
  .footer__button {
    width: 100%;
  }
}
.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  margin-top: 4em;
}
.footer__text {
  color: var(--gray);
  font-size: 1.2em;
  line-height: 120%;
}
.footer__text a {
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .footer__text a:hover {
    color: var(--primary);
  }
}

/*home*/
/*main*/
.main__wrap {
  border-radius: 4em;
  margin-top: 3em;
  padding: 6em 4em;
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2em;
}
@media (max-width: 767.98px) {
  .main__wrap {
    border-radius: 2em;
    padding: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
}
@media (min-width: 767.98px) {
  .main__content {
    width: 50em;
  }
}
.main__title {
  font-weight: 700;
  color: var(--dark-gray);
}
.main__text {
  font-weight: 600;
  color: var(--gray);
}
.main__text span {
  color: var(--red);
}
.main__subtext {
  color: var(--gray);
}
@media (min-width: 767.98px) {
  .main__subtext {
    width: 22em;
  }
}
.main__items {
  overflow-x: auto;
  padding-bottom: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .main__items {
    width: 100%;
  }
}
.item-main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 21em;
  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%;
  gap: 1em;
}
.item-main__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border-radius: 1em;
  overflow: hidden;
  background: var(--light);
}
.item-main__title {
  font-weight: 500;
  padding: 1em;
}
.item-main__image {
  overflow: hidden;
  width: 100%;
  height: 21em;
  -webkit-transform: translate(5em, 3em);
          transform: translate(5em, 3em);
}
.item-main__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.item-main__button {
  width: 100%;
}

/*builders*/
.builders__wrap {
  overflow: hidden;
  position: relative;
  border-radius: 4em;
  margin-top: 3em;
  padding: 6em 4em;
  background: var(--white);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4em 2fr;
  grid-template-columns: 1fr 2fr;
  gap: 4em;
}
@media (max-width: 767.98px) {
  .builders__wrap {
    padding: 3em 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.builders__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
}
.builders__text {
  font-weight: 600;
  color: var(--gray);
}
.builders__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.builders__list li {
  font-size: 2em;
  font-weight: 500;
  line-height: 100%;
  color: var(--red);
}
.builders__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .builders__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.builders__subtext {
  color: var(--gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.builders__subtext a {
  white-space: nowrap;
  color: var(--red);
  -webkit-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .builders__subtext a:hover {
    color: var(--primary);
  }
}
@media (min-width: 767.98px) {
  .builders__subtext {
    width: 22em;
  }
}
.builders__image {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media (min-width: 767.98px) {
  .builders__image {
    position: absolute;
    width: 55%;
    height: 100%;
    bottom: 0;
    right: 0;
  }
}
.builders__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media (max-width: 991.98px) {
  .builders__image {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}
@media (max-width: 767.98px) {
  .builders__image {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
}

/*benefit*/
.benefit__wrap {
  position: relative;
  border-radius: 4em;
  margin-top: 3em;
  padding: 4em;
  background: var(--white);
}
@media (max-width: 767.98px) {
  .benefit__wrap {
    border-radius: 2em;
    padding: 2em;
  }
}
@media (min-width: 767.98px) {
  .benefit__text-block {
    max-width: 72em;
  }
}
.benefit__text {
  font-weight: 500;
  color: var(--dark-gray);
}
.benefit__text span {
  color: var(--red);
}
.benefit__items {
  margin-top: 3em;
  margin-bottom: 3em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 991.98px) {
  .benefit__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .benefit__items {
    grid-template-columns: repeat(auto-fit, minmax(29em, 1fr));
  }
}
.item-benefit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.item-benefit__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 4.8em;
  height: 4.8em;
}
.item-benefit__icon svg {
  width: 100%;
  height: 100%;
}
.item-benefit__title {
  font-weight: 600;
  color: var(--red);
}
.item-benefit__text li:not(:last-child) {
  margin-bottom: 1em;
}

/*quiz*/
.quiz__wrap {
  position: relative;
  border-radius: 4em;
  margin-top: 3em;
  padding: 4em;
  background: var(--white);
}
@media (max-width: 767.98px) {
  .quiz__wrap {
    border-radius: 2em;
    padding: 2em;
  }
}

.config {
  overflow: hidden;
}
@media (min-width: 991.98px) {
  .config {
    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-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
  }
}
.config__steps {
  position: relative;
  z-index: 5;
}
@media (min-width: 991.98px) {
  .config__steps {
    max-width: 50%;
  }
}
.config__image-block {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
}
.config__image-block::before {
  content: "";
  position: absolute;
  border-radius: 4em 4em 0 0;
  width: 80%;
  height: 80%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--red);
}
@media (max-width: 991.98px) {
  .config__image-block {
    display: none;
  }
}
.config__image {
  overflow: hidden;
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}
.config__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.step-config {
  position: relative;
  display: none !important;
}
.step-config.active-step {
  display: block !important;
  z-index: 5;
}
.step-config__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
@media (min-width: 991.98px) {
  .step-config__text-block {
    width: 70em;
  }
}
.step-config__radio-buttons {
  margin-top: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.step-config__radio-block, .step-config__input-block {
  position: relative;
  border-radius: 1em;
  padding: 2em;
  border: 1px solid var(--gray);
}
@media (min-width: 991.98px) {
  .step-config__radio-block, .step-config__input-block {
    width: 56em;
  }
}
@media (max-width: 767.98px) {
  .step-config__radio-block, .step-config__input-block {
    padding: 1em;
  }
}
.step-config__radio-block {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .step-config__radio-block:hover label {
    opacity: 0.5;
  }
}
.step-config__radio-block.active {
  color: var(--white);
  background: var(--red);
}
.step-config__radio-block.active .step-config__label:before {
  background: url("../img/icons/check.svg") center/100% no-repeat, var(--gray);
}
.step-config__input-block:focus-within {
  border: 1px solid var(--primary);
}
.step-config__input-block:not(:last-child) {
  margin-bottom: 2em;
}
.step-config__input-block._error {
  border: 1px solid var(--red);
}
.step-config__radio {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.02;
  cursor: pointer;
}
.step-config__radio:checked + .step-config__label:before {
  border: 1px solid var(--white);
}
.step-config__label {
  position: relative;
  padding-left: 1.5em;
}
.step-config__label::before {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid var(--gray);
  border-radius: 0.125em;
}
@media (max-width: 767.98px) {
  .step-config__label {
    font-size: 2em;
  }
  .step-config__label::before {
    top: 0.125em;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.step-config__form {
  margin-top: 3em;
  position: relative;
  z-index: 5;
}
.step-config__buttons {
  margin-top: 6em;
  margin-bottom: 3em;
}
@media (max-width: 479.98px) {
  .step-config__button {
    width: 100%;
  }
}

/*works*/
.works__wrap {
  margin-top: 3em;
}
.slider-works__image {
  border-radius: 1em;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1;
}
.slider-works__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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;
}
@media (any-hover: hover) {
  .slider-works__image img:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.slider-works__text-block {
  margin-top: 1em;
  padding: 1.5em;
  border-radius: 1em;
  background: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.slider-works__date {
  color: var(--gray);
  font-size: 1.4em;
  left: 100%;
}
/*reviews*/
.reviews__wrap {
  margin-top: 3em;
}
.slider-reviews__image {
  border-radius: 1em;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}
.slider-reviews__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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;
}
@media (any-hover: hover) {
  .slider-reviews__image img:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
/*company*/
.company__wrap {
  border-radius: 4em;
  margin-top: 3em;
  padding: 6em 4em;
  background: var(--white);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4em 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 4em;
}
@media (max-width: 767.98px) {
  .company__wrap {
    border-radius: 2em;
    padding: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.company__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
}
.company__subtitle {
  font-weight: 600;
  color: var(--red);
}
.company__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.company__image {
  border-radius: 4em;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.company__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*stages*/
.stages__wrap {
  position: relative;
  overflow: clip;
  border-radius: 4em;
  margin-top: 3em;
  padding: 4em;
  background: var(--white);
}
.stages__wrap::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 1px;
  top: 4em;
  left: 0;
  background: var(--red);
}
@media (max-width: 767.98px) {
  .stages__wrap {
    border-radius: 2em;
    padding: 2em;
  }
}
.stages__items {
  width: 100%;
  overflow-x: auto;
  padding-bottom: 2em;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.item-stages {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding-top: 2em;
  padding-left: 2em;
}
.item-stages::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 6.6em;
  top: 0;
  left: 0;
  background: var(--red);
}
.item-stages__number {
  color: var(--red);
}
.item-stages__title {
  font-weight: 600;
  color: var(--red);
}
.item-stages__text {
  color: var(--gray);
}

/*faq*/
.faq__wrap {
  border-radius: 4em;
  margin-top: 3em;
  padding: 4em;
  background: var(--white);
}
@media (max-width: 767.98px) {
  .faq__wrap {
    border-radius: 2em;
    padding: 2em;
  }
}
.faq__spollers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.faq__spoller {
  position: relative;
  border-radius: 1em;
  padding: 2em;
  border: 1.2px solid var(--op-gray);
  margin-right: 9em;
}
@media (max-width: 767.98px) {
  .faq__spoller {
    margin-right: 7em;
  }
}
.faq__spoller-button {
  text-align: left;
  width: 100%;
}
.faq__spoller-button span {
  color: var(--primary);
}
.faq__spoller-button i {
  position: absolute;
  top: 0;
  right: -3.75em;
  width: 3em;
  height: 3em;
  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: 0.4em;
  border: 1.2px solid var(--op-gray);
  -webkit-transition: background 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: background 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, background 0.3s ease 0s;
  transition: transform 0.3s ease 0s, background 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
.faq__spoller-button i svg {
  width: 0.8em;
  height: 1em;
}
.faq__spoller-button i svg path {
  -webkit-transition: stroke 0.3s ease 0s;
  transition: stroke 0.3s ease 0s;
}
.faq__spoller-button.spoller-active i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background: var(--red);
  border: 1.2px solid var(--red);
}
.faq__spoller-button.spoller-active i svg path {
  stroke: var(--white);
}
@media (any-hover: hover) {
  .faq__spoller-button:not(.spoller-active):hover i {
    background: var(--op-gray);
  }
}
@media (max-width: 767.98px) {
  .faq__spoller-button i {
    position: absolute;
    top: 0;
    right: -2.75em;
    width: 2em;
    height: 2em;
    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: 0.4em;
    border: 1.2px solid var(--op-gray);
    -webkit-transition: background 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    transition: background 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s, background 0.3s ease 0s;
    transition: transform 0.3s ease 0s, background 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  }
  .faq__spoller-button i svg {
    width: 0.6em;
    height: 0.8em;
  }
}
.faq__spoller-body {
  margin-top: 5em;
}
.faq__spoller-text {
  color: var(--gray);
}
.faq__bottom {
  margin-top: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .faq__bottom {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.faq__text {
  color: var(--gray);
}
@media (min-width: 767.98px) {
  .faq__text {
    max-width: 18em;
  }
}

/*help*/
.help__wrap {
  position: relative;
  border-radius: 4em;
  margin-top: 3em;
  padding: 6em 4em;
  background: var(--white);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4em 2fr;
  grid-template-columns: 1fr 2fr;
  gap: 4em;
}
@media (max-width: 767.98px) {
  .help__wrap {
    border-radius: 2em;
    padding: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.help__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3em;
}
.help__image {
  border-radius: 4em;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
@media (min-width: 767.98px) {
  .help__image {
    border-radius: 4em 0 0 0;
    position: absolute;
    width: 55%;
    height: 85%;
    bottom: 0;
    right: 0;
  }
}
.help__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page__main {
  margin-top: 16em;
}
@media (max-width: 767.98px) {
  .page__main {
    margin-top: 12em;
  }
}
.page__builders {
  padding-top: 9em;
}
.page__benefit {
  padding-top: 9em;
}
.page__quiz {
  padding-top: 9em;
}
.page__works {
  padding-top: 9em;
}
.page__reviews {
  margin-top: 9em;
}
.page__company {
  margin-top: 9em;
}
.page__stages {
  margin-top: 9em;
}
.page__faq {
  padding-top: 9em;
}
.page__help {
  margin-top: 9em;
}