@import "reset.min.css";
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*
    font-family: "Manrope", sans-serif;
    font-family: "Montserrat", sans-serif;
*/

/* foundation */

html {
    height: 100%;
}

body {
    background-color: #F5F5F5;
    color: #252525;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    font-family: "Manrope", sans-serif;
    padding-top: 68px;
    position: relative;
}

section {
    position: relative;
    width: 100%;
}

.vbe89naq-wrapper {
    max-width: 1208px;
    padding: 0 15px;
    width: 100%;
    margin: auto;
}

.vbe89naq-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

.vbe89naq-open-nav {
    position: relative;
}

@media (max-width: 1199px) {
    body {
        font-size: 16px;
        padding-top: 57px;
    }
}

/* button */

.vbe89naq-btn {
    font-family: "Manrope", sans-serif;
    display: inline-block;
    background-color: #5B25CA;
    border-radius: 10px;
    padding: 13px 17px;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s linear;
    border: none;
    outline: 0;
}

.vbe89naq-btn--white {
    color: #202020;
    background: #fff;
}

.vbe89naq-btn--last {
    margin: 40px auto 20px;
    display: block;
    max-width: 200px;
    width: 100%;
}

.vbe89naq-to-top {
    position: absolute;
    border: none;
    width: 50px;
    height: 50px;
    background-color: #5B25CA;
    position: fixed;
    bottom: 43px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

/* header */

.vbe89naq-header {
    background-color: #fff;
    border-bottom: 1px solid #E0E0E0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 0;
}

.vbe89naq-header__logo {
    max-width: 278px;
    position: relative;
    z-index: 150;
}

.vbe89naq-header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1199px) {
    .vbe89naq-header__logo {
        max-width: 190px;
    }

    .vbe89naq-header {
        padding: 14px 0;
    }
}

/* menu */

.vbe89naq-menu {
    width: 100%;
    max-width: 790px;
    display: flex;
    margin-left: auto;
    justify-content: space-around;
    position: relative;
}

.vbe89naq-menu__item {
    transition: all 0.3s ease-in-out;
    display: block;
    padding: 20px 10px;
    font-weight: 700;
}

.vbe89naq-menu__item.focus {
    color: #5B25CA;
}

.vbe89naq-menu__item:focus,
.vbe89naq-menu__item:hover,
.vbe89naq-menu__item:active {
    color: #5B25CA;
}

@media (max-width: 1199px) {
    .vbe89naq-menu__item {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/* menu button */

.vbe89naq-active .vbe89naq-btn-menu {
    border: 0;
    background-color: transparent;
}

.vbe89naq-active .vbe89naq-btn-menu::after,
.vbe89naq-active .vbe89naq-btn-menu::before {
    border: none;
}

.vbe89naq-active .vbe89naq-btn-menu::after {
    transform: rotate(45deg);
}

.vbe89naq-active .vbe89naq-btn-menu::before {
    transform: rotate(-45deg);
}

.vbe89naq-btn-menu {
    display: none;
    position: relative;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 135;
}

.vbe89naq-btn-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #252525;
    position: absolute;
    left: 0;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.vbe89naq-btn-menu span:nth-child(1) {
    top: 0;
}

.vbe89naq-btn-menu span:nth-child(2) {
    top: 8px;
}

.vbe89naq-btn-menu span:nth-child(3) {
    bottom: 0;
}

.vbe89naq-active .vbe89naq-btn-menu span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
}

.vbe89naq-active .vbe89naq-btn-menu span:nth-child(2) {
    transform: rotate(180deg);
    opacity: 0;
}

.vbe89naq-active .vbe89naq-btn-menu span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 8px;
}

/* dropdown */

.vbe89naq-dropdown {
    margin: -15px 0;
    padding: 15px 0;
}

.vbe89naq-dropdown__btn {
    position: relative;
    padding-right: 15px;
}

.vbe89naq-dropdown__btn::after {
    content: "";
    width: 12px;
    height: 6px;
    background: url(../images/icons/dropdown-vbe89naq.svg) no-repeat center/cover;
    transition: transform 0.3s ease;
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.vbe89naq-dropdown__menu {
    position: absolute;
    background-color: #fff;
    box-shadow: 0px 0px 4.3px 0px #00000040;
    border-radius: 4px;
    padding: 5px 10px;
    right: 0;
    top: calc(100% - 18px);
    z-index: -100;
    display: none;
}

.vbe89naq-dropdown__menu .vbe89naq-menu__item {
    /* color: #4F4F4F; */
    font-weight: 400;
    padding: 5px 0;
}

.vbe89naq-dropdown:focus .vbe89naq-dropdown__btn::after,
.vbe89naq-dropdown:active .vbe89naq-dropdown__btn::after,
.vbe89naq-dropdown:hover .vbe89naq-dropdown__btn::after {
    transform: translateY(-50%) rotateX(180deg);
}

.vbe89naq-dropdown:focus .vbe89naq-dropdown__menu,
.vbe89naq-dropdown:active .vbe89naq-dropdown__menu,
.vbe89naq-dropdown:hover .vbe89naq-dropdown__menu {
    display: block;
    z-index: 5;
    -webkit-animation: dropdown 0.5s ease both;
    animation: dropdown 0.5s ease both;
}

@-webkit-keyframes dropdown {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes dropdown {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1199px) {
    .vbe89naq-menu {
        position: fixed;
        background-color: #fff;
        top: 0;
        right: 0;
        height: 100vh;
        transform: translateX(100%);
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        max-width: 500px;
        padding: 76px 36px 20px 20px;
        z-index: 130;
    }

    .vbe89naq-header.vbe89naq-active .vbe89naq-menu {
        transform: none;
    }

    .vbe89naq-header.vbe89naq-active::before {
        content: "";
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 110;
        background: rgba(0, 0, 0, 0.6);
    }

    .vbe89naq-btn-menu {
        display: block;
    }

    .vbe89naq-dropdown__menu .vbe89naq-menu__item,
    .vbe89naq-menu__item {
        padding: 16px 0;
        font-weight: 700;
        border-bottom: 1px solid #E0E0E0;
        text-align: center;
    }

    .vbe89naq-menu>.vbe89naq-menu__item:last-child {
        border-bottom: none;
    }

    .vbe89naq-dropdown {
        padding: 4px 0;
    }

    .vbe89naq-dropdown__btn {
        display: none;
    }

    .vbe89naq-dropdown__menu {
        display: block;
        position: inherit;
        background: transparent;
        box-shadow: none;
        padding: 0;
    }

    .vbe89naq-dropdown:focus .vbe89naq-dropdown__menu,
    .vbe89naq-dropdown:active .vbe89naq-dropdown__menu,
    .vbe89naq-dropdown:hover .vbe89naq-dropdown__menu {
        -webkit-animation: none;
        animation: none;
    }
}

/* footer */

.vbe89naq-footer {
    width: 100%;
    margin-top: auto;
    background-color: #0A0A28;
    color: #fff;
    padding: 54px 0 54px;
}

.vbe89naq-footer__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.vbe89naq-footer__col {
    display: flex;
    flex-direction: column;
}

.vbe89naq-footer__link {
    margin-bottom: 10px;
}

.vbe89naq-footer__link:hover,
.vbe89naq-footer__link:focus,
.vbe89naq-footer__link:active {
    text-decoration: underline;
}

.vbe89naq-footer__logo {
    margin-top: 4px;
    margin-bottom: 12px;
}

.vbe89naq-footer__copy {
    color: #E0E0E0;
}

@media (max-width: 767px) {
    .vbe89naq-footer {
        padding: 100px 0 19px;
        position: relative;
    }

    .vbe89naq-footer__row {
        flex-wrap: wrap;
        text-align: center;
    }

    .vbe89naq-footer__col {
        margin: 0 auto;
        width: 90%;
    }

    .vbe89naq-footer__col:nth-child(1) {
        order: 3;
    }

    .vbe89naq-footer__col:nth-child(2) {
        order: 0;
        border-bottom: 1px solid #4F4F4F;
    }

    .vbe89naq-footer__col:nth-child(3) {
        border-bottom: 1px solid #4F4F4F;
        order: 1;
    }

    .vbe89naq-footer__col:nth-child(4) {
        order: 2;
    }

    .vbe89naq-footer__logo {
        position: absolute;
        top: 35px;
        left: 0;
        right: 0;
        margin: 0 auto;
        max-width: 235px;
    }

    .vbe89naq-footer__link {
        padding-bottom: 8px;
    }
}

/* title */

.vbe89naq-main-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 56px;
    line-height: 78px;
}

.vbe89naq-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 23px;
    color: #252525;
}

.vbe89naq-color-title {
    position: relative;
    width: 100%;
    font-weight: 700;
    font-size: 38px;
    color: #F85955;
    text-transform: uppercase;
    margin-bottom: 21px;
}

.vbe89naq-color-title::before {
    content: "";
    position: absolute;
    left: 0;
    width: calc((100vw - 1140px) / 2 - 25px);
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(-90deg, #F85955 0%, #c1272d 100%);
    border-radius: 0px 20px 20px 0px;
    height: 15px;
}

@media (max-width: 1199px) {
    .vbe89naq-main-title {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .vbe89naq-color-title {
        font-size: 25px;
        margin-bottom: 14px;
    }
    .vbe89naq-color-title::before {
        display: none;
    }
    .vbe89naq-main-title {
        font-size: 24px;
        padding-bottom: 7px;
        line-height: 1.3;
    }
    .vbe89naq-title {
        font-size: 26px;
    }
    .vbe89naq-advice-single .vbe89naq-title {
        font-size: 21px;
        line-height: 31px;
    }
}

/* intro */

.vbe89naq-section-intro {
    margin-bottom: 50px;
    padding: 32px 0;
    background-image: url(../images/intro-vbe89naq.png);
    background-color: #1D1D6A;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.vbe89naq-section-intro.vbe89naq-section-intro--national {
    padding: 50px 0;
    position: relative;
    background-image: url(../images/bg-header/bg-national.png);
}
.vbe89naq-section-intro--national .vbe89naq-main-title {
    font-size: 38px;
    line-height: 48px;
    margin-bottom: 20px;
}
.vbe89naq-national--girls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15%;
    border: 2px solid #FFFFFF;
    border-radius: 6px;
}

.vbe89naq-intro {
    max-width: 780px;
    color: #fff;
}
.vbe89naq-section-intro--national .vbe89naq-intro {
    max-width: 636px;
}
.vbe89naq-intro .vbe89naq-highlighted {
    color: #F23585;
}

@media (max-width: 1199px) {
    .vbe89naq-section-intro {
        padding: 18px 0;
    }
    .vbe89naq-section-intro.vbe89naq-section-intro--national {
        background-image: none;
    }
    .vbe89naq-section-intro--national .vbe89naq-intro {
        margin: 0;
        max-width: 380px;
    }
    .vbe89naq-national--girls {
        right: 15px;
        max-width: 300px;
    }
    .vbe89naq-intro {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .vbe89naq-intro {
        max-width: 780px;
    }
    .vbe89naq-section-intro.vbe89naq-section-intro--national {
        padding: 10px 0 20px;
    }
    .vbe89naq-national--girls {
        display: none;
    }
    .vbe89naq-section-intro--national .vbe89naq-main-title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 10px;
        padding: 0;
    }
    .vbe89naq-section-intro--national .vbe89naq-intro {
        max-width: 100%;
    }
}

@media (max-width: 425px) {
    .vbe89naq-section-intro {
        background-image: url(../images/intro-mob-vbe89naq.png);
        background-position: right center;
        background-size: auto 100%;
        margin-bottom: 16px;
    }
}

@media (min-width: 1921px) {
    .vbe89naq-section-intro {
        background-size: contain;
    }
}

/* disclosure */

.vbe89naq-update-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 15px 0;
}

.vbe89naq-update-title {
    font-weight: 700;
    margin-right: 2em;
}

.vbe89naq-disclosure {
    margin-bottom: 8px;
    position: relative;
}

.vbe89naq-disclosure-heading {
    display: flex;
    align-items: center;
}

.vbe89naq-disclosure-title {
    cursor: pointer;
    font-weight: 700;
}
.vbe89naq-disclosure-title span {
    cursor: pointer;
    font-weight: 400;
    color: #4F4F4F;
}

.vbe89naq-disclosure-title:hover {
    color: #5B25CA;
}

.vbe89naq-disclosure-note {
    color: #969696;
}

.vbe89naq-disclosure-note::before {
    content: "|";
    margin: 0 0.5em;
}

.vbe89naq-disclosure-popup {
    animation: slide-in-bottom-10 0.4s both;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0px 1px 11.5px 0px #BFC9DCCC;
    padding: 20px;
    top: calc(100% + 10px);
    left: 0;
    right: auto;
    position: absolute;
    display: none;
    max-width: 520px;
    width: 100%;
    z-index: 2;
    color: #4F4F4F;
}

.vbe89naq-disclosure-popup p {
    margin-bottom: 5px;
}

.vbe89naq-update-block .vbe89naq-disclosure-popup {
    left: auto;
    right: 60%;
}

.vbe89naq-disclosure.vbe89naq-opened .vbe89naq-disclosure-popup {
    display: block;
}

@-webkit-keyframes slide-in-bottom-10 {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-bottom-10 {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.vbe89naq-disclosure-popup .vbe89naq-close {
    color: #969696;
    cursor: pointer;
    display: block;
    height: 16px;
    width: 16px;
    top: 10px;
    right: 10px;
    position: absolute;
    line-height: 12px;
    font-size: 28px;
}

@media (max-width: 1199px) {
    .vbe89naq-update-block {
        display: block;
    }

    .vbe89naq-update-title {
        margin-bottom: 10px;
    }

    .vbe89naq-disclosure-heading {
        display: block;
    }

    .vbe89naq-disclosure-title {
        display: inline;
    }

    .vbe89naq-disclosure-popup,
    .vbe89naq-update-block .vbe89naq-disclosure-popup {
        left: 0;
        right: auto;
        max-width: 500px;
    }
}

/* layout */

.vbe89naq-layout {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.vbe89naq-main {
    display: block;
    width: 67.75%;
}

.vbe89naq-sidebar {
    display: block;
    width: 32.25%;
}
.vbe89naq-sidebar--link {
    font-size: 16px;
    line-height: 34px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
}
.vbe89naq-sidebar--link.sidebar--link-all {
    display: flex;
    align-items: center;
    justify-content: center;
}
.vbe89naq-widget-advice {
    background-color: #fff;
    border-radius: 6px;
    padding: 25px 25px 15px;
    margin-bottom: 20px;
    box-shadow: 0px 1px 11.5px 0px #BFC9DCCC;
}

.vbe89naq-widget-advice__picture {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin-bottom: 17px;
}

.vbe89naq-widget-advice__picture img {
    width: 100%;
}

.vbe89naq-widget-advice__picture--title {
    color: #fff;
    font-family: "League Gothic", sans-serif;
    font-size: 24px;
    line-height: 26px;
    text-shadow: 0 4px 15px #74572F;
    left: 0;
    right: 0;
    bottom: 74px;
    text-align: center;
    position: absolute;
}

.vbe89naq-widget-advice .vbe89naq-btn {
    left: 20px;
    right: 20px;
    bottom: 20px;
    position: absolute;
}

.vbe89naq-widget-advice .vbe89naq-title {
    margin-bottom: 8px;
}

.vbe89naq-widget-advice p {
    margin-bottom: 7px;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vbe89naq-widget-advice hr {
    border: none;
    border-top: 1px solid #E0E0E0;
    margin: 16px 0;
}

.vbe89naq-widget-brands {
    display: block;
    background-color: #fff;
    border: 1px solid #5B25CA;
    border-radius: 8px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.vbe89naq-widget-brands .vbe89naq-widget__title {
    background-color: #5B25CA;
    border-radius: 6px 6px 0 0;
    color: #fff;
    display: block;
    font-size: 21px;
    font-weight: 700;
    text-align: center;
    padding: 11px 20px;
    margin: 0 -20px;
}

.vbe89naq-widget-brands .vbe89naq-item {
    display: flex;
    gap: 10px;
    padding: 17px 0;
}

.vbe89naq-widget-brands .vbe89naq-item:not(:last-child) {
    border-bottom: 1px solid #E0E0E0;
}

.vbe89naq-widget-brands .vbe89naq-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.vbe89naq-widget-brands .vbe89naq-item__logo {
    margin-bottom: 8px;
}

.vbe89naq-widget-brands .vbe89naq-item__score--value {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
}

.vbe89naq-widget-brands .vbe89naq-item:first-of-type .vbe89naq-item__score--value::before {
    content: "8.8";
    font-weight: 700;
    margin-right: 8px;
}

.vbe89naq-widget-brands .vbe89naq-item:nth-of-type(2) .vbe89naq-item__score--value::before {
    content: "8.0";
    font-weight: 700;
    margin-right: 8px;
}

.vbe89naq-widget-brands .vbe89naq-item:nth-of-type(3) .vbe89naq-item__score--value::before {
    content: "9.3";
    font-weight: 700;
    margin-right: 8px;
}

.vbe89naq-widget-brands .vbe89naq-item__score--link {
    color: #969696;
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    text-transform: uppercase;
    margin: 1px auto 10px;
}

.vbe89naq-widget-brands .vbe89naq-item__link {
    color: #5B25CA;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vbe89naq-widget-brands .vbe89naq-btn {
    display: block;
}

@media (max-width: 1199px) {
    .vbe89naq-main {
        width: 60%;
    }

    .vbe89naq-sidebar {
        width: 40%;
    }

    .vbe89naq-widget-advice__picture--title {
        font-size: 21px;
    }
}

@media (max-width: 767px) {
    .vbe89naq-layout {
        display: block;
    }

    .vbe89naq-main {
        width: 100%;
    }

    .vbe89naq-sidebar {
        margin: 50px auto 0;
        max-width: 420px;
        width: 100%;
    }
}

/* charts */

.vbe89naq-charts {
    max-width: 1113px;
    position: relative;
    padding: 0;
    border-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.vbe89naq-charts__item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: none;
    border-radius: 6px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 180px;
    margin-bottom: 13px;
    width: 100%;
    box-shadow: 0px 1px 11.5px 0px #BFC9DCCC;
}

.vbe89naq-charts__item .vbe89naq-col-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    width: 28%;
}

.vbe89naq-charts__item .vbe89naq-col-center {
    padding: 20px 10px;
    width: 46%;
}

.vbe89naq-charts__item .vbe89naq-col-right {
    padding: 20px 10px;
    width: 26%;
}

.vbe89naq-charts__number {
    background-color: #CAD3E3;
    border-radius: 6px 0 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    top: -1px;
    left: -1px;
    position: absolute;
    padding: 5px 14px;
    height: 35px;
    z-index: 1;
}
.vbe89naq-charts__logo {
    max-height: 80px;
}

.vbe89naq-charts__hearts {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.vbe89naq-charts__heart {
    width: 16px;
    height: 14px;
    background-image: url(../images/icons/heart-vbe89naq.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0 1px;
}

.vbe89naq-charts__item:nth-of-type(n+4) .vbe89naq-charts__heart:nth-child(5) {
    background-image: url(../images/icons/heart-half-vbe89naq.png);
}

.vbe89naq-charts__item:nth-of-type(n+11) .vbe89naq-charts__heart:nth-child(5) {
    background-image: url(../images/icons/heart-vbe89naq.png);
}

.vbe89naq-charts__description li {
    padding-left: 25px;
    margin-bottom: 5px;
    position: relative;
}
.vbe89naq-charts__description li:first-child {
    font-weight: 700;
}
.vbe89naq-charts__description li::before {
    background: url(../images/icons/checkmark-vbe89naq.svg) no-repeat center;
    background-size: contain;
    content: "";
    top: 6px;
    left: 2px;
    position: absolute;
    height: 16px;
    min-width: 16px;
    width: 16px;
}

.vbe89naq-charts__score--value {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin-bottom: 10px;
    max-width: 164px;
    width: 100%;
}

.vbe89naq-charts__score--link {
    color: #969696;
    display: flex;
    gap: 6px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vbe89naq-charts .vbe89naq-btn {
    max-width: 164px;
    width: 100%;
}

.vbe89naq-charts__link {
    display: flex;
    justify-content: center;
    color: #5B25CA;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 10px;
    max-width: 164px;
}

.vbe89naq-charts {
    counter-reset: num;
}

.vbe89naq-charts__item:nth-of-type(n) .vbe89naq-charts__number span::before {
    content: counter(num);
    counter-increment: num;
}

.vbe89naq-charts__item:first-of-type {
    background-color: #F9F5FF;
    border: 2px solid #F23585;
}

.vbe89naq-charts__item:first-of-type .vbe89naq-charts__number {
    background-color: #F23585;
    top: -2px;
    left: -2px;
}

.vbe89naq-charts__item:first-of-type .vbe89naq-charts__number span::after {
    content: "Top offer";
    padding-left: 15px;
}

.vbe89naq-charts__item:first-of-type .vbe89naq-charts__number {
    background-color: #F23585;
    color: #fff;
}

.vbe89naq-charts__item .vbe89naq-charts__score--value::before {
    content: "7.0";
    font-weight: 700;
    margin-right: 8px;
}

.vbe89naq-charts__item:first-of-type .vbe89naq-charts__score--value::before {
    content: "9.7";
}

.vbe89naq-charts__item:nth-of-type(2) .vbe89naq-charts__score--value::before {
    content: "9.4";
}

.vbe89naq-charts__item:nth-of-type(3) .vbe89naq-charts__score--value::before {
    content: "9.3";
}

.vbe89naq-charts__item:nth-of-type(4) .vbe89naq-charts__score--value::before {
    content: "8.9";
}

.vbe89naq-charts__item:nth-of-type(5) .vbe89naq-charts__score--value::before {
    content: "8.8";
}

.vbe89naq-charts__item:nth-of-type(6) .vbe89naq-charts__score--value::before {
    content: "8.7";
}

.vbe89naq-charts__item:nth-of-type(7) .vbe89naq-charts__score--value::before {
    content: "8.5";
}

.vbe89naq-charts__item:nth-of-type(8) .vbe89naq-charts__score--value::before {
    content: "8.3";
}

.vbe89naq-charts__item:nth-of-type(9) .vbe89naq-charts__score--value::before {
    content: "8.2";
}

.vbe89naq-charts__item:nth-of-type(10) .vbe89naq-charts__score--value::before {
    content: "8.0";
}

.vbe89naq-charts__item:nth-of-type(11) .vbe89naq-charts__score--value::before {
    content: "7.9";
}

@media (max-width: 1199px) {
    .vbe89naq-charts__item {
        flex-direction: column;
        height: auto;
        padding: 25px 20px 10px;
    }

    .vbe89naq-charts__item .vbe89naq-col-left,
    .vbe89naq-charts__item .vbe89naq-col-center,
    .vbe89naq-charts__item .vbe89naq-col-right {
        padding: 10px 0;
        width: 100%;
    }

    .vbe89naq-charts__item .vbe89naq-col-center {
        order: 1;
    }

    .vbe89naq-charts__item .vbe89naq-col-right {
        text-align: center;
    }

    .vbe89naq-charts__score {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto;
        width: 100%;
    }

    .vbe89naq-charts__score--link {
        margin-bottom: 0;
    }

    .vbe89naq-charts__score--value,
    .vbe89naq-charts .vbe89naq-btn {
        max-width: 300px;
    }
}

@media (max-width: 767px) {
    .vbe89naq-charts__item {
        flex-direction: column;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        max-width: 380px;
        padding: 25px 20px 52px;
    }

    .vbe89naq-col-right .vbe89naq-charts__link {
        position: absolute;
        left: 20px;
        bottom: 22px;
    }
}

/* stories */

.vbe89naq-section-stories {
    padding: 53px 0 42px;
    overflow: hidden;
}
.vbe89naq-section-stories .vbe89naq-title {
    text-align: center;
}
.vbe89naq-stories__item {
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 10px 20px;
    padding: 18px 19px 22px;
    width: 33.3%;
}

.vbe89naq-stories__pic {
    border-radius: 50%;
    margin-right: 16px;
    width: 60px;
    min-width: 60px;
}

.vbe89naq-stories__name {
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.vbe89naq-stories--link {
    text-transform: uppercase;
    font-weight: 700;
    color: #5B25CA;
    margin-left: 8px;
    font-size: 16px;
}
.vbe89naq-vbe89naq-stories__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.vbe89naq-stories--bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}
.vbe89naq-stories--bottom .vbe89naq-btn {
    max-width: 161px;
    width: 100%;
}
.vbe89naq-stories__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.vbe89naq-stories__stars {
    display: flex;
    justify-content: center;
}

.vbe89naq-stories__star {
    width: 21px;
    height: 21px;
    background-image: url(../images/icons/star-vbe89naq.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 1px;
}

.vbe89naq-stories__star--half {
    background-image: url(../images/icons/star-half-vbe89naq.svg);
}

.vbe89naq-stories__star--empty {
    background-image: url(../images/icons/star-empty-vbe89naq.svg);
}

.vbe89naq-stories__item p {
    margin-bottom: 8px;
}
@media (max-width: 1199px) {
    .vbe89naq-stories {
        flex-wrap: wrap;
    }
    .vbe89naq-stories__item {
        width: 46%;
    }
    .vbe89naq-stories--bottom .vbe89naq-btn {
        max-width: 130px;
    }
}
@media (max-width: 767px) {
    .vbe89naq-section-stories {
        padding: 22px 0;
    }
    .vbe89naq-stories__item {
        margin-left: 0;
        margin-right: 0;
    }
    .vbe89naq-stories__item {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* page-reviews */

.vbe89naq-reviews-bg {
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    padding-top: 20px;
    padding-bottom: 20px;
    min-height: 332px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vbe89naq-reviews-bg--international {
    background-image: url(../images/bg-header/international-vbe89naq.png);
}

.vbe89naq-reviews-bg--ukrainian {
    background-image: url(../images/bg-header/ukrainian-vbe89naq.png);
}

.vbe89naq-reviews-bg--russian {
    background-image: url(../images/bg-header/russian-vbe89naq.png);
}

.vbe89naq-reviews-bg--reviews {
    background-image: url(../images/bg-header/reviews-vbe89naq.png);
}

.vbe89naq-reviews-bg--latin {
    background-image: url(../images/bg-header/latin-vbe89naq.png);
}

.vbe89naq-reviews-bg--asian {
    background-image: url(../images/bg-header/asian-vbe89naq.png);
}

.vbe89naq-reviews-bg--brand-asd {
    background-image: url(../images/bg-header/brand-asd-vbe89naq.png);
}

.vbe89naq-reviews-info {
    background: #EAE9F6;
    border-radius: 20px;
    max-width: 509px;
    padding: 25px 29px;
    width: 55%;
}

.vbe89naq-reviews-title {
    font-weight: 700;
    font-size: 24px;
    padding-bottom: 10px;
}

.vbe89naq-page-reviews .vbe89naq-btn {
    width: 100%;
    max-width: 134px;
}

.vbe89naq-reviews h2 {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #F85955;
    padding: 25px 0 20px;
}

.vbe89naq-reviews p {
    padding-bottom: 10px;
}

.vbe89naq-reviews a:not(.vbe89naq-btn) {
    color: #F85955;
    text-decoration: underline;
}

.vbe89naq-reviews b {
    font-weight: 700;
}

.vbe89naq-reviews ul,
.vbe89naq-reviews ol {
    padding-left: 20px;
    padding-bottom: 10px;
}

.vbe89naq-reviews ul li {
    list-style-type: disc;
}

.vbe89naq-reviews ol li {
    list-style-type: decimal;
}

.vbe89naq-reviews .vbe89naq-reviews__item {
    margin: 0 0 20px;
}

.vbe89naq-reviews .vbe89naq-reviews__item::before {
    position: absolute;
    width: 35px;
    height: 35px;
    background: rgba(228, 35, 40, 0.8);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    top: 10px;
    left: 10px;
    z-index: 3;
}

.vbe89naq-reviews .vbe89naq-reviews__item:nth-child(1):before {
    content: "1";
}

.vbe89naq-reviews .vbe89naq-reviews__item:nth-child(2):before {
    content: "2";
}

.vbe89naq-reviews .vbe89naq-reviews__item:nth-child(3):before {
    content: "3";
}

.vbe89naq-reviews .vbe89naq-reviews__item:nth-child(4):before {
    content: "4";
}

.vbe89naq-reviews .vbe89naq-reviews__item:nth-child(5):before {
    content: "5";
}

.vbe89naq-reviews .vbe89naq-reviews__item:nth-child(6):before {
    content: "6";
}

.vbe89naq-reviews .vbe89naq-reviews__item:nth-child(7):before {
    content: "7";
}

.vbe89naq-reviews .vbe89naq-reviews__item:nth-child(8):before {
    content: "8";
}

.vbe89naq-reviews .vbe89naq-reviews__item:nth-child(9):before {
    content: "9";
}

.vbe89naq-reviews .vbe89naq-reviews__item:nth-child(10):before {
    content: "10";
}


@media (max-width: 1023px) {
    .vbe89naq-reviews-bg {
        background-position: right -100px bottom;
    }

    .vbe89naq-reviews-bg {
        background-position: right -155px bottom;
    }
}

@media (max-width: 767px) {
    .vbe89naq-reviews-header {
        background: none;
    }

    .vbe89naq-reviews-bg {
        min-height: auto;
        position: relative;
        padding-top: 20px;
        padding-bottom: 0;
        background: none;
    }

    .vbe89naq-page-brand .vbe89naq-reviews__pic,
    .vbe89naq-page-reviews .vbe89naq-reviews__pic {
        height: 193px;
        width: 320px;
    }

    .vbe89naq-page-brand .vbe89naq-reviews__item::after,
    .vbe89naq-page-reviews .vbe89naq-reviews__item::after {
        height: 193px;
    }

    .vbe89naq-reviews-info {
        padding: 17px 15px;
        margin: 0 auto;
        width: auto;
        z-index: 2;
    }

    .vbe89naq-reviews-title {
        font-size: 28px;
        line-height: 1.2;
        padding-bottom: 0;
        cursor: pointer;
    }

    .vbe89naq-reviews-text {
        padding-top: 15px;
    }

    .vbe89naq-page-reviews .vbe89naq-btn {
        max-width: 100%;
    }

    .vbe89naq-reviews h2 {
        padding-bottom: 14px;
    }
}

@media (max-width: 560px) {
    .vbe89naq-reviews-title {
        font-size: 22px;
    }

    .vbe89naq-page-brand .vbe89naq-reviews__pic,
    .vbe89naq-page-reviews .vbe89naq-reviews__pic {
        height: 150px;
        width: 250px;
    }

    .vbe89naq-page-brand .vbe89naq-reviews__item::after,
    .vbe89naq-page-reviews .vbe89naq-reviews__item::after {
        height: 170px;
    }
}

/* page-brand */

.vbe89naq-brand {
    padding-top: 34px;
    padding-bottom: 131px;
}

.vbe89naq-brand-review {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: calc(100% - 320px);
}

.vbe89naq-brand-intro__logo {
    margin-bottom: 24px;
}

.vbe89naq-brand-intro__score--value {
    display: block;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.vbe89naq-brand-intro__score--link {
    color: #969696;
    display: flex;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vbe89naq-brand-intro__stars {
    display: flex;
    justify-content: center;
}

.vbe89naq-brand-intro__star {
    width: 24px;
    height: 23px;
    background-image: url(../images/icons/star-vbe89naq.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 1px;
}

.vbe89naq-brand-intro__star--half {
    background-image: url(../images/icons/star-half-vbe89naq.svg);
}

.vbe89naq-brand-intro__star--empty {
    background-image: url(../images/icons/star-empty-vbe89naq.svg);
}

.vbe89naq-brand-info {
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    padding-top: 42px;
    padding-bottom: 40px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    min-height: 288px;
}

.vbe89naq-brand-bg-asd {
    background-image: url(../images/bg-header/brand-asd-vbe89naq.png);
}

.vbe89naq-brand-bg-asm {
    background-image: url(../images/bg-header/brand-asm-vbe89naq.png);
}

.vbe89naq-brand-bg-dat {
    background-image: url(../images/bg-header/brand-dat-vbe89naq.png);
}

.vbe89naq-brand-bg-eah {
    background-image: url(../images/bg-header/brand-eah-vbe89naq.png);
}

.vbe89naq-brand-bg-goc {
    background-image: url(../images/bg-header/brand-goc-vbe89naq.png);
}

.vbe89naq-brand-bg-lwh {
    background-image: url(../images/bg-header/brand-lwh-vbe89naq.png);
}

.vbe89naq-brand-bg-nao {
    background-image: url(../images/bg-header/brand-nao-vbe89naq.png);
}

.vbe89naq-brand-bg-orc {
    background-image: url(../images/bg-header/brand-orc-vbe89naq.png);
}

.vbe89naq-brand-bg-sac {
    background-image: url(../images/bg-header/brand-sac-vbe89naq.png);
}

.vbe89naq-brand-bg-thc {
    background-image: url(../images/bg-header/brand-thc-vbe89naq.png);
}

.vbe89naq-brand-bg-sof {
    background-image: url(../images/bg-header/brand-sof-vbe89naq.png);
}

.vbe89naq-brand-text {
    background-color: #EAE9F6;
    border-radius: 20px;
    max-width: 456px;
    padding: 20px;
    width: 40%;
}

.vbe89naq-brand-image {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    max-width: 380px;
    width: 40%;
}

.vbe89naq-brand-description {
    padding-bottom: 30px;
}
.vbe89naq-brand-description .vbe89naq-main {
    background: #ffffff;
    border-radius: 4px;
    padding: 30px;
}
.vbe89naq-brand-description .vbe89naq-subtitle {
    font-weight: 700;
    margin-bottom: 15px;
}

.vbe89naq-brand-description .vbe89naq-main p {
    margin-bottom: 15px;
}

.vbe89naq-brand-description .vbe89naq-main ul {
    list-style-type: disc;
    padding-left: 1.25em;
}

.vbe89naq-brand-description .vbe89naq-main li {
    margin-bottom: 15px;
}

.vbe89naq-brand-description .vbe89naq-main .vbe89naq-btn {
    display: block;
    margin: 32px auto 0;
    max-width: 290px;
}

.vbe89naq-page-brand {
    padding: 37px 15px 8px;
}

@media (max-width: 1023px) {
    .vbe89naq-brand-info {
        background-position: center right -50px;
    }

    .vbe89naq-brand-image {
        max-width: 180px;
    }
}

@media (max-width: 767px) {
    .vbe89naq-brand-info {
        background: none;
        flex-direction: column;
    }

    .vbe89naq-brand-text {
        margin: 0 auto;
        width: 100%;
    }

    .vbe89naq-brand-image {
        margin: 0 auto;
        width: 100%;
    }
    .vbe89naq-page-brand {
        padding: 7px 0px 10px;
    }
}

/* slider */

.vbe89naq-slider-outher {
    position: relative;
    margin: 0 -10px;
    width: calc(100% + 20px);
}

.vbe89naq-slider-outher .slick-track {
    display: flex !important;
}

.vbe89naq-slider-outher .slick-slide {
    height: inherit !important;
}

.vbe89naq-slider-next,
.vbe89naq-slider-prev {
    position: absolute;
    z-index: 10;
    width: 45px;
    height: 60px;
    background-color: #969696;
    top: calc(50% - 45px);
    cursor: pointer;
}

.vbe89naq-slider-prev {
    border-radius: 10px 0 0 10px;
    left: -34px;
}

.vbe89naq-slider-next {
    border-radius: 0 10px 10px 0;
    right: -36px;
}

.vbe89naq-slider-next::after,
.vbe89naq-slider-prev::after {
    border: 2px solid #fff;
    border-width: 0 0 2px 2px;
    display: block;
    content: "";
    top: 20px;
    left: 18px;
    position: absolute;
    height: 16px;
    width: 16px;
    transform: rotateZ(45deg);
}

.vbe89naq-slider-next::after {
    border-width: 2px 2px 0 0;
    left: 10px;
}
.vbe89naq-stories {
    display: flex;
    align-items: normal;
}
.vbe89naq-slider {
    margin: auto;
}

.slick-list {
    padding: 0 !important;
}

.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-dots li {
    display: flex;
}

.slick-dots button {
    padding: 0;
    font-size: 0;
    margin: 0 5px;
    width: 28px;
    height: 16px;
    border: 1px solid #F85955;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.slick-dots .slick-active button {
    background: #F85955;
}

@media (max-width: 1199px) {
    .vbe89naq-slider-outher {
        margin: 0;
        padding: 0 30px;
        width: 100%;
    }

    .vbe89naq-slider-next {
        right: -4px;
    }

    .vbe89naq-slider-prev {
        left: -4px;
    }
}

@media (max-width: 767px) {
    .vbe89naq-slider-outher {
        padding: 0;
    }

    .vbe89naq-slider-next,
    .vbe89naq-slider-prev {
        opacity: 0.8;
        height: 37px;
        width: 28px;
    }

    .vbe89naq-slider-next {
        right: -12px;
    }

    .vbe89naq-slider-prev {
        left: -12px;
    }

    .vbe89naq-slider-next::after,
    .vbe89naq-slider-prev::after {
        top: 13px;
        left: 12px;
        height: 8px;
        width: 8px;
    }

    .vbe89naq-slider-next::after {
        left: 8px;
    }
}

/* awards */
.vbe89naq-section-awards {
    background: #1D1D6A;
    padding: 62px 20px 56px;
}

.vbe89naq-awards {
    background-color: #fff;
    border: 2px solid #F23585;
    border-radius: 8px;
    padding: 20px 35px;
    margin: 0 auto;
    max-width: 780px;
    width: 100%;
    text-align: center;
}

.vbe89naq-awards .vbe89naq-title {
    margin-bottom: 10px;
}

.vbe89naq-awards__item {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1.6fr;
    gap: 20px;
    padding: 16px 0;
}

.vbe89naq-awards__item:not(:last-child) {
    border-bottom: 1px solid #E0E0E0;
}

.vbe89naq-awards__place,
.vbe89naq-awards__logo,
.vbe89naq-awards__rating,
.vbe89naq-awards__button {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vbe89naq-awards__place {
    /* width: 15%; */
}

.vbe89naq-awards__logo {
    align-items: center;
    /* width: 30%; */
}

.vbe89naq-awards__rating {
    align-items: center;
    /* width: 30%; */
}

.vbe89naq-awards__button {
    /* width: 25%; */
}


.vbe89naq-awards__score {
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 8px;
}

.vbe89naq-awards__item:first-of-type .vbe89naq-awards__score::before {
    content: "8.8";
    font-weight: 700;
    margin-right: 8px;
}

.vbe89naq-awards__item:nth-of-type(2) .vbe89naq-awards__score::before {
    content: "9.3";
    font-weight: 700;
    margin-right: 8px;
}

.vbe89naq-awards__item:nth-of-type(3) .vbe89naq-awards__score::before {
    content: "9.7";
    font-weight: 700;
    margin-right: 8px;
}

.vbe89naq-awards__hearts {
    display: flex;
    justify-content: center;
}

.vbe89naq-awards__heart {
    width: 16px;
    height: 14px;
    background-image: url(../images/icons/heart-vbe89naq.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 1px;
}

/* .vbe89naq-awards__item:nth-child(1) .vbe89naq-awards__heart:nth-child(5) {
    background-image: url(../images/icons/heart-half-vbe89naq.png);
} */

.vbe89naq-awards__item:nth-of-type(1) .vbe89naq-awards__heart:last-child {
    background-image: url(../images/icons/heart-vbe89naq.png);
}

@media (max-width: 1199px) {
    .vbe89naq-awards {
        max-width: 580px;
    }
}

@media (max-width: 767px) {
    .vbe89naq-section-awards {
        padding: 42px 20px;
    }
    .vbe89naq-awards__place {
        align-items: center;
    }
    .vbe89naq-awards__place img {
        height: 55px;
    }
    .vbe89naq-awards__item {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 5px;
    }
    .vbe89naq-awards__score {
        margin-bottom: 0;
    }
    .vbe89naq-awards__score span {
        display: none;
    }
    .vbe89naq-awards__rating {
        flex-direction: row;
        align-items: center;
        grid-row: 1/2;
        grid-column: 2;
    }
    .vbe89naq-awards {
        padding: 10px 20px 20px;
    }
}

/* page advice */

.vbe89naq-advice-header {
    padding-top: 50px;
}

.vbe89naq-advice {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 62px;
}

.vbe89naq-advice__item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    width: calc(33.3% - 20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vbe89naq-advice__pic {
    width: 100%;
}

.vbe89naq-advice__pic img {
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    height: 100%;
}

.vbe89naq-advice__text {
    width: 100%;
}

.vbe89naq-advice__title {
    font-weight: 700;
    margin-bottom: 10px;
}

.vbe89naq-advice__item p {
    margin-bottom: 10px;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vbe89naq-advice__info {
    display: flex;
    justify-content: space-between;
}

.vbe89naq-advice__link {
    color: #F85955;
    font-size: 16px;
    text-transform: uppercase;
}
.vbe89naq-advice--btn {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #5B25CA;
}

@media (max-width: 1199px) {
    .vbe89naq-advice__item {
        width: 100%;
    }
    .vbe89naq-advice-header {
        padding-top: 20px;
    }
}

@media (max-width: 575px) {
    .vbe89naq-advice {
        margin: 0 auto;
        max-width: 420px;
    }

    .vbe89naq-advice__item {
        flex-direction: column;
    }

    .vbe89naq-advice__item .vbe89naq-btn {
        display: block;
        margin: 0 auto;
    }
}

/* advice single */

.vbe89naq-advice-single {
    padding: 42px 0 30px;
}

.vbe89naq-advice-single .vbe89naq-single__pic {
    border-radius: 6px;
    margin-bottom: 30px;
}

.vbe89naq-single__title {
    font-weight: 700;
    margin-bottom: 15px;
}

.vbe89naq-advice-single .vbe89naq-main p {
    margin-bottom: 15px;
}

.vbe89naq-advice-single .vbe89naq-main ul {
    list-style-type: disc;
    padding-left: 1.25em;
}

.vbe89naq-advice-single .vbe89naq-main li {
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .vbe89naq-advice-single {
        padding: 20px 0 0;
    }
    .vbe89naq-advice-single .vbe89naq-single__pic {
        margin-bottom: 16px;
    }
}
/* modal */

.modal-backdrop {
    z-index: 101 !important;
    background: rgba(0, 0, 0, 0.6);
}

.modal .modal-content {
    margin-top: 120px;
    padding: 22px 31px;
    background: #F6F6FB;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    color: #222;
}

.modal--big .modal-dialog {
    max-width: 1110px;
}

.modal p {
    text-align: center;
    font-size: 18px;
    padding-bottom: 20px;
}

.modal b {
    font-weight: 700;
}

.modal .modal-title {
    font-weight: 700;
    font-size: 38px;
    color: #F85955;
    text-align: left;
    padding-bottom: 15px;
}

.modal .vbe89naq-btn-close {
    width: 30px;
    height: 30px;
    position: absolute;
    background: none;
    border-radius: 0;
    right: 29px;
    top: 39px;
    display: block;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.modal .vbe89naq-btn-close:before,
.modal .vbe89naq-btn-close:after {
    content: "";
    position: absolute;
    height: 3px;
    background-color: #222;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
    will-change: transform;
    transform-origin: left center;
    width: 100%;
}

.modal .vbe89naq-btn-close:before {
    transform: rotate(45deg);
    top: 0;
}

.modal .vbe89naq-btn-close:after {
    transform: rotate(-45deg);
    top: 21px;
}

.modal .vbe89naq-btn {
    width: 100%;
    max-width: 135px;
    margin: 0 auto;
    display: block;
}

.modal .vbe89naq-charts__item {
    max-width: 32.7%;
    margin-bottom: 8px;
}

@media (max-width: 767px) {
    .modal .modal-content {
        padding: 15px 20px;
    }

    .modal p {
        font-size: 15px;
        padding-bottom: 10px;
    }

    .modal .modal-title {
        font-size: 20px;
    }

    .modal .vbe89naq-btn-close {
        right: 7px;
        top: 17px;
    }

    .modal .vbe89naq-charts__item {
        margin-bottom: 8px;
    }
}

/* text page */

.vbe89naq-text-page {
    padding: 67px 0 114px;
    line-height: 1.5;
}

.vbe89naq-text-page h2,
.vbe89naq-text-page h3 {
    font-weight: 700;
    font-size: 20px;
    color: #5B25CA;
    padding: 27px 0 15px;
}

.vbe89naq-text-page p {
    padding-bottom: 15px;
}

.vbe89naq-text-page b {
    font-weight: 700;
}

.vbe89naq-text-page .vbe89naq-p-left,
.vbe89naq-text-page ul,
.vbe89naq-text-page ol {
    padding-left: 21px;
}

.vbe89naq-text-page ul,
.vbe89naq-text-page ol {
    padding-bottom: 5px;
}

.vbe89naq-text-page ul li {
    list-style-type: disc;
    padding-bottom: 10px;
}

.vbe89naq-text-page ol li {
    list-style-type: none;
    padding-bottom: 15px;
}

.vbe89naq-text-page li ul {
    padding-top: 10px;
}

.vbe89naq-text-page li li {
    list-style-type: square;
}

.vbe89naq-text-page a {
    font-weight: 700;
    color: #5B25CA;
}

.vbe89naq-text-page h1~h2:nth-child(2) {
    padding-top: 0;
}

@media (max-width: 767px) {
    .vbe89naq-text-page {
        padding: 40px 0 64px;
    }
}

/* form */

.vbe89naq-form {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #ffffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.vbe89naq-form__pic {
    width: 100%;
    max-width: 403px;
    background: url(../images/form-vbe89naq.jpg) no-repeat center/cover;
}

.vbe89naq-form__info {
    flex-grow: 1;
    padding: 40px;
}

.vbe89naq-form__row {
    padding-bottom: 10px;
    position: relative;
}

.vbe89naq-form__control {
    display: block;
    width: 100%;
    font-family: "Manrope", sans-serif;
    outline: none;
    height: 47px;
    background: #F6F6FB;
    border-radius: 5px;
    font-weight: 400;
    font-size: 14px;
    color: #222222;
    border: 1px solid #F6F6FB;
    padding: 13px 20px;
}

textarea.vbe89naq-form__control {
    resize: none;
    height: 213px;
}

.vbe89naq-form .vbe89naq-btn {
    width: 100%;
    max-width: 135px;
    margin-top: 10px;
}

.vbe89naq-form__control.error {
    border-color: #F23585;
}

label.error {
    /* position: absolute;
    left: 7px;
    bottom: 10px; */
    color: #F23585;
    font-size: 12px;
}

.vbe89naq-form-bg {
    background: url(../images/form-vbe89naq.jpg) no-repeat center/cover;
    height: 419px;
    width: calc(100% + 30px);
    margin: 0 -15px 26px;
    display: none;
}

@media (max-width: 767px) {
    .vbe89naq-form {
        max-width: 500px;
        margin: 0 auto;
    }

    .vbe89naq-text-page--form {
        padding-top: 0;
    }

    .vbe89naq-text-page--form .vbe89naq-title {
        padding-bottom: 17px;
    }

    .vbe89naq-form-bg {
        display: block;
    }

    .vbe89naq-form__pic {
        display: none;
    }

    .vbe89naq-form__info {
        padding: 15px;
    }

    .vbe89naq-form .vbe89naq-btn {
        max-width: 100%;
    }
}

/* reviews list */

.vbe89naq-page-reviewlist {
    padding: 50px 0;
}

.vbe89naq-page-reviewlist .vbe89naq-description {
    margin-bottom: 20px;
}

.vbe89naq-reviewlist {
    padding-bottom: 20px;
}

.vbe89naq-reviewlist__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 249px;
    padding: 20px;
    margin-bottom: 10px;
    gap: 20px;
}

.vbe89naq-reviewlist__logo {
    margin-right: 15px;
}

.vbe89naq-reviewlist__info {
    color: #5B5B5B;
}

.vbe89naq-reviewlist__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.vbe89naq-reviewlist__hearts {
    display: flex;
    justify-content: center;
}

.vbe89naq-reviewlist__heart {
    width: 16px;
    height: 14px;
    background-image: url(../images/icons/heart-vbe89naq.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 1px;
}

.vbe89naq-reviewlist__heart--half {
    background-image: url(../images/icons/heart-half-vbe89naq.png);
}

.vbe89naq-reviewlist__heart--empty {
    background-image: url(../images/icons/heart-empty-vbe89naq.png);
}

.vbe89naq-reviewlist__txt {
    margin-bottom: 15px;
}

.vbe89naq-reviewlist__link {
    font-weight: 700;
    color: #5B25CA;
    text-transform: uppercase;
}

.vbe89naq-reviewlist__link svg {
    margin-left: 10px;
    position: relative;
    top: 2px;
}

.vbe89naq-reviewlist__item .vbe89naq-btn {
    width: 100%;
    max-width: 188px;
}

@media (max-width: 768px) {
    .vbe89naq-reviewlist {
        padding-top: 21px;
        padding-bottom: 69px;
    }
    .vbe89naq-page-reviewlist {
        padding: 20px 0;
    }
    .vbe89naq-reviewlist__item {
        flex-direction: column;
    }

    .vbe89naq-reviewlist__header {
        flex-direction: column;
    }

    .vbe89naq-reviewlist__logo {
        margin: 0 auto 10px;
    }

    .vbe89naq-reviewlist__info {
        display: flex;
        flex-direction: column;
    }

    .vbe89naq-reviewlist__item .vbe89naq-btn {
        order: 4;
        margin: 0 auto;
        max-width: 290px;
    }
}

@media (max-width: 560px) {
    .vbe89naq-reviewlist__logo {
        margin-bottom: 5px;
    }
}
.vbe89naq-information {
    color: #4F4F4F;
}
.vbe89naq-section-information {
    padding: 20px 0 62px;
}
.vbe89naq-information .vbe89naq-title {
    text-align: center;
}
.vbe89naq-section-information p {
    margin-bottom: 24px;
}
.vbe89naq-section-information p strong {
    display: block;
    color: #333333;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .vbe89naq-section-information {
        padding: 20px 0 22px;
    }
}




.vbe89naq-as--site {
    padding: 0;
}

.vbe89naq-content {
    color: #000000;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100vh;
}
.vbe89naq-main--content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 20px 30px;
    overflow-x: hidden;
}
.vbe89naq-main--bg {
    background-image: url(../images/bg-main-1.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.vbe89naq-main--bg-3 {
    background-image: url(../images/bg-main-3.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.vbe89naq-main--bg-4 {
    background-image: url(../images/bg-main-4.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.vbe89naq-main--bg-5 {
    background-image: url(../images/bg-main-5.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.vbe89naq-main--bg-6 {
    background-image: url(../images/bg-main-6.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.vbe89naq-main--bg-yourperfect {
    background-image: url(../images/bg-main-8.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}
.vbe89naq-step {
    max-width: 706px;
    width: 100%;
    margin: 0 0 0 auto;
    background: #ffffff;
    border-radius: 40px;
    padding: 80px 55px;
}
.vbe89naq-large--block .vbe89naq-step {
    max-width: 906px;
}
.vbe89naq-title--large {
    font-size: 64px;
    line-height: 70px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 42px;
}
.vbe89naq-main--bg-yourperfect .vbe89naq-title--large {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 26px;
}
.vbe89naq-text--small {
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    margin-bottom: 20px;
}
.vbe89naq-main--bg-yourperfect .vbe89naq-text--small {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 34px;
}

.vbe89naq-text--small + .vbe89naq-text--small {
    margin-bottom: 70px;
}
.vbe89naq-button {
    font-family: "Inter", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 126px;
    background: #37B717;
    border-radius: 100px;
    padding: 10px;
    color: #ffffff;
    font-size: 48px;
    line-height: 58px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s linear;
    border: none;
    outline: 0;
}



@media (max-height: 800px) {
    .vbe89naq-step {
        max-width: 606px;
        padding: 60px 40px;
    }
    .vbe89naq-large--block .vbe89naq-step {
        max-width: 606px;
    }
    .vbe89naq-title--large {
        font-size: 50px;
        line-height: 54px;
        font-weight: 700;
        margin-bottom: 30px;
    }
    .vbe89naq-text--small {
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 15px;
    }
    .vbe89naq-text--small + .vbe89naq-text--small {
        margin-bottom: 50px;
    }
    .vbe89naq-button {
        font-size: 32px;
        line-height: 40px;
        height: 100px;
    }
}

@media (max-width: 1024px) {
    .vbe89naq-main--content {
        justify-content: flex-end;
    }
    .vbe89naq-step {
        max-width: 606px;
        padding: 60px 40px;
        margin: 0 auto;
    }
    .vbe89naq-title--large {
        font-size: 50px;
        line-height: 54px;
        font-weight: 700;
        margin-bottom: 30px;
    }
    .vbe89naq-text--small {
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 50px;
    }
    .vbe89naq-button {
        font-size: 32px;
        line-height: 40px;
        height: 100px;
    }
    .vbe89naq-main--bg-yourperfect .vbe89naq-text--small {
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 50px;
    }
    .vbe89naq-main--bg-yourperfect .vbe89naq-title--large {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px;
    }
    .vbe89naq-main--bg-yourperfect .vbe89naq-text--small {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 24px;
    }
    .vbe89naq-main--bg-yourperfect .vbe89naq-title--large {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 16px;
    }
}

@media (max-width: 680px) {
    .vbe89naq-main--content {
        padding: 20px 15px;
    }
    .vbe89naq-main--bg {
        background-image: url(../images/bg-main-mob-1.jpg);
    }
    .vbe89naq-main--bg-3 {
        background-image: url(../images/bg-main-mob-3.jpg);
    }
    .vbe89naq-main--bg-4 {
        background-image: url(../images/bg-main-mob-4.jpg);
    }
    .vbe89naq-main--bg-5 {
        background-image: url(../images/bg-main-mob-5.jpg);
    }
    .vbe89naq-main--bg-6 {
        background-image: url(../images/bg-main-mob-6.jpg);
    }
    .vbe89naq-main--bg-yourperfect {
        background-image: url(../images/bg-main-mob-8.jpg);
        background-repeat: no-repeat;
        background-position: top;
        background-size: cover;
    }
    .vbe89naq-title--large {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 12px;
    }

    .vbe89naq-text--small {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 10px;
    }

    .vbe89naq-text--small + .vbe89naq-text--small {
        margin-bottom: 25px;
    }
    .vbe89naq-button {
        height: 62px;
        font-size: 20px;
        line-height: 26px;
    }
    .vbe89naq-step {
        padding: 41px 27px 45px;
    }
}












/* ------------------------------- */


.vbe89naq-main--bg-7 {
    background-color: #D0BAFF;
    background-image: url(../images/bg-main-7.jpg);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}
.vbe89naq-main--bg-7 .vbe89naq-title--large {
    font-size: 58px;
    line-height: 70px;
}
.vbe89naq-main--bg-7 .vbe89naq-text--small {
    font-size: 38px;
    line-height: 46px;
    margin-bottom: 50px;
}
.vbe89naq-main--bg-7 .vbe89naq-button {
    background: #5419D2;
}
.vbe89naq-step {
    max-width: 655px;
}

@media (max-width: 680px) {
    .vbe89naq-main--bg-7 {
        background-image: url(../images/bg-main-mob-7.jpg);
        padding: 20px 15px 58px;
    }
    .vbe89naq-main--bg-7 .vbe89naq-title--large {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 24px;
    }
    .vbe89naq-main--bg-7 .vbe89naq-text--small {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 24px;
    }
}








/* Quiz */
.vbe89naq-quiz--body {
    font-family: "Montserrat", sans-serif;
    padding: 0;
    color: #000000;
}
.vbe89naq-quiz__bg {
    background-image: url(../images/bg-quiz-vbe89naq.jpg);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    animation: animatedBackground 40s linear infinite;
    background-size: cover;
    background-position: center;
}

@keyframes animatedBackground {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 0 0;
    }
}

.vbe89naq-quiz__bg::after {
    content: '';
    background: rgb(255 255 255 / 50%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.vbe89naq-quiz__block {
    padding: 35px 14px 30px;
    height: 100%;
}
.vbe89naq-quiz__layout {
    position: relative;
    z-index: 9;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}
.vbe89naq-quiz__item {
    display: none;
    animation: slide-in-bottom 0.6s linear both;
}
@keyframes slide-in-bottom {
    0% {
      transform: translateY(30px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
}
.vbe89naq-quiz__item.vbe89naq-quiz__item-first {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}
.vbe89naq-quiz__item.quiz-active {
    display: block;
}

.vbe89naq-quiz__pic {
    position: relative;
    margin-bottom: 40px;
}
.vbe89naq-quiz__pic::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: #DC004F;
    border-radius: 20px;
}
.vbe89naq-quiz__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.vbe89naq-quiz__title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.vbe89naq-quiz__text {
    font-size: 20px;
    line-height: 26px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px;
    color: #DC004F;
}
.vbe89naq-quiz__subtitle {
    font-size: 20px;
    line-height: 26px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}
.vbe89naq-quiz__item-final .vbe89naq-quiz__subtitle {
    text-align: left;
}

.vbe89naq-quiz__btn {
    font-family: "Manrope", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DC004F;
    border-radius: 20px;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    max-width: 140px;
    width: 100%;
    height: 63px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    transition: all 0.2s linear;
    border: 2px solid #DC004F;
    outline: 0;
    box-shadow: 0px 20px 50px 0px #00000080;
}
.vbe89naq-quiz__btn:hover {
    background: transparent;
    color: #DC004F;
}
.vbe89naq-quiz__item-final .vbe89naq-quiz__btn {
    box-shadow: none;
}
.vbe89naq-quiz__number {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    border-radius: 20px;
    background: #424242;
    color: #ffffff;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}
.vbe89naq-answer__list {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 6px;
}
.vbe89naq-answer__item {
    border: 1px solid #DC004F;
    border-radius: 20px;
    font-size: 18px;
    line-height: 22px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color:#DC004F;
    transition: .5s;
}
.vbe89naq-answer__item:hover {
    color: #FFFFFF;
    background: #DC004F;
}
.vbe89naq-answer__item.active {
    background: #DC004F;
}
.vbe89naq-result__list {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 4px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 26px;
}
.vbe89naq-result__text {
    margin-top: 10px;
}
.vbe89naq-quiz__union {
    padding: 0 16px;
}
.vbe89naq-quiz__item-final .vbe89naq-quiz__union {
    box-shadow: 0px 4px 10px 0px #00000040;
    border-radius: 20px;
    background: #ffffff;
    padding: 16px;
}

@media (max-width: 680px) {
    .vbe89naq-quiz__pic {
        margin-bottom: 30px;
    }
    .vbe89naq-quiz__pic::after {
        bottom: -8px;
    }
    .vbe89naq-quiz__union {
        padding: 0;
    }
    .vbe89naq-quiz__title {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 20px;
    }
    .vbe89naq-quiz__text {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    .vbe89naq-quiz__number {
        font-size: 20px;
        line-height: 24px;
        padding: 10px;
        margin-bottom: 20px;
    }
    .vbe89naq-quiz__subtitle {
        margin-bottom: 20px;
        padding: 0 10px;
    }
    .vbe89naq-quiz__item-final .vbe89naq-quiz__subtitle {
        padding: 0;
    }
    .vbe89naq-result__list {
        color: #DC004F;
    }
}


/* Quiz 2 */
.vbe89naq-exam--block {
    background-image: url(../images/bg-quiz-2-vbe89naq.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #ffffff;
}
.vbe89naq-exam--layout {
    width: 100%;
    height: 100%;
    padding: 0 20px;
}
.vbe89naq-exam--body {
    height: 100%;
    padding: 0;
}
.vbe89naq-exam--block {
    height: 100%;
}
.examSwiper {
    height: 100%;
}
.examSwiper .swiper-wrapper {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}
.vbe89naq-exam--image {
    max-width: 320px;
    width: 100%;
    margin: 0 auto 20px;
}
.vbe89naq-exam--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}
.swiper-button-next, .swiper-button-prev {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0;
}
.vbe89naq-exam--btn {
    font-family: "Manrope", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #B61088;
    border-radius: 4px;
    padding: 10px;
    color: #fff;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    max-width: 240px;
    width: 100%;
    height: 52px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    transition: all 0.2s linear;
    border: 2px solid #B61088;
    outline: 0;
    box-shadow: 0px 3px 12px 0px #0000001A;
    right: auto;
    top: auto;
}
.vbe89naq-exam--btn:hover {
    background: #ff24c2;
    border: 2px solid #ff24c2;
}
.vbe89naq-exam--item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vbe89naq-exam--title {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}
.vbe89naq-exam--text {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}
.vbe89naq-exam--subtext {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    margin-top: 20px;
}
.vbe89naq-exam--arrows {
    position: fixed;
    bottom: 38px;
    right: 27px;
    display: flex;
    align-items: center;
}

.vbe89naq-exam--arrows .swiper-button-next {
    width: 36px;
    min-width: 36px;
    height: 32px;
    background: #B61088;
    border-radius: 0 4px 4px 0;
}
.vbe89naq-exam--arrows .swiper-button-prev {
    width: 36px;
    min-width: 36px;
    height: 32px;
    background: #B61088;
    border-radius: 4px 0 0 4px;
}
.vbe89naq-exam--arrows .swiper-button-prev::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background: #ffffff;
}
.vbe89naq-slide--btn {
    display: flex;
    align-items: center;
    justify-content: center;
}
.vbe89naq-slide--btn .swiper-button-next {
    width: 52px;
    min-width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 50%;
}
.vbe89naq-slide--btn .swiper-button-next + .swiper-button-next {
    margin-left: 40px;
}
.vbe89naq-exam--top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.vbe89naq-exam--top .vbe89naq-exam--title {
    text-align: left;
    margin: 0;
}
.vbe89naq-exam--top svg {
    margin: 0 10px;
    min-width: 10px;
}
.vbe89naq-inquirer--list {
    max-width: 400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
    margin-bottom: 20px;
}
.vbe89naq-inquirer--item {
    color: #ffffff;
    width: 100%;
    height: 52px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 5px 5px 15px;
    cursor: pointer;
    background: #FFFFFF1A;
    transition: .3s;
}
.vbe89naq-inquirer--item:hover {
    background: #FFFFFF66;
}
.vbe89naq-inquirer--letter {
    width: 32px;
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FFFFFF;
    border-radius: 3px;
    background: #000000;
    margin-right: 10px;
    font-size: 24px;
    line-height: 26px;
    font-weight: 600;
}
.vbe89naq-exam--item-first.vbe89naq-exam--item .vbe89naq-exam--btn {
    margin: 0 auto;
}
.vbe89naq-exam--item-final.vbe89naq-exam--item .vbe89naq-exam--btn {
    margin: 0 auto;
}
.vbe89naq-exam--item .vbe89naq-exam--btn {
    margin: 0;
}
.vbe89naq-exam--item-final .vbe89naq-exam--text {
    font-weight: 400;
    margin-bottom: 10px;
}
.vbe89naq-subtext--final {
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

@media (max-height: 900px) {
    .vbe89naq-exam--image img {
        height: 340px;
    }
}
@media (max-height: 700px) {
    .vbe89naq-exam--image img {
        height: 300px;
    }
}
@media (max-height: 500px) {
    .vbe89naq-exam--image {
        display: none;
    }
}

@media (max-width: 680px) {
    .vbe89naq-exam--block {
        background-image: url(../images/bg-quiz-mob2-vbe89naq.jpg);
    }
    .vbe89naq-exam--title {
        font-size: 18px;
        line-height: 28px;
    }
    .vbe89naq-exam--text {
        font-size: 18px;
        line-height: 24px;
    }
    .vbe89naq-exam--btn {
        font-size: 22px;
        line-height: 26px;
        letter-spacing: 1px;
    }
    .vbe89naq-exam--subtext {
        font-size: 18px;
        line-height: 24px;
    }
    .vbe89naq-exam--arrows {
        display: none !important;
    }
    .vbe89naq-inquirer--list {
        font-size: 15px;
        line-height: 20px;
    }
    .vbe89naq-inquirer--letter {
        font-size: 16px;
        line-height: 20px;
    }
    .vbe89naq-exam--item-final .vbe89naq-exam--text {
        font-size: 16px;
        line-height: 22px;
    }
}