@viewport {
    user-zoom: fixed
}

* {
    backface-visibility: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-style: normal;
    appearance: none
}

html {
    display: block;
}

body,
html {
    position: relative;
    overflow-x: hidden
}

body {
    min-height: 100vh;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #202020;
    font: 18px "Gilroy", sans-serif;
    line-height: 1.44;
    font-weight: normal;
    background: #FFFFFF;
}

input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
    transition: background-color 5000000s ease-in-out 0s !important
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    display: none
}

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

:focus-visible {
    outline: 0
}

.container,
.breadcrumps {
    max-width: 1160px;
    width: 100%;
    margin: 0 auto
}

main {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto
}

section {
    position: relative;
    z-index: 0;
}

a {
    color: #202020;
    text-decoration: none
}

img {
    user-select: none
}

button,
input {
    background-color: unset;
    border: 0
}

button {
    cursor: pointer
}

textarea {
    resize: none
}

.flex-col {
    flex-direction: column;
    align-items: center;
    height: 100%
}

.flex-col,
.flex-row,
.flex-wrap {
    display: flex
}

.flex-wrap {
    flex-wrap: wrap
}

.h1,
h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
}

.h2,
h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
}

.h3,
h3 {
    font-size: 35px;
    font-weight: 600;
    line-height: 1.37;
}

.h4,
h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.h5,
h5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.h6,
h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}


.items {
    width: calc(100% + 40px);
    margin: 0 -20px -40px;
    justify-content: center;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6 {
    padding: 0 20px 40px;
    position: relative
}

.col-1 > *,
.col-2 > *,
.col-3 > *,
.col-4 > *,
.col-5 > *,
.col-6 > * {
    width: 100%;
    height: 100%
}

.col-1 {
    width: 100%
}

.col-2 {
    width: 50%
}

.col-3 {
    width: 33.3%
}

.col-4 {
    width: 25%
}

.col-5 {
    width: 20%
}

.col-6 {
    width: 16.6%
}

/* Default */
.btn,
input[type=submit] {
    padding: 15px 70px;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
    border-radius: 27px;
    background: #DB222A;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .4s ease;
}

.btn:hover,
input[type=submit]:hover {
    transition: all .4s ease;
    border: 1px solid transparent;
    background: #f7cb15;
    transform: scale(1.05);
}

.form {
    width: calc(100% + 40px);
    margin: 0 -20px -40px;
}

.form p {
    display: flex;
    flex-direction: column;
    padding: 0 20px 40px;
}

.form span,
.form input,
.form textarea,
.form label {
    width: 100%;
}

.form input:not([type="submit"]),
.form textarea {
    color: #202020;
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 144%;
    background: #fff;
    padding: 3px 1px;
    margin-bottom: auto;
    border: none;
    border-bottom: 1px solid #202020;
    transition: all .4s ease;
}

.form input:not([type="submit"])::placeholder,
.form textarea::placeholder {
    opacity: 1;
    color: #202020;
}

.form textarea {
    height: 67px;
}

.form input[type="submit"] {
    margin-top: 20px;
    cursor: pointer;
    font-size: 18px;
}

.wpcf7 form .wpcf7-response-output {
    display: none !important;
}

.wpcf7-not-valid-tip {
    display: inline-block;
    font-size: 14px;
    font-family: "Gilroy", sans-serif;
    margin-top: 5px;
}

/* Nav */
header {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 100;
    transition: all .4s ease;
    background: transparent;
    padding: 13px 0;
}

.home header {
    position: absolute;
}

header.fixed {
    background: #fff;
    position: fixed;
    transition: all .4s ease;
}

.nav {
    align-items: center;
    justify-content: space-between;
}

.nav .logo {
    margin-right: auto;
}

.logo,
.logo img {
    width: 146px;
    height: 37px;
    transition: all .4s ease;
}

.logo:hover {
    transform: scale(1.1);
    transition: all .4s ease;
}

.nav__menu {
    margin-right: 65px;
}

.nav__menu > *:nth-child(n+2) {
    display: none;
}

.nav__menu ul {
    display: flex;
    align-items: center;
    gap: 65px;
    list-style: none;
}

.nav__menu ul a {
    line-height: 1.22;
    font-weight: 600;
    transition: all .4s ease;
}

.nav__menu ul a:hover {
    color: #DB222A;
    transition: all .4s ease;
}

.burger {
    width: 40px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 102;
    display: none;
    margin-left: auto;
}

.burger::after,
.burger::before,
.burger span {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    right: 0;
    background-color: #202020;
    transition: all .4s ease;
}

.burger::before {
    top: 0;
}

.burger::after {
    bottom: 0;
}

.burger span {
    top: 50%;
    transform: translate(0%, -50%)
}

.menu-active .burger::after,
.menu-active .burger::before,
.menu-active .burger span {
    transition: all .4s ease;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
}

.menu-active .burger::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-active .burger::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-active .burger span {
    transform: translate(-50%, -50%) scaleX(0);
}

/* Footer */
footer {
    padding: 33px 0 38px;
}

.footer {
    gap: 15px;
    text-align: center;
}

.footer .h2 {
    margin-bottom: 25px;
}

.footer .social {
    margin: 10px 0;
}

.footer a {
    font-weight: 600;
    transition: all .4s ease;
}

.footer a:last-child {
    font-weight: 300;
}

.footer a:hover {
    text-shadow: 0 0 1px #202020;
    transition: all .4s ease;
}

.footer p {
    margin: 10px 0;
}

.footer p,
.footer a:nth-last-child(2) {
    opacity: 0.7;
    font-size: 16px;
    font-weight: 400;
}

.footer a:nth-last-child(2):hover {
    opacity: 1;
}

.social {
    gap: 28px;
    align-items: center;
    justify-content: center;
}

.social a img {
    width: 50px;
    height: 50px;
}

.social a {
    transition: all .4s ease;
}

.social a:hover {
    transform: scale(1.1);
    transition: all .4s ease;
}

.med {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Modal */
.modal__container {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    overflow: auto;
    display: flex;
    padding: 50px 20px 20px;
    z-index: 9999999;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.modal__container.show {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

body:has(.modal__container.show),
html:has(.modal__container.show),
html:has(.modal__container.show) .nav {
    overflow: hidden;
    padding-right: 8px;
}

.modal__container::-webkit-scrollbar {
    display: none;
}

.modal {
    background: #FFF;
    padding: 40px 45px;
    max-width: 560px;
    width: 100%;
    margin: auto;
    transform: translateY(10%);
    transition: all .4s ease;
}

.modal__container.show .modal {
    transform: translateY(0%);
    transition: all .4s ease;
}

.modal__container {
    margin: auto;
}

.modal__title {
    text-align: center;
    margin-bottom: 20px;
}

.modalAbout {
    max-width: 960px;
}

.modal ul,
.modal ol {
    margin-left: 20px;
}

.modalAbout > .btn {
    font-size: 14px;
    padding: 15px 25px;
    position: relative;
    left: 50%;
    margin-top: 30px;
    transform: translate(-50%, 0);
}

.modalAbout > img {
    width: calc(100% + 90px);
    margin-top: -40px;
    height: fit-content;
    margin-left: -45px;
    border-radius: 32px;
    margin-bottom: 40px;
}

.modalTeam > img {
    border-radius: 0;
}

.close {
    width: 23px;
    height: 23px;
    top: 20px;
    right: 20px;
    position: absolute;
    z-index: 10;
    background: transparent;
    cursor: pointer;
    transition: all .4s ease;
}

.close svg {
    position: relative;
    z-index: -1;
}

.close:hover {
    transform: rotate(90deg);
    transition: all .4s all;
}

/* Hero */
.section__hero {
    padding: 0;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.hero > img {
    width: 947px;
    height: fit-content;
    margin-right: -300px;
    z-index: -1;
}

.hero__content {
    max-width: 602px;
    width: 100%;
}

.hero__content h1 {
    margin-bottom: 44px;
}

.hero__content > *:not(div):not(h1) {
    max-width: 484px;
    width: 100%;
    margin-bottom: 30px;
}

.hero__content ul,
.hero__content ol {
    margin-left: 20px;
}

.hero__content > .flex-wrap {
    margin-top: 60px;
    align-items: center;
    row-gap: 20px;
    column-gap: 40px;
}

.hero__content p br {
    display: none;
}

.hero__content a:not(.btn) {
    padding: 0 2px 2px;
    border-bottom: 1px solid #202020;
    transition: all .4s ease;
}

.hero__content a:not(.btn):hover {
    transition: all .4s ease;
    color: #DB222A;
    border-bottom: 1px solid #DB222A;
}

/* Features */
.section__features {
    padding: 240px 0 70px;
    position: relative;
}

.features {
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.features__content {
    margin-top: 150px;
    max-width: 560px;
    width: 100%;
}

.features__content h2 {
    margin-bottom: 40px;
}

.features__content > *:not(h2) {
    margin-bottom: 20px;
}

.features__item {
    text-align: center;
    gap: 20px;
}

.features__item img {
    width: 145px;
    height: 115px;
}

.features__item .h4 {
    min-height: 57px;
}

.features .h3 br {
    display: none;
}

/* Contact */
.section__contact {
    padding: 108px 0 124px;
}

.contact {
    align-items: center;
    justify-content: space-between;
}

.contact > img {
    width: 576px;
    height: auto;
    margin-left: -20px;
}

.contact__content {
    text-align: center;
    width: calc(100% - 650px);
}

.contact__content h5 {
    color: #DB222A;
    margin-bottom: 50px;
}

.contact__content > *:not(div):not(h5) {
    margin-bottom: 45px;
}

.contact__content .form {
    max-width: 399px;
    margin: 0 auto;
}

/* Faq */
.section__faq {
    padding: 70px 0 108px;
}

.faq > *:not(div) {
    text-align: center;
}

.faq .h2 {
    margin-bottom: 40px;
    width: 100%;
    display: inline-block;
}

.faq > *:not(div):not(.h2) {
    margin-bottom: 20px;
}

.faq .accordion {
    margin-top: 50px;
}

.accordion__item {
    margin-bottom: -60px;
    transition: all .4s ease;
}

.accordion__item.active {
    margin-bottom: 0;
    transition: all .4s ease;
}

.accordion__header {
    align-items: center;
    justify-content: space-between;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.92;
    cursor: pointer;
    padding: 11px 0;
    border-bottom: 1px solid #202020;
}

.accordion__header::after {
    content: '';
    display: inline-block;
    max-width: 41px;
    min-width: 41px;
    height: 41px;
    width: 100%;
    border-radius: 50%;
    margin-left: 40px;
    background: url(../img/+.svg) center center / 20px 20px no-repeat, #F7CB15;
    transition: all .4s ease;
}

.accordion__item.active .accordion__header::after {
    transform: rotate(45deg);
    transition: all .4s ease;
}

.accordion__content {
    overflow: hidden;
    max-height: 0;
    transition: all .4s ease;
    margin: 30px 0;
    width: 90%;
}

.accordion__content > * {
    margin-bottom: 20px;
}

.accordion__content > *:last-child {
    margin-bottom: 0;
}

/* Prop */
.section__prop {
    padding: 110px 0 100px;
}

.prop .h2 {
    margin-bottom: 40px;
    display: inline-block;
    width: 100%;
}

.prop > *:not(div) {
    text-align: center;
}

.prop__items {
    margin-top: 40px;
}

.prop__item {
    padding: 50px 60px;
    position: relative;
    z-index: 0;
}

.prop__items .col-1 .prop__item {
    padding: 70px 60px;
}

.prop__item::before {
    content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background: #F0F9FF;
    transition: all .4s ease;
}

.prop__item:hover::before {
    transform: scale(1.06);
    transition: all .4s ease;
}

.prop__item > a {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.prop__item span {
    font-weight: 600;
    line-height: 1.2;
    transition: all .4s ease;
    margin-top: auto;
    display: inline-block;
}

.prop__item:hover span {
    color: #DB222A;
    transition: all .4s ease;
}

.prop__item .btn {
    position: relative;
    z-index: 3;
}

.prop__item .h3 {
    margin-bottom: 40px;
}

.prop__items .col-1 .h3 {
    max-width: 441px;
    width: 100%;
    margin-bottom: 30px;
}

.prop__item p {
    padding-right: 40px;
    margin-bottom: 20px;
}

.prop__items .col-1 p {
    max-width: 600px;
    width: 100%;
    padding-right: 0;
}

.prop__item > *:nth-last-child(4) {
    margin-bottom: 82px;
}

.prop__items .col-1 .prop__item > *:nth-last-child(4) {
    margin-bottom: 33px;
}

.prop__item > img {
    width: 240px;
    height: 170px;
    position: absolute;
    object-fit: contain;
    object-position: center bottom;
    right: 0;
    bottom: 0;
    border-radius: 0 0 40px 0;
    transition: all .4s ease;
}

.prop__item:hover > img {
    right: -3%;
    bottom: -3%;
    transition: all .4s ease;
}

.prop__items .col-1 .prop__item > img {
    width: 289px;
    height: 336px;
    right: 144px;
}

.prop__item .flex-row {
    align-items: center;
    column-gap: 40px;
    row-gap: 20px;
    width: 100%;
}

.prop__item .flex-row span {
    margin-top: 0;
}

/* Time */
.section__time {
    padding: 100px 0 140px;
}

.time {
    text-align: center;
    position: relative;
}

.time .h2 {
    max-width: 823px;
    width: 100%;
    margin-bottom: 140px;
}

.time .h2 br {
    display: none;
}

.time__img {
    width: 704px;
    height: 400px;
    background: url(../img/time-img.webp) center center / 100% 100% no-repeat;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 88px;
}

.time__img img {
    width: 558px;
    height: 348px;
    margin-bottom: 15px;
    margin-left: 4px;
}

.time > *:not(div):not(.h2):not(.btn) {
    max-width: 460px;
    width: 100%;
    margin-bottom: 30px;
}

.time p {
    font-weight: 500;
}

/* Test */
.section__test {
    background: #F7CB15;
    padding: 46px 0 57px;
}

.test {
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.test > img:not(.test__dec) {
    width: 606px;
    margin-right: -30px;
    height: auto;
}

.test__dec {
    position: absolute;
    width: 145px;
    height: 115px;
    object-fit: cover;
    bottom: 20px;
    right: 410px;
}

.test__content {
    width: calc(100% - 665px);
}

.test__content .h3 {
    color: #fff;
    margin-bottom: 30px;
}

.test__content > *:not(.h3):not(.btn) {
    margin-bottom: 30px;
}

.test__content .btn {
    margin-top: 47px;
    background: #fff;
    color: #202020;
}

.test__content .btn:hover {
    background: #fff;
}

/* Team */
.section__team {
    padding: 140px 0 100px;
}

.team {
    text-align: center;
}

.team .h2 {
    margin-bottom: 50px;
}

.team > *:not(.h2):not(div) {
    max-width: 826px;
    width: 100%;
    margin-bottom: 30px;
}

.team__items {
    margin-top: 40px;
    max-width: 866px;
}

.team__item > img {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    height: auto;
    width: 100%;
    margin-bottom: 30px;
    transition: all .4s ease;
}

.team__item:hover > img {
    transform: scale(1.05);
    transition: all .4s ease;
}

.team__item .h4,
.team__item p {
    margin-bottom: 20px;
}

.team__item p {
    width: 260px;
    font-size: 16px;
}

.team__item span {
    color: #0496FF;
    opacity: 0;
    transition: all .4s ease;
}

.team__item:hover span {
    opacity: 1;
    transition: all .4s ease;
}

/* Price */
.section__price {
    padding: 80px 0 100px;
}

.price {
    text-align: center;
}

.price .h2 {
    margin-bottom: 30px;
    display: inline-block;
}

.price__items {
    margin-top: 30px;
}

.price__item {
    border-radius: 40px;
    background: #F0F9FF;
    transition: all .4s ease;
    padding: 50px;
}

.price__item:hover {
    background: #F7CB15;
    transition: all .4s ease;
}

.price__item .h4 {
    max-width: 210px;
    width: 100%;
    margin-bottom: 39px;
}

.price__item-price {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
    font-weight: 500;
    color: #DB222A;
    margin-bottom: 20px;
}

.price__item-price span {
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
    margin: 0 10px -8px;
}

.price__item-price b {
    width: 100%;
    font-weight: 500 !important;
    margin-top: 10px;
    height: 26px;
}

.price__item ul {
    list-style: none;
    margin-bottom: 45px;
}

.price__item li {
    font-size: 16px;
    line-height: 1.62;
    width: fit-content;
    text-align: center;
    margin: 4px auto;
}

.price__item .btn {
    margin-top: auto;
}

.price__item:hover .btn {
    background: #fff;
    color: #202020;
}

/* Reviews */
.section__reviews {
    padding: 100px 0 70px;
}

.reviews {
    text-align: center;
}

.reviews .h2 {
    margin-bottom: 30px;
    display: inline-block;
}

.reviews__swiper {
    max-width: 658px;
    width: 100%;
    margin: 40px auto 0;
    position: relative;
}

.reviews__swiper .swiper {
    border-radius: 50px;
}

.reviews__swiper .swiper-slide p {
    font-weight: 500;
}

.reviews__swiper .swiper-slide {
    position: relative;
    z-index: 0;
}

.reviews__swiper .swiper-slide a {
    position: absolute;
    opacity: 0;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
}

.reviews__item-video {
    position: relative;
    z-index: 0;
    height: 370px;
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 32px;
}

.reviews__item-video iframe {
    display: none;
}

.reviews__item-video iframe,
.reviews__item-video video,
.reviews__item-video img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -4;
    border: none;
    inset: 0;
    object-fit: cover;
}

.reviews__item-video img {
    z-index: -3;
}

.reviews__item-video::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
    inset: 0;
    background: linear-gradient(0deg, rgba(32, 32, 32, 0.30) 0%, rgba(32, 32, 32, 0.30) 100%);
}

.reviews__item-video::after {
    content: '';
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../img/play.svg) center center / 100% 100% no-repeat;
    transition: all .4s ease;
}

.reviews__swiper .swiper-slide:hover .reviews__item-video::after {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all .4s ease;
}

.swiper-btn {
    background: url(../img/swiper-arrow.svg) center center / 5px 10px no-repeat, #F7CB15;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    cursor: pointer;
    top: calc((370px / 2) - 20px);
    transition: all .4s ease;
}

.swiper-btn:hover {
    background: url(../img/swiper-arrow.svg) center center / 5px 10px no-repeat, #ff8562;
    transform: scale(1.1);
    transition: all .4s ease;
}

.swiper-prev {
    transform: rotate(180deg);
    left: -80px;
}

.swiper-prev:hover {
    transform: rotate(180deg) scale(1.1);
}

.swiper-next {
    right: -80px;
}

/* Quiz */
.section__quiz {
    overflow: hidden;
    max-height: 0;
    transition: all .4s ease;
}

.section__quiz.active {
    margin: 140px 0 0;
    transition: all .4s ease;
}

.quiz__content {
    max-width: 470px;
    width: 100%;
    text-align: center;
}

.quiz__content h3 {
    font-size: 30px;
    margin-bottom: 30px;
}

.quiz__content img {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.quiz__num {
    color: #bcbcbc;
    font-weight: 400;
    align-items: center;
    gap: 3px;
    margin-bottom: 15px;
    display: none;
}

.quiz__num span {
    color: #202020;
    font-weight: 600;
}

.quiz__num b {
    font-weight: 400 !important;
}

.quiz__items {
    max-width: 470px;
    width: 100%;
    display: none;
}

.quiz__item {
    display: none;
}

.quiz__item.active {
    display: block;
}

.quiz__item img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.quiz__item .h5 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.35;
}

.quiz__item ul {
    list-style: none;
}

.quiz__item li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0 0;
    cursor: pointer;
    transition: all .4s ease;
}

.quiz__item .btn {
    opacity: 0;
    visibility: hidden;
    margin-top: 35px;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0);
    transition: all .4s ease;
}

.quiz__item:has(.chosen) .btn {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.quiz__item:has(.chosen) li {
    pointer-events: none;
    user-select: none;
}

.quiz__item .h6 {
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    position: relative;
    gap: 10px;
    width: calc(100% - 50px);
}

.quiz__item .h6::before {
    content: '';
    border-radius: 50%;
    width: 20px;
    height: 20px;
    border: 1px solid #202020;
    background: transparent;
}

.chosen.yes .h6::before,
.quiz__item:has(.chosen.no) .yes .h6::before {
    background: #199c68;
    border: 1px solid #199c68;
}

.chosen.no .h6::before {
    background: #ff4a4a;
    border: 1px solid #ff4a4a;
}

.yes .h6::after {
    content: '';
    position: absolute;
    left: 13px;
    top: 3.5px;
    z-index: 10;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-50%, 50%);
    opacity: 0;
    transition: all .4s ease;
}

.no .h6::after {
    content: '+';
    position: absolute;
    top: -3px;
    left: 15px;
    z-index: 10;
    width: 0;
    height: 0;
    font-family: Arial, sans-serif;
    font-size: 23px;
    font-weight: 500;
    color: #fff;
    background-color: transparent;
    border: 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: all .4s ease;
}

.chosen.yes .h6::after,
.chosen.no .h6::after,
.quiz__item:has(.chosen.no) .yes .h6::after {
    opacity: 1;
    transition: all .4s ease;
}

.chosen {
    pointer-events: none;
    user-select: none;
}

.perc {
    display: inline-flex;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.55;
    align-items: center;
    gap: 5px;
    width: 50px;
    justify-content: flex-end;
    opacity: 0;
    transition: all .4s ease;
    visibility: hidden;
}

.quiz__item:has(.chosen) .perc {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.perc svg {
    min-width: 18px;
    max-width: 18px;
    width: 100%;
    height: 18px;
}

.chosen.yes .perc,
.chosen.yes .h6,
.quiz__item:has(.chosen.no) .yes .perc,
.quiz__item:has(.chosen.no) .yes .h6 {
    color: #199c68;
}

.chosen.yes .perc svg path:first-child,
.quiz__item:has(.chosen.no) .yes svg path:first-child {
    fill: #199c68;
}

.chosen.no .perc,
.chosen.no .h6 {
    color: #ff4a4a;
}

.chosen.no .perc svg path:first-child {
    fill: #ff4a4a;
}

.quiz__item:has(.chosen) .no:not(.chosen) {
    opacity: 0.6;
}

.res {
    width: 100%;
    padding-left: 30px;
    font-size: 15px;
    color: #bcbcbc;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.chosen .res,
.quiz__item:has(.chosen.no) .yes .res {
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.quiz__finish {
    max-width: 470px;
    width: 100%;
    text-align: center;
    display: none;
}

.quiz__finish-content {
    height: 224px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    gap: 10px;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
    background: url(../img/quiz-finish.webp) center center / 100% 100% no-repeat;
}

.quiz__finish-content .h1,
.quiz__finish-content .h1 b {
    font-weight: 800 !important;
}

.quiz__finish-content .h4 {
    font-size: 26px;
    font-weight: 600;
}

.quiz__finish p {
    margin-bottom: 20px;
    display: inline-block;
}

.quiz__finish > div:not(.quiz__finish-content) {
    margin-bottom: 20px;
}

.quiz__finish p b {
    font-weight: 600 !important;
}

.quiz__finish .btn {
    margin-top: 10px;
}

.quiz__finish > div:not(.quiz__finish-content) {
    display: none;
}

/* Error */
.section__error {
    padding: 200px 0;
    overflow: hidden;
    height: 100vh;
    min-height: 800px;
}

.error {
    align-items: center;
    justify-content: space-between;
}

.error__content {
    width: calc(100% - 550px);
}

.section__error-thanks .error__content {
    max-width: 484px;
    width: 100%;
    position: relative;
    z-index: 10;
}

body:has(.section__error-thanks) footer,
body:has(.section__error-thanks) header {
    display: none;
}

body:has(.section__error-thanks) main {
    margin-top: 0;
}

.section__error-thanks {
    display: flex;
    align-items: center;
}

.error h1 {
    margin-bottom: 40px;
}

.error__content p {
    font-weight: 500;
    margin-bottom: 30px;
}

.error__content a:not(.btn) {
    color: #ff8562;
}

.error__video {
    width: 500px;
    height: auto;
    overflow: hidden;
}

.error video {
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(1.01);
}

.error__anim img:first-child {
    animation: img1 20s infinite linear;
    backface-visibility: hidden;
    right: 244px;
    top: 300px;
    width: 590px;
    height: auto;
    z-index: 5;
    position: absolute;
}

.error__anim img:nth-child(2) {
    animation: img2 10s infinite linear;
    backface-visibility: hidden;
    width: 461px;
    right: 408px;
    top: -48px;
    height: 373px;
    z-index: 8;
    position: absolute;
}

.error__anim img:nth-child(3) {
    height: auto;
    position: absolute;
    z-index: 4;
    right: -200px;
    top: -90px;
    width: 1200px;
    opacity: 0.3;
}

@keyframes img1 {
    0% {
        transform: rotate(0deg) scale(1, 1);
    }

    50% {
        transform: rotate(185deg) scale(1.4, 1.4);
    }

    100% {
        transform: rotate(0deg) scale(1.15, 1.15);
    }
}

@keyframes img2 {
    0% {
        opacity: 1;
        transform: translateY(0px) rotate(0deg);
        animation-timing-function: linear;
    }

    50% {
        opacity: 0.75;
        transform: translateY(170px) rotate(40deg);
        animation-timing-function: linear;
    }

    100% {
        opacity: 0.75;
        transform: translateY(0px) rotate(0deg);
    }
}

/* Pol */
.section__pol {
    padding: 100px 0 60px;
}

.section__pol a {
    color: #ff8562;
}

.pol {
    font-size: 20px;
    line-height: 1.55;
    color: #000;
    font-weight: 300;
}

.pol strong {
    font-weight: 700 !important;
}

/* Loader */
body:has(.loader:not(.hide)),
html:has(.loader:not(.hide)) {
    overflow: hidden !important;
}

.loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    opacity: 1;
    visibility: visible;
    transition: all .4s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
}

.loader div {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    animation: logo2 ease 2s;
}

.loader img {
    width: 400px;
    height: 100px;
    animation: logo1 1.5s ease 1s infinite;
}

@keyframes logo1 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes logo2 {
    0% {
        max-width: 0;
    }

    100% {
        max-width: 100%;
    }
}

/* Dec */
.dec1 {
    width: 590px;
    height: auto;
    position: absolute;
    top: 30%;
    left: 0px;
    z-index: -2;
}

.dec2 {
    width: 200px;
    height: auto;
    position: absolute;
    top: 35%;
    left: 100px;
    z-index: -1;
}

.dec3 {
    width: 200px;
    height: auto;
    position: absolute;
    bottom: 30%;
    right: 300px;
    z-index: -1;
}

.dec4 {
    width: 590px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0px;
    z-index: -2;
}

.dec5 {
    width: 220px;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 100px;
    z-index: -1;
}

.dec6 {
    width: 104px;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 200px;
    z-index: -1;
}

.dec7 {
    width: 461px;
    height: auto;
    position: absolute;
    top: 170px;
    left: 150px;
    z-index: -1;
}

.dec8 {
    width: 422px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0px;
    z-index: -1;
}

.dec9 {
    width: 256px;
    height: auto;
    position: absolute;
    bottom: -100px;
    left: 100px;
    z-index: -1;
}

.dec10 {
    width: 391px;
    height: auto;
    position: absolute;
    top: 25%;
    left: -50px;
    z-index: -1;
}

.dec11 {
    width: 106px;
    height: auto;
    position: absolute;
    bottom: 10%;
    right: 250px;
    z-index: -1;
}

.dec12 {
    width: 315px;
    height: auto;
    position: absolute;
    bottom: 10%;
    right: 150px;
    z-index: -2;
}

.dec13 {
    width: 315px;
    height: auto;
    position: absolute;
    top: 30%;
    left: 0;
    z-index: -2;
}

.dec14 {
    width: 158px;
    height: auto;
    position: absolute;
    top: 40%;
    left: 600px;
    z-index: -2;
}

.dec15 {
    width: 391px;
    height: auto;
    position: absolute;
    bottom: -30%;
    right: 100px;
    z-index: -2;
}

.dec16 {
    width: 219px;
    height: auto;
    position: absolute;
    top: 30%;
    left: 100px;
    z-index: -2;
}

.dec17 {
    width: 315px;
    height: auto;
    position: absolute;
    top: 30%;
    right: 200px;
    z-index: -2;
}