@font-face {
    font-family: 'Montserrat';
    src: url(./assets/fonts/Montserrat.ttf) format('truetype');
}

@font-face {
    font-family: 'Segoe UI';
    src: url(./assets/fonts/SegoeUIRegular.ttf) format('truetype');
}

@font-face {
    font-family: 'Golos';
    src: url(./assets/fonts/GolosText-Regular.ttf) format('truetype');
}

body {
    margin: 0;
    scroll-behavior: smooth
}

.quiz-hidden {
    display: none !important;
}

.quiz-page-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.quiz-header {
    background-color: #0C4488;
    height: 124px;
    min-height: 124px;
}

.quiz-header-container {
    padding-top: 32px;
    margin: 0 auto;
    width: 89%;
    max-width: 1440px;
}

.quiz-header-logo {
    position: relative;
    z-index: 5;
    display: flex;
    gap: 4px;
    color: #fff;
    text-decoration: none;
    align-items: center;
    width: fit-content;
}

.quiz-header-logo:hover,
.quiz-header-logo:active{
    color: #fff;
    text-decoration: none;
}

.quiz-header-logo-text {
    font-family: Golos, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 13px;
}

.quiz-header-logo-img {
    width: 36px;
    height: 44px;
}

.quiz-footer {
    background-color: #0C4488;
    padding-bottom: 80px;
}

.quiz-footer-container {
    padding-top: 148px;
    margin: 0 auto;
    width: 89%;
    display: flex;
    flex-direction: column;
    color: #fff;
    font-family: Montserrat, sans-serif;
    max-width: 1440px;
    position: relative;
    z-index: 5;
}

.quiz-footer-information {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.quiz-footer-content {
    width: 45%;
    min-width: 45%;
    display: flex;
    flex-direction: column;
}

.quiz-footer-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 12px;
    margin-top: 0;
}

.quiz-footer-logo {
    display: flex;
    font-size: 24px;
    font-weight: 700;
    line-height: 27px;
    gap: 25px;
    color: #fff;
    text-decoration: none;
    width: fit-content;
}

.quiz-footer-logo:hover,
.quiz-footer-logo:active{
    color: #fff;
    text-decoration: none;
}

.quiz-footer-logo-img {
    width: 60px;
    height: 70px;
    align-self: center;
}

.quiz-footer-logo-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 27px;
    font-family: Golos, sans-serif;
}

.quiz-footer-logo-subtitle {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    font-family: Segoe UI, sans-serif;
}

.quiz-footer-social {
    display: flex;
    gap: 20px;
    margin-top: 26px;
}

.quiz-footer-social-item {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: #F3F3F3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: 0;
    transition: .5s;
}

.quiz-footer-social-item svg {
    fill: #767676;
    width: 21px;
    height: 21px;
    transition: .3s;
}

.quiz-footer-social-item.vk svg,
.quiz-footer-social-item.ok svg{
    transform: scale(1.5);
}

.quiz-footer-social-item.vk:hover svg,
.quiz-footer-social-item.ok:hover svg{
    transform: scale(1.8);
}

.quiz-footer-social-item.tg:hover svg{
    transform: scale(1.3);
}

.quiz-footer-copyright {
    display: flex;
    gap: 11px;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
}

.quiz-footer-copyright-img {
    width: 25px;
    height: 25px;
}

.quiz-footer-copyright a,
.quiz-footer-copyright a:hover,
.quiz-footer-copyright a:active {
    color: #A8D7FF;
    text-decoration: none;
}

.quiz-main {
    flex-grow: 1;
}

.quiz-main .quiz-start {
    width: 100%;
}

.quiz-start-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.quiz-questions {
    width: 89%;
    margin: 0 auto;
    position: relative;
    font-family: Montserrat, sans-serif;
    max-width: 1440px;
}

.question-container {
    margin-top: 68px;
}

.question-label {
    height: 40px;
    width: 170px;
    background-color: #0C4488;
    color: #fff;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    margin: 0;
    padding: 8px 0;
    box-sizing: border-box;
}

.question-content {
    margin-top: 44px;
}

.question-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 5%;
}

.question-content-text {
    width: 66%;
}

.question-content-img {
    width: 28%;
    align-self: center;
}

.question-content-img img {
    width: 100%;
}

.question-title {
    color: #212121;
    font-size: 24px;
    font-weight: 600;
    line-height: 150%;
}

.question-text {
    margin: 20px 0;
    background-color: #0C4488;
    box-sizing: border-box;
    padding: 28px;
    border-radius: 0 40px 40px;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    color: #fff
}

.question-answers {
    margin-top: 48px;
    padding-bottom: 68px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.question-answer {
    display: flex;
    width: 100%;
    background-color: #E8F2F9;
    border-radius: 12px;
    box-sizing: border-box;
    padding: 26px 26px 26px 64px;
    cursor: pointer;
}

.question-answer-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.question-answer.question-answer-red,
.question-answer.question-answer-green {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.question-answer.question-answer-green {
    background-color: #E4F4E9;
}

.question-answer.question-answer-red {
    background-color: #D51A1A1A;
}

.question-answer-label {
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    position: relative;
    display: flex;
}

.question-answer-label::before {
    content: '';
    position: absolute;
    display: inline-block;
    min-width: 21px;
    min-height: 21px;
    width: 21px;
    height: 21px;
    box-sizing: border-box;
    border: 3px solid #212121;
    border-radius: 2px;
    left: -33px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    align-self: center;
}

.question-answer.question-answer-green .question-answer-label,
.question-answer.question-answer-red .question-answer-label {
    font-weight: 500;
}

.question-answer.question-answer-green .question-answer-label::before {
    border: none;
    background-image: url("/static/quiz/assets/img/icon-correct.svg");
}

.question-answer.question-answer-red .question-answer-label::before {
    border: none;
    background-image: url("/static/quiz/assets/img/icon-uncorrect.svg");
}

.question-answer-comment {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.question-button-wrapper {
    position: absolute;
    top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.question-next-button {
    width: 292px;
    height: 48px;
    border: none;
    border-radius: 24px;
    background-color: #fff;
    color: #0C4488;
    font-size: 16px;
    font-weight: 500;
    line-height: 110%;
    cursor: pointer;
}

.question-next-button-text {
    position: relative;
    padding-right: 40px;
    font-family: Montserrat, sans-serif;
}

.question-next-button-text::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 24px;
    height: 24px;
    top: -3px;
    right: -5px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    background-image: url("/static/quiz/assets/img/icon-arrow-1.svg");
}

.quiz-page-wrapper.wrapper-result {
    background-color: #0C4488;
}

.quiz-result {
    height: 100%;
    background-color: #0C4488;
}

.quiz-result-container {
    height: 100%;
    width: 89%;
    margin: 0 auto;
    background-color: #fff;
    padding: 68px 40px;
    border-radius: 20px;
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
    color: #212121;
    position: relative;
    max-width: 1440px;
}

.quiz-result-label {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
}

.quiz-result-img-wrapper {
    width: 100%;
    text-align: center;
}

.quiz-result-score {
    position: relative;
    margin-top: 65px;
    display: flex;
    width: 100%;
    height: 88px;
    border-radius: 44px;
    box-sizing: border-box;
}

.quiz-result-score.quiz-result-score-low {
    border: 2px solid #B21B1B;
}

.quiz-result-score.quiz-result-score-middle {
    border: 2px solid #0C4488;
}

.quiz-result-score.quiz-result-score-high {
    border: 2px solid #2B8956;
}

.quiz-result-score-data {
    position: absolute;
    height: 90px;
    width: 43%;
    border-radius: 44px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 500;
    line-height: 44px;
    letter-spacing: 1px;
    top: -3px;
    left: -2px;
}

.quiz-result-score.quiz-result-score-low .quiz-result-score-data {
    background-color: #F9E9E9;
}

.quiz-result-score.quiz-result-score-middle .quiz-result-score-data {
    background-color: #D1ECFB;
}

.quiz-result-score.quiz-result-score-high .quiz-result-score-data {
    background-color: #E4F4E9;
}

.quiz-result-score-count {
    font-weight: 700;
}

.quiz-result-score.quiz-result-score-low .quiz-result-score-count {
    color: #B21B1B
}

.quiz-result-score.quiz-result-score-middle .quiz-result-score-count {
    color: #0C4488
}

.quiz-result-score.quiz-result-score-high .quiz-result-score-count {
    color: #2B8956
}

.quiz-result-score-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: 1px;
    text-align: center;
    margin-left: 44%;
    margin-right: 3%;
    align-self: center;
}

.quiz-result-img {
    margin: 35px auto 0;
    width: 60%;
}

.quiz-result-advise {
    margin-top: 66px;
    box-sizing: border-box;
    border-radius: 12px;
    border: 2px solid #555;
    padding: 48px 32px;
    position: relative;
}

.quiz-result-badge-container {
    position: absolute;
    box-sizing: border-box;
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    top: -30px;
    left: 0;
}

.quiz-result-badge {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.quiz-result-advise.quiz-result-advise-low .quiz-result-badge {
    border: 2px solid #B21B1B;
}

.quiz-result-advise.quiz-result-advise-low .quiz-result-badge svg path {
    fill: #B21B1B
}

.quiz-result-advise.quiz-result-advise-middle .quiz-result-badge {
    border: 2px solid #0C4488;
}

.quiz-result-advise.quiz-result-advise-middle .quiz-result-badge svg path {
    fill: #0C4488
}

.quiz-result-advise-header {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 48px;
}

.quiz-result-advise-list ul {
    padding-inline-start: 0;
}

.quiz-result-advise-list ul li {
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    list-style-type: none;
    position: relative;
    margin-bottom: 20px;
    margin-left: 54px;
}

.quiz-result-advise-list ul li:last-child {
    margin-bottom: 0;
}

.quiz-result-advise-list ul li::before {
    content: '';
    position: absolute;
    box-sizing: border-box;
    display: inline-block;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    top: 10px;
    left: -48px;
}

.quiz-result-advise.quiz-result-advise-low {
    border-color: #B21B1B;
}

.quiz-result-advise.quiz-result-advise-middle {
    border-color: #0C4488;
}

.quiz-result-advise.quiz-result-advise-low .quiz-result-advise-list ul li::before {
    box-shadow: 0 0 0 3px #FFF, 0 0 0 4px #B21B1B;
    background-color: #B21B1B;
}

.quiz-result-advise.quiz-result-advise-middle .quiz-result-advise-list ul li::before {
    box-shadow: 0 0 0 3px #FFF, 0 0 0 4px #0C4488;
    background-color: #0C4488;
}

.quiz-result-button-wrapper {
    display: flex;
    justify-content: center;
    position: absolute;
    width: 100%;
    padding-top: 116px;
    margin-left: -40px;
    z-index: 6;
}

.quiz-result-button {
    width: 300px;
    height: 48px;
    border: none;
    border-radius: 24px;
    background-color: #fff;
    color: #0C4488;
    font-size: 18px;
    font-weight: 500;
    line-height: 110%;
    cursor: pointer;
}

.quiz-result-button-text,
.quiz-result-button-text:hover,
.quiz-result-button-text:active {
    position: relative;
    padding-right: 40px;
    font-family: Montserrat, sans-serif;
    text-decoration: none;
    color: #0C4488;
}

.quiz-result-button-text::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 36px;
    height: 40px;
    top: -1px;
    right: -5px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    background-image: url("/static/quiz/assets/img/icon-arrow-2.svg");
}

.quiz-page-wrapper.wrapper-start {
    background-color: #0B1B53;
    overflow-x: hidden;
}

.quiz-page-wrapper.wrapper-start .quiz-header,
.quiz-page-wrapper.wrapper-start .quiz-footer {
    background-color: transparent;
}

.quiz-page-wrapper.wrapper-start .quiz-header {
    height: auto;
}

.quiz-page-wrapper.wrapper-start .quiz-header-container {
    padding-top: 70px;
}
.quiz-page-wrapper.wrapper-start .quiz-main {
    display: flex;
    height: 626px;
}

.quiz-start-wrapper {
    position: relative;
    height: 100%;
}

.quiz-start {
    min-height: 100%;
}

.quiz-page-wrapper.wrapper-start .quiz-header-logo-img {
    width: 67px;
    height: 80px;
}

.quiz-page-wrapper.wrapper-start .quiz-header-logo-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px;
}

.quiz-start-shield {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    top: -80px;
}

.quiz-page-wrapper.wrapper-start .quiz-footer-container {
    padding-top: 0px;
    margin-top: 70px;
}

.quiz-start-gradient {
    position: absolute;
    width: 125%;
    height: 350px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    background-image: url("/static/quiz/assets/img/background-gradient.png");
    filter: blur(50px);
    bottom: -68px;
    z-index: 1;
}

.quiz-start-background {
    width: 510px;
    height: 626px;
    position: absolute;
    z-index: 2;
}

.quiz-start-background-img {
    position: absolute;
    z-index: 3;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.quiz-start-background-img.background-img1 {
    width: 291px;
    height: 404px;
    background-image: url("/static/quiz/assets/img/desk-shapes-1.png");
    left: 550px;
    bottom: 26px;
}


.quiz-start-background-img.background-img2 {
    width: 292px;
    height: 251px;
    background-image: url("/static/quiz/assets/img/desk-shapes-2.png");
    right: 551px;
    bottom: 80px;
}

.quiz-start-background-img.background-img3 {
    width: 231px;
    height: 177px;
    background-image: url("/static/quiz/assets/img/desk-shapes-3.png");
    right: 426px;
    top: -50px;
}

.quiz-start-background-img.background-img4 {
    width: 43px;
    height: 43px;
    background-image: url("/static/quiz/assets/img/desk-shapes-4.png");
    left: 640px;
    top: 57px;
}

.quiz-start-shield-content {
    width: 510px;
    height: 626px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    background-image: url("/static/quiz/assets/img/shield.png");
    font-family: Montserrat, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 7;
}

.quiz-start-subheader {
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    color: #FFF;
    margin-top: 79px;
    text-align: center;
}

.quiz-start-header-wrapper {
    position: relative;
    margin-top: 4px;
    display: flex;
    justify-content: center;
    height: 120px;
}

.quiz-start-header {
    position: absolute;
    text-transform: uppercase;
    font-size: 100px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 2px;
    color: #A8D7FF;
    margin: 0;
    background-color: #0B1B53;
}

.quiz-start-text {
    max-width: 415px;
    margin-top: 32px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    color: #FFF
}

.quiz-start-button {
    margin-top: 32px;
    width: 292px;
    height: 64px;
    border: none;
    border-radius: 32px;
    background-color: #fff;
    color: #0C4488;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    line-height: 110%;
}

.quiz-start-button-text {
    position: relative;
    padding-right: 66px;
    font-family: Montserrat, sans-serif;
}

.quiz-start-button-text::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 60px;
    height: 40px;
    top: -5px;
    right: -9px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    background-image: url("/static/quiz/assets/img/icon-arrow-3.svg");
    z-index: 1;
}

.quiz-captcha-wrapper {
    position: absolute;
    width: 600px;
    max-width: 600px;
    background: #fff;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 56px;
    top: 356px;
    z-index: 10;
}

.quiz-captcha-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    color: #0B1B53;
    margin: 0 0 9px;
}

.quiz-captcha-wrapper #start-form {
    width: 100%;
}

.quiz-captcha-wrapper #start-form .captcha-div {
    display: flex;
    height: 56px;
    justify-content: space-between;
}

.quiz-captcha-wrapper #start-form .captcha-input,
.quiz-captcha-wrapper #start-form .captcha-input:focus-visible {
    box-sizing: border-box;
    border-radius: 12px;
    border: 1px solid #0C4488;
    padding: 7px 11px;
    width: 300px;
    min-width: 300px;
    outline: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    font-family: Montserrat, sans-serif;
}

.quiz-captcha-wrapper #start-form .has-error .captcha-input {
    border: 1px solid #B21B1B;
}

.quiz-captcha-wrapper #start-form .captcha-div-img {
    width: 170px;
    min-width: 170px;
    cursor: pointer;
    position: relative;
}

.quiz-captcha-wrapper #start-form .captcha-img {
    width: 160%;
}

.quiz-captcha-wrapper #start-form .help-block {
    display: none
}

.quiz-captcha-wrapper .quiz-captcha-refresh {
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
    color: #0C4488;
    padding-top: 12px;
    cursor: pointer;
}

.quiz-captcha-button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 36px;
}

.quiz-captcha-error {
    margin-top: 20px;
    color: #B21B1B;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.quiz-captcha-button {
    width: 245px !important;
    height: 58px;
    border: none;
    border-radius: 29px;
    background-color: #0C4488;
    color: #FFF;
    cursor: pointer;
    font-size: 20px;
    font-weight: 500;
    line-height: 110%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.quiz-captcha-button.quiz-captcha-button-disabled {
    background-color: #BABABA;
}

.quiz-captcha-button-text {
    position: relative;
    padding-right: 32px;
    font-family: Montserrat, sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.quiz-captcha-button-text::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 26px;
    height: 26px;
    top: -1px;
    right: -7px;
    box-sizing: border-box;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    background-image: url("/static/quiz/assets/img/icon-arrow-4.svg");
    z-index: 1;
}

.quiz-captcha-button.quiz-captcha-button-disabled .quiz-captcha-button-text::after {
    background-image: url("/static/quiz/assets/img/icon-arrow-5.svg");
}

.quiz-captcha-background {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    background-color: #00000055;
    z-index: 5;
}

.captcha-background {
    overflow: hidden;
}

.quiz-result-links {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: 0 auto;
    padding-top: 56px;
    font-size: 20px;
    font-weight: 600;
    line-height: 150%;
}

.quiz-result-links-text {
    text-align: center;
    margin: 0;
}

.quiz-result-links-container .quiz-footer-social {
    justify-content: center;
    margin-top: 20px;
}

.quiz-result-links-container .quiz-footer-social-item {
    background-color: #0C4488;
}

@media screen and (max-width: 1200px) {
    .quiz-start-background-img.background-img1 {
        width: 232px;
        height: 323px;
    }


    .quiz-start-background-img.background-img2 {
        width: 233px;
        height: 200px;
    }

    .quiz-start-background-img.background-img3 {
        width: 184px;
        height: 141px;
    }
}

@media screen and (max-width: 1100px) {
    .quiz-start-background-img.background-img1 {
        width: 209px;
        height: 291px;
        left: 520px
    }


    .quiz-start-background-img.background-img2 {
        width: 210px;
        height: 180px;
        right: 520px;
    }

    .quiz-start-background-img.background-img3 {
        width: 166px;
        height: 127px;
    }

    .quiz-start-background-img.background-img4 {
        left: 600px;
    }
}

@media screen and (max-width: 1024px) {

    .quiz-header {
        height: 112px;
        min-height: 112px;
    }

    .quiz-header-container {
        padding-top: 36px;
    }

    .quiz-header-logo-text {
        font-size: 17px;
        font-weight: 700;
        line-height: 20px;
    }

    .quiz-footer {
        padding-bottom: 40px;
    }

    .quiz-footer-checked {
        padding-top: 30px;
    }

    .quiz-footer-container {
        padding-top: 100px;
    }

    .quiz-footer-information {
        flex-direction: column;
        justify-content: start;
        gap: 40px;
    }

    .quiz-footer-content {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .quiz-footer-social {
        gap: 0;
        width: 25%;
        justify-content: space-between;
    }

    .quiz-footer-text {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

    .quiz-footer-text.phone {
        order: 0;
        width: 75%;
    }
    .quiz-footer-text.inn {
        order: 1;
        width: 25%;
    }
    .quiz-footer-text.address {
        order: 2;
        width: 75%;
    }
    .quiz-footer-text.kpp {
        order: 3;
        width: 25%;
    }
    .quiz-footer-text.mail {
        order: 4;
        width: 75%;
    }
    .quiz-footer-text.ogrn {
        order: 5;
        width: 25%;
    }

    .quiz-footer-copyright {
        margin-top: 70px;
    }

    .quiz-footer-social-item {
        height: 37px;
        width: 37px;
    }

    .quiz-footer-social-item.vk svg,
    .quiz-footer-social-item.ok svg{
        transform: scale(1.2);
    }

    .quiz-footer-social-item.tg svg{
        transform: scale(0.9);
    }

    .quiz-footer-social-item.vk:hover svg,
    .quiz-footer-social-item.ok:hover svg{
        transform: scale(1.5);
    }

    .quiz-footer-social-item.tg:hover svg{
        transform: scale(1.1);
    }

    .question-container {
        margin-top: 48px;
    }

    .question-label {
        width: 150px;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
    }

    .question-content {
        flex-direction: column;
        gap: 28px;
    }

    .question-content-text {
        width: 100%;
    }

    .question-content-img {
        width: 36%;
    }

    .question-title {
        font-size: 18px;
        font-weight: 600;
        line-height: 150%;
    }

    .question-text {
        font-size: 16px;
        font-weight: 400;
        line-height: 150%;
    }

    .question-answers {
        margin-top: 36px
    }

    .question-answer {
        padding: 18px 18px 18px 48px;
    }

    .question-answer-label {
        font-size: 16px;
        line-height: 20px;
    }

    .question-answer-label::before {
        min-width: 18px;
        min-height: 18px;
        width: 18px;
        height: 18px;
        left: -30px;
    }

    .question-answer-comment {
        font-size: 14px;
        line-height: 17px;
    }

    .quiz-result-container {
        padding: 48px 28px;
    }

    .quiz-result-label {
        font-size: 14px;
    }

    .quiz-result-img {
        width: 100%;
    }

    .quiz-result-score {
        height: 52px;
        border-radius: 26px;
    }

    .quiz-result-score-data {
        height: 54px;
        border-radius: 27px;
        font-size: 16px;
        line-height: 24px;
    }

    .quiz-result-score-text {
        font-size: 14px;
        line-height: 18px;
    }

    .quiz-result-advise {
        padding: 40px 32px;
    }

    .quiz-result-badge-container {
        height: 48px;
    }

    .quiz-result-badge {
        height: 48px;
        width: 48px;
    }

    .quiz-result-advise-header {
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .quiz-result-advise-list ul li {
        font-size: 14px;
        font-weight: 500;
        line-height: 150%;
        margin-left: 22px;
        margin-bottom: 16px;
    }

    .quiz-result-advise-list ul li::before {
        width: 11px;
        height: 11px;
        top: 8px;
        left: -21px;
    }

    .quiz-result-advise-list ul li:last-child {
        margin-bottom: 0;
    }

    .quiz-result-button {
        width: 328px;
        font-size: 14px;
        font-weight: 500;
        line-height: 110%;
    }

    .quiz-result-button-text::after {
        top: -4px
    }

    .quiz-result-button-wrapper {
        padding-top: 96px;
        margin-left: -28px;
    }

    .quiz-page-wrapper.wrapper-start .quiz-main {
        height: 390px;
    }

    .quiz-page-wrapper.wrapper-start .quiz-header-logo-img {
        width: 37px;
        height: 44px;
    }

    .quiz-page-wrapper.wrapper-start .quiz-header-logo-text {
        font-size: 17px;
        font-weight: 700;
        line-height: 20px;
    }

    .quiz-page-wrapper.wrapper-start .quiz-header-container {
        padding-top: 36px;
    }

    .quiz-start-background {
        width: 316px;
        height: 390px;
    }

    .quiz-start-shield-content {
        width: 316px;
        height: 390px;
    }

    .quiz-start-shield {
        top: 0
    }

    .quiz-start-subheader {
        font-size: 12px;
        font-weight: 400;
        line-height: 130%;
        margin-top: 44px;
        width: 85%;
    }

    .quiz-start-header-wrapper {
        margin-top: 8px;
        height: 72px;
    }

    .quiz-start-header {
        font-size: 60px;
        font-weight: 700;
        line-height: 120%;
    }

    .quiz-start-text {
        margin-top: 25px;
        font-size: 14px;
        font-weight: 500;
        line-height: 130%;
        width: 90%;
    }

    .quiz-start-button {
        margin-top: 18px;
        width: 182px;
        height: 36px;
        border-radius: 18px;
        font-size: 14px;
        font-weight: 600;
        line-height: 110%;
    }

    .quiz-start-button-text::after {
        width: 30px;
        height: 20px;
        top: -1px;
        z-index: 1;
    }

    .quiz-start-button-text {
        padding-right: 30px;
    }

    .quiz-page-wrapper.wrapper-start .quiz-footer-container {
        padding-top: 0;
        margin-top: 140px;
    }

    .quiz-start-gradient {
        width: 120%;
        height: 175px;
        filter: blur(45px);
    }

    .quiz-start-background-img.background-img1 {
        width: 180px;
        height: 252px;
        left: 332px;
        bottom: -48px;
    }


    .quiz-start-background-img.background-img2 {
        width: 185px;
        height: 154px;
        right: 328px;
        bottom: -12px;
    }

    .quiz-start-background-img.background-img3 {
        width: 141px;
        height: 108px;
        top: -52px;
        right: 252px;
    }

    .quiz-start-background-img.background-img4 {
        height: 25px;
        width: 25px;
        left: 404px;
        top: 28px;
    }

    .question-button-wrapper {
        top: 15px
    }

    .quiz-captcha-wrapper {
        width: 518px;
        padding: 40px;
        top: 255px;
    }

    .quiz-captcha-text {
        font-size: 16px;
        font-weight: 600;
        line-height: 28px;
        margin-bottom: 3px;
    }

    .quiz-captcha-wrapper #start-form .captcha-div {
        height: 36px;
    }

    .quiz-captcha-wrapper #start-form .captcha-input,
    .quiz-captcha-wrapper #start-form .captcha-input:focus-visible {
        width: 256px;
        min-width: 256px;
        font-size: 14px;
        font-weight: 400;
        line-height: 110%;
    }

    .quiz-captcha-wrapper .quiz-captcha-refresh {
        font-size: 14px;
    }

    .quiz-captcha-error {
        font-size: 12px;
        font-weight: 500;
        line-height: 16px;
        margin-top: 16px;
    }

    .quiz-captcha-button-wrapper {
        margin-top: 32px;
    }

    .quiz-captcha-button {
        height: 33px;
        width: 183px !important;
        border-radius: 16px;
        font-size: 16px;
        font-weight: 500;
        line-height: 110%;
        padding: 0;
    }

    .quiz-captcha-button-text::after {
        width: 18px;
        height: 18px;
        top: 1px
    }

    .quiz-captcha-button-text {
        padding-right: 18px;
    }

    .quiz-result-links {
        width: 80%;
        padding-top: 32px;
        font-size: 14px;
    }

    .quiz-result-links-container .quiz-footer-social {
        justify-content: center;
        margin-top: 12px;
        gap: 24px;
        width: auto;
    }

}

@media screen and (max-width: 767px) {

    .quiz-header-container,
    .quiz-footer-container,
    .quiz-result-container {
        width: 91%;
    }

    .quiz-header {
        height: 77px;
        min-height: 77px;
    }

    .quiz-header-container {
        display: flex;
        justify-content: center;
        padding-top: 20px;
    }

    .quiz-header-logo-img {
        width: 24px;
        height: 29px;
    }

    .quiz-header-logo-text {
        font-size: 9px;
        line-height: 12px;
    }

    .quiz-footer-checked {
        padding-top: 30px;
    }

    .quiz-footer-container {
        padding-top: 88px;
    }

    .quiz-footer-logo {
        align-items: center;
        gap: 8px;
        font-size: 14px;
        line-height: 18px;
    }

    .quiz-footer-logo-title {
        font-size: 14px;
        line-height: 18px;
    }

    .quiz-footer-logo-subtitle {
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
    }

    .quiz-footer-logo-img {
        width: 33px;
        height: 40px;
    }

    .quiz-footer-content {
        flex-direction: column;
    }

    .quiz-footer-social {
        justify-content: start;
        width: 100%;
        gap: 32px;
    }

    .quiz-footer-text {
        width: 100% !important;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

    .quiz-footer-copyright {
        margin-top: 40px;
        font-size: 10px;
        font-weight: 400;
        line-height: 14px;
        display: flex;
        align-items: center;
    }

    .question-content {
        margin-top: 32px;
    }

    .question-content-img {
        width: 70%
    }

    .question-next-button {
        width: 90%;
    }

    .quiz-result-container {
        padding: 48px 16px;
    }

    .quiz-result-img-wrapper {
        margin-left: -16px;
        margin-right: -16px;
    }

    .quiz-result-score {
        margin-top: 30px;
        height: auto;
        border: none !important;
    }

    .quiz-result-score-data {
        width: 100%;
        top: -2px;
        left: 0;
        height: 40px;
        border-radius: 20px;
    }

    .quiz-result-img {
        margin-top: 24px
    }

    .quiz-result-score-text {
        margin-left: 0;
        margin-right: 0;
        border-radius: 24px;
        padding: 48px 40px 12px;
    }

    .quiz-result-score.quiz-result-score-low .quiz-result-score-text {
        background-color: #F9E9E9;
    }

    .quiz-result-score.quiz-result-score-middle .quiz-result-score-text {
        background-color: #D1ECFB;
    }

    .quiz-result-score.quiz-result-score-high .quiz-result-score-text {
        background-color: #E4F4E9;
    }

    .quiz-result-score.quiz-result-score-low .quiz-result-score-data {
        border: 2px solid #B21B1B;
    }

    .quiz-result-score.quiz-result-score-middle .quiz-result-score-data {
        border: 2px solid #0C4488;
    }

    .quiz-result-score.quiz-result-score-high .quiz-result-score-data {
        border: 2px solid #2B8956;
    }

    .quiz-result-advise {
        padding: 40px 12px;
    }

    .quiz-result-button-wrapper {
        margin-left: -16px;
        padding-top: 88px;
    }

    .quiz-result-button {
        width: 100%;
    }

    .quiz-page-wrapper.wrapper-start .quiz-header-container {
        padding-top: 20px;
        padding-bottom: 12px;
    }

    .quiz-page-wrapper.wrapper-start .quiz-header {
        min-height: 89px;
    }

    .quiz-page-wrapper.wrapper-start .quiz-header-logo-img {
        width: 24px;
        height: 29px;
    }

    .quiz-page-wrapper.wrapper-start .quiz-header-logo-text {
        font-size: 10px;
        font-weight: 700;
        line-height: 12px;
    }

    .quiz-start-background {
        width: 294px;
        height: 361px;
    }

    .quiz-start-shield-content {
        width: 294px;
        height: 361px;
    }

    .quiz-start-subheader {
        margin-top: 35px;
        line-height: 120%;
    }

    .quiz-start-header-wrapper {
        height: 50px;
    }

    .quiz-start-header {
        font-size: 42px;
        font-weight: 700;
        line-height: 120%;
    }

    .quiz-start-text {
        margin-top: 12px;
        font-size: 14px;
        font-weight: 500;
        line-height: 130%;
        width: 90%;
    }

    .quiz-start-button {
        width: 174px;
        height: 40px;
        border-radius: 20px;
    }

    .quiz-page-wrapper.wrapper-start .quiz-main {
        height: 361px;
    }

    .quiz-page-wrapper.wrapper-start .quiz-footer-container {
        padding-top: 0;
        margin-top: 190px;
    }

    .quiz-start-gradient {
        width: 120%;
        height: 148px;
        filter: blur(32px);
        bottom: -150px;
    }

    .quiz-start-background-img.background-img1 {
        width: 115px;
        height: 115px;
        left: 185px;
        bottom: -120px;
        background-image: url("/static/quiz/assets/img/mob_shapes_1.png");
    }


    .quiz-start-background-img.background-img2 {
        width: 172px;
        height: 156px;
        right: 124px;
        bottom: -133px;
        background-image: url("/static/quiz/assets/img/mob_shapes_2.png");
    }

    .quiz-start-background-img.background-img3,
    .quiz-start-background-img.background-img4 {
        display: none;
    }

    .question-button-wrapper {
        top: 10px
    }

    .quiz-captcha-wrapper {
        max-width: 500px;
        width: 90vw;
        padding: 32px 16px;
        top: 229px;
    }

    .quiz-captcha-text {
        font-size: 13px;
        font-weight: 600;
        line-height: 16px;
        margin-bottom: 16px;
    }

    .quiz-captcha-wrapper #start-form .captcha-div {
        display: flex;
        flex-direction: column-reverse;
        height: auto;
        align-items: center;
        gap: 20px;
    }

    .quiz-captcha-wrapper #start-form .captcha-div-img {
        width: 120px;
        min-width: 120px;
    }

    .quiz-captcha-wrapper #start-form .captcha-img {
        width: 130%;
    }

    .quiz-captcha-wrapper #start-form .captcha-input,
    .quiz-captcha-wrapper #start-form .captcha-input:focus-visible {
        height: 48px;
        width: 100%;
        min-width: 100%;
        font-size: 13px;
        font-weight: 400;
        line-height: 110%;
        padding: 4px 12px;
    }

    .quiz-captcha-wrapper .quiz-captcha-refresh {
        font-size: 12px;
    }

    .quiz-captcha-button {
        font-size: 13px;
        font-weight: 500;
        line-height: 110%;
        width: 154px !important;
        padding: 0;
    }

    .quiz-captcha-button-text::after {
        width: 15px;
        height: 15px;
        right: -3px;
    }

    .quiz-captcha-button-text {
        padding-right: 18px;
    }

    .quiz-result-links {
        width: 100%;
        font-weight: 500;
    }

    .quiz-result-links-container .quiz-footer-social {
        margin-top: 16px;
    }

}


