@charset "UTF-8";

a, address, aside, audio, b, body, div, footer, form, h1, h2, h3, h4, h5, h6, header, html, i, iframe, img, input, li, menu, nav, ol, p, section, span, textarea, ul, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box
}

body, html {
    position: relative;
    min-height: 100%
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

ol, ul {
    list-style: none
}

a {
    color: inherit;
    text-decoration: none
}

input, textarea {
    color: inherit
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: inherit;
    font-size: 1em
}

input::placeholder, textarea::placeholder {
    color: inherit;
    font-size: 1em
}

input:focus, textarea:focus {
    outline: 0
}

button {
    cursor: pointer;
    color: inherit;
    border: none;
    background-color: transparent;
    padding: 0
}

.input-checkbox, input.text, input[type=button], input[type=submit], input[type=text], textarea {
    -webkit-appearance: none;
    border-radius: 0
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url(../fonts/Montserrat-Regular.woff) format("woff"), url(../fonts/Montserrat-Regular.woff-2) format("woff-2");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url(../fonts/Montserrat-Medium.woff) format("woff"), url(../fonts/Montserrat-Medium.woff-2) format("woff-2");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url(../fonts/Montserrat-SemiBold.woff) format("woff"), url(../fonts/Montserrat-SemiBold.woff-2) format("woff-2");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url(../fonts/Montserrat-Bold.woff) format("woff"), url(../fonts/Montserrat-Bold.woff-2) format("woff-2");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url(../fonts/Montserrat-ExtraBold.woff) format("woff"), url(../fonts/Montserrat-ExtraBold.woff-2) format("woff-2");
    font-weight: 800;
    font-style: normal
}

@font-face {
    font-family: Montserrat;
    font-display: swap;
    src: url(../fonts/Montserrat-Black.woff) format("woff"), url(../fonts/Montserrat-Black.woff-2) format("woff-2");
    font-weight: 900;
    font-style: normal
}

body.lock {
    overflow: hidden
}

body {
    font-family: Montserrat;
    font-size: 1rem;
    line-height: 1.25
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    overflow: hidden
}

main {
    flex: 1 1 auto
}

.bold, b {
    font-weight: 700
}

.italic, i {
    font-style: italic
}

.decor {
    color: red
}

[href="#toform"] {
    color: red;
    font-weight: 700;
    cursor: pointer
}

.image img {
    width: 100%
}

ol.list {
    list-style: decimal
}

ul.list {
    list-style: disc
}

ol.list, ul.list {
    list-style-position: inside;
    display: grid;
    row-gap: 10px
}

.pop-up {
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .9);
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s, z-index .5s
}

.pop-up.active {
    z-index: 20;
    opacity: 1;
    pointer-events: all;
    transition: opacity .5s, z-index
}

.pop-up__wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center
}

.pop-up__body {
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 30px;
    position: relative;
    background-color: #ebe100;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px
}

.pop-up__body .fimg {
    margin-bottom: 10px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto
}

.pop-up__body img {
    max-width: 100%;
    width: 100%
}

.pop-up__body p {
    text-align: center;
    font-weight: 900
}

.pop-up__body p:last-of-type {
    color: #d70000
}

.pop-up__body button {
    background-color: #d70000;
    color: #fff;
    font-size: 1em;
    padding: 13px 17px;
    border-radius: 20px;
    margin-top: 10px;
    font-weight: 700;
    line-height: 1.2;
    font-family: inherit
}

.pop-up__body form {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 700
}

.pop-up__body form input {
    min-width: 100px;
    width: 100%;
    display: inline-block;
    padding: 18px 25px;
    border-radius: 35px;
    font-size: 1em
}

.pop-up__body form input::-moz-placeholder {
    opacity: .7
}

.pop-up__body form input::placeholder {
    opacity: .7
}

.pop-up__close-icon-wrapper {
    position: absolute;
    z-index: 1;
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transform: translate(8px, -8px);
    transition: transform .3s
}

.pop-up__close-icon-wrapper:hover {
    transform: translate(8px, -8px) scale(1.35)
}

.pop-up__close-icon {
    position: relative;
    width: 24px;
    height: 24px
}

.pop-up__close-icon:after, .pop-up__close-icon:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 1px
}

.pop-up__close-icon:after {
    transform: translate(-50%, -50%) rotate(45deg)
}

.pop-up__close-icon:before {
    transform: translate(-50%, -50%) rotate(-45deg)
}

.header {
    background-color: #ebe100
}

.header__top {
    display: flex;
    justify-content: center;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    color: #2d4878;
    position: relative;
    padding: 10px
}

.header__top:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2d4878
}

.header__logo {
    max-width: 70px
}

.header__logo img {
    width: 100%;
    max-width: 100%
}

.header__content {
    white-space: nowrap
}

.header__title {
    font-size: 1.375rem;
    line-height: 1.25;
    font-weight: 600
}

.header__subtitle {
    position: relative
}

.header__subtitle p {
    font-weight: 500;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 34px;
    text-align: center;
    background-color: #ebe100;
    position: relative;
    z-index: 1;
    max-width: -moz-max-content;
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
    padding-left: 5px;
    padding-right: 5px;
    text-transform: lowercase
}

.header__subtitle:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 2px;
    background: #2d4878
}

.header__bottom {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.25;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 7.9861111111%
}

.header__actual {
    display: inline-block;
    position: relative
}

.header__actual:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000
}

.header__actual p {
    padding-left: 30px;
    padding-right: 30px;
    display: inline-block
}

p {
    font-weight: 700;
    font-size: 1em
}

p:not(:last-child) {
    margin-bottom: 20px
}

h2 {
    font-weight: 900;
    font-size: 1.625rem;
    line-height: 1.25
}

.red {
    color: #d70000
}

.blue {
    color: #2400ff
}

img {
    max-width: 100%;
    width: 100%
}

.decor {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #fff
}

.grey-bg-text {
    margin-top: -10px;
    background: rgba(236, 236, 236, .89);
    padding: 20px;
    font-weight: 700
}

.grey-bg-text p {
    margin-bottom: 0;
    font-size: 1.125rem;
    line-height: 1.25;
    color: #565656
}

.decor-line {
    height: 3vmax;
    background-color: #ff79c1
}

.bigger {
    font-size: 1.5rem;
    line-height: 1.25
}

ul {
    list-style: disc inside
}

.green-decor {
    background-color: #c3fec6;
    padding: 20px
}

.green-decor p {
    font-size: 1.3em
}

.green-decor li {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.25
}

.green-decor li:not(:last-child) {
    margin-bottom: 30px
}

.purple-decor {
    background-color: #ecdbef;
    padding: 20px
}

.purple-decor li {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.25
}

.purple-decor li:not(:last-child) {
    margin-bottom: 10px
}

.red-decor {
    background-color: #d70000;
    padding: 20px;
    line-height: 1.5 !important;
    font-size: 1.375rem;
    color: #fff;
    font-weight: 900
}

.yellow {
    color: #ebe100
}

.main__container:nth-child(2) {
    padding-top: 40px
}

.main__container:nth-child(4) {
    background: url(../img/decor-img-3.png) 0 50%/100% 80% no-repeat
}

#b-quiz .quiz_wrap {
    height: 580px !important;
    position: relative;
    margin: 20px auto;
    max-width: 344px;
    width: 100%;
    border-radius: 10px;
    background: linear-gradient(180deg, #adfbb9 0, #e4fbad 100%), #e4fbad;
    overflow: hidden
}

#b-quiz .quiz_wrap * {
    font-family: Montserrat
}

#b-quiz .quiz_header {
    background: linear-gradient(180deg, #8840c0 0, #5a1784 71.67%);
    position: relative
}

#b-quiz .quiz_header:after {
    content: " ";
    display: block;
    position: absolute;
    bottom: -27px;
    background: url(../images/quiz_header-bg.png) 0 0/100% 100% no-repeat;
    height: 27px;
    width: 100%
}

#b-quiz .quiz_title {
    padding-top: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 135%;
    text-align: center;
    color: #fff
}

#b-quiz .quiz_title span {
    color: #f64777;
    display: block;
    margin-top: 5px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .7);
    font-weight: 800;
    font-size: 22px;
    line-height: 135%
}

#b-quiz .order_title {
    display: none;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 135%;
    text-align: center;
    color: #fff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, .7);
    padding-top: 17px
}

#b-quiz .order_title span {
    color: #e4fbad;
    font-size: 20px;
    display: block;
    margin-top: 4px
}

#b-quiz .quiz_question {
    display: flex;
    align-items: center;
    height: 48px;
    margin: 48px 38px 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
    color: #000
}

#b-quiz .quiz_question div {
    display: flex
}

#b-quiz .quiz_question div span {
    display: block;
    padding-right: 8px
}

#b-quiz .quiz_options {
    margin: 0 34px
}

#b-quiz .quiz_option {
    position: relative;
    padding-left: 40px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 21px;
    line-height: 135%;
    cursor: pointer;
    color: #7931b1
}

#b-quiz .quiz_option:before {
    transition: .2s;
    content: " ";
    display: block;
    background: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #959595;
    position: absolute;
    left: 0;
    top: -2px
}

#b-quiz .quiz_option:after {
    transition: .2s;
    content: " ";
    display: block;
    background: #7931b1;
    height: 14px;
    width: 14px;
    border-radius: 50%;
    position: absolute;
    left: 6px;
    top: 4px;
    opacity: 0
}

#b-quiz .quiz_option.active:before {
    animation: .5s radial-pulse
}

@keyframes radial-pulse {
    0% {
        box-shadow: 0 0 1px 2px #7931b1
    }
    100% {
        box-shadow: 0 0 4px 5px transparent
    }
}

#b-quiz .quiz_option.active:before, #b-quiz .quiz_option:hover:before {
    border: 1px solid #7931b1
}

#b-quiz .quiz_option.active:after, #b-quiz .quiz_option:hover:after {
    opacity: 1
}

#b-quiz .quiz_nums {
    padding: 0 32px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 65px
}

#b-quiz .quiz_num {
    transition: 1s;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    background: #e5d2f2;
    border: 1px solid #fff;
    color: #9747ff
}

#b-quiz .quiz_num span {
    transition: 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    width: 34px;
    background: #fff;
    border-radius: 50%
}

#b-quiz .quiz_num.active {
    background: #e5d2f2;
    border: 1px solid #a260d4
}

#b-quiz .quiz_num.active span {
    background: linear-gradient(180deg, #962dd8 0, #ad74da 100%), #f64777;
    color: #fff
}

#b-quiz .quiz_nums:before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: calc(100% - 64px);
    height: 1px;
    background: #a260d4
}

#b-quiz .quiz_footer {
    width: 100%;
    position: absolute;
    bottom: 20px;
    color: #000;
    text-align: center;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px
}

#b-quiz .quiz_footer span {
    font-weight: 700;
    color: #5a1784
}

#b-quiz #prod_img, #b-quiz .quiz_step {
    transition: .5s;
    display: none;
    opacity: 0;
    margin-top: -7px
}

#b-quiz #prod_img.active, #b-quiz .quiz_step.active {
    opacity: 1;
    margin-top: 0
}

#b-quiz .quiz_timer {
    margin-top: 39px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #000
}

#b-quiz .quiz_timer div {
    margin-top: 4px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 27px;
    color: #f64777;
    text-align: center
}

#b-quiz .quiz_timer span {
    display: inline-block;
    width: 32px
}

#b-quiz .quiz_prices {
    margin-top: 16px;
    margin-bottom: 12px;
    text-align: center
}

#b-quiz .quiz_prices .quiz_oldprice {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    text-decoration-line: line-through;
    color: #000
}

#b-quiz .quiz_prices .quiz_newprice {
    margin-top: 4px;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #5a1784
}

#b-quiz .quiz_form form {
    width: 280px;
    margin: 0 auto
}

#b-quiz .quiz_form form input {
    line-height: 0 !important;
    padding: 12px 24px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    display: block;
    background: #fff;
    border: 1px solid #5a1784;
    border-radius: 24px;
    width: 100%;
    margin-bottom: 16px;
    position: relative
}

#b-quiz .quiz_form form input.active:invalid {
    border: 1px solid red
}

#b-quiz .quiz_form form input.active:-webkit-autofill:active:valid, #b-quiz .quiz_form form input.active:-webkit-autofill:focus:valid, #b-quiz .quiz_form form input.active:-webkit-autofill:hover:valid, #b-quiz .quiz_form form input.active:-webkit-autofill:valid, #b-quiz .quiz_form form input.active:valid {
    border: 1px solid #68c853;
    background-color: #fff !important;
    background-image: url(../images/xchecked.png.pagespeed.ic.IPmsrzfpwe.webp) !important;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    background-position: top 50% right 16px
}

#b-quiz .quiz_form form button {
    text-transform: uppercase;
    margin-top: 24px;
    border-radius: 24px;
    height: 48px;
    display: block;
    text-align: center;
    width: 100%;
    background: #f64777;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 48px;
    letter-spacing: .03em;
    border: none;
    color: #fff;
    cursor: pointer
}

@media (min-width: 769px) {
    body {
        font-size: 1.5rem;
        line-height: 1.25
    }

    .image {
        margin-left: auto;
        margin-right: auto
    }

    .image_50 {
        max-width: 50%
    }

    .image_60 {
        max-width: 60%
    }

    .image_70 {
        max-width: 70%
    }

    .image_80 {
        max-width: 80%
    }

    .image_90 {
        max-width: 90%
    }

    .image_100 {
        max-width: 100%
    }

    .pop-up__body .fimg {
        max-width: 400px;
        margin-bottom: 20px
    }

    .header__top {
        -moz-column-gap: 34px;
        column-gap: 34px;
        padding-top: 32px;
        padding-bottom: 48px
    }

    .header__logo {
        max-width: 105px
    }

    .header__title {
        font-size: 1.875rem;
        line-height: 1.25
    }

    .header__subtitle p {
        font-size: 1.25rem;
        line-height: 1.25
    }

    .header__bottom {
        padding-top: 18px;
        padding-bottom: 30px;
        font-size: 1.5rem;
        line-height: 1.25
    }

    .header__actual:after {
        bottom: -5px;
        height: 3px
    }

    p:not(:last-child) {
        margin-bottom: 40px
    }

    h2 {
        font-size: 1.875rem;
        line-height: 1.25
    }

    .main__container {
        padding-right: 7.9861111111%;
        padding-left: 7.9861111111%;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto
    }

    .decor {
        margin-top: 50px;
        margin-bottom: 40px;
        padding: 15px 30px;
        border-radius: 15px
    }

    .grey-bg-text p {
        font-size: 1.25rem;
        line-height: 1.25
    }

    .bigger {
        font-size: 1.75rem;
        line-height: 1.25
    }

    .green-decor li, .purple-decor li {
        font-size: 1.25rem;
        line-height: 1.25
    }

    .red-decor {
        font-size: 1.875rem;
        line-height: 1.25
    }
}

@media (min-width: 1000px) {
    body {
        font-size: 1.875rem;
        line-height: 1.25
    }

    .header__title {
        font-size: 2.375rem;
        line-height: 1.25
    }

    .header__subtitle p {
        font-size: 1.5rem;
        line-height: 1.25
    }

    .header__bottom {
        font-size: 2rem;
        line-height: 1.25
    }

    h2 {
        font-size: 2.375rem;
        line-height: 1.25
    }

    .grey-bg-text p {
        font-size: 1.5rem;
        line-height: 1.25
    }

    .bigger {
        font-size: 2.125rem;
        line-height: 1.25
    }

    .green-decor li, .purple-decor li {
        font-size: 1.5rem;
        line-height: 1.25
    }

    .red-decor {
        font-size: 2.375rem;
        line-height: 1.25
    }
}

@media (min-width: 1200px) {
    body {
        font-size: 2.1875rem;
        line-height: 1.25
    }

    .header__title {
        font-size: 3.125rem;
        line-height: 1.25
    }

    .header__subtitle p {
        font-size: 1.75rem;
        line-height: 1.25
    }

    .header__bottom {
        font-size: 2.5rem;
        line-height: 1.25
    }

    h2 {
        font-size: 2.6875rem;
        line-height: 1.25
    }

    .grey-bg-text p {
        font-size: 1.75rem;
        line-height: 1.25
    }

    .bigger {
        font-size: 2.5rem;
        line-height: 1.25
    }

    .green-decor li, .purple-decor li {
        font-size: 1.75rem;
        line-height: 1.25
    }

    .red-decor {
        font-size: 2.6875rem;
        line-height: 1.25
    }

    .main__container:first-child {
        background: url(../img/decor-img-1.png) 0 7%/contain no-repeat
    }

    .main__container:nth-child(2) {
        background: url(../img/decor-img-2.png) 0 -20%/contain no-repeat
    }
}

@media (max-width: 768px) {
    .main__container {
        padding-right: 3.4722222222%;
        padding-left: 3.4722222222%
    }

    .main__container:first-child {
        background: url(../img/decor-img-1.png) 0 9%/contain no-repeat
    }
}

@media (max-width: 668px) {
    .main__container:nth-child(2) {
        background: url(../img/decor-img-2.png) 0 -20%/contain no-repeat
    }
}

@media (max-width: 500px) {
    .main__container:first-child {
        background: url(../img/decor-img-1.png) 0 15%/contain no-repeat
    }

    .main__container:nth-child(2) {
        background: url(../img/decor-img-2.png) 0 -50%/cover no-repeat
    }
}

@media (max-width: 360px) {
    #b-quiz .quiz_question {
        margin: 48px 18px 20px
    }

    #b-quiz .quiz_options {
        margin: 0 14px
    }
}

@media (min-width: 769px) and (max-width: 1199px) {
    .main__container:first-child {
        background: url(../img/decor-img-1.png) 0 7%/contain no-repeat
    }

    .main__container:nth-child(2) {
        background: url(../img/decor-img-2.png) 0 -20%/contain no-repeat
    }
}

@media (min-width: 669px) and (max-width: 768px) {
    .main__container:nth-child(2) {
        background: url(../img/decor-img-2.png) 0 -60%/contain no-repeat
    }
}