@font-face {
  font-family: inter;
  src: url('../fonts/Inter-Regular.woff2');
}

@font-face {
  font-family: inter-bold;
  src: url('../fonts/Inter-Bold.woff2');
}

#confirmButton {
  background-color: #5956e9;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 10px;
  width: 200px;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

#confirmButton:hover {
  background-color: #7f3fa7;
  color: #fff;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
}

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

img {
  max-width: 100%;
}

body {
  font-family: inter;
  background: #1d67b1;
  background-size: cover;
}

.body-page {
  background: none;
}
.page__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh;
  background: url('../images/body-page.webp') no-repeat center;
  gap: 20px;
  background-size: cover;
  overflow-y: auto;
}
.page__container__active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh;
  background: url('../images/body-answer.webp') no-repeat center;
  gap: 20px;
  background-size: cover;
  overflow-y: auto;
}
.body__container {
  margin: 0 auto;
}
.quiz_1__inner {
  padding-top: 40px;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.quiz_1__logo {
  width: 222px;
  height: 34px;
  background: url('../images/quiz-logo.webp') no-repeat center;
}
.quiz_1__header {
  padding-top: 0px;
  padding-bottom: 40px;
}

.quiz_1__title {
  color: #04a2fe;
  text-align: center;
  font-family: inter-bold;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 57.6px */
  text-transform: uppercase;
  max-width: 1188px;
  margin: 0 auto;
}

.quiz_1__center {
  padding-top: 40px;
  padding-bottom: 40px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(12, 18, 25, 0)),
    color-stop(25%, rgba(12, 18, 25, 0.64)),
    color-stop(75%, rgba(12, 18, 25, 0.64)),
    to(rgba(12, 18, 25, 0))
  );
  background: -o-linear-gradient(
    left,
    rgba(12, 18, 25, 0) 0%,
    rgba(12, 18, 25, 0.64) 25%,
    rgba(12, 18, 25, 0.64) 75%,
    rgba(12, 18, 25, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(12, 18, 25, 0) 0%,
    rgba(12, 18, 25, 0.64) 25%,
    rgba(12, 18, 25, 0.64) 75%,
    rgba(12, 18, 25, 0) 100%
  );
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -o-border-image: -o-linear-gradient(
      left,
      rgba(254, 95, 161, 0) 0%,
      rgba(254, 95, 161, 1) 50%,
      rgba(254, 95, 161, 0) 100%
    )
    1 stretch;
  border-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(254, 95, 161, 0)),
      color-stop(50%, rgba(254, 95, 161, 1)),
      to(rgba(254, 95, 161, 0))
    )
    1 stretch;
  border-image: linear-gradient(
      90deg,
      rgba(254, 95, 161, 0) 0%,
      rgba(254, 95, 161, 1) 50%,
      rgba(254, 95, 161, 0) 100%
    )
    1 stretch;
}

.quiz_1__subtitle {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  max-width: 1188px;
  margin: 0 auto;
  /* 31.2px */
}

.quiz_1__items {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: -o-radial-gradient(
    50% 42.44%,
    57.56% 50%,
    #0c1219 0%,
    rgba(12, 18, 25, 0) 100%
  );
  background: radial-gradient(
    57.56% 50% at 50% 42.44%,
    #0c1219 0%,
    rgba(12, 18, 25, 0) 100%
  );
}

.quiz_1__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  max-width: 265px;
  width: 100%;
}

.quiz_1__item:nth-child(1)::before {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: url('../images/quiz-icon-1.webp') no-repeat center;
  background-size: cover;
}

.quiz_1__item:nth-child(3)::before {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: url('../images/quiz-icon-2.webp') no-repeat center;
  background-size: cover;
}

.quiz_1__item:nth-child(5)::before {
  content: '';
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: url('../images/quiz-icon-3.webp') no-repeat center;
  background-size: cover;
}

.quiz_1__line {
  width: 2px;
  height: 134px;
  border-radius: 10px;
  background: -o-linear-gradient(
    top,
    rgba(174, 174, 174, 0) 0%,
    #aeaeae 50%,
    rgba(174, 174, 174, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(174, 174, 174, 0)),
    color-stop(50%, #aeaeae),
    to(rgba(174, 174, 174, 0))
  );
  background: linear-gradient(
    180deg,
    rgba(174, 174, 174, 0) 0%,
    #aeaeae 50%,
    rgba(174, 174, 174, 0) 100%
  );
}

.quiz_1__info {
  color: #fff;
  text-align: center;
  font-family: inter-bold;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 19.2px */
}

.quiz_1__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.quiz_1__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  text-transform: uppercase;
  padding: 20px 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  background: -o-linear-gradient(181deg, #e401ff 0%, #372dfe 50%, #00acff 100%);
  background: linear-gradient(269deg, #e401ff 0%, #372dfe 50%, #00acff 100%);
  -webkit-box-shadow: 0 4px 15px 0 #000;
  box-shadow: 0 4px 15px 0 #000;
  width: 314px;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.quiz_1__btn:hover {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background: #fff;
  color: #000;
}
.page__wrawpper {
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page__form {
  max-width: 100%;
  width: 100%;
}
.page__wrap {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: -o-radial-gradient(
    50% 50%,
    50% 50%,
    rgba(8, 0, 170, 0.35) 0%,
    rgba(3, 0, 68, 0.35) 100%
  );
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(8, 0, 170, 0.35) 0%,
    rgba(3, 0, 68, 0.35) 100%
  );
  -webkit-box-shadow:
    0 4px 20px 0 rgba(0, 0, 0, 0.5),
    -10px -10px 20px 0 rgba(2, 169, 255, 0.2) inset,
    10px 10px 20px 0 rgba(221, 2, 254, 0.2) inset;
  box-shadow:
    0 4px 20px 0 rgba(0, 0, 0, 0.5),
    -10px -10px 20px 0 rgba(2, 169, 255, 0.2) inset,
    10px 10px 20px 0 rgba(221, 2, 254, 0.2) inset;
  -o-border-image: -o-linear-gradient(
      left,
      rgba(221, 2, 254, 0) 0%,
      /* прозрачный фиолетовый */ rgba(221, 2, 254, 1) 30%,
      /* насыщенный фиолетовый */ rgba(2, 168, 255, 1) 70%,
      /* насыщенный голубой */ rgba(2, 168, 255, 0) 100%
        /* прозрачный голубой */
    )
    1 stretch;
  border-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(221, 2, 254, 0)),
      color-stop(/* прозрачный фиолетовый */),
      color-stop(/* насыщенный фиолетовый */),
      to(/* насыщенный голубой */)
    )
    1 stretch;
  border-image: linear-gradient(
      90deg,
      rgba(221, 2, 254, 0) 0%,
      /* прозрачный фиолетовый */ rgba(221, 2, 254, 1) 30%,
      /* насыщенный фиолетовый */ rgba(2, 168, 255, 1) 70%,
      /* насыщенный голубой */ rgba(2, 168, 255, 0) 100%
        /* прозрачный голубой */
    )
    1 stretch;
}
.page__label {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.page__input {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
  height: 50px;
  width: 100%;
  padding: 10px;
  padding-left: 50px;
  border-radius: 20px;
  border: 1px solid #006291;
  background: rgba(3, 18, 86, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.page__input::-webkit-input-placeholder {
  color: #fff;
}
.page__input::-moz-placeholder {
  color: #fff;
}
.page__input:-ms-input-placeholder {
  color: #fff;
}
.page__input::-ms-input-placeholder {
  color: #fff;
}
.page__input::placeholder {
  color: #fff;
}
.page__icon {
  position: absolute;
  top: 50%;
  left: 27px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.page__info {
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 20px #000;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 12px */
}
.page__link {
  color: #fff;
  font-family: inter-bold;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.page__link:hover {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.5;
}
.page__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.page__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 40px;
  background: -o-linear-gradient(181deg, #e401ff 0%, #372dfe 50%, #00acff 100%);
  background: linear-gradient(269deg, #e401ff 0%, #372dfe 50%, #00acff 100%);
  -webkit-box-shadow: 0 4px 15px 0 #000;
  box-shadow: 0 4px 15px 0 #000;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-family: inter-bold;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.page__btn:hover {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background: #fff;
  color: #000;
}

.body-bonus {
  background: none;
}
.bonus__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh;
  background: url(../images/offer-answer.webp) no-repeat center;
  background-size: cover;
  overflow-y: auto;
}
.questions__top {
  padding-top: 40px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.questions_thanks {
  color: #fff;
  text-align: center;
  font-family: inter-bold;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
}
.questions__resilt {
  color: #fff;
  text-align: center;
  font-family: inter-bold;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}
.questions__number {
  color: #04a2fe;
  font-family: inter-bold;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}
.questions__information {
  padding-top: 40px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid rgba(35, 131, 234, 0);
  border-bottom: 1px solid rgba(35, 131, 234, 0);
  background: var(
    --bonus,
    linear-gradient(
      90deg,
      rgba(4, 146, 229, 0) 4.33%,
      #0288d6 50%,
      rgba(2, 97, 152, 0) 96%
    )
  );
  -webkit-box-shadow: 0 0 15px 0 #148df4;
  box-shadow: 0 0 15px 0 #148df4;
}
.questions__text {
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 24px;
}
.questions__info {
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
}
.questions__color {
  font-family: inter-bold;
  font-weight: 700;
}
.questions__bold {
  background: var(--gold, linear-gradient(90deg, #ffc500 0%, #fa6e17 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: inter-bold;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.questions__container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.questions__team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.questions__mobile {
  display: none;
}
.questions__timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.64) 20%,
    rgba(0, 0, 0, 0.64) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0)),
    color-stop(20%, rgba(0, 0, 0, 0.64)),
    color-stop(80%, rgba(0, 0, 0, 0.64)),
    to(rgba(0, 0, 0, 0))
  );
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.64) 20%,
    rgba(0, 0, 0, 0.64) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  margin-bottom: 40px;
}
.questions__head {
  color: #fff;
  text-align: center;
  font-family: inter-bold;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
}
.questions__time {
  color: #fff;
  text-align: center;
  font-family: inter-bold;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}
.questions__btn {
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 40px;
  background: -o-linear-gradient(181deg, #e401ff 0%, #372dfe 50%, #00acff 100%);
  background: linear-gradient(269deg, #e401ff 0%, #372dfe 50%, #00acff 100%);
  -webkit-box-shadow: 0 4px 15px 0 #000;
  box-shadow: 0 4px 15px 0 #000;
  width: 438px;
  -webkit-animation: pulse 1s infinite;
  animation: pulse 1s infinite;
  margin: 0 auto;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.questions__btn:hover {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background: #fff;
  color: #000;
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.07);
    transform: scale(1.07);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.body-politica {
  background: url('../images/body-answer.webp') no-repeat center;
  background-size: cover;
}
.body-impressum {
  background: url('../images/body-answer.webp') no-repeat center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100vh;
}
.politica__title {
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
  text-align: center;
  font-family: inter-bold;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
}
.politica__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background: -o-linear-gradient(
    left,
    rgba(12, 18, 25, 0) 0%,
    rgba(12, 18, 25, 0.64) 25%,
    rgba(12, 18, 25, 0.64) 75%,
    rgba(12, 18, 25, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(12, 18, 25, 0)),
    color-stop(25%, rgba(12, 18, 25, 0.64)),
    color-stop(75%, rgba(12, 18, 25, 0.64)),
    to(rgba(12, 18, 25, 0))
  );
  background: linear-gradient(
    90deg,
    rgba(12, 18, 25, 0) 0%,
    rgba(12, 18, 25, 0.64) 25%,
    rgba(12, 18, 25, 0.64) 75%,
    rgba(12, 18, 25, 0) 100%
  );
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -o-border-image: -o-linear-gradient(
      left,
      rgba(254, 95, 161, 0) 0%,
      rgba(254, 95, 161, 1) 50%,
      rgba(254, 95, 161, 0) 100%
    )
    1 stretch;
  border-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(254, 95, 161, 0)),
      color-stop(50%, rgba(254, 95, 161, 1)),
      to(rgba(254, 95, 161, 0))
    )
    1 stretch;
  border-image: linear-gradient(
      90deg,
      rgba(254, 95, 161, 0) 0%,
      rgba(254, 95, 161, 1) 50%,
      rgba(254, 95, 161, 0) 100%
    )
    1 stretch;
}
.politica__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: 15px;
  max-width: 1188px;
  width: 100%;
}
.politica__text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%; /* 19.2px */
}
.body-quiz {
  background: none;
}

.body__containers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 100vh; /* Занимает минимум 100% высоты экрана */
  background: url(../images/body-answer.webp) no-repeat center;
  background-size: cover;
  overflow-y: auto; /* Появление скролла при необходимости */
}
.quiz_dop {
  height: 100vh;
}
.quiz {
  padding-top: 40px;
  padding-bottom: 40px;
}
.quiz__top {
  margin-bottom: 0px;
}
.quiz__numbers {
  color: #fff;
  font-family: inter-bold;
  font-size: 48px;
  text-align: center;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
}
.quiz__count {
  color: #04a2fe;
}
.quiz__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}
.question__item {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #000611;
}
.question__item:nth-child(1).question__item_active {
  background: #04a2fe;
}
.question__item:nth-child(2).question__item_active {
  background: #0b91fe;
}
.question__item:nth-child(3).question__item_active {
  background: #1380fd;
}
.question__item:nth-child(4).question__item_active {
  background: #1b6dfd;
}
.question__item:nth-child(5).question__item_active {
  background: #235dfd;
}
.question__item:nth-child(6).question__item_active {
  background: #2a4efd;
}
.question__item:nth-child(7).question__item_active {
  background: #313dfd;
}
.question__item:nth-child(8).question__item_active {
  background: #392bfd;
}
.question__item:nth-child(9).question__item_active {
  background: #5026fe;
}
.question__item:nth-child(10).question__item_active {
  background: #6720fd;
}
.question__item:nth-child(11).question__item_active {
  background: #7b1afd;
}
.question__item:nth-child(12).question__item_active {
  background: #9114fd;
}
.question__item:nth-child(13).question__item_active {
  background: #a90ffe;
}
.question__item:nth-child(14).question__item_active {
  background: #c00aff;
}
.question__item:nth-child(15).question__item_active {
  background: #db02fe;
}
.quiz__timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}
.quiz__clock {
  background: url('../images/quiz-icon-2.webp');
  width: 50px;
  height: 50px;
  background-size: cover;
  margin-bottom: 10px;
}
.quiz__iconcor {
  width: 40px;
  height: 40px;
  background: url('../images/answer-icon-1.webp') no-repeat center;
}
.quiz__iconicor {
  width: 40px;
  height: 40px;
  background: url('../images/answer-icon-2.webp') no-repeat center;
}
.quiz__time {
  color: #fff;
  text-align: center;
  font-family: inter-bold;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
}
.quiz__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.quiz__block {
  max-width: 1188px;
  width: 100%;
}
.quiz__wrap {
  padding: 40px 20px 20px 20px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: -o-radial-gradient(
    50% 50%,
    50% 50%,
    rgba(8, 0, 170, 0.35) 0%,
    rgba(3, 0, 68, 0.35) 100%
  );
  background: radial-gradient(
    50% 50% at 50% 50%,
    rgba(8, 0, 170, 0.35) 0%,
    rgba(3, 0, 68, 0.35) 100%
  );
  -webkit-box-shadow:
    0 4px 20px 0 rgba(0, 0, 0, 0.5),
    -10px -10px 20px 0 rgba(2, 169, 255, 0.2) inset,
    10px 10px 20px 0 rgba(221, 2, 254, 0.2) inset;
  box-shadow:
    0 4px 20px 0 rgba(0, 0, 0, 0.5),
    -10px -10px 20px 0 rgba(2, 169, 255, 0.2) inset,
    10px 10px 20px 0 rgba(221, 2, 254, 0.2) inset;
  -o-border-image: -o-linear-gradient(
      left,
      rgba(221, 2, 254, 0) 0%,
      rgba(221, 2, 254, 1) 30%,
      rgba(2, 168, 255, 1) 70%,
      rgba(2, 168, 255, 0) 100% /* прозрачный голубой */
    )
    1 stretch;
  border-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(221, 2, 254, 0)),
      color-stop(30%, rgba(221, 2, 254, 1)),
      color-stop(70%, rgba(2, 168, 255, 1)),
      to(rgba(2, 168, 255, 0))
    )
    1 stretch;
  border-image: linear-gradient(
      90deg,
      rgba(221, 2, 254, 0) 0%,
      rgba(221, 2, 254, 1) 30%,
      rgba(2, 168, 255, 1) 70%,
      rgba(2, 168, 255, 0) 100% /* прозрачный голубой */
    )
    1 stretch;
  margin-bottom: 0px;
}
.quiz__head {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 40px;
}
.quiz__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.quiz__btn {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #006291;
  background: rgba(3, 18, 86, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  text-align: center;
  font-family: inter-bold;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  cursor: pointer;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.quiz__btn:hover {
  background: #006291;
}
.quiz__answer {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 10px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  margin-bottom: 20px;
  margin-top: 40px;
}
.quiz__btn__true {
  border-radius: 20px;
  border: 1px solid #0f4;
  background: rgba(1, 82, 23, 0.39);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 255, 68, 0.4);
  box-shadow: 0 0 20px 0 rgba(0, 255, 68, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #0f4;
}
.quiz__btn__false {
  color: #ff0080;
  border-radius: 20px;
  border: 1px solid #ff0080;
  background: rgba(134, 3, 69, 0.26);
  -webkit-box-shadow: 0 0 20px 0 rgba(255, 0, 128, 0.4);
  box-shadow: 0 0 20px 0 rgba(255, 0, 128, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.quiz__correct {
  border: 1px solid #0f4;
  background: -o-linear-gradient(bottom, #015217 0%, #000100 100%);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#015217),
    to(#000100)
  );
  background: linear-gradient(0deg, #015217 0%, #000100 100%);
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 255, 68, 0.4);
  box-shadow: 0 0 20px 0 rgba(0, 255, 68, 0.4);
}
.quiz__result {
  text-align: center;
  font-family: inter-bold;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 10px;
}
.result_correct {
  color: #0f4;
}
.result_incorrect {
  color: #ff0080;
}
.quiz__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 10px;
}
.quiz__insight {
  color: #fff;
  text-align: center;
  font-family: inter-bold;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  line-height: 120%;
}
.quiz__text {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}
.quiz__incorrect {
  border-radius: 20px;
  border: 1px solid #ff0080;
  background: -o-linear-gradient(bottom, #2b0116 0%, #000 100%);
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#2b0116),
    to(#000)
  );
  background: linear-gradient(0deg, #2b0116 0%, #000 100%);
  -webkit-box-shadow: 0 0 20px 0 rgba(255, 0, 128, 0.4);
  box-shadow: 0 0 20px 0 rgba(255, 0, 128, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.quiz__btn-step {
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-family: inter-bold;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 600px;
  padding: 20px 60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 40px;
  background: -o-linear-gradient(181deg, #e401ff 0%, #372dfe 50%, #00acff 100%);
  background: linear-gradient(269deg, #e401ff 0%, #372dfe 50%, #00acff 100%);
  -webkit-box-shadow: 0 4px 15px 0 #000;
  box-shadow: 0 4px 15px 0 #000;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.quiz__btn-step:hover {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background: #000;
  color: #fff;
}
.quiz__results {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.btn-step {
  display: none;
}
.quiz__caption {
  color: #fff;
  text-align: center;
  font-family: inter-bold;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 57.6px */
}
.quiz__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  background: -o-linear-gradient(
    left,
    rgba(12, 18, 25, 0) 0%,
    rgba(12, 18, 25, 0.64) 25%,
    rgba(12, 18, 25, 0.64) 75%,
    rgba(12, 18, 25, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(12, 18, 25, 0)),
    color-stop(25%, rgba(12, 18, 25, 0.64)),
    color-stop(75%, rgba(12, 18, 25, 0.64)),
    to(rgba(12, 18, 25, 0))
  );
  background: linear-gradient(
    90deg,
    rgba(12, 18, 25, 0) 0%,
    rgba(12, 18, 25, 0.64) 25%,
    rgba(12, 18, 25, 0.64) 75%,
    rgba(12, 18, 25, 0) 100%
  );
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -o-border-image: -o-linear-gradient(
      left,
      rgba(254, 95, 161, 0) 0%,
      rgba(254, 95, 161, 1) 50%,
      rgba(254, 95, 161, 0) 100%
    )
    1 stretch;
  border-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(254, 95, 161, 0)),
      color-stop(50%, rgba(254, 95, 161, 1)),
      to(rgba(254, 95, 161, 0))
    )
    1 stretch;
  border-image: linear-gradient(
      90deg,
      rgba(254, 95, 161, 0) 0%,
      rgba(254, 95, 161, 1) 50%,
      rgba(254, 95, 161, 0) 100%
    )
    1 stretch;
}
.quiz__information {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
}
.quiz__submit {
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-family: inter-bold;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 600px;
  padding: 20px 60px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 40px;
  background: -o-linear-gradient(181deg, #e401ff 0%, #372dfe 50%, #00acff 100%);
  background: linear-gradient(269deg, #e401ff 0%, #372dfe 50%, #00acff 100%);
  -webkit-box-shadow: 0 4px 15px 0 #000;
  box-shadow: 0 4px 15px 0 #000;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.quiz__submit:hover {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  background: #000;
  color: #fff;
}
.footer {
  padding-top: 20px;
  padding-bottom: 20px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(12, 18, 25, 0)),
    color-stop(20.19%, rgba(12, 18, 25, 0.9)),
    color-stop(80%, rgba(12, 18, 25, 0.9)),
    to(rgba(12, 18, 25, 0))
  );
  background: -o-linear-gradient(
    left,
    rgba(12, 18, 25, 0) 0%,
    rgba(12, 18, 25, 0.9) 20.19%,
    rgba(12, 18, 25, 0.9) 80%,
    rgba(12, 18, 25, 0) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(12, 18, 25, 0) 0%,
    rgba(12, 18, 25, 0.9) 20.19%,
    rgba(12, 18, 25, 0.9) 80%,
    rgba(12, 18, 25, 0) 100%
  );
  border-top: 1px solid transparent;
  -o-border-image: -o-linear-gradient(
      left,
      rgba(254, 95, 161, 0) 0%,
      rgba(254, 95, 161, 1) 50%,
      rgba(254, 95, 161, 0) 100%
    )
    1 stretch;
  border-image: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(254, 95, 161, 0)),
      color-stop(50%, rgba(254, 95, 161, 1)),
      to(rgba(254, 95, 161, 0))
    )
    1 stretch;
  border-image: linear-gradient(
      90deg,
      rgba(254, 95, 161, 0) 0%,
      rgba(254, 95, 161, 1) 50%,
      rgba(254, 95, 161, 0) 100%
    )
    1 stretch;
}
.footer_additionally {
  background: -o-linear-gradient(
    left,
    rgba(12, 18, 25, 0) 0%,
    rgba(12, 18, 25, 0) 10%,
    rgba(12, 18, 25, 0.64) 25%,
    rgba(12, 18, 25, 0.64) 75%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(12, 18, 25, 0)),
    color-stop(10%, rgba(12, 18, 25, 0)),
    color-stop(25%, rgba(12, 18, 25, 0.64)),
    color-stop(75%, rgba(12, 18, 25, 0.64))
  );
  background: linear-gradient(
    90deg,
    rgba(12, 18, 25, 0) 0%,
    rgba(12, 18, 25, 0) 10%,
    rgba(12, 18, 25, 0.64) 25%,
    rgba(12, 18, 25, 0.64) 75%
  );
}
.footer__text {
  margin-bottom: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 120%;
}

.footer__bold {
  color: #ff60a8;
}

.footer__links {
  padding-left: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer__link {
  color: #fff;
  text-align: center;
  font-family: inter-bold;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.footer__line {
  width: 2px;
  height: 19px;
  border-radius: 10px;
  background: -o-linear-gradient(
    top,
    rgba(174, 174, 174, 0) 0%,
    #aeaeae 50%,
    rgba(174, 174, 174, 0) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(174, 174, 174, 0)),
    color-stop(50%, #aeaeae),
    to(rgba(174, 174, 174, 0))
  );
  background: linear-gradient(
    180deg,
    rgba(174, 174, 174, 0) 0%,
    #aeaeae 50%,
    rgba(174, 174, 174, 0) 100%
  );
}

.footer__age {
  color: #fff;
  text-align: center;
  font-family: inter-bold;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.footer__sup {
  color: #fff;
  text-align: center;
  font-family: inter-bold;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
}

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

.block__none {
  display: none;
}

@media (max-width: 1199px) {
  .quiz_1__items {
    padding: 10px 12px;
    margin-bottom: 20px;
  }

  .quiz_mob {
    height: 100vh;
  }

  .body-quiz {
    gap: 30px;
  }
  .quiz_1__header {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 20px;
    padding-bottom: 24px;
    margin-bottom: 20px;
  }

  .quiz_1__center {
    padding: 20px 12px;
    margin-bottom: 20px;
  }

  .quiz_1__wrapper {
    padding: 20px 12px;
  }

  .quiz_1__title {
    font-size: 38px;
  }

  .quiz_1__subtitle {
    font-size: 20px;
  }

  .quiz_1__item:nth-child(1)::before {
    width: 50px;
    height: 50px;
    background: url(../images/quiz-icon-1.webp) no-repeat center;
    background-size: cover;
  }

  .quiz_1__item:nth-child(3)::before {
    width: 50px;
    height: 50px;
    background: url(../images/quiz-icon-2.webp) no-repeat center;
    background-size: cover;
  }

  .quiz_1__item:nth-child(5)::before {
    width: 50px;
    height: 50px;
    background: url(../images/quiz-icon-3.webp) no-repeat center;
    background-size: cover;
  }

  .quiz_1__item {
    max-width: 200px;
  }

  .quiz_1__info {
    font-size: 12px;
  }

  .questions__top {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .questions_thanks {
    font-size: 30px;
  }

  .questions__resilt {
    font-size: 20px;
  }

  .questions__number {
    font-size: 20px;
  }

  .questions__information {
    padding: 20px 12px;
  }

  .questions__text {
    font-size: 18px;
  }

  .questions__info {
    font-size: 22px;
  }

  .questions__bold {
    font-size: 26px;
  }

  .questions__container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .questions__team {
    margin-bottom: 40px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .questions__timer {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .questions__head {
    font-size: 18px;
  }

  .politica__content {
    padding-left: 12px;
    padding-right: 12px;
  }
  .politica__wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .politica__title {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 36px;
  }

  .quiz {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .quiz__caption {
    font-size: 32px;
  }

  .quiz__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .quiz__information {
    font-size: 18px;
  }

  .question__item {
    width: 16px;
    height: 16px;
    border-radius: 5px;
  }
  .quiz__items {
    gap: 4px;
  }

  .quiz__numbers {
    margin-bottom: 10px;
    font-size: 30px;
  }

  .quiz__clock {
    background: url(../images/quiz-icon-2.webp);
    width: 40px;
    height: 40px;
    background-size: cover;
    margin-bottom: 10px;
  }

  .quiz__time {
    font-size: 22px;
  }

  .quiz__wrap {
    padding: 20px 10px 10px 10px;
  }

  .quiz__head {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .quiz__btn {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .page__btn:hover {
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    background: -o-linear-gradient(
      181deg,
      #e401ff 0%,
      #372dfe 50%,
      #00acff 100%
    );
    background: linear-gradient(269deg, #e401ff 0%, #372dfe 50%, #00acff 100%);
    -webkit-box-shadow: 0 4px 15px 0 #000;
    box-shadow: 0 4px 15px 0 #000;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  }
}

@media (max-width: 767px) {
  .quiz_1__title {
    font-size: 30px;
  }

  .quiz_1__subtitle {
    font-size: 18px;
  }

  .quiz__submit {
    width: 100%;
  }

  .quiz__btn-step {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .page__container {
    background: url('../images/body-page-mobile.webp') no-repeat center;
    background-size: cover;
  }
  .page__container__active {
    background: url('../images/body-answer-mobile.webp') no-repeat center;
    background-size: cover;
  }
  .body-politica {
    background: url('../images/body-answer-mobile.webp') no-repeat center;
    background-size: cover;
  }
  .body__containers {
    background: url(../images/body-answer-mobile.webp) no-repeat center;
    background-size: cover;
  }
  .body__containers_act {
    gap: 35vh;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .quiz_1__inner {
    padding-top: 24px;
    padding-bottom: 0px;
    margin-bottom: 16px;
  }
  .quiz_1__logo {
    width: 185px;
    height: 28px;
    background: url(../images/quiz-logo.webp) no-repeat center;
    background-size: cover;
  }
  .quiz_1__line {
    height: 74px;
  }

  .quiz_1__items {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
  }
  .page__wrawpper {
    padding: 0 12px;
  }
  .quiz_1__title {
    font-size: 20px;
  }

  .quiz_1__item {
    max-width: 110px;
  }

  .quiz_1__info {
    font-size: 7px;
  }

  .quiz_1__subtitle {
    font-size: 14px;
  }

  .quiz_1__btn {
    font-size: 16px;
  }

  .quiz_1 {
    margin-bottom: auto;
  }

  .footer__link {
    font-size: 12px;
  }

  .footer__age {
    font-size: 12px;
  }

  .footer__text {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .footer__links {
    margin-bottom: 10px;
  }

  .footer__sup {
    font-size: 10px;
  }

  .body-impressum {
    background: url(../images/body-answer-mobile.webp) no-repeat center;
    background-size: cover;
  }

  .footer {
    padding: 20px 12px;
    border-top: 1px solid rgba(248, 93, 158, 0);
    background: -o-linear-gradient(
      left,
      rgba(12, 18, 25, 0) 0%,
      rgba(12, 18, 25, 0.85) 20.12%,
      rgba(12, 18, 25, 0.85) 79.85%,
      rgba(12, 18, 25, 0) 100%
    );
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(rgba(12, 18, 25, 0)),
      color-stop(20.12%, rgba(12, 18, 25, 0.85)),
      color-stop(79.85%, rgba(12, 18, 25, 0.85)),
      to(rgba(12, 18, 25, 0))
    );
    background: linear-gradient(
      90deg,
      rgba(12, 18, 25, 0) 0%,
      rgba(12, 18, 25, 0.85) 20.12%,
      rgba(12, 18, 25, 0.85) 79.85%,
      rgba(12, 18, 25, 0) 100%
    );
  }

  .page__wrap {
    padding: 10px;
    margin-bottom: 24px;
  }

  .page__btn {
    width: 100%;
    font-size: 16px;
  }

  .page__input {
    font-size: 10px;
    height: 44px;
  }

  .page__icon {
    max-width: 24px;
  }

  .page__info {
    font-size: 8px;
  }

  .page__link {
    font-size: 8px;
  }

  .page__button {
    padding-top: 0px;
    padding-bottom: 0;
  }

  .questions__desctop {
    display: none;
  }
  .questions__mobile {
    display: block;
  }

  .questions_thanks {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .questions__resilt {
    font-size: 16px;
  }

  .questions__number {
    font-size: 16px;
  }

  .questions__text {
    font-size: 14px;
  }

  .questions__head {
    font-size: 14px;
  }

  .questions__btn {
    width: 90%;
    font-size: 16px;
    padding: 20px 20px;
  }

  .politica__title {
    font-size: 20px;
  }

  .politica__text {
    font-size: 14px;
  }

  .quiz__caption {
    font-size: 20px;
  }

  .quiz__information {
    font-size: 14px;
  }

  .quiz__submit {
    font-size: 16px;
  }

  .quiz__numbers {
    font-size: 20px;
  }

  .quiz__time {
    font-size: 16px;
  }

  .quiz__head {
    font-size: 14px;
  }

  .quiz__btn {
    font-size: 12px;
  }

  .quiz__result {
    font-size: 16px;
  }

  .quiz__insight {
    font-size: 14px;
  }

  .quiz__text {
    font-size: 12px;
  }

  .quiz__btn-step {
    font-size: 16px;
  }

  .quiz__timer {
    margin-bottom: 20px;
  }

  .bonus__container {
    background: url(../images/body-answer-mobile.webp) no-repeat center;
    background-size: cover;
  }

  .questions__text {
    margin-bottom: 0;
  }

  .questions__info {
    font-size: 16px;
  }

  .questions__bold {
    font-size: 18px;
  }
}

@media (max-width: 350px) {
  .quiz {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .quiz__items {
    margin-bottom: 10px;
  }

  .quiz__timer {
    margin-bottom: 10px;
  }

  .quiz__head {
    font-size: 11px;
  }

  .body-quiz {
    gap: 20px;
  }

  .quiz__clock {
    background: url(../images/quiz-icon-2.webp);
    width: 20px;
    height: 20px;
    background-size: cover;
    margin-bottom: 10px;
  }

  .quiz__numbers {
    font-size: 16px;
  }

  .quiz__head {
    margin-bottom: 10px;
  }

  .quiz__wrap {
    padding: 10px;
  }

  .quiz__btn {
    padding: 7px;
    font-size: 11px;
  }
}

.page__header {
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 20px #000;
  font-family: inter-bold;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
}
