@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 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-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Montserrat", sans-serif;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
}

[class*=__container] {
  max-width: 830px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  flex: 1 1 auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #030303;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 40;
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
}

@media (max-width: 767px) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #fff;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 767px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #030303;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 56px;
}
@media (max-width: 991px) {
  .menu__list {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
.menu__link {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

.footer {
  background: #161616;
  padding: 32px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 32px;
  max-width: 523px;
  width: 100%;
  background: #030303;
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #FFF;
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.72px;
}
.cookies__text {
  text-align: center;
}
.cookies__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookies__btn {
  color: #030303;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  background: #FFF;
  padding: 16px 0;
}
.cookies__btn-sub {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  padding: 16px 0;
}

.hero__content {
  display: flex;
  align-items: center;
  height: 100vh;
}
@media (max-width: 991px) {
  .hero__content {
    flex-direction: column;
    gap: 60px;
  }
}
@media (max-width: 1023px) {
  .hero__content_form {
    flex-direction: column;
    gap: 60px;
  }
}
.hero__img {
  width: 65%;
  height: 100%;
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .hero__img {
    width: 100%;
    height: 400px;
  }
}
@media (max-width: 1023px) {
  .hero__img_form {
    width: 100%;
    height: 400px;
  }
}
.hero__column {
  padding: 0 0 0 40px;
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 991px) {
  .hero__column {
    width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 1023px) {
  .hero__column_form {
    width: 100%;
    padding: 0 15px;
  }
}
.hero__title {
  color: #000;
  font-size: 32px;
  font-weight: 600;
}
.hero__text {
  color: #0C0C0C;
  font-size: 20px;
  font-weight: 500;
}
.hero__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  border-radius: 60px;
  background: #DE1516;
  padding: 19px 60px;
}

.quiz {
  padding: 40px 0 0;
  width: 100%;
}
@media (max-width: 767px) {
  .quiz__container {
    padding: 0;
  }
}
.quiz__content {
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 0 20px;
}
@media (max-width: 767px) {
  .quiz__img {
    display: none;
  }
}
.quiz__img_mob {
  display: none;
}
@media (max-width: 767px) {
  .quiz__img_mob {
    display: block;
    width: 100%;
  }
  .quiz__img_mob img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.quiz__label {
  color: #0C0C0C;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}
.quiz__line {
  width: 100%;
  background: #9F9F9F;
  height: 1px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .quiz__line {
    margin-bottom: 20px;
  }
}
.quiz__row {
  display: flex;
  gap: 20px;
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .quiz__row {
    flex-direction: column;
  }
}
.quiz__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 4px;
  background: #FFF;
  box-shadow: 4px 4px 10px 7px rgba(0, 0, 0, 0.25);
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px 10px 40px;
}
.quiz__question {
  color: #000;
  font-size: 24px;
  font-weight: 500;
}
.quiz__inp {
  color: #0C0C0C;
  font-size: 16px;
  font-weight: 400;
  border-radius: 4px;
  border: 1px solid #ADADAD;
  background: #DFDFDF;
  padding: 16px 20px;
  width: 100%;
}
.quiz__inp::-moz-placeholder {
  color: #0C0C0C;
  font-size: 16px;
  font-weight: 400;
}
.quiz__inp::placeholder {
  color: #0C0C0C;
  font-size: 16px;
  font-weight: 400;
}
.quiz__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #868686;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .quiz__progress {
    padding: 20px 10px;
  }
}
.quiz__progress-column {
  max-width: 705px;
  width: 100%;
}
.quiz__progress-label {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 7px;
}
.quiz__progress-line {
  border-radius: 20px;
  background: #D9D9D9;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  max-width: 705px;
  height: 6px;
}
.quiz__progress-length {
  display: block;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, #DE1516 0%, #DD7C7D 48.08%, #780C0C 100%);
}
.quiz__progress-row {
  display: flex;
  align-content: center;
  gap: 12px;
}
.quiz__progress-prev {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  border: 1px solid #E5E2E2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz__progress-next {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  background: #DE1516;
  padding: 15px 20px;
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
}

.answer-variants__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

 .b-radio.radio {
  display: flex;
  border-radius: 4px;
  border: 1px solid #D2D2D2;
  padding: 12px 20px;
  width: 100%;
} 

.b-radio.radio {
  outline: 0;
  display: inline-flex;
  align-items: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.b-radio.radio input[type=radio] + .check:before {
  content: "";
  display: flex;
  position: absolute;
  left: 50%;
  margin-left: -0.625em;
  bottom: 50%;
  margin-bottom: -0.625em;
  width: 1.25em;
  height: 1.25em;
  transition: transform 0.15s ease-out;
  border-radius: 50%;
  transform: scale(0);
  background-color: #7957d5;
}

.b-radio.radio input[type=radio] + .check:before {
  content: "";
  display: flex;
  position: absolute;
  left: 50%;
  margin-left: -0.625em;
  bottom: 50%;
  margin-bottom: -0.625em;
  width: 1.25em;
  height: 1.25em;
  transition: transform 0.15s ease-out;
  border-radius: 50%;
  transform: scale(0);
  background-color: #7957d5;
}

.b-radio.radio input[type=radio]:checked + .check {
  box-shadow: 0 2px 6px 0 var(--color-alpha) !important;
  border: 2px solid var(--color);
  background: #DE1516;
}

.b-radio.radio input[type=radio] + .check {
  display: flex;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  width: 1.25em;
  height: 1.25em;
  transition: background 0.15s ease-out;
  border-radius: 50%;
  background: #EBEBEB;
}

.b-radio.radio input[type=radio] {
  position: absolute;
  left: 0;
  opacity: 0;
  outline: 0;
  z-index: -1;
}

.control-label {
  margin-left: 10px;
}

.form {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: #F0F0F0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px 10px;
}
@media (max-width: 767px) {
  .form {
    margin-bottom: 60px;
  }
}
.form__inp {
  border-radius: 4px;
  border: 1px solid #D2D2D2;
  background: #F8F8F8;
  padding: 16px 20px;
  color: #0C0C0C;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
}
.form__inp::-moz-placeholder {
  color: #0C0C0C;
}
.form__inp::placeholder {
  color: #0C0C0C;
}
.form__label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0C0C0C;
  font-size: 10px;
  font-weight: 400;
}
.form__label p > span {
  color: #DE1516;
}
.form input[type=checkbox] {
  accent-color: red;
}

.disable {
  pointer-events: none;
}

.step-1 {
  width: 10% !important;
}

.step-2 {
  width: 20% !important;
}

.step-3 {
  width: 30% !important;
}

.step-4 {
  width: 60% !important;
}

.step-5 {
  width: 80% !important;
}