@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body,
html {
    overflow: hidden !important;
}

.overflow__after div img {
    max-height: 500px;
    max-width: 500px;
}

.header {
    transition: all .5s ease;
}

.next__btn.margin {
    margin-top: 20px;
}

main {
    padding-top: 110px !important;
    height: 100vh;
    position: relative;
    overflow: hidden !important;
}

.background-block {
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: url(/assets/img/Capa\ 1.webp);
}

#quiz__start {
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease;
}

#quiz__start.active {
    visibility: visible;
    opacity: 1;
}

.quiz__start-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 30px;
}

.quiz__start-image {
    max-width: 400px;
    max-height: 400px;
    object-fit: contain;
}

.quiz__start-image img{
    max-width: 400px;
    max-height: 400px;
    object-fit: contain;
}

.quiz__start-title {
    font-family: Inter;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: 0em;
    color: rgba(11, 21, 30, 1);
}

.quiz__start-info {
    font-family: Inter;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: center;
    color: #000;
}

.quiz__start-btn {
    padding: 10px 30px;
    font-family: Inter;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 80px;
    border-radius: 5px;
    color: #fff;
    background: rgba(247, 151, 129, 1);
    outline: unset;
    border: none;
    animation: pulse 2s infinite;
    cursor: pointer;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 151, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(247, 151, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 151, 129, 0);
    }
}

/* quiz main */

.quiz__main {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-top: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease;
}

.quiz__main.active {
    transition: all .5s ease;
    visibility: visible;
    opacity: 1;
}

.card__wrapper {
    background: rgba(225, 238, 249, 1);
    padding-bottom: 36px;
    border-radius: 35px;
}

.card__body-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 76px 103px 10px 103px;
    max-width: 853px;
    max-height: 714px;
}

@media (max-height: 850px) and (max-width: 1800px) {
    .card__body-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 36px 103px 10px 103px;
        max-width: 853px;
        max-height: 714px;
    }
}

.progressbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    gap: 25px;
    z-index: 51;
    transition: all .5s ease;
}

.progressbar {
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.52);
    position: relative;
    transition: all .5s ease;
}

.progressbar-done {
    content: "";
    position: absolute;
    height: 5px;
    width: 11.1%;
    background: #6C97BC;
    border-radius: 5px;
    transition: all .5s ease;
}

.progressbar-wrapper span {
    color: #264158;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
}

.progressbar-wrapper p {
    color: #264158;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.card__body {
    width: 100%;
}

.card__text {
    width: 100%;
    max-width: 647px;
    color: #0B151E;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    height: 125px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.options {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.option {
    text-align: left;
    width: 647px;
    height: 70px;
    border-radius: 45px;
    background: #FFF;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 24px;
    padding: 24px 0 24px 18px;
    cursor: pointer;
    transition: all .5s ease;
}

.option.active {
    background: #6C97BC;
    color: #fff;
}

.round {
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background-color: #E1EEF9;
    transition: all .5s ease;
    border: 1px solid #E1EEF9;
}

.option.active .round {
    background: #346B98;
    border: 1px solid #fff;
}

.stats-after {
    display: none;
}

.stats-after.active {
    display: block;
    margin-top: 20px;
}

.stats-after-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    max-height: 190px;
    border-radius: 35px;
    max-width: 800px;
    background: #98C5EB;
    padding: 35px 80px;
}

.stats-title {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.stats-bar {
    height: 39px;
    width: 384px;
    border-radius: 2.258px;
    background: #FFF;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.stats-bar-80 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 39px;
    width: 80%;
    background: #D2E2EF;
    text-align: center;
    color: rgba(47, 63, 74, 1);
    color: #2F3F4A;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    border-top-left-radius: 2.258px;
    border-bottom-left-radius: 2.258px;
}

.stats-bar-20 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 39px;
    width: 20%;
    color: rgba(47, 63, 74, 1);
    background: #fff;
    text-align: center;
    color: #2F3F4A;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    border-top-right-radius: 2.258px;
    border-bottom-right-radius: 2.258px;
}

.next__btn {
    padding: 20px 120px;
    border-radius: 5px;
    background: #F79781;
    border: none;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 50px;
    cursor: pointer;
    transition: all .5s ease;
    opacity: 1;
}

.next__btn:disabled {
    opacity: .5;
    cursor: unset;
    cursor: not-allowed;
}

.prev__btn {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin: 0 0 0px 36px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #264158;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    opacity: 1;
    pointer-events: all;
    transition: all .5s ease;
}

.prev__btn span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev__btn.hidden{
    transition: all .5s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* result */

.result-container {
    display: flex;
    align-items: flex-start;
}

.quiz__result {
    display: flex;
    align-items: flex-start;
    height: 100vh;
    justify-content: flex-end;
    visibility: hidden;
    opacity: 0;
    transition: all .5s ease;
}

.quiz__result.active {
    visibility: visible;
    opacity: 1;
    transition: all .5s ease;
}

.quiz__result .section__left {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 35px;
    justify-content: flex-start;
}

.quiz__result .section__right {
    height: 100%;
}

.section__right-wrapper img {
    max-width: 100%;
    max-height: 100%;
}

.section__left-wrapper {
    padding: 60px 80px;
    border-radius: 35px;
    background: #E1EEF9;
    margin-bottom: 34px;
}

.section__left-wrapper .title__thank {
    color: #0B151E;
    text-align: center;
    font-family: Inter;
    font-size: 45px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.section__left-wrapper .title__info-thank {
    color: #0B151E;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 51px;
    margin-top: 30px;
}

.quiz-contacts input {
    width: 464px;
    height: 73px;
    margin-bottom: 10px;
    padding: 26px 26px;
    border-radius: 18px !important;
    border: 1px solid #97BFE0 !important;
    background: #FFF !important;
}

.quiz-contacts input::placeholder {
    color: rgba(38, 50, 56, 0.65);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contacts-form__col {
    margin-right: unset;
}

.send__btn {
    width: 100%;
    height: 73px;
    border-radius: 15px;
    border: unset;
    outline: unset;
    background: #F79781;
    color: rgba(255, 255, 255, 1);
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    cursor: pointer;
}

.send__btn:hover {
    background: #f5775b;
    -webkit-box-shadow: 3px 3px 15px #f5775b;
    box-shadow: 3px 3px 15px #f5775b;
}

.form__info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 21px;
}

/* overflows */

.hide__overflow {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.overflow__after {
    width: 100%;
    height: 100vh;
    background: #274A9A;
    z-index: 50;
    position: relative;
}

/* overflow 1,2,3,4 */

.overflow1,
.overflow2,
.overflow3{
    position: absolute;
    left: -100%;
    top: -100%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: .5s ease;
}

#overflow__fact-aim.active,
#overflow__fact-sleep.active,
#overflow__fact-smth.active {
    left: unset;
    top: unset;
    opacity: 1;
    transition: all .5s ease;
}

.wrapper-overflow {
    position: absolute;
    top: unset;
    transform: scale(0.8);
}

.progressbar-wrapper.overflow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    gap: 25px;
    z-index: 51;
    transition: all .5s ease;
}

.title-overflow {
    color: #FFF;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin: 30px 0;
}

.progressbar.overflow {
    background: rgba(255, 255, 255, 0.26);
}

.progressbar-done.overflow {
    background: #fff;
}

.pagination-questions.overflow {
    color: #fff;
}

#number.overflow {
    color: #fff;
}

.title-desc-overflow {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.overflowNext {
    padding: 20px 120px;
    border-radius: 5px;
    background: #F79781;
    border: none;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 50px;
    cursor: pointer;
    transition: all .5s ease;
    opacity: 1;
    pointer-events: all;
}

.overflowNext.pi {
    pointer-events: none;
}

/* overflow-result */

#overflow__result {
    position: absolute;
    left: -100%;
    top: -100%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: .5s ease;
}

#overflow__result.active {
    left: unset;
    top: unset;
    opacity: 1;
    transition:all .5s ease;
}

.wrapper-overflow {
    max-width: 590px;
}

.title-result-analytics {
    color: #FFF;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
}

.progress-bar-analytics {
    position: relative;
    height: 12px;
    width: 100%;
    border-radius: 12px;
    background: rgba(211, 221, 230, 0.45);
    margin: 78px 0px;
}

.progress-done-analytics {
    position: absolute;
    content: "";
    width: 0%;
    height: 12px;
    border-radius: 12px;
    background: rgba(210, 226, 239, 1);
    transition: all 3s ease;
}

.progress-done-analytics.active {
    width: 100%;
    transition: all 3s ease;
}

.title-result-description {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* media */

@media (max-width: 1539px) {

    .stats-after-wrapper {
        max-width: 650px;
    }

    main {
        padding-top: 79px !important;
        height: 100vh;
        position: relative;
    }

    .quiz__main {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        margin-top: 10px;
        visibility: hidden;
        opacity: 0;
        transition: all .5s ease;
    }

    .quiz__result {
        float: right;
        width: 97%;
        display: flex;
        align-items: center;
        height: 80vh;
        justify-content: flex-end;
        visibility: hidden;
        opacity: 0;
        transition: all .5s ease;
    }

    .section__right-wrapper {
        padding-right: 20px;
    }

    .section__right-wrapper img {
        max-width: 100%;
        max-height: 100%;
    }

    .section__left-wrapper {
        flex-direction: column;
        display: flex;
        width: 100%;
        padding: 60px 20px;
        border-radius: 35px;
        background: #E1EEF9;
        margin-bottom: 34px;
        align-items: center;
    }

    .quiz-contacts input {
        width: 100%;
        height: 73px;
        margin-bottom: 10px;
        padding: 26px 26px;
        border-radius: 18px !important;
        border: 1px solid #97BFE0 !important;
        background: #FFF !important;
    }

    .send__btn {
        width: 100%;
        height: 73px;
        border-radius: 15px;
        border: unset;
        outline: unset;
        background: #F79781;
        color: rgba(255, 255, 255, 1);
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        cursor: pointer;
    }

    .quiz__result .section__left {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0px;
        justify-content: flex-start;
    }

    .section__left-wrapper .title__thank {
        color: #0B151E;
        text-align: center;
        font-family: Inter;
        font-size: 40px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    form.contact__form {
        width: 100%;
    }

    .result-container {
        display: flex;
        align-items: center;
    }
    .wrapper-overflow {
        top: 13%;
        transform: scale(0.75);
    }
    #overflow__result .wrapper-overflow {
        top: 40%;
    }

    .option {
        text-align: left;
        width: 647px;
        height: 60px;
        border-radius: 45px;
        background: #FFF;
        border: none;
        outline: none;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: row-reverse;
        gap: 24px;
        padding: 24px 0 24px 18px;
        cursor: pointer;
        transition: all .5s ease;
    }

    .card__body-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 50px 60px 20px;
        max-width: 853px;
        max-height: 714px;
    }

    .quiz__start-image {
        max-width: 480px;
        max-height: 480px;
        object-fit: contain;
    }
}

/* @media (max-height: 1400px) and (max-width: 1076px) {
    .card__body-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 76px 103px 10px 103px;
        max-width: 853px;
        max-height: 714px;
    }
} */

@media (max-width: 1279px) {

    .stats-after-wrapper {
        max-width: 500px;
    }

    .quiz__result {
        float: right;
        width: 97%;
        margin-top: 30px;
        display: flex;
        align-items: center;
        height: 80vh;
        justify-content: flex-end;
        visibility: hidden;
        opacity: 0;
        transition: all .5s ease;
    }
    .wrapper-overflow {
        transform: scale(0.75);
    }

    .section__left-wrapper .title__thank {
        color: #0B151E;
        text-align: center;
        font-family: Inter;
        font-size: 35px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .section__left {
        margin-right: 45px;
    }
}

@media (max-width: 1076px) {
    .card__body-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 40px 40px 10px 40px;
        max-width: 853px;
        max-height: 714px;
    }
}

@media (max-width: 991px) {
    .card__body-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 40px;
        max-width: 853px;
        max-height: 714px;
    }

    .stats-after-wrapper {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 14px;
        max-width: 450px;
        max-height: 190px;
        border-radius: 35px;
        background: #98C5EB;
        padding: 35px 20px;
        max-width: 647px;
    }

    .next__btn {
        padding: 20px 120px;
        border-radius: 5px;
        background: #F79781;
        border: none;
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        margin-top: 50px;
        cursor: pointer;
        transition: all .5s ease;
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .card__body-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 40px 0 0 0;
        max-width: 853px;
        max-height: 714px;
    }

    .progressbar-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        width: 90%;
        gap: 25px;
        z-index: 51;
        transition: all .5s ease;
    }

    .options {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
    }

    .option {
        text-align: left;
        width: 100%;
        height: 70px;
        border-radius: 45px;
        background: #FFF;
        border: none;
        outline: none;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: row-reverse;
        gap: 24px;
        padding: 24px 0 24px 18px;
        cursor: pointer;
        transition: all .5s ease;
    }

    .prev__btn {
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin: 0 0 0px 36px;
        border: none;
        outline: none;
        background-color: transparent;
        color: #264158;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        cursor: pointer;
        opacity: 1;
        pointer-events: all;
        transition: all .5s ease;
        margin-top: 30px;
    }

    .stats-after-wrapper {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 14px;
        max-height: 190px;
        max-width: 500px;
        border-radius: 35px;
        background: #98C5EB;
        padding: 40px;
        width: 90%;
        margin: auto;
        max-width: 647px;
    }

    .result-container {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        padding: 0 20px;
    }

    .quiz__result .section__left {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0px;
        justify-content: flex-start;
        margin-right: 0;
        margin: 0;
    }

    .quiz__result {
        float: right;
        width: 100%;
        margin-top: 0px;
        display: block;
        height: 80vh;
        visibility: hidden;
        opacity: 0;
        transition: all .5s ease;
    }

    .section__left .section__left-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        padding: 30px 0;
        margin-bottom: 17px;
    }

    .section__left-wrapper .title__thank {
        color: #0B151E;
        text-align: center;
        font-family: Inter;
        font-size: 30px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }

    .section__right-wrapper img {
        width: 100vw;
        height: 35vh;
        max-width: 100%;
        max-height: 100%;
    }

    form.contact__form {
        width: 90%;
    }

    .contacts-form__col {
        /* width: calc(50% - 10px); */
        width: 100%;
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
        margin-right: 0;
        margin-bottom: 0px;
    }

    .send__btn {
        width: 100%;
        height: 55px;
        border-radius: 15px;
        border: unset;
        outline: unset;
        background: #F79781;
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        cursor: pointer;
    }

    .section__left-wrapper .title__info-thank {
        color: #0B151E;
        text-align: center;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin-bottom: 20px;
        margin-top: 10px;
    }

    .quiz-contacts input {
        width: 100%;
        height: 55px;
        margin-bottom: 10px;
        padding: 13px 13px;
        border-radius: 18px !important;
        border: 1px solid #97BFE0 !important;
        background: #FFF !important;
    }

    .quiz-contacts input::placeholder {
        color: rgba(38, 50, 56, 0.59);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .card__container {
        width: 100%;
    }

    .card__body {
        width: 90%;
    }

    .section {
        overflow: hidden;
    }

    .section__right-wrapper {
        padding-right: 0;
    }

    form#quiz-form {
        padding: 0 20px;
        width: 100%;
    }

    form#quiz-form input {
        height: 55px;
        padding: 10px 60px;
    }
}

@media(max-width: 500px) {

    .quiz__start-wrapper {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .options {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .quiz__start-info {
        font-family: Inter;
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0em;
        text-align: center;
        color: #000;
    }

    .section__right-wrapper img {
        width: 90vw;
        height: 25vh;
        max-width: 100%;
        max-height: 100%;
    }

    .quiz__start-image img {
        width: 90vw;
    }

    .quiz__start-title {
        text-align: center;
        font-family: Inter;
        font-size: 30px;
        font-weight: 700;
        line-height: 36px;
        letter-spacing: 0em;
        color: rgba(11, 21, 30, 1);
    }

    .quiz__main {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        margin-top: 20px;
        visibility: hidden;
        opacity: 0;
        transition: all .5s ease;
    }

    .wrapper-overflow img {
        width: 90vw;
    }

    .stats-title {
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .stats-bar {
        height: 20px;
        width: 272px;
        border-radius: 2.258px;
        background: #FFF;
        text-align: center;
        display: flex;
        align-items: center;
        flex-direction: row;
        margin-top: 17px;
    }

    .next__btn {
        height: 55px;
        padding: 0px 80px;
        border-radius: 5px;
        background: #F79781;
        border: none;
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        margin-top: 20px !important;
        cursor: pointer;
        transition: all .5s ease;
        opacity: 1;
    }

    .card__text {
        width: 100%;
        max-width: 647px;
        color: #0B151E;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        height: 125px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .option {
        text-align: left;
        width: 100%;
        height: 45px;
        border-radius: 45px;
        background: #FFF;
        border: none;
        outline: none;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: row-reverse;
        gap: 24px;
        padding: 0 0 0 20px;
        cursor: pointer;
        transition: all .5s ease;
    }

    .round {
        max-width: 15px;
        min-width: 15px;
        max-height: 15px;
        min-height: 15px;
        border-radius: 50%;
        background-color: #E1EEF9;
        transition: all .5s ease;
        border: 1px solid #E1EEF9;
    }

    .stats-after-wrapper {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 14px;
        /* max-height: 190px; */
        height: 150px;
        border-radius: 35px;
        background: #98C5EB;
        padding: 10px;
        width: 90%;
        margin: auto;
        /* max-width: 647px; */
    }

    .stats-bar {
        width: 90%;
    }

    .stats-bar-80 {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 20px;
        width: 80%;
        background: #D2E2EF;
        text-align: center;
        color: rgba(47, 63, 74, 1);
        color: #2F3F4A;
        text-align: center;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        border-top-left-radius: 2.258px;
        border-bottom-left-radius: 2.258px;
    }

    .stats-bar-20 {
        height: 20px;
        font-size: 14px;
    }

    .next__btn.margin{
        margin-top: 20px !important;
    }

    .prev__btn {
        transform: scale(.9);
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin: 0 0 0px 36px;
        border: none;
        outline: none;
        background-color: transparent;
        color: #264158;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        cursor: pointer;
        opacity: 1;
        pointer-events: all;
        transition: all .5s ease;
        margin-top: 20px;
    }

    .wrapper-overflow {
        transform: scale(0.8);
    }

    .title-overflow {
        color: #FFF;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        margin: 10px 0;
    }

    .title-desc-overflow {
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    .title-overflow {
        color: #FFF;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        margin: 10px 0;
    }

    .overflowNext {
        padding: 20px 120px;
        border-radius: 5px;
        background: #F79781;
        border: none;
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        margin-top: 20px;
        cursor: pointer;
        transition: all .5s ease;
        opacity: 1;
    }

    .overflow1, .overflow2, .overflow3 {
        position: absolute;
        left: -100%;
        top: -100%;
        opacity: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        transition: .5s ease;
    }

    form#quiz-form input::placeholder {
        color: rgba(38, 50, 56, 0.59);
        font-family: 'Montserrat';
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    
    form#quiz-form input {
        color: rgba(38, 50, 56, 0.59);
        font-family: 'Montserrat';
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 10px 30px;
    }

    #overflow__result .wrapper-overflow {
        top: 40% !important;
    }

    .progress-bar-analytics {
        position: relative;
        height: 12px;
        width: 100%;
        border-radius: 12px;
        background: rgba(211, 221, 230, 0.45);
        margin: 39px 0px;
    }

    .title-desc-overflow {
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
}

@media(max-width: 359px) {

    .progressbar-wrapper.overflow {
        margin-bottom: 370px;
    }

    .card__text {
        width: 100%;
        max-width: 647px;
        color: #0B151E;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        height: 80px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .options {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .next__btn {
        height: 45px;
        padding: 0px 80px;
        border-radius: 5px;
        background: #F79781;
        border: none;
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
        margin-top: 10px !important;
        cursor: pointer;
        transition: all .5s ease;
        opacity: 1;
    }

    .stats-after.active {
        display: block;
        margin-top: 10px;
    }
}

@media (max-height:710px) and (min-width: 1239px) {
    .wrapper-overflow {
        position: static;
    }  

    .card__wrapper {
        background: rgba(225, 238, 249, 1);
        padding: 20px 20px 36px;
        border-radius: 35px;
    }

    .card__text {
        width: 100%;
        max-width: 647px;
        color: #0B151E;
        font-family: Inter;
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        height: 125px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quiz__main {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        margin-top: 20px !important;
        visibility: hidden;
        opacity: 0;
        transition: all .5s ease;
    }

    form#quiz-form input {
        height: 50px !important;
        padding: 10px 60px;
    }

    .progressbar-wrapper.overflow {
        margin-bottom: 450px;
    }

    .option {
        text-align: left;
        width: 90%;
        height: 60px;
        border-radius: 45px;
        background: #FFF;
        border: none;
        outline: none;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: row-reverse;
        gap: 24px;
        padding: 24px 0 24px 18px;
        cursor: pointer;
        transition: all .5s ease;
    }   

    .options {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        width: 617px;
    }

    .button.button--secondary.send__btn {
        padding: 0px;
        height: 50px !important;
    }

    #result .section__right-wrapper img {
        width: 80vw;
        height: auto;
        max-width: 100%;
        max-height: 100%;
    }

    .stats-after-wrapper {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 14px;
        width: 85%;
        max-height: 150px;
        border-radius: 35px;
        background: #98C5EB;
        padding: 15px 40px;
    }

    .card__body-wrapper {
        padding: 0px 0 0 0 !important;
    }
}

@media (max-height: 799px) and (max-width: 459px) {
    .quiz__start-image img {
        max-width: 300px;
        max-height: 350px;
        object-fit: contain;
    }
}

@media (max-height: 699px) and (max-width: 399px) {
    .quiz__start-wrapper {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px !important;
    }
    .card__wrapper {
        background: rgba(225, 238, 249, 1);
        padding: 0;
        border-radius: 35px;
    }
    .quiz__start-title {
        text-align: center;
        font-family: Inter;
        font-size: 24px;
        font-weight: 700;
        line-height: 36px;
        letter-spacing: 0em;
        color: rgba(11, 21, 30, 1);
    }
    .card__text {
        font-size: 18px;
        height: 100%;
        margin: 10px 0;
    }
    .progressbar-wrapper.overflow {
        opacity: 0;
        transition: all .5s;
    }
    .progressbar-wrapper {
        opacity: 1;
        transition: all .5s;
    }
    .quiz__start-info {
        font-family: Inter;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0em;
        text-align: center;
        color: #000;
    }
    form#quiz-form input {
        height: 35px !important;
        padding: 10px 10px;
    }
    form#quiz-form {
        padding: 0 10px;
        width: 100%;
    }
    .button.button--secondary.send__btn {
        padding: 0px;
        height: 35px !important;
    }
    .result-container {
        display: flex;
        align-items: center;
        flex-direction: column-reverse;
        padding: 0 10px;
    }
    .container {
        padding: 0 10px;
    }
    .card__container {
        width: 100%;
    }
    .options {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    .progressbar-wrapper p {
        color: #264158;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .progressbar-wrapper span {
        color: #264158;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 200;
        line-height: normal;
    }
    .progressbar-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        width: 90%;
        gap: 25px;
        z-index: 51;
        padding-top: 10px;
        transition: all .5s ease;
    }
    .option {
        text-align: left;
        width: 95%;
        height: 60px;
        border-radius: 45px;
        background: #FFF;
        border: none;
        outline: none;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex-direction: row-reverse;
        gap: 5px;
        padding-left: 10px;
        font-size: 14px;
        padding: 0 0 0 5px;
        cursor: pointer;
        transition: all .5s ease;
    }
    .card__body {
        width: 95%;
    }
    .card__wrapper {
        padding-bottom: 18px;
    }
    .prev__btn {
        transform: scale(.8);
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        margin: 15px 0 0px 20px;
        border: none;
        outline: none;
        background-color: transparent;
        color: #264158;
        font-family: Inter;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        cursor: pointer;
        opacity: 1;
        pointer-events: all;
        transition: all .5s ease;
    }
    .stats-after-wrapper {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: 14px;
        width: 95%;
        max-height: 150px;
        border-radius: 35px;
        background: #98C5EB;
        padding: 15px 10px;
    }
    .next__btn {
        height: 35px !important;
        padding: 0px 80px;
        border-radius: 5px;
        background: #F79781;
        border: none;
        color: #FFF;
        text-align: center;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 10px !important;
        cursor: pointer;
        transition: all .5s ease;
        opacity: 1;
    }
    .section {
        height: 100%;
    }
    .form__info svg {
        width: 25px;
    }
    #result .section__left .section__left-wrapper {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        padding: 10px 0 !important;
        margin-bottom: 5px;
    }
    main {
        height: 100vh;
        position: relative;
        padding-top: 50px !important;
        overflow: visible;
    }
    .header__logo-icon {
        font-size: 125px;
        height: auto;
    }
}