@font-face {
  font-display: swap;
  font-family: "Brutal Type";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/BrutalType.woff2") format("woff2"), url("../fonts/BrutalType.woff") format("woff");
}
@font-face {
  font-display: swap;
  font-family: "Brutal Type";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/BrutalType-Medium.woff2") format("woff2"), url("../fonts/BrutalType-Medium.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-radius: 0;
  text-decoration: none;
  list-style: none;
  font-feature-settings: "pnum" on, "lnum" on, "liga" off, "kern" off;
}

button,
label,
img,
header,
svg {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

select,
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
}

select,
button,
input[type=submit] {
  cursor: pointer;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

*:focus {
  outline: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

b, strong {
  font: inherit;
  color: inherit;
  font-weight: 700;
}

table {
  border-collapse: collapse;
}

body {
  font-family: "Brutal Type", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  color: rgba(252, 252, 252, 0.7);
}
@media (max-width: 440px) {
  body {
    font-size: 15px;
  }
}

h2, .h2 {
  color: #FCFCFC;
  font-size: 28px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -2.52px;
  transition: color 0.4s;
}
@media (min-width: 1025px) and (max-height: 800px) {
  h2, .h2 {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  h2, .h2 {
    font-size: 24px;
  }
}
h2 b, .h2 b {
  font: inherit;
  color: #DB5940;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #0C0B0B;
  transition: background 0.4s;
}
body footer {
  margin-top: auto;
}
body.is-unscrollable, body.is-unscrollable-2 {
  overflow: hidden;
}

main {
  overflow: hidden;
  min-height: 100vh;
}

.container {
  width: calc(100% - 64px);
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .container {
    width: calc(100% - 50px);
    max-width: 500px;
  }
}
.container--520 {
  max-width: 520px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 6px;
  background: #DB5940;
  color: #FCFCFC;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: -0.14px;
  transition: 0.4s;
  border: none;
}
@media not all and (pointer: coarse) {
  .btn:hover {
    background: #C94E37;
  }
}
.btn:active {
  background: #C94E37;
}
.btn svg {
  display: block;
  width: 14px;
  height: 14px;
}
.btn svg * {
  transition: 0.4s;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 1025px) and (max-height: 860px) {
  .section-title {
    gap: 12px;
  }
}
@media (max-width: 1024px) {
  .section-title {
    gap: 12px;
  }
}
.section-title--center {
  align-items: center;
  text-align: center;
}
.section-title .btn {
  margin-top: 16px;
}
.section-title .tag {
  color: #DB5940;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.7px;
  padding: 12px 20px;
  border-radius: 40px;
  background: rgba(219, 89, 64, 0.07);
}
.section-title .tag.anim {
  opacity: 0;
  transition: opacity 1s 0.2s, background 0.4s, color 0.4s;
}
.section-title .tag.anim.animated {
  opacity: 1;
}

.header {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 12px;
  width: 100%;
  transition: background 0.4s, opacity 0.85s, transform 0.85s;
}
.header.is-fixed .container {
  background: #161616;
}
.header.anim {
  opacity: 0;
  transform: translateY(-32px);
}
.header.anim.animated {
  opacity: 1;
  transform: translateY(0px);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1224px;
  padding: 20px 32px;
  border-radius: 8px;
  gap: 24px;
  transition: background 0.4s;
}
@media (max-width: 1024px) {
  .header .container {
    gap: 16px;
    padding: 12px;
    width: calc(100% - 16px);
  }
}
@media (max-width: 390px) {
  .header .container {
    gap: 8px;
  }
}
.header__logo {
  height: 38px;
}
@media (max-width: 1024px) {
  .header__logo {
    margin-right: auto;
    height: 32px;
  }
}
@media (max-width: 390px) {
  .header__logo {
    height: 30px;
  }
}
.header__logo img, .header__logo svg {
  display: block;
  height: 100%;
  width: auto;
}
.header__logo img *, .header__logo svg * {
  transition: 0.4s;
}
.header__btn {
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .header__btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}
@media (max-width: 390px) {
  .header__btn {
    padding: 12px 16px;
  }
}

.footer {
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .footer {
    padding: 40px 0 0;
  }
}
.footer.anim {
  opacity: 0;
  transition: 1s 0.2s;
}
.footer.anim.animated {
  opacity: 1;
}
.footer .container {
  background: linear-gradient(#44251F, rgba(255, 255, 255, 0.01));
  padding: 1px;
  border-radius: 14px;
  max-width: 1440px;
  transition: background 0.4s 0.4s;
}
@media (max-width: 1024px) {
  .footer .container {
    width: 100%;
    padding: 1px 0 0;
  }
}
.footer .window {
  background: #161616;
  border-radius: 13px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 52px;
  transition: background 0.4s;
}
@media (max-width: 1024px) {
  .footer .window {
    gap: 72px;
    padding: 24px;
  }
}
.footer__left {
  width: calc(50% - 20px);
}
@media (max-width: 1024px) {
  .footer__left {
    width: 100%;
  }
}
.footer__left svg * {
  transition: fill 0.4s;
}
.footer__socials {
  display: flex;
  gap: 40px;
}
.footer__socials a svg {
  display: block;
}
.footer__socials a svg * {
  transition: fill 0.4s;
}
@media not all and (pointer: coarse) {
  .footer__socials a:hover svg * {
    fill: #DB5940 !important;
  }
}
.footer__socials a:active svg * {
  fill: #DB5940 !important;
}
.footer__right {
  width: calc(50% - 20px);
  min-width: 560px;
}
@media (max-width: 1100px) {
  .footer__right {
    min-width: unset;
  }
}
@media (max-width: 1024px) {
  .footer__right {
    width: 100%;
  }
}
.footer__row {
  display: flex;
  gap: 40px;
}
@media (max-width: 1024px) {
  .footer__row {
    flex-direction: column;
  }
}
.footer__row:first-child .footer__left {
  display: flex;
  flex-direction: column;
  gap: 72px;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .footer__row:first-child .footer__left {
    gap: 32px;
  }
}
.footer__row:first-child .footer__left p {
  font-size: 16px;
  letter-spacing: -0.32px;
  max-width: 290px;
  color: rgba(252, 252, 252, 0.6);
}
@media (max-width: 1024px) {
  .footer__row:first-child .footer__socials {
    margin-top: 12px;
  }
}
.footer__row:first-child .footer__right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.footer__row:first-child .footer__right .box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__row:first-child .footer__right .box p {
  color: rgba(252, 252, 252, 0.4);
  font-size: 14px;
}
.footer__row:first-child .footer__right .box ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__row:first-child .footer__right .box a {
  color: #FCFCFC;
  font-size: 16px;
  letter-spacing: -0.32px;
  transition: 0.4s;
}
@media not all and (pointer: coarse) {
  .footer__row:first-child .footer__right .box a:hover {
    color: #DB5940;
  }
}
.footer__row:first-child .footer__right .box a:active {
  color: #DB5940;
}
@media (max-width: 1100px) {
  .footer__row:first-child .footer__right .btn {
    display: none;
  }
}
.footer__row:last-child {
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .footer__row:last-child {
    flex-direction: column-reverse;
  }
}
.footer__row:last-child .footer__left p {
  color: rgba(252, 252, 252, 0.4);
  font-size: 16px;
  letter-spacing: -0.32px;
}
@media (max-width: 1024px) {
  .footer__row:last-child .footer__left p {
    text-align: center;
  }
}
.footer__row:last-child .footer__right {
  position: relative;
  padding-top: 32px;
}
.footer__row:last-child .footer__right:before {
  content: "";
  width: 48px;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to right, #DB5940, transparent);
}
.footer__row:last-child .footer__right p {
  color: rgba(252, 252, 252, 0.4);
  font-size: 13px;
  letter-spacing: -0.39px;
}
@media (max-width: 1024px) {
  .footer__row:last-child .footer__right p {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}

.quiz-progress {
  padding: 36px 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .quiz-progress {
    padding: 24px 0;
  }
  .quiz-progress:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: 1056px;
    height: 357px;
    background-image: url(../img/gr_top.webp);
    filter: blur(2px);
    pointer-events: none;
  }
}
.quiz-progress.is-ready {
  opacity: 1;
}
.quiz-progress .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 1025px) {
  .quiz-progress .container {
    max-width: 1160px;
  }
}
@media (max-width: 1024px) {
  .quiz-progress .container {
    flex-direction: column;
    gap: 32px;
  }
}
.quiz-progress__logo {
  flex: none;
}
.quiz-progress__logo svg {
  display: block;
  height: 38px;
  width: auto;
}
.quiz-progress__mid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 516px;
}
.quiz-progress__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.quiz-progress__label {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.32px;
}
.quiz-progress__count {
  color: #FCFCFC;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz-progress__count[hidden] {
  display: none;
}
.quiz-progress__check {
  display: inline-flex;
  position: relative;
}
.quiz-progress__check:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  mask-image: linear-gradient(to right, #000 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, #000 0%, transparent 100%);
}
.quiz-progress__check svg {
  width: 18px;
  height: 18px;
}
.quiz-progress__bar {
  width: 100%;
  height: 8px;
  border-radius: 8px;
  background: #161515;
}
.quiz-progress__bar > i {
  display: block;
  width: 0;
  height: 100%;
  transition: width 0.4s ease;
  border-radius: 8px;
  background: linear-gradient(90deg, #DB5940 0%, #DB5940 100%);
  position: relative;
}
.quiz-progress__bar > i:before {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 99px;
  -webkit-mask-image: linear-gradient(to right, #000 0%, transparent 100%);
          mask-image: linear-gradient(to right, #000 0%, transparent 100%);
}
@media (max-width: 1024px) {
  .quiz-progress__bar > i:before {
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
  }
}
.quiz-progress__kicker {
  color: #DB5940;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.7px;
  padding: 13px 20px;
  border-radius: 40px;
  background: rgba(219, 89, 64, 0.07);
  margin-bottom: 8px;
}
.quiz-progress__retake {
  flex: none;
  cursor: pointer;
}
.quiz-progress__retake[hidden] {
  display: none;
}

.report-cta {
  position: fixed;
  left: 50%;
  bottom: 32px;
  z-index: 20;
  width: calc(100% - 64px);
  max-width: 689px;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .report-cta {
    bottom: 12px;
    width: calc(100% - 32px);
    max-width: 500px;
  }
}
.report-cta.anim:not(.animated) .report-cta__inner {
  opacity: 0;
}
.report-cta.is-hidden {
  pointer-events: none;
}
.report-cta.is-hidden .report-cta__inner {
  opacity: 0;
  visibility: hidden;
}
.report-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(52px);
  -webkit-backdrop-filter: blur(52px);
  transition: opacity 0.4s, visibility 0.4s;
}
@media (max-width: 1024px) {
  .report-cta__inner {
    padding: 20px;
    gap: 8px;
  }
}
@media (max-width: 380px) {
  .report-cta__inner {
    padding: 16px;
  }
}
.report-cta__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.report-cta__title {
  color: #FCFCFC;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -1.4px;
}
@media (max-width: 1024px) {
  .report-cta__title {
    font-size: 18px;
    letter-spacing: -1.28px;
  }
}
.report-cta__sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
}
@media (max-width: 1024px) {
  .report-cta__sub {
    font-size: 14px;
    line-padding: -0.28;
  }
}
.report-cta__btn {
  flex-shrink: 0;
  padding: 16px 32px;
  border: 1px solid rgba(219, 89, 64, 0.1);
  border-radius: 6px;
  background: #DB5940;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.32px;
  cursor: pointer;
  transition: background 0.4s;
}
@media not all and (pointer: coarse) {
  .report-cta__btn:hover {
    background: #C94E37;
  }
}
.report-cta__btn:active {
  background: #C94E37;
}
@media (max-width: 1024px) {
  .report-cta__btn span {
    display: none;
  }
}
@media (max-width: 380px) {
  .report-cta__btn {
    padding: 16px 24px;
  }
}

.quiz {
  position: relative;
}
.quiz:not(.is-ready) .quiz__screen {
  display: none;
}
.quiz__screen {
  display: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.quiz__screen.is-active {
  display: block;
  animation: quiz-fade 0.35s ease;
}
.quiz__screen--info .quiz__inner {
  gap: 48px;
}
.quiz__screen--chat .quiz__bg,
.quiz__screen--chat .quiz__snap,
.quiz__screen--chat .quiz__bubble,
.quiz__screen--chat .quiz__next {
  opacity: 0;
}
@media (min-width: 1025px) {
  .quiz__screen--chat .quiz__title br {
    display: none;
  }
}
@media (max-width: 1024px) {
  .quiz__screen--chat .quiz__title br {
    display: block;
  }
}
@media (min-width: 1025px) {
  .quiz__screen--chat .quiz__sub br {
    display: none;
  }
}
.quiz__screen--chat.is-active .quiz__bg {
  animation: quiz-bg-in 1s ease 0.35s forwards;
}
.quiz__screen--chat.is-active .quiz__snap {
  animation: quiz-chat-in 0.45s ease 0.2s forwards;
}
.quiz__screen--chat.is-active .quiz__bubble--me {
  animation: quiz-chat-in 0.45s ease 0.45s forwards;
}
.quiz__screen--chat.is-active .quiz__bubble--ai {
  animation: quiz-chat-in 0.45s ease 0.7s forwards;
}
.quiz__screen--chat.is-active .quiz__next {
  animation: quiz-chat-in 0.45s ease 0.95s forwards;
}
.quiz__screen--loader .quiz__inner {
  gap: 40px;
}
.quiz__screen--ready .quiz__inner {
  gap: 48px;
}
.quiz__screen.quiz__screen--info .quiz__inner {
  justify-content: center;
  gap: 48px;
}
.quiz__screen.quiz__screen--loader .quiz__inner {
  justify-content: center;
  gap: 40px;
}
.quiz__screen.quiz__screen--chat .quiz__inner {
  justify-content: center;
  gap: 40px;
}
@media (min-width: 1025px) and (max-height: 830px) {
  .quiz__screen.quiz__screen--chat .quiz__inner {
    gap: 32px;
  }
}
@media (max-width: 1024px) {
  .quiz__screen.quiz__screen--chat .quiz__inner {
    gap: 32px;
  }
}
@media (min-width: 1025px) and (max-height: 800px) {
  .quiz__screen[data-step="1"] .quiz__title br {
    display: none;
  }
}
.quiz__screen[data-step="1"] .quiz__sub {
  max-width: 450px;
}
@media (max-width: 440px) {
  .quiz__screen[data-info-dyn=control] .quiz__sub br {
    display: none;
  }
}
.quiz__screen[data-info-dyn=control] .quiz__sub {
  max-width: 450px;
}
.quiz__bg {
  position: absolute;
  top: -116px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + 116px);
  min-height: 100vh;
  background-size: 1920px auto;
  background-position: center top;
  background-repeat: no-repeat;
  filter: blur(3px);
  will-change: opacity;
}
@media (max-width: 1024px) {
  .quiz__bg {
    display: none;
  }
}
.quiz__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 84px;
  min-height: calc(100vh - 200px);
  padding: 0 0 24px;
}
@media (max-width: 1024px) {
  .quiz__inner {
    padding: 0 0 40px;
    min-height: calc(100vh - 290px);
  }
}
@media (min-width: 1025px) and (max-height: 800px) {
  .quiz__inner {
    gap: 32px;
  }
}
@media (max-width: 1024px) {
  .quiz__inner {
    gap: 40px;
  }
}
.quiz__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.quiz__title {
  margin-bottom: 4px;
}
@media (max-width: 1024px) {
  .quiz__title br {
    display: none;
  }
}
.quiz__sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.32px;
}
.quiz__sub strong {
  color: #FCFCFC;
  font-weight: 500;
}
.quiz__bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}
.quiz__note {
  color: #FCFCFC;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.32px;
  opacity: 0.3;
}
.quiz__options {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quiz__option {
  cursor: pointer;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  padding: 16px 32px 16px 16px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F9F9F9;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.7px;
  transition: 0.4s;
}
@media not all and (pointer: coarse) {
  .quiz__option:hover {
    background: rgba(255, 255, 255, 0.06);
  }
  .quiz__option:hover .quiz__option-dot:before {
    opacity: 1;
  }
}
.quiz__option:active {
  background: rgba(255, 255, 255, 0.06);
}
.quiz__option:active .quiz__option-dot:before {
  opacity: 1;
}
.quiz__option-dot {
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  min-width: 22px;
  height: 22px;
  stroke-width: 1px;
  border-radius: 99px;
  border: 1px solid rgba(226, 226, 226, 0.1);
}
.quiz__option-dot:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #DB5940;
  opacity: 0;
  transition: 0.4s;
}
.quiz__icon {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  position: relative;
  background: linear-gradient(140deg, rgba(219, 89, 64, 0.4) 0%, rgba(219, 89, 64, 0) 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
@media (min-width: 1025px) and (max-height: 800px) {
  .quiz__icon {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 1024px) {
  .quiz__icon {
    width: 70px;
    height: 70px;
  }
}
.quiz__icon:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 999px;
  background: #0C0B0B;
  transition: background 0.4s;
}
.quiz__icon img {
  position: relative;
  z-index: 3;
  width: 55px;
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1025px) and (max-height: 800px) {
  .quiz__icon img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1024px) {
  .quiz__icon img {
    width: 30px;
    height: 30px;
  }
}
.quiz__spinner {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  position: relative;
  background: linear-gradient(140deg, rgba(219, 89, 64, 0.4) 0%, rgba(219, 89, 64, 0) 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
@media (min-width: 1025px) and (max-height: 830px) {
  .quiz__spinner {
    width: 70px;
    height: 70px;
  }
}
.quiz__spinner:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 999px;
  background: #0C0B0B;
  transition: background 0.4s;
}
.quiz__snap_n_chat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
@media (min-width: 1025px) and (max-height: 830px) {
  .quiz__snap_n_chat {
    max-width: 394px;
  }
}
.quiz__snap {
  position: relative;
  padding: 10px;
  max-width: 410px;
  width: 100%;
  border-radius: 16px;
}
.quiz__snap:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 80%);
  border-radius: 16px;
  padding: 1px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.quiz__snap-window {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}
@media (min-width: 1025px) and (max-height: 830px) {
  .quiz__snap-window {
    padding: 16px;
    gap: 12px;
  }
}
@media (max-width: 1024px) {
  .quiz__snap-window {
    padding: 16px;
    gap: 12px;
  }
}
.quiz__snap-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.quiz__snap-row span {
  color: #FCFCFC;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.32px;
}
.quiz__snap-row b {
  color: #FCFCFC;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.32px;
}
.quiz__snap-row b.is-up {
  color: #75CA2A;
}
.quiz__snap-row b.is-warn {
  color: #FFF53B;
}
.quiz__chat {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 410px;
}
.quiz__bubble {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  color: #FCFCFC;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.32px;
}
@media (min-width: 1025px) and (max-height: 830px) {
  .quiz__bubble {
    padding: 16px;
  }
}
.quiz__bubble-label {
  color: #FCFCFC;
  opacity: 0.5;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.32px;
}
.quiz__bubble--me {
  max-width: 330px;
  margin-left: auto;
  text-align: right;
}
.quiz__info-variant {
  display: none;
}
.quiz__info-variant.is-active {
  display: block;
}
.quiz__spinner {
  animation: quiz-spin 1s linear infinite;
}
.quiz__sub[data-loader-line] {
  transition: opacity 0.2s ease;
}

@keyframes quiz-fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes quiz-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes quiz-bg-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes quiz-chat-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.report {
  position: relative;
  z-index: 2;
}
.report:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  background-image: url(../img/plus.webp);
  background-repeat: repeat;
  width: 100%;
  height: 100vh;
}
.report:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgba(12, 11, 11, 0) 30%, #0c0b0b);
  width: 100%;
  height: 100vh;
}
.report[hidden] {
  display: none;
}
.report .container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1025px) {
  .report .container {
    max-width: 830px;
  }
}
.report h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -2.24px;
}
.report [class*=__block].anim {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.report [class*=__block].anim.animated {
  opacity: 1;
}
.report__block-1 {
  padding: 36px 0;
  position: relative;
  z-index: 3;
}
.report__block-1:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 1056px;
  height: 357px;
  background-image: url(../img/gr_top.webp);
  filter: blur(2px);
  pointer-events: none;
}
.report__block-1 .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.report__block-2 {
  padding: 94px 0 24px;
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) {
  .report__block-2 {
    padding: 32px 0;
  }
}
.report__block-2:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 1802px;
  height: 1395px;
  background-image: url(../img/gr_1.webp);
  filter: blur(2px);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .report__block-2:before {
    left: -8%;
    top: 14%;
  }
}
.report__block-2 .container {
  gap: 100px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .report__block-2 .container {
    gap: 50px;
    width: calc(100% - 32px);
  }
}
.report__block-2 .top {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
  align-items: center;
}
.report__block-2 .top h2 {
  font-size: 46px;
}
@media (max-width: 1024px) {
  .report__block-2 .top h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -3.22px;
  }
}
.report__block-2 .top p {
  max-width: 510px;
}
.report__block-2 .score-card {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1024px) {
  .report__block-2 .score-card {
    padding: 24px;
    gap: 24px;
  }
}
.report__block-2 .score-card > .disc {
  color: rgba(252, 252, 252, 0.3);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.28px;
}
@media (min-width: 1025px) {
  .report__block-2 .score-card > .disc {
    display: none;
  }
}
.report__block-2 .score-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .report__block-2 .score-card-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.report__block-2 .score-card-top .pill {
  padding: 13px 20px 13px 39px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.7px;
  white-space: nowrap;
  position: relative;
}
.report__block-2 .score-card-top .pill:before {
  content: "";
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 9px;
  background: rgba(227, 64, 64, 0.3);
}
.report__block-2 .score-card-top .pill:after {
  content: "";
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 9px;
  background: #E34040;
}
.report__block-2 .score-card-top .pill__value {
  font-weight: 500;
}
.report__block-2 .score-card-top .pill__value--low {
  color: #DBAA40;
}
.report__block-2 .score-card-top .pill__value--medium {
  color: #3b82f6;
}
.report__block-2 .score-card-top .pill__value--solid {
  color: #10b981;
}
.report__block-2 .score-card-top .disc {
  color: rgba(252, 252, 252, 0.3);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.28px;
  text-align: right;
}
@media (max-width: 1024px) {
  .report__block-2 .score-card-top .disc {
    display: none;
  }
}
.report__block-2 .score-card-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 1024px) {
  .report__block-2 .score-card-body {
    flex-direction: column;
    gap: 36px;
  }
}
.report__block-2 .score-card-body .score-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (max-width: 1024px) {
  .report__block-2 .score-card-body .score-text {
    flex-direction: column;
  }
}
.report__block-2 .score-card-body .score-text h2 {
  max-width: 360px;
}
.report__block-2 .score-card-body .score-text p {
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.32px;
}
.report__block-2 .score-card-body .score-visual {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .report__block-2 .score-card-body .score-visual {
    flex-direction: column-reverse;
  }
}
.report__block-2 .score-card-body .score-num {
  color: rgba(252, 252, 252, 0.54);
  font-size: 24px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -1.68px;
  white-space: nowrap;
}
.report__block-2 .score-card-body .score-num b {
  color: #FCFCFC;
  font-weight: 500;
}
.report__block-3 {
  position: relative;
  z-index: 3;
}
.report__block-3 .container {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 1024px) {
  .report__block-3 .container {
    padding: 24px;
    width: calc(100% - 32px);
  }
}
.report__block-3 .plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 1024px) {
  .report__block-3 .plan-head {
    flex-direction: column-reverse;
    gap: 28px;
    align-items: flex-start;
  }
}
.report__block-3 .plan-head-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 1024px) {
  .report__block-3 .plan-head-text h2 {
    max-width: 280px;
  }
}
.report__block-3 .plan-head-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
}
.report__block-3 .plan-head .icon {
  position: relative;
  width: 45px;
  height: 45px;
}
@media (max-width: 1024px) {
  .report__block-3 .plan-head .icon {
    width: 40px;
    height: 40px;
  }
}
.report__block-3 .plan-head .icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.report__block-3 .plan-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.report__block-3 .plan-card {
  width: calc(50% - 7.5px);
}
@media (max-width: 1024px) {
  .report__block-3 .plan-card {
    width: 100%;
  }
}
.report__block-3 .plan-card div {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (max-width: 1024px) {
  .report__block-3 .plan-card div {
    padding: 24px;
  }
}
.report__block-3 .plan-card h3 {
  color: #FCFCFC;
  font-size: 18px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -1.26px;
}
.report__block-3 .plan-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
}
@media (max-width: 1024px) {
  .report__block-3 .plan-card p br {
    display: none;
  }
}
.report__block-4 {
  padding: 60px 0;
}
.report__block-4 .container {
  gap: 50px;
}
@media (min-width: 1025px) {
  .report__block-4 .container {
    max-width: 850px;
  }
}
@media (max-width: 1024px) {
  .report__block-4 .container {
    width: calc(100% - 32px);
    gap: 40px;
  }
}
.report__block-4 .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.report__block-4 .top .section-icon {
  margin-bottom: 16px;
  position: relative;
  width: 45px;
  height: 45px;
}
@media (max-width: 1024px) {
  .report__block-4 .top .section-icon {
    width: 40px;
    height: 40px;
  }
}
.report__block-4 .top .section-icon img {
  display: block;
  width: 100%;
  height: 100%;
}
.report__block-4 .top p {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
}
@media (max-width: 1024px) {
  .report__block-4 .top h2 {
    max-width: 250px;
  }
}
.report__block-4 .ba {
  display: flex;
  gap: 24px;
}
@media (max-width: 1024px) {
  .report__block-4 .ba {
    flex-direction: column;
  }
}
.report__block-4 .ba-col {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 8px;
  width: 100%;
}
@media (max-width: 1024px) {
  .report__block-4 .ba-col {
    padding: 32px 20px;
  }
}
.report__block-4 .ba-col--now {
  background: rgba(255, 255, 255, 0.05);
}
.report__block-4 .ba-col--after {
  background-image: url(../img/after.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.report__block-4 .ba-col h4 {
  color: #FCFCFC;
  font-size: 22px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -1.54px;
}
.report__block-4 .ba-col ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.report__block-4 .ba-col li {
  display: flex;
  gap: 12px;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.32px;
}
@media (max-width: 1024px) {
  .report__block-4 .ba-col li {
    font-size: 15px;
    line-height: 16px;
    gap: 10px;
  }
}
.report__block-4 .ba-col .icon {
  width: 20px;
  height: 20px;
  position: relative;
}
@media (max-width: 1024px) {
  .report__block-4 .ba-col .icon {
    width: 16px;
    height: 16px;
  }
}
.report__block-4 .ba-col .icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 120%;
  height: 120%;
  -o-object-fit: contain;
     object-fit: contain;
}
.report__block-5 {
  padding: 10px 0 60px;
}
.report__block-5 .block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (max-width: 1024px) {
  .report__block-5 .block-head {
    flex-direction: column-reverse;
    gap: 24px;
    align-items: flex-start;
  }
}
.report__block-5 .block-head__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.report__block-5 .block-head__text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
}
.report__block-5 .block-icon {
  position: relative;
}
.report__block-5 .block-icon svg {
  display: block;
}
@media (max-width: 1024px) {
  .report__block-5 .block-icon svg {
    width: 40px;
    height: auto;
  }
}
.report__block-5 .block-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  mask-image: linear-gradient(to top, #000 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, #000 0%, transparent 100%);
}
.report__block-5 .container {
  border-radius: 10px;
  background: #161616;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 1025px) {
  .report__block-5 .container {
    max-width: 920px;
  }
}
@media (max-width: 1024px) {
  .report__block-5 .container {
    padding: 32px 32px 48px;
    gap: 48px;
  }
}
.report__block-5 .steps {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .report__block-5 .steps {
    flex-direction: column;
  }
}
.report__block-5 .steps:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 26px;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(219, 89, 64, 0.6), rgba(219, 89, 64, 0));
}
@media (max-width: 1024px) {
  .report__block-5 .steps:before {
    display: none;
  }
}
.report__block-5 .step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: calc(33.333% - 21.3333333333px);
}
@media (max-width: 1024px) {
  .report__block-5 .step {
    width: 100%;
  }
}
.report__block-5 .step-num {
  margin-bottom: 12px;
  background: #222;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  color: #FCFCFC;
  font-size: 20px;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -1.4px;
}
.report__block-5 .step h3 {
  color: #FCFCFC;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -1.12px;
}
.report__block-5 .step p {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.28px;
}
.report__block-6 {
  padding: 48px 0;
}
@media (max-width: 1024px) {
  .report__block-6 {
    padding: 0;
  }
}
.report__block-6 .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 1025px) {
  .report__block-6 .container {
    max-width: 1040px;
  }
}
@media (max-width: 1024px) {
  .report__block-6 .container {
    gap: 40px;
  }
}
.report__block-6 .text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 824px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .report__block-6 .text h2 {
    max-width: 240px;
  }
}
.report__block-6 .text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
}
.report__block-6 .splide {
  width: 100%;
}
@media (max-width: 560px) {
  .report__block-6 .splide {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.report__block-6 .splide__track {
  cursor: grab;
}
@media (max-width: 560px) {
  .report__block-6 .splide__track {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
.report__block-6 .splide.is-dragging .splide__track {
  cursor: grabbing;
}
.report__block-6 .quote {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: auto;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
}
@media (max-width: 1024px) {
  .report__block-6 .quote {
    gap: 12px;
  }
}
.report__block-6 .quote p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
}
.report__block-6 .quote .who {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
}
.report__block-7 {
  padding: 100px 0;
  position: relative;
  z-index: 3;
}
@media (max-width: 1024px) {
  .report__block-7 {
    padding: 70px 0;
  }
}
.report__block-7:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-45%, -50%);
  width: 725px;
  height: 1256px;
  background-image: url(../img/gr_2.webp);
  filter: blur(2px);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .report__block-7:before {
    transform: translate(-60%, -50%);
  }
}
.report__block-7 .container {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
@media (min-width: 1025px) {
  .report__block-7 .container {
    max-width: 828px;
  }
}
@media (max-width: 1024px) {
  .report__block-7 .container {
    gap: 30px;
  }
}
.report__block-7 .top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
@media (max-width: 1024px) {
  .report__block-7 .top {
    align-items: flex-start;
    text-align: left;
  }
}
@media (min-width: 1025px) {
  .report__block-7 .top h2 br {
    display: none;
  }
}
.report__block-7 .top p {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
}
@media (max-width: 1024px) {
  .report__block-7 .cmp-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 560px) {
  .report__block-7 .cmp-wrap {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
.report__block-7 .cmp {
  position: relative;
  min-width: 800px;
}
.report__block-7 .cmp:before {
  content: "";
  position: absolute;
  left: 39%;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(219, 89, 64, 0), rgba(219, 89, 64, 0.2), rgba(219, 89, 64, 0));
}
.report__block-7 .cmp:after {
  content: "";
  position: absolute;
  left: 72%;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(219, 89, 64, 0), rgba(219, 89, 64, 0.2), rgba(219, 89, 64, 0));
}
.report__block-7 .cmp__row {
  display: flex;
  padding: 24px 0;
  position: relative;
}
.report__block-7 .cmp__row:not(:last-child):before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(219, 89, 64, 0), rgba(219, 89, 64, 0.5), rgba(219, 89, 64, 0));
}
.report__block-7 .cmp__cell {
  padding-right: 12px;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
}
.report__block-7 .cmp__cell:nth-child(1) {
  width: 39%;
  padding-left: 30px;
}
.report__block-7 .cmp__cell:nth-child(2) {
  width: 33%;
  padding-left: 50px;
}
@media (max-width: 1024px) {
  .report__block-7 .cmp__cell:nth-child(2) {
    padding-left: 32px;
  }
}
.report__block-7 .cmp__cell:nth-child(3) {
  width: 28%;
  padding-left: 50px;
}
@media (max-width: 1024px) {
  .report__block-7 .cmp__cell:nth-child(3) {
    padding-left: 32px;
  }
}
.report__block-7 .cmp__cell:nth-child(3) {
  color: #E35555;
}
.report__block-7 .cmp__cell--head {
  color: rgba(255, 255, 255, 0.5) !important;
}
.report__block-8 {
  padding: 50px 0 100px;
}
@media (max-width: 1024px) {
  .report__block-8 {
    padding: 10px 0 50px;
  }
}
@media (min-width: 1025px) {
  .report__block-8 .container {
    max-width: 1028px;
  }
}
.report__block-8 .pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
@media (max-width: 1024px) {
  .report__block-8 .pricing {
    max-width: 380px;
    margin: 0 auto;
  }
}
.report__block-8 .pricing__head {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.report__block-8 .pricing__head p {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
}
.report__block-8 .pricing__switch {
  padding: 6px;
  display: flex;
  gap: 6px;
  border-radius: 40px;
  border: 1px solid #2C2D2E;
  transition: border-color 0.4s;
  margin-bottom: 42px;
}
.report__block-8 .pricing__switch-item {
  min-width: 140px;
  height: 40px;
  padding: 5px 5px 5px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #FAFAFA;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.39px;
  text-transform: uppercase;
  border-radius: 99px;
  transition: 0.4s;
  cursor: pointer;
  background: transparent;
  border: none;
}
.report__block-8 .pricing__switch-item:first-child {
  padding: 5px;
}
.report__block-8 .pricing__switch-item.is-active {
  background: #DB5940;
  color: #FAFAFA;
}
.report__block-8 .pricing__switch-item span {
  color: #292828;
  font: inherit;
  border-radius: 20px;
  background: #FAFAFA;
  padding: 7px 8px;
  height: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s;
}
.report__block-8 .pricing__grid {
  width: 100%;
}
@media (max-width: 1024px) {
  .report__block-8 .pricing__grid .splide__track {
    padding: 0 32px !important;
  }
}
@media (max-width: 560px) {
  .report__block-8 .pricing__grid {
    width: 100vw;
  }
}
@media (min-width: 1025px) {
  .report__block-8 .pricing__grid .splide__list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}
.report__block-8 .pricing__card {
  display: flex;
  flex-direction: column;
  padding: 40px 32px;
}
@media (max-width: 1024px) {
  .report__block-8 .pricing__card {
    padding: 48px 24px;
  }
}
.report__block-8 .pricing__card--pro {
  padding: 48px;
  border-radius: 8px;
  background: url(../img/card_primary.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .report__block-8 .pricing__card--pro {
    padding: 48px 24px;
  }
}
.report__block-8 .pricing__card--pro .pricing__per {
  color: #FFF;
}
.report__block-8 .pricing__card--pro .pricing__price s {
  color: #E99D7F;
}
.report__block-8 .pricing__card--pro .pricing__price s:before {
  background: #E99D7F;
}
.report__block-8 .pricing__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.report__block-8 .pricing__plan {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.6px;
  color: #FAFAFA;
}
.report__block-8 .pricing__badge {
  padding: 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.6px;
}
.report__block-8 .pricing__price {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.report__block-8 .pricing__price b {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.7px;
  color: #FAFAFA;
}
.report__block-8 .pricing__price s {
  color: #535353;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.7px;
  position: relative;
}
.report__block-8 .pricing__price s:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background: #535353;
}
.report__block-8 .pricing__card--pro .report__block-8 .pricing__price b {
  color: #292828;
}
.report__block-8 .pricing__card--pro .report__block-8 .pricing__price s {
  color: rgba(41, 40, 40, 0.3);
}
.report__block-8 .pricing__per {
  margin-top: 5px;
  color: #9A9A9A;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.6px;
}
.report__block-8 .pricing__card--pro .report__block-8 .pricing__per {
  color: #fff;
}
.report__block-8 .pricing__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.6px;
  transition: 0.4s;
}
.report__block-8 .pricing__cta--ghost {
  border: 1px solid #262728;
  color: #FAFAFA;
}
@media not all and (pointer: coarse) {
  .report__block-8 .pricing__cta--ghost:hover {
    background: #C94E37;
  }
}
.report__block-8 .pricing__cta--ghost:active {
  background: #C94E37;
}
.report__block-8 .pricing__cta--light {
  background: #FAFAFA;
  color: #292828;
}
@media not all and (pointer: coarse) {
  .report__block-8 .pricing__cta--light:hover {
    background: #C94E37;
    color: #fff;
  }
}
.report__block-8 .pricing__cta--light:active {
  background: #C94E37;
  color: #fff;
}
.report__block-8 .pricing__card--pro .report__block-8 .pricing__cta {
  margin: 50px 0;
}
.report__block-8 .pricing__feats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.report__block-8 .pricing__feats li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.6px;
  color: #FAFAFA;
}
.report__block-8 .pricing__feats li svg {
  flex: none;
  width: 20px;
  height: 20px;
}
.report__block-8 .pricing__card--pro .report__block-8 .pricing__feats li {
  color: #292828;
}
.report__block-8 .pricing__card--pro .report__block-8 .pricing__feats li svg path {
  stroke: #fff;
}
.report__block-8 .pricing__note {
  margin-top: 32px;
  color: rgba(252, 252, 252, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.32px;
}
@media (min-width: 1025px) {
  .report .footer .container {
    max-width: 1440px;
  }
}

@property --angle {
  syntax: "<angle>";
  inherits: true;
  initial-value: 0deg;
}
.report__ring {
  --angle: 0deg;
  --size: 134px;
  --thickness: 8px;
  position: relative;
  flex: none;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  transition: --angle 0.4s ease-out;
}
.report__ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--thickness)), #000 calc(100% - var(--thickness)));
  mask: radial-gradient(farthest-side, transparent calc(100% - var(--thickness)), #000 calc(100% - var(--thickness)));
}
.report__ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #ff7a3d 0deg, #d6481f calc(var(--angle) * 0.6), rgba(110, 36, 18, 0) var(--angle), transparent var(--angle), transparent 360deg);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--thickness)), #000 calc(100% - var(--thickness)));
  mask: radial-gradient(farthest-side, transparent calc(100% - var(--thickness)), #000 calc(100% - var(--thickness)));
}

.report__ring-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--thickness);
  height: var(--thickness);
  margin-left: calc(var(--thickness) / -2);
  border-radius: 50%;
  background: #ff7a3d;
}

.b10 {
  padding: 150px 0 60px;
  overflow-x: clip;
}
@media (max-width: 1024px) {
  .b10 {
    padding: 120px 0 40px;
  }
}
.b10.anim {
  opacity: 0;
  transition: 1s;
}
.b10.anim.animated {
  opacity: 1;
}
.b10 .container {
  display: flex;
  flex-direction: column;
  gap: 44px;
  align-items: center;
}
@media (max-width: 1024px) {
  .b10 .container {
    align-items: stretch;
  }
}
.b10 .section-title {
  max-width: 700px;
}
@media (max-width: 1024px) {
  .b10 .section-title {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }
}
.b10__main {
  width: 100%;
  max-width: 1200px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  line-height: 1.44;
  overflow-wrap: break-word;
  word-break: break-word;
}
.b10__main h2, .b10__main .h2 {
  font-size: 48px;
}
@media (max-width: 1024px) {
  .b10__main h2, .b10__main .h2 {
    font-size: 32px;
  }
}
.b10__main h3, .b10__main h4, .b10__main h5, .b10__main h6 {
  color: #FCFCFC;
  font-weight: 500;
  font-size: 24px;
}
@media (max-width: 1024px) {
  .b10__main h3, .b10__main h4, .b10__main h5, .b10__main h6 {
    font-size: 20px;
  }
}
.b10__main h1, .b10__main h2, .b10__main h3, .b10__main h4, .b10__main h5, .b10__main h6 {
  margin-top: 12px;
}
.b10__main h1:first-child, .b10__main h2:first-child, .b10__main h3:first-child, .b10__main h4:first-child, .b10__main h5:first-child, .b10__main h6:first-child {
  margin-top: 0;
}
.b10__main h1 + img, .b10__main h1 + h1, .b10__main h1 + h2, .b10__main h1 + h3, .b10__main h1 + h4, .b10__main h1 + h5, .b10__main h1 + h6, .b10__main h2 + img, .b10__main h2 + h1, .b10__main h2 + h2, .b10__main h2 + h3, .b10__main h2 + h4, .b10__main h2 + h5, .b10__main h2 + h6, .b10__main h3 + img, .b10__main h3 + h1, .b10__main h3 + h2, .b10__main h3 + h3, .b10__main h3 + h4, .b10__main h3 + h5, .b10__main h3 + h6, .b10__main h4 + img, .b10__main h4 + h1, .b10__main h4 + h2, .b10__main h4 + h3, .b10__main h4 + h4, .b10__main h4 + h5, .b10__main h4 + h6, .b10__main h5 + img, .b10__main h5 + h1, .b10__main h5 + h2, .b10__main h5 + h3, .b10__main h5 + h4, .b10__main h5 + h5, .b10__main h5 + h6, .b10__main h6 + img, .b10__main h6 + h1, .b10__main h6 + h2, .b10__main h6 + h3, .b10__main h6 + h4, .b10__main h6 + h5, .b10__main h6 + h6 {
  margin-top: 0;
}
.b10__main img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 12px 0;
}
.b10__main img:first-child {
  margin-top: 0;
}
.b10__main img:last-child {
  margin-bottom: 0;
}
.b10__main img + img, .b10__main img + h1, .b10__main img + h2, .b10__main img + h3, .b10__main img + h4, .b10__main img + h5, .b10__main img + h6 {
  margin-top: 0;
}
.b10__main a:not(.btn) {
  text-decoration: underline;
  color: inherit;
  transition: 0.4s;
}
@media not all and (pointer: coarse) {
  .b10__main a:not(.btn):hover {
    color: #DB5940;
  }
}
.b10__main a:not(.btn):active {
  color: #DB5940;
}
.b10__main ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 24px;
}
.b10__main ul li {
  list-style: disc;
}
.b10__main ol {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 24px;
}
.b10__main ol li {
  list-style: decimal;
}
.b10__main blockquote {
  padding: 20px 0 20px 20px;
  border-left: 2px solid #DB5940;
}
.b10__main .b10__table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 12px 0;
}
.b10__main table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.4;
}
.b10__main table th,
.b10__main table td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  border: 1px solid rgba(219, 89, 64, 0.15);
  overflow-wrap: anywhere;
  word-break: break-word;
}
.b10__main table th {
  font-weight: 500;
  color: #FCFCFC;
}
@media (max-width: 1024px) {
  .b10__main table {
    min-width: 0;
    table-layout: fixed;
    font-size: 12px;
  }
  .b10__main table th,
  .b10__main table td {
    padding: 8px 10px;
  }
}
.b10__main iframe {
  display: block;
  width: 100%;
  height: calc((100vw - 128px - 15px - 424px - 152px) / 16 * 9);
  border-radius: 12px;
  margin: 12px 0;
}
@media screen and (max-width: 1250px) {
  .b10__main iframe {
    height: calc((100vw - 128px - 15px) / 16 * 9);
  }
}
@media screen and (max-width: 1024px) {
  .b10__main iframe {
    border-radius: 20px;
    height: 281.25px;
  }
}
@media screen and (max-width: 540px) {
  .b10__main iframe {
    height: calc((100vw - 32px) / 16 * 9);
  }
}/*# sourceMappingURL=main.css.map */
