@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.eot');
  src: url('../fonts/Montserrat-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff'), url('../fonts/Montserrat-Regular.ttf') format('truetype'), url('../fonts/Montserrat-Regular.svg#Montserrat-Regular') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.eot');
  src: url('../fonts/Montserrat-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.woff') format('woff'), url('../fonts/Montserrat-Medium.ttf') format('truetype'), url('../fonts/Montserrat-Medium.svg#Montserrat-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Black.eot');
  src: url('../fonts/Montserrat-Black.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Black.woff2') format('woff2'), url('../fonts/Montserrat-Black.woff') format('woff'), url('../fonts/Montserrat-Black.ttf') format('truetype'), url('../fonts/Montserrat-Black.svg#Montserrat-Black') format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.eot');
  src: url('../fonts/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/Montserrat-SemiBold.woff') format('woff'), url('../fonts/Montserrat-SemiBold.ttf') format('truetype'), url('../fonts/Montserrat-SemiBold.svg#Montserrat-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.eot');
  src: url('../fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat-Bold.woff') format('woff'), url('../fonts/Montserrat-Bold.ttf') format('truetype'), url('../fonts/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  resize: none;
}

select {
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
}

select::-ms-expand {
  /* IE */
  display: none;
}

body {
  font-family: 'Montserrat';
  font-weight: 400;
  min-height: 100vh;
  position: relative;
  font-size: 16px;
  color: #1b1f26;
}

html {
  overflow-x: hidden;
}

.body-block {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.wrapper {
  max-width: 1760px;
  padding: 0 10px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 28px;
}

.green-btn {
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-align: center;
  background-color: #00A66F;
  box-shadow: 0px 4px 4px rgba(0, 166, 111, 0.65);
  border-radius: 6px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  color: #fff;
}

.green-btn:hover {
  background-color: #00734d;
}

/* Шапка */

.burger {
  width: 24px;
  height: 16px;
  position: relative;
  z-index: 100;
  cursor: pointer;
  display: none;
}

.burger__item {
  position: absolute;
  right: 0;
  width: 24px;
  height: 2px;
  border-radius: 50px;
  background-color: #E22F22;
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.burger__item:nth-child(1) {
  top: 0;
}

.burger__item:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.burger__item:nth-child(3) {
  bottom: 0;
}

.burger.active .burger__item:nth-child(2) {
  opacity: 0;
}

.burger.active .burger__item:first-child {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 20px;
}

.burger.active .burger__item:last-child {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 20px;
}

.header {
  background: #FFFFFF;
  box-shadow: 0px 20px 30px rgba(42, 56, 92, 0.08);
  padding-bottom: 15px;
}

.header__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: 10px 0;
}

.header__adv {
  font-size: 17px;
  color: #757575;
}

.header__adv span {
  font-size: 24px;
  color: #e22f22;
  font-weight: 600;
}

.header__btn {
  width: 228px;
  padding: 13px 0;
}

.header__phone {
  font-weight: 700;
  font-size: 32px;
  color: #d45250;
}

.header__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.header__slider {
  max-width: 320px;
  position: relative;
  box-sizing: border-box;
  padding-left: 24px;
  padding-right: 24px;
}

.header-btn-prev,
.header-btn-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  background-color: #fff;
  z-index: 10;
}

.header-btn-prev {
  left: 0;
}

.header-btn-next {
  right: 0;
}

.header__slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.header__slide_link {
  background: #EEEEEE;
  border-radius: 4px;
  font-size: 18px;
  color: #353945;
  padding: 4px 7px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-decoration: underline;
}

.header__slide_link:hover {
  text-decoration: none;
}

.header__slide_link img {
  margin-right: 8px;
}

.nav__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.nav__item:not(:last-child) {
  margin-right: 40px;
}

.nav__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 20px;
  font-weight: 600;
  text-decoration: underline;
}

.nav__link:hover {
  text-decoration: none;
}

.nav__link img {
  margin-right: 16px;
}

.nav__btn {
  display: none;
}

/* / Шапка */

/* Hero */

.hero {
  padding-top: 23px;
  margin-bottom: 30px;
}

.hero__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.hero__slider {
  width: 53.9%;
  height: 624px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.hero-swiper {
  height: 100%;
}

.hero__slide {
  border-radius: 20px;
  overflow: hidden;
}

.hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero__alert {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 10;
  font-size: 24px;
  font-weight: 700;
  text-align: right;
  border-radius: 50%;
  padding-right: 20px;
  padding-bottom: 40px;
}

.hero__alert::after {
  content: '';
  position: absolute;
  left: -34px;
  top: -40px;
  width: 340px;
  height: 340px;
  background-color: #FFCC00;
  z-index: -1;
  border-radius: 50%;
}

.hero__alert_red {
  color: #e22f22;
}

.hero__alert_min {
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
}

.hero-btn-prev,
.hero-btn-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.hero-btn-prev {
  left: 15px;
}

.hero-btn-next {
  right: 15px;
}

.hero-pagination {
  position: absolute;
  left: 0;
  bottom: 25px !important;
  z-index: 11;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.hero-pagination-bullet {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 0.24;
  margin-left: 6px;
  margin-right: 6px;
  cursor: pointer;
}

.hero-pagination-bullet-active {
  opacity: 1;
  background: #FFCC00;
}

.hero__text {
  width: calc(100% - 53.9% - 30px);
  max-width: 700px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.hero__title {
  font-size: 45px;
  font-weight: 900;
  text-align: center;
  max-width: 668px;
  margin-bottom: 16px;
}

.hero__descr {
  padding: 2px 14px;
  font-size: 32px;
  font-weight: 500;
  background-color: #FFCC00;
  margin-bottom: 25px;
  text-align: center;
}

.hero__list {
  width: 100%;
  margin-bottom: 15px;
}

.hero__list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 24px;
  font-weight: 500;
}

.hero__list li img {
  margin-right: 12px;
}

.form__fields {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.form__field {
  width: calc(50% - 10px);
  margin-bottom: 16px;
}

.form__field-full {
  width: 100%;
}

.form__field-sel {
  position: relative;
  cursor: pointer;
}

.form__field-sel::after {
  content: '';
  position: absolute;
  right: 17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: #fff;
  background-image: url('../img/icons/arrow-down.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.form__field select,
.form__field input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 17px;
  background: #FFFFFF;
  border: 2px solid #DADADA;
  border-radius: 4px;
}

.form__submit {
  width: 100%;
  padding: 28px 0;
  font-size: 24px;
}

.form__submit img {
  margin-left: 10px;
  margin-right: 10px;
}

/* / Hero */

/* Квиз */

.q-form1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  width: 100%;
  max-width: 1030px;
}

.q-form1__inp {
  width: calc(100% / 12 * 4 - 12px);
  display: block;
  box-sizing: border-box;
  padding: 20px 17px;
  background: #FFFFFF;
  border: 2px solid #DADADA;
  border-radius: 4px;
}

.q-form2 {
  max-width: 680px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  pointer-events: auto;
  position: relative;
  z-index: 2;
}

.q-form2__sel {
  cursor: pointer;
}

.q-form2__sel::after {
  content: '';
  position: absolute;
  right: 17px;
  bottom: 20px;
  width: 24px;
  height: 24px;
  background-color: #fff;
  background-image: url('../img/icons/arrow-down.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.q-form2__field {
  width: calc(50% - 12px);
  position: relative;
  margin-bottom: 24px;
}

.q-form2__field-full {
  width: 100%;
}

.q-form2__field select,
.q-form2__field input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 17px;
  background: #FFFFFF;
  border: 2px solid #DADADA;
  border-radius: 4px;
}

.q-form2__field select {
  cursor: pointer;
}

.q-form2__label {
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 8px;
  min-height: 38px;
  box-sizing: border-box;
}

.q-form2__recall {
  padding: 8px 0;
  background-color: #FFCC00;
}

.quiz {
  background: #FFFFFF;
  box-shadow: 0px 4px 10px 4px rgba(42, 56, 92, 0.16);
  border-radius: 10px;
  padding: 50px 10px 22px 10px;
  position: relative;
  margin-bottom: 40px;
  z-index: 2;
}

.quiz__map {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 630px;
}

.quiz__img {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

.quiz__content {
  max-width: 1546px;
  margin-left: auto;
  margin-right: auto;
}

.quiz__marks {
  position: relative;
  padding-bottom: 30px;
}

.quiz-btn-prev,
.quiz-btn-next {
  position: absolute;
  top: 180px;
  cursor: pointer;
  z-index: 10;
}

.quiz-btn-prev {
  left: 0;
}

.quiz-btn-next {
  right: 0;
}

.quiz__steps {
  margin-bottom: 45px;
}

.quiz__step3 {
  pointer-events: none;
}

.quiz-pagination {
  position: absolute;
  left: 0;
  bottom: 0 !important;
  z-index: 11;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.quiz-pagination-bullet {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #F5F5F5;
  margin-left: 6px;
  margin-right: 6px;
  cursor: pointer;
}

.quiz-pagination-bullet-active {
  opacity: 1;
  background: #FFCC00;
}

.quiz__ask {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
}

.quiz__step {
  min-height: 340px;
  display: none;
}

.quiz__step.active {
  display: block;
}

.quiz__slide {
  width: unset;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.quiz__mark {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  text-decoration: underline;
  padding: 6px 3px 15px 3px;
  border-radius: 6px;
  background-color: transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.quiz__mark:hover {
  text-decoration: none;
}

.quiz__mark_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FC971B;
  opacity: 0;
  z-index: -1;
  border-radius: 6px;
}

.quiz__mark input:checked + .quiz__mark_bg {
  opacity: 1;
}

.quiz__next {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  max-width: 344px;
  padding: 18px 0;
  font-size: 24px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  pointer-events: auto;
}

.quiz__next.hidden {
  display: none;
}

.quiz__next img {
  margin-left: 10px;
}

.quiz__submit {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 100%;
  max-width: 344px;
  padding: 18px 0;
  font-size: 24px;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
  pointer-events: auto;
}

.quiz__submit.hidden {
  display: none;
}

.quiz__submit img {
  margin-left: 10px;
}

.quiz__bottom {
  position: relative;
  pointer-events: none;
}

.quiz__pag {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.quiz__pag_crnt {
  font-size: 18px;
  margin-bottom: 6px;
}

.quiz__pag_items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.quiz__pag_item {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  width: 76px;
  height: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  background-color: #F5F5F5;
}

.quiz__pag_item:not(:last-child) {
  margin-right: 4px;
}

.quiz__pag_item.active {
  background-color: #E22F22;
}

/* / Квиз */

/* Быстро заменим */

.fast {
  margin-bottom: 30px;
}

.fast-swiper {
  padding-bottom: 8px;
}

.fast__slider {
  padding-left: 106px;
  padding-right: 106px;
  position: relative;
  padding-bottom: 40px;
}

.fast__slide {
  width: unset;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.fast__price {
  padding: 7px 14px;
  font-size: 18px;
  font-weight: 500;
  background-color: #FFCC00;
  border-radius: 4px;
}

.fast__img {
  height: 180px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-bottom: 20px;
}

.fast__img img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.fast__img.liked {
  position: relative;
}

.fast__img.liked::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 87px;
  height: 87px;
  background-image: url('../img/icons/like.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.fast__power {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
}

.fast__power img {
  margin-right: 8px;
}

.fast__btn {
  font-weight: 600;
  width: 200px;
  padding: 14px 0;
}

.fast-btn-prev,
.fast-btn-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.fast-btn-prev {
  left: 15px;
}

.fast-btn-next {
  right: 15px;
}

.fast-pagination {
  position: absolute;
  left: 0;
  bottom: 0 !important;
  z-index: 11;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.fast-pagination-bullet {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #F5F5F5;
  margin-left: 6px;
  margin-right: 6px;
  cursor: pointer;
}

.fast-pagination-bullet-active {
  opacity: 1;
  background: #FFCC00;
}

/* / Быстро заменим */

/* Стоимость */

.price {
  margin-bottom: 40px;
}

.price__table table {
  display: block;
}

.price__table table thead,
.price__table table tbody {
  display: block;
}

.price__table table thead tr {
  padding: 20px 0;
  background-color: #FFCC00;
}

.price__table table tbody tr {
  padding: 10px 0;
  background: #FFFFFF;
  border: 1px solid #E3E3E3;
  margin-top: 4px;
}

.price__table table tbody tr:hover {
  border-color: #ffcc00;
}

.price__table table tbody tr:hover .price__btn {
  opacity: 1;
}

.price__table table tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.price__table table td:first-child,
.price__table table th:first-child {
  width: 22.72%;
  text-align: left;
  box-sizing: border-box;
  padding-left: 30px;
}

.price__table table td:nth-child(2),
.price__table table th:nth-child(2) {
  width: calc(100% - 22.72% - 15.45% - 17.04% - 21.02%);
  text-align: left;
}

.price__table table td:nth-child(3),
.price__table table th:nth-child(3) {
  width: 15.45%;
  text-align: center;
}

.price__table table td:nth-child(4),
.price__table table th:nth-child(4) {
  width: 17.04%;
  text-align: center;
}

.price__table table td:last-child,
.price__table table th:last-child {
  width: 21.02%;
}

.price__table table td {
  font-weight: 500;
}

.price__table table th {
  font-weight: 500;
  font-size: 18px;
}

.price__mark {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: start;
  -webkit-align-items: center;
          align-items: center;
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
}

.price__mark:hover {
  text-decoration: none;
}

.price__mark img {
  margin-right: 20px;
}

.price__model {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  /*max-width: 190px;*/
}
.price__model_auto {
  max-width: 100% !important;
}

.price__model li {
  margin-right: 4px;
}

.price__model li a {
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
}

.price__model li a:hover {
  text-decoration: none;
}

.price__btn {
  max-width: 210px;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 0;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/* / Стоимость */

/* Фото */

.photo {
  margin-bottom: 60px;
}

.photo__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -40px;
}

.photo__item {
  width: calc(100% / 12 * 4 - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  min-height: 390px;
}

.photo__name {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  display: block;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
  text-decoration: underline;
}

.photo__name:hover {
  text-decoration: none;
}

.photo__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  background: #FFFFFF;
  box-shadow: 0px 20px 30px rgba(42, 56, 92, 0.16);
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}

.photo__car {
  width: 50%;
}

.photo__car img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.photo__product {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  width: 50%;
  box-sizing: border-box;
  padding: 18px 10px;
}

.photo__status {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.photo__btn {
  padding: 14px 0;
  width: 100%;
  max-width: 208px;
}

.photo__cost {
  display: inline-block;
  padding: 7px 14px;
  font-size: 18px;
  font-weight: 500;
  background-color: #FFCC00;
  border-radius: 4px;
  margin-bottom: 20px;
}

.photo__power {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 24px;
  margin-top: auto;
}

.photo__power img {
  margin-right: 10px;
}

.photo__img {
  margin-bottom: 20px;
}

.photo__img.liked {
  position: relative;
}

.photo__img.liked::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 87px;
  height: 87px;
  background-image: url('../img/icons/like.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* / Фото */

/* Alert */

.alert {
  background-color: #FFCC00;
  overflow: hidden;
  margin-bottom: 22px;
}

.alert__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 34px 0 24px;
  max-width: 1370px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}

.alert__mob {
  display: none;
}

.alert__left {
  position: relative;
  width: 350px;
  z-index: 2;
}

.alert__left::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%) translateY(80%);
      -ms-transform: translateX(-50%) translateY(80%);
          transform: translateX(-50%) translateY(80%);
  width: 490px;
  height: 490px;
  background-color: #E8B900;
  border-radius: 50%;
  z-index: -1;
}

.alert__man {
  position: absolute;
  right: 0;
  bottom: -24px;
}

.alert__top {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  position: relative;
  padding-top: 16px;
  padding-left: 30px;
  padding-right: 40px;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.alert__top::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 0;
  height: 100%;
  width: 187px;
  background-image: url('../img/icons/alert-design.png');
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
}

.alert__name {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 3px;
}

.alert__elektrik {
  font-size: 18px;
  margin-bottom: 15px;
}

.alert__title {
  font-weight: 900;
  font-size: 40px;
  margin-bottom: 10px;
}

.alert__descr {
  font-size: 24px;
  font-weight: 500;
}

.alert__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.alert__btn {
  width: 100%;
  max-width: 250px;
  padding: 20px 0;
  font-size: 18px;
  margin-right: 40px;
}

.alert__phone_call {
  color: #e22f22;
  font-weight: 700;
  font-size: 24px;
  display: inline-block;
  margin-bottom: 5px;
}

.alert__phone_descr {
  font-weight: 500;
}

/* / Alert */

/* Как */

.how {
  margin-bottom: 33px;
}

.how__content {
  position: relative;
  min-height: 737px;
}

.how__img {
  position: absolute;
  right: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1500px;
}

.how__text {
  width: 50%;
  margin-left: auto;
  padding-top: 62px;
}

.how__name {
  font-size: 24px;
  font-weight: 600;
}

.how__item:first-child {
  -webkit-transform: translateX(-216px);
      -ms-transform: translateX(-216px);
          transform: translateX(-216px);
}

.how__item:nth-child(2) {
  -webkit-transform: translateX(-110px) translateY(2px);
      -ms-transform: translateX(-110px) translateY(2px);
          transform: translateX(-110px) translateY(2px);
}

.how__item:nth-child(3) {
  -webkit-transform: translateX(-20px) translateY(12px);
      -ms-transform: translateX(-20px) translateY(12px);
          transform: translateX(-20px) translateY(12px);
}

.how__item:last-child {
  -webkit-transform: translateX(-110px) translateY(28px);
      -ms-transform: translateX(-110px) translateY(28px);
          transform: translateX(-110px) translateY(28px);
}

.how__item:not(:last-child) {
  margin-bottom: 50px;
}

.how__txt,
.how__phone {
  font-size: 18px;
  padding-left: 24px;
}

.how__phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  max-width: 385px;
}

.how__call {
  font-size: 32px;
  font-weight: 700;
  color: #d45250;
  margin-bottom: 17px;
}

.how__txt {
  margin-top: 10px;
}

.how__btn {
  padding: 22px 0;
  width: 384px;
  text-align: center;
  font-size: 24px;
}

/* / Как */

/* FAQ */

.faq {
  margin-bottom: 33px;
}

.faq__item {
  padding: 15px 25px;
  border: 1px solid #E5E5E5;
  box-sizing: border-box;
  border-radius: 10px;
}

.faq__item:not(:last-child) {
  margin-bottom: 12px;
}

.faq__ask {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  cursor: pointer;
}

.faq__ask_txt {
  font-size: 24px;
  margin-right: 30px;
  font-weight: 600;
}

.faq__ans {
  display: none;
  overflow-y: hidden;
}

.faq__ans.active {
  display: block;
}

.faq__txt {
  color: #6e6a81;
  margin-bottom: 12px;
  line-height: 1.75;
  padding-top: 24px;
}

.faq__arrow {
  display: inline-block;
  width: 48px;
  height: 48px;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  background-image: url('../img/icons/faq-x.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.27s;
  transition: 0.27s;
}

.faq__ask.active .faq__arrow {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.faq__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding-bottom: 10px;
}

.faq__btn {
  width: 100%;
  max-width: 264px;
  font-size: 24px;
  padding: 22px 0;
  margin-right: 15px;
}

.faq__phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.faq__phone_descr {
  font-size: 18px;
  margin-bottom: 6px;
}

.faq__phone_call {
  font-size: 28px;
  font-weight: 700;
  color: #e85757;
}

/* / FAQ */

/* Выезд */

.viezd {
  margin-bottom: 47px;
}

.viezd__title {
  margin-bottom: 20px;
}

.viezd__descr {
  color: #2E373F;
  line-height: 1.25;
  margin-bottom: 40px;
}

.viezd__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.viezd__list li {
  width: calc(25% - 20px);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 22px;
  padding-left: 23px;
  position: relative;
  box-sizing: border-box;
}

.viezd__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background-color: #ff2854;
}

.viezd__list a {
  color: #6e6a81;
}

.viezd__list a:hover {
  text-decoration: underline;
}

/* / Выезд */

/* Футер */

.footer {
  background: rgba(255, 190, 185, 0.5);
  padding-top: 25px;
  padding-bottom: 40px;
}

.footer__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.footer__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin-right: 30px;
  width: 322px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 40px;
}

.footer__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 18px;
  margin-bottom: 24px;
}

.footer__row img {
  margin-right: 10px;
  width: 26px;
  height: 26px;
}

.footer__phone {
  font-size: 24px;
  font-weight: 700;
  color: #E22F22;
}

.footer__main {
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 340px);
  max-width: 956px;
}

.footer__metro {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 60px;
}

.footer__metro_txt {
  font-size: 18px;
  font-weight: 600;
  margin-right: 6px;
}

.footer__slider {
  max-width: 320px;
  position: relative;
  box-sizing: border-box;
  padding-left: 24px;
  padding-right: 24px;
}

.footer-btn-prev,
.footer-btn-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.footer-btn-prev {
  left: 0;
}

.footer-btn-next {
  right: 0;
}

.footer__slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.footer__slide_link {
  background: #fff;
  border-radius: 4px;
  font-size: 18px;
  color: #353945;
  padding: 4px 7px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-decoration: underline;
}

.footer__slide_link:hover {
  text-decoration: none;
}

.footer__slide_link img {
  margin-right: 8px;
}

.footer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 100px;
}

.footer__list li {
  width: calc(100% / 12 * 4);
  margin-bottom: 17px;
}

.footer__list li a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 18px;
}

.footer__list li a img {
  margin-right: 8px;
}

.footer__list li a:hover {
  text-decoration: underline;
}

.footer__btn {
  padding: 22px 0;
  width: 100%;
  max-width: 527px;
  background: #00A66F;
  border-radius: 6px;
  margin-left: auto;
  margin-right: auto;
  font-size: 24px;
  margin-bottom: 50px;
}

.footer__copyright {
  text-align: center;
  color: #878787;
}

/* / Футер */

@media screen and (max-width: 1800px) {
  .quiz__marks {
    position: relative;
    padding-left: 65px;
    padding-right: 65px;
  }

  .quiz__step1 {
    position: relative;
  }
}

@media screen and (max-width: 1600px) {
  .header__phone {
    font-size: 25px;
  }

  .header__logo {
    max-width: 250px;
  }

  .header__adv {
    font-size: 15px;
  }

  .header__adv span {
    font-size: 20px;
  }

  .header__btn {
    width: 200px;
  }

  .header__slide_link {
    font-size: 16px;
  }

  .header__slide_link img {
    width: 25px;
  }

  .footer__slide_link {
    font-size: 16px;
  }

  .footer__slide_link img {
    width: 25px;
  }

  .nav__link {
    font-size: 17px;
  }

  .nav__link img {
    width: 30px;
    margin-right: 10px;
  }

  .hero__title {
    font-size: 34px;
    max-width: 580px;
  }

  .hero__descr {
    font-size: 28px;
  }

  .hero__list li {
    font-size: 20px;
  }

  .how__name {
    font-size: 20px;
  }

  .how__txt,
  .how__phone {
    font-size: 16px;
  }

  .how__item:nth-child(2) {
    -webkit-transform: translateX(-110px) translateY(13px);
        -ms-transform: translateX(-110px) translateY(13px);
            transform: translateX(-110px) translateY(13px);
  }

  .how__item:last-child {
    -webkit-transform: translateX(-110px) translateY(40px);
        -ms-transform: translateX(-110px) translateY(40px);
            transform: translateX(-110px) translateY(40px);
  }
}

@media screen and (max-width: 1300px) {
  .photo__item {
    width: calc(50% - 20px);
  }

  .alert__title {
    font-size: 30px;
  }

  .alert__descr {
    font-size: 20px;
  }

  .alert__content {
    max-width: 1100px;
  }

  .alert__name {
    font-size: 27px;
  }

  .alert__elektrik {
    font-size: 15px;
  }

  .alert__man {
    max-width: 140px;
  }

  .alert__akk {
    max-width: 110px;
  }

  .alert__left::after {
    width: 420px;
    height: 350px;
    -webkit-transform: translateX(-50%) translateY(80%);
        -ms-transform: translateX(-50%) translateY(80%);
            transform: translateX(-50%) translateY(80%);
  }

  .alert__btn {
    font-size: 16px;
    max-width: 220px;
    padding: 17px 0;
  }

  .alert__phone_call {
    font-size: 22px;
  }

  .alert__phone_descr {
    font-size: 15px;
  }
}

@media screen and (max-width: 1250px) {
  .section-title {
    font-size: 30px;
  }

  .quiz__map,
  .quiz__img {
    display: none;
  }

  .quiz__ask {
    text-align: center;
  }

  .q-form1 {
    margin-left: auto;
    margin-right: auto;
  }

  .header__phone {
    font-size: 23px;
  }

  .header__logo {
    max-width: 220px;
  }

  .header__adv {
    font-size: 14px;
  }

  .header__adv span {
    font-size: 18px;
  }

  .header__btn {
    width: 190px;
  }

  .header__slide_link {
    font-size: 15px;
  }

  .header__slider {
    max-width: 280px;
  }

  .nav__link {
    font-size: 15px;
  }

  .nav__link img {
    width: 30px;
    margin-right: 10px;
  }

  .nav__btn {
    display: block;
    padding: 20px 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }

  .hero__title {
    font-size: 31px;
    max-width: 480px;
  }

  .hero__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .hero__text {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
            order: -1;
    margin-bottom: 20px;
    width: 100%;
    max-width: 600px;
  }

  .hero__slider {
    width: 100%;
    max-width: 900px;
  }

  .how__content {
    min-height: unset;
  }

  .how__img {
    position: unset;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    width: 100%;
  }

  .how__item {
    -webkit-transform: unset !important;
        -ms-transform: unset !important;
            transform: unset !important;
  }

  .how__item:nth-child(3) {
    display: none;
  }

  .how__text {
    padding-top: 20px;
    width: 100%;
    max-width: 550px;
    margin-right: auto;
  }

  .how__txt {
    padding-left: 0;
  }

  .footer__list li a {
    font-size: 14px;
  }

  .footer__list li a img {
    width: 20px;
  }

  .footer__row {
    font-size: 16px;
  }

  .footer__phone {
    font-size: 20px;
  }

  .header__adv {
    display: none;
  }

  .header__btn {
    display: none;
  }

  .header__slider {
    margin-left: auto;
    margin-right: auto;
  }

  .nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    padding-top: 90px;
    z-index: 99;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    background-color: #fff;
    max-width: unset;
  }

  .nav.active {
    opacity: 1;
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
  }

  .nav__list {
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start;
  }

  .nav__item:not(:last-child) {
    margin-bottom: 12px;
  }

  .burger {
    display: block;
  }

  .quiz__step {
    min-height: unset;
  }

  .q-form2 {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 1100px) {
  .price__table table thead tr td,
  .price__table table tbody tr td,
  .price__table table thead tr th,
  .price__table table tbody tr th {
    width: 25% !important;
  }

  .price__table table thead tr td:nth-child(5),
  .price__table table tbody tr td:nth-child(5),
  .price__table table thead tr th:nth-child(5),
  .price__table table tbody tr th:nth-child(5) {
    display: none;
  }

  .price__table table thead tr td:nth-child(4),
  .price__table table tbody tr td:nth-child(4),
  .price__table table thead tr th:nth-child(4),
  .price__table table tbody tr th:nth-child(4) {
    display: none;
  }

  .price__table table thead tr td:nth-child(3),
  .price__table table tbody tr td:nth-child(3),
  .price__table table thead tr th:nth-child(3),
  .price__table table tbody tr th:nth-child(3) {
    width: 20%;
    margin-left: auto;
    min-width: 150px;
  }

  .price__table table thead tr td:nth-child(1),
  .price__table table tbody tr td:nth-child(1) {
    width: 100px !important;
    margin-right: 15px;
  }

  .price__table table thead tr td:nth-child(2),
  .price__table table tbody tr td:nth-child(2) {
    width: calc(100% - 20% - 100px - 20px) !important;
    margin-right: 15px;
  }

  .price__table table thead tr th:first-child,
  .price__table table tbody tr th:first-child {
    width: calc(100% - 20% - 20px) !important;
  }

  .price__table table thead tr th:nth-child(2),
  .price__table table tbody tr th:nth-child(2) {
    display: none;
  }

  .price__mark span {
    display: none;
  }

  .alert__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .alert__top {
    display: none;
    border: none;
    padding: 0;
  }

  .alert__top::before {
    display: none;
  }

  .alert__mob {
    display: block;
  }

  .alert__left {
    position: relative;
    box-sizing: border-box;
    padding-left: 90px;
    margin-bottom: 20px;
  }

  .alert__left::after {
    display: none;
  }

  .alert__man {
    position: unset;
  }

  .alert__akk {
    max-width: 80px;
    position: absolute;
    left: 0;
    top: 0;
  }

  .alert__text {
    width: 100%;
  }

  .alert__bottom {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .viezd__list li {
    width: calc(100% / 12 * 4 - 20px);
  }
}

@media screen and (max-width: 1000px) {
  .footer__list li {
    width: 50%;
  }
}

@media screen and (max-width: 900px) {
  .hero__slider {
    height: 70vw;
  }

  .photo__items {
    max-width: 100%;
    overflow-x: auto;
    -webkit-flex-wrap: unset;
            flex-wrap: unset;
    margin-left: unset;
    margin-right: unset;
  }

  .photo__item {
    width: unset;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
  }

  .quiz__pag {
    position: unset;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    margin-bottom: 15px;
  }

  .quiz__bottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .q-form1 {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-bottom: -20px;
  }

  .q-form1__inp {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer__left {
    width: 260px;
    margin-right: 15px;
  }

  .footer__main {
    width: calc(100% - 260px - 15px);
  }

  .footer__metro_txt {
    font-size: 16px;
  }

  .footer__slider {
    max-width: 280px;
  }
}

@media screen and (max-width: 800px) {
  .hero__alert {
    font-size: 20px;
  }

  .hero__alert_min {
    font-size: 50px;
  }

  .faq__ask_txt {
    font-size: 20px;
  }

  .faq__arrow {
    width: 30px;
  }

  .faq__txt {
    font-size: 14px;
  }

  .faq__phone_descr {
    font-size: 16px;
  }

  .faq__phone_call {
    font-size: 24px;
  }
}

@media screen and (max-width: 700px) {
  .photo__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .photo__car {
    width: 100%;
    height: 40vw;
  }

  .photo__product {
    width: 100%;
  }

  .photo__item {
    width: 70vw;
  }

  .photo__name {
    font-size: 16px;
  }

  .quiz-btn-next,
  .quiz-btn-prev {
    width: 20px;
    height: 20px;
  }

  .quiz__marks {
    padding-left: 30px;
    padding-right: 30px;
  }

  .faq__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .faq__btn {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .viezd__descr {
    font-size: 12px;
  }

  .viezd__list li {
    width: calc(50% - 20px);
  }

  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .footer__left {
    margin-right: 0;
  }

  .footer__main {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .section-title {
    font-size: 24px;
  }

  .header__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start;
    position: relative;
  }

  .header__logo {
    max-width: 200px;
  }

  .header__phone {
    font-size: 22px;
    -webkit-align-self: center;
                -ms-grid-row-align: center;
            align-self: center;
  }

  .burger {
    position: absolute;
    right: 10px;
    top: 25px;
  }

  .hero__title {
    font-size: 22px;
    max-width: 320px;
    margin-bottom: 4px;
  }

  .hero__descr {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .hero__list li {
    font-size: 14px;
  }

  .hero__list li img {
    max-width: 25px;
  }

  .form__field {
    width: 100%;
  }

  .form__field input,
  .form__field select {
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero__alert {
    font-size: 14px;
    padding-right: 10px;
    padding-bottom: 15px;
  }

  .hero__alert::after {
    width: 200px;
    height: 200px;
    left: -10px;
    top: -20px;
  }

  .hero__alert_min {
    font-size: 30px;
  }

  .fast__slider {
    padding-left: 0;
    padding-right: 0;
  }

  .fast-btn-prev,
  .fast-btn-next {
    display: none;
  }

  .price .wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .price__table table thead tr td,
  .price__table table tbody tr td {
    font-size: 14px;
  }

  .price__table table thead tr th,
  .price__table table tbody tr th {
    font-size: 14px;
  }

  .price__model li a {
    font-size: 12px;
  }

  .price__mark {
    font-size: 16px;
  }

  .price__mark img {
    margin-right: 0;
  }

  .price__table table thead tr td:nth-child(1),
  .price__table table tbody tr td:nth-child(1) {
    width: 50px !important;
    padding-left: 0;
  }

  .price__table table thead tr td:nth-child(2),
  .price__table table tbody tr td:nth-child(2) {
    width: calc(100% - 50px - 120px);
  }

  .price__table table thead tr td:nth-child(3),
  .price__table table tbody tr td:nth-child(3),
  .price__table table thead tr th:nth-child(3),
  .price__table table tbody tr th:nth-child(3) {
    min-width: 120px;
  }

  .alert__title {
    text-align: center;
  }

  .alert__descr {
    text-align: center;
    font-size: 17px;
  }

  .alert__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
  }

  .alert__btn {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .alert__left {
    width: 100%;
    max-width: 300px;
  }

  .quiz__mark {
    font-size: 14px;
    padding: 4px 0 10px 0;
  }

  .quiz__mark img {
    width: 66px;
  }

  .quiz-btn {
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }

  .quiz-btn-prev,
  .quiz-btn-next {
    position: absolute;
    top: 50%;
  }

  .quiz__step1 {
    position: relative;
  }

  .quiz__next,
  .quiz__submit {
    font-size: 20px;
  }

  .q-form2__field {
    width: 100%;
  }

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

  .how__name {
    font-size: 18px;
  }

  .how__txt {
    font-size: 14px;
  }

  .faq__ask_txt {
    font-size: 14px;
  }

  .faq__item {
    padding: 14px 12px;
  }

  .faq__txt {
    padding-top: 12px;
    font-size: 12px;
  }

  .viezd__list li {
    width: calc(100% - 20px);
  }

  .viezd__list li a {
    font-size: 14px;
  }

  .footer__metro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
    margin-bottom: 30px;
  }

  .footer__metro_txt {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .footer__list {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__list li {
    width: 100%;
  }

  .footer__btn {
    font-size: 14px;
  }
}

@media screen and (max-width: 430px) {
  .hero__slider {
    height: 300px;
  }

  .hero-btn-prev,
  .hero-btn-next {
    width: 40px;
    height: 40px;
  }

  .hero-pagination {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    box-sizing: border-box;
    padding-left: 10px;
  }

  .form__submit {
    font-size: 18px;
  }

  .photo__car {
    height: 200px;
  }
}


.bolder-red {
	font-weight: 700;
    color: #d45250;
}

.mark-swiper2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
  margin-bottom: 50px;
}


@media screen and (max-width: 800px) {  
	.mark-swiper2 {
	  grid-template-columns: repeat(3, 1fr);
	}
}



.popup__wrapper {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,.7);
  z-index: 100;
}
.popup__send {
    height: 130px;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 4px solid #E5E5E5;
    border-radius: 20px;
    padding: 30px 36px;
    font-size: 30px;
    font-weight: 600;
    flex-flow: column;
}

.form__submit {
  position: relative;
}
.loading-window__wrap {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    /*width: 300px;*/
    max-width: 100%;
    height: 30px;
}

@keyframes spin {
  0% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -3px) rotate(36deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(72deg);
  }
  30% {
    transform: translate(1px, 2px) rotate(108deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(144deg);
  }
  50% {
    transform: translate(-1px, 3px) rotate(180deg);
  }
  60% {
    transform: translate(-1px, 1px) rotate(216deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(252deg);
  }
  80% {
    transform: translate(-2px, -1px) rotate(288deg);
  }
  90% {
    transform: translate(2px, 1px) rotate(324deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(360deg);
  }
}
@keyframes speed {
  0% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -3px) rotate(-1deg);
  }
  20% {
    transform: translate(-2px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 3px) rotate(-1deg);
  }
  60% {
    transform: translate(-1px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-2px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(2px, 1px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
@keyframes strikes {
  from {
    left: 25px;
  }
  to {
    left: -80px;
    opacity: 0;
  }
}
@keyframes dots {
  from {
    width: 0px;
  }
  to {
    width: 15px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn, .loading-window {
  animation: fadeIn 0.4s both;
}

.loading-window {
  border-radius: 6px;
  color: #ffffff;
  margin-top: -35px;
  position: relative;
  z-index: 99;
  width: 117px;
}
.loading-window .text {
  font-size: 16px;
  position: absolute;
  width: auto;
  top: 75%;
  left: 38%;
  margin: 0 auto;
}
.loading-window .dots {
  display: inline-block;
  width: 5px;
  overflow: hidden;
  vertical-align: bottom;
  animation: dots 1.5s linear infinite;
  transition: 1;
}

.car {
  position: absolute;
  width: 117px;
  height: 42px;
  /*left: 92px;
  top: 70px;*/
}
.car .strike {
  position: absolute;
  width: 11px;
  height: 1px;
  background: #ffffff;
  animation: strikes 0.2s linear infinite;
}
.car .strike2 {
  top: 11px;
  animation-delay: 0.05s;
}
.car .strike3 {
  top: 22px;
  animation-delay: 0.1s;
}
.car .strike4 {
  top: 33px;
  animation-delay: 0.15s;
}
.car .strike5 {
  top: 44px;
  animation-delay: 0.2s;
}
.car-detail {
  position: absolute;
  display: block;
  background: #ffffff;
  animation: speed 0.5s linear infinite;
}
.car-detail.spoiler {
  width: 0;
  height: 0;
  top: 7px;
  background: none;
  border: 20px solid transparent;
  border-bottom: 8px solid #ffffff;
  border-left: 20px solid #ffffff;
}
.car-detail.back {
  height: 20px;
  width: 92px;
  top: 15px;
  left: 0px;
}
.car-detail.center {
  height: 35px;
  width: 75px;
  left: 12px;
  border-top-left-radius: 30px;
  border-top-right-radius: 45px 40px;
  border: 4px solid #ffffff;
  background: none;
  box-sizing: border-box;
}
.car-detail.center1 {
  height: 35px;
  width: 35px;
  left: 12px;
  border-top-left-radius: 30px;
}
.car-detail.front {
  height: 20px;
  width: 50px;
  top: 15px;
  left: 67px;
  border-top-right-radius: 50px 40px;
  border-bottom-right-radius: 10px;
}
.car-detail.wheel {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  top: 20px;
  left: 12px;
  background: linear-gradient(45deg, transparent 45%, #ffffff 46%, #ffffff 54%, transparent 55%), linear-gradient(-45deg, transparent 45%, #ffffff 46%, #ffffff 54%, transparent 55%), linear-gradient(90deg, transparent 45%, #ffffff 46%, #ffffff 54%, transparent 55%), linear-gradient(0deg, transparent 45%, #ffffff 46%, #ffffff 54%, transparent 55%), radial-gradient(#ffffff 29%, transparent 30%, transparent 50%, #ffffff 51%), #333;
  animation-name: spin;
}
.car-detail.wheel2 {
  left: 82px;
}

.fast__img_2 {
    height: 450px;
    margin-right: 30px;
}

.footer__row2 {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    font-size: 18px;
    margin-bottom: 24px;
}

.footer__row2 a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.fast__img_2 {
    height: 450px;
    margin-right: 30px;
}

.cookieBlock {
    width: 260px;
    box-sizing: border-box;
    position: fixed;
    z-index: 150;
    bottom: 20px;
    left: 70px;
    background: #fff;
    padding: 15px;
    box-shadow: 0px 0px 4px 2px #0000000D;
    border-radius: 10px;
}
.cookieBlock .title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}
.cookieBlock .desc {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
}
.cookieBlock .more {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 10px;
    display: table;
    text-decoration: underline;
}
.cookieBlock .more:hover {
    text-decoration: none;
}
.cookieBlock .btn {
    display: inline-block;
    padding: 10px;
    font-size: 11px;
    background-color: #00A66F;
    border: none;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 99;
}
