@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=Jura:wght@300..700&display=swap");
/*
    font-family: "Manrope", sans-serif;
*/

/* foundation */

body {
    background-color: #f5f5f5;
    color: #252525;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    font-family: "Manrope", sans-serif;
    padding-top: 66px;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

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

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

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

/* button */

.naq931bgt-btn {
    font-family: "Manrope", sans-serif;
    display: inline-block;
    background-color: #4fc2c4;
    border-radius: 100px;
    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;
}

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

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

.naq931bgt-btn__top {
    position: absolute;
    border: none;
    width: 50px;
    height: 50px;
    background-color: #4fc2c4;
    position: fixed;
    bottom: 43px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.naq931bgt-btn:hover {
    background: #008083;
}
.naq931bgt-btn__top:hover {
    background: #008083;
}

/* header */

.naq931bgt-headline {
    background-color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 0;
}

.naq931bgt-headline::after {
    content: "";
    position: absolute;
    z-index: 900;
    height: 1px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #005f60;
}

.naq931bgt-headline__logo {
    max-width: 278px;
    position: relative;
    z-index: 150;
}

.naq931bgt-headline__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1199px) {
    .naq931bgt-headline__logo {
        max-width: 190px;
    }

    .naq931bgt-headline {
        padding: 14px 0;
    }
}

/* menu */

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

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

.naq931bgt-menu__point.focus {
    color: #f78104;
}

.naq931bgt-menu__point:focus,
.naq931bgt-menu__point:hover,
.naq931bgt-menu__point:active {
    color: #4fc2c4;
}

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

/* menu button */

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

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

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

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

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

.naq931bgt-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;
}

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

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

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

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

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

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

/* dropdown */

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

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

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

.naq931bgt-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;
}

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

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

.naq931bgt-dropdown:focus .naq931bgt-dropdown__menu,
.naq931bgt-dropdown:active .naq931bgt-dropdown__menu,
.naq931bgt-dropdown:hover .naq931bgt-dropdown__menu {
    display: block;
    z-index: 990;
    -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) {
    .naq931bgt-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;
    }

    .naq931bgt-headline.naq931bgt-active .naq931bgt-menu {
        transform: none;
    }

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

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

    .naq931bgt-dropdown__menu .naq931bgt-menu__point,
    .naq931bgt-menu__point {
        padding: 16px 0;
        font-weight: 700;
        border-bottom: 1px solid #4fc2c4;
        text-align: center;
    }

    .naq931bgt-menu > .naq931bgt-menu__point:last-child {
        border-bottom: none;
    }

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

    .naq931bgt-dropdown__btn {
        display: none;
    }

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

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

/* footer */

.naq931bgt-footer {
    width: 100%;
    margin-top: auto;
    background: #252525;
    color: #fff;
    padding: 31px 0;
    text-align: center;
}

.naq931bgt-footer__item {
    display: flex;
    justify-content: center;
    color: #e0e0e0;
}

.naq931bgt-footer__link {
    margin: 0 10px;
}

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

@media (max-width: 767px) {
    .naq931bgt-footer__item {
        margin: 0 -15px;
        width: calc(100% + 30px);
    }
}

/* title */

.naq931bgt-main__title {
    color: #ffffff;
    font-weight: 700;
    font-size: 56px;
    line-height: 78px;
}

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

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

.naq931bgt-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) {
    .naq931bgt-main__title {
        font-size: 40px;
    }
}

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

/* intro */

.naq931bgt-section__entry {
    margin-bottom: 50px;
    padding: 32px 0;
    background-image: url(../pictures/intro-naq931bgt.png);
    background-color: #252525;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}
.naq931bgt-section__entry.naq931bgt-section__entry--national {
    padding: 50px 0;
    position: relative;
    background-image: linear-gradient(115deg, #252525 54%, #21ced1 54%);
    background-position: center;
}
.naq931bgt-section__entry--national .naq931bgt-main__title {
    font-size: 38px;
    line-height: 48px;
    margin-bottom: 20px;
}
.naq931bgt-national--girls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15%;
    border: 2px solid #ffffff;
    border-radius: 6px;
}

.naq931bgt-entry {
    max-width: 680px;
    color: #fff;
}
.naq931bgt-section__entry--national .naq931bgt-entry {
    max-width: 636px;
}
.naq931bgt-entry .naq931bgt-highlighted {
    color: #4fc2c4;
}

@media (max-width: 1920px) {
    .naq931bgt-section__entry {
        background-position: calc(50% + 500px) center;
    }
}

@media (max-width: 1199px) {
    .naq931bgt-section__entry {
        padding: 18px 0;
        background-position: calc(50% + 600px) center;
    }
    .naq931bgt-section__entry--national .naq931bgt-entry {
        margin: 0;
        max-width: 380px;
    }
    .naq931bgt-national--girls {
        right: 15px;
        max-width: 300px;
    }
    .naq931bgt-entry {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .naq931bgt-section__entry {
        background-image: linear-gradient(110deg, #252525 78%, #21ced1 54%);
        background-position: center;
        margin-bottom: 16px;
    }
    .naq931bgt-entry {
        max-width: 780px;
    }
    .naq931bgt-section__entry.naq931bgt-section__entry--national {
        background-image: linear-gradient(110deg, #252525 78%, #21ced1 54%);
        background-position: center;
        padding: 10px 0 20px;
    }
    .naq931bgt-national--girls {
        display: none;
    }
    .naq931bgt-section__entry--national .naq931bgt-main__title {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 10px;
        padding: 0;
    }
    .naq931bgt-section__entry--national .naq931bgt-entry {
        max-width: 100%;
    }
}

@media (min-width: 1921px) {
    .naq931bgt-section__entry {
        background-size: contain;
    }
}

/* disclosure */

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

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

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

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

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

.naq931bgt-disclosure-title:hover {
    color: #4fc2c4;
}

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

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

.naq931bgt-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;
}

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

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

.naq931bgt-disclosure.naq931bgt-opened .naq931bgt-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;
    }
}

.naq931bgt-disclosure-popup .naq931bgt-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) {
    .naq931bgt-update-block {
        display: block;
    }

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

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

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

    .naq931bgt-disclosure-popup,
    .naq931bgt-update-block .naq931bgt-disclosure-popup {
        left: 0;
        right: auto;
        max-width: 500px;
    }
}
@media (max-width: 767px) {
    .naq931bgt-disclosure-title span {
        width: 46px;
        height: 20px;
        display: inline-flex;
        overflow: hidden;
        position: relative;
        color: #4fc2c4;
        transition: 0.3s;
    }
    .naq931bgt-disclosure-title span::before {
        content: "...";
        position: absolute;
        right: 0;
    }
    .naq931bgt-opened .naq931bgt-disclosure-title span {
        display: inline;
        color: #252525;
    }
    .naq931bgt-opened .naq931bgt-disclosure-title span::before {
        content: none;
    }
}
/* layout */

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

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

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

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

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

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

.naq931bgt-widget-advice .naq931bgt-btn {
    left: 20px;
    right: 20px;
    bottom: 20px;
    position: absolute;
    background: #fd3d01;
    border-radius: 10px;
    transition: 0.3s;
}
.naq931bgt-widget-advice .naq931bgt-btn:hover {
    background: #f78104;
}
.naq931bgt-widget-advice .naq931bgt-title {
    margin-bottom: 8px;
}

.naq931bgt-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;
}
.naq931bgt-widget-advice p strong {
    font-weight: 800;
}
.naq931bgt-widget-advice hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 16px 0;
}

.naq931bgt-widget__brands {
    display: block;
    background-color: #fff;
    border: 3px solid #4fc2c4;
    border-radius: 8px;
    padding: 0 20px;
    margin-bottom: 20px;
}

.naq931bgt-widget__brands .naq931bgt-widget__title {
    background-color: #4fc2c4;
    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;
}

.naq931bgt-widget__brands .naq931bgt-item {
    display: flex;
    gap: 10px;
    padding: 17px 0;
}

.naq931bgt-widget__brands .naq931bgt-item:not(:last-child) {
    border-bottom: 1px solid #e0e0e0;
}

.naq931bgt-widget__brands .naq931bgt-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.naq931bgt-widget__brands .naq931bgt-item__logo {
    margin-bottom: 8px;
}

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

.naq931bgt-widget__brands .naq931bgt-item:first-of-type .naq931bgt-item__score--value::before {
    content: "9.3";
    font-weight: 700;
    margin-right: 8px;
}

.naq931bgt-widget__brands .naq931bgt-item:nth-of-type(2) .naq931bgt-item__score--value::before {
    content: "8.8";
    font-weight: 700;
    margin-right: 8px;
}

.naq931bgt-widget__brands .naq931bgt-item:nth-of-type(3) .naq931bgt-item__score--value::before {
    content: "8.0";
    font-weight: 700;
    margin-right: 8px;
}

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

.naq931bgt-widget__brands .naq931bgt-item__link {
    color: #4fc2c4;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: 0.3s;
}
.naq931bgt-widget__brands .naq931bgt-item__link:hover {
    color: #008083;
}

.naq931bgt-widget__brands .naq931bgt-btn {
    display: block;
}

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

    .naq931bgt-sidebar {
        width: 40%;
    }

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

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

    .naq931bgt-main {
        width: 100%;
    }

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

/* charts */

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

.naq931bgt-roster__item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: none;
    border-radius: 20px 6px 6px 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;
    transition: 0.3s;
}

.naq931bgt-roster__item:hover {
    box-shadow: 0px 1px 20px 0px #f78104;
}

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

.naq931bgt-roster__item .naq931bgt-col-center {
    padding: 20px 10px;
    width: 46%;
}

.naq931bgt-roster__item .naq931bgt-col-right {
    padding: 20px 10px;
    width: 26%;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.naq931bgt-roster__number {
    background-color: #ffc267;
    border-radius: 50%;
    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;
}
.naq931bgt-roster__logo {
    max-height: 80px;
}

.naq931bgt-roster__stars {
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
    width: 104px;
    height: 25px;
}
.naq931bgt-roster__stars::before {
    content: "";
    background-image: url(../pictures/stars-naq931bgt.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
}

.naq931bgt-roster__item:nth-of-type(3) .naq931bgt-roster__stars::before {
    background-image: url(../pictures/stars-half-naq931bgt.svg);
}
.naq931bgt-roster__item:nth-of-type(4) .naq931bgt-roster__stars::before {
    background-image: url(../pictures/stars-off-1-naq931bgt.svg);
}
.naq931bgt-roster__item:nth-of-type(n + 5) .naq931bgt-roster__stars::before {
    background-image: url(../pictures/stars-off-2-naq931bgt.svg);
}

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

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

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

.naq931bgt-roster .naq931bgt-btn {
    max-width: 164px;
    width: 100%;
}

.naq931bgt-roster__link {
    display: flex;
    justify-content: center;
    color: #7baaab;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    max-width: 164px;
    transition: 0.3s;
}
.naq931bgt-roster__link:hover {
    color: #008083;
}
.naq931bgt-roster {
    counter-reset: num;
}

.naq931bgt-roster__item:nth-of-type(n) .naq931bgt-roster__number span::before {
    content: counter(num);
    counter-increment: num;
}

.naq931bgt-roster__item:first-of-type {
    background-color: #fff6e9;
    border: 2px solid #f78104;
    border-radius: 6px;
}

.naq931bgt-roster__item:first-of-type .naq931bgt-roster__number {
    background-color: #f78104;
    top: -1px;
    left: -1px;
    border-radius: 6px 0 6px 0;
}

.naq931bgt-roster__item:first-of-type .naq931bgt-roster__number span::after {
    content: "Users Choice";
    padding-left: 15px;
}

.naq931bgt-roster__item:first-of-type .naq931bgt-roster__number {
    background-color: #f78104;
    color: #252525;
}

.naq931bgt-roster__item .naq931bgt-roster__score--value::before {
    content: "7.0";
    font-weight: 700;
    margin-right: 8px;
}

.naq931bgt-roster__item:first-of-type .naq931bgt-roster__score--value::before {
    content: "9.7";
}

.naq931bgt-roster__item:nth-of-type(2) .naq931bgt-roster__score--value::before {
    content: "9.4";
}

.naq931bgt-roster__item:nth-of-type(3) .naq931bgt-roster__score--value::before {
    content: "9.3";
}

.naq931bgt-roster__item:nth-of-type(4) .naq931bgt-roster__score--value::before {
    content: "8.9";
}

.naq931bgt-roster__item:nth-of-type(5) .naq931bgt-roster__score--value::before {
    content: "8.8";
}

.naq931bgt-roster__item:nth-of-type(6) .naq931bgt-roster__score--value::before {
    content: "8.7";
}

.naq931bgt-roster__item:nth-of-type(7) .naq931bgt-roster__score--value::before {
    content: "8.5";
}

.naq931bgt-roster__item:nth-of-type(8) .naq931bgt-roster__score--value::before {
    content: "8.3";
}

.naq931bgt-roster__item:nth-of-type(9) .naq931bgt-roster__score--value::before {
    content: "8.2";
}

.naq931bgt-roster__item:nth-of-type(10) .naq931bgt-roster__score--value::before {
    content: "8.0";
}

.naq931bgt-roster__item:nth-of-type(11) .naq931bgt-roster__score--value::before {
    content: "7.9";
}

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

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

    .naq931bgt-roster__item .naq931bgt-col-center {
        order: 1;
    }

    .naq931bgt-roster__item .naq931bgt-col-right {
        text-align: center;
    }

    .naq931bgt-roster__score {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: 100%;
    }

    .naq931bgt-roster__score--link {
        margin-bottom: 0;
    }

    .naq931bgt-roster__score--value,
    .naq931bgt-roster .naq931bgt-btn {
        max-width: 300px;
    }
}

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

    .naq931bgt-col-right .naq931bgt-roster__link {
        position: absolute;
        left: 20px;
        bottom: 22px;
        margin-bottom: 0;
    }

    .naq931bgt-roster__item .naq931bgt-col-right {
        flex-direction: column;
    }
    .naq931bgt-roster__score {
        position: absolute;
        right: 20px;
        bottom: 23px;
        width: auto;
    }
    .naq931bgt-roster__score--value {
        margin-top: 0;
    }
}

/* stories */

.naq931bgt-history {
    padding: 53px 0 42px;
    overflow: hidden;
}
.naq931bgt-history .naq931bgt-title {
    text-align: center;
}
.naq931bgt-history__item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 7px 20px;
    padding: 18px 19px 22px;
    width: 32%;
}

.naq931bgt-history__pic {
    border-radius: 50%;
    margin-right: 11px;
    width: 60px;
    min-width: 60px;
}

.naq931bgt-history__name {
    font-weight: 800;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.naq931bgt-history--link {
    text-transform: uppercase;
    font-weight: 700;
    color: #4fc2c4;
    margin-left: 8px;
    font-size: 14px;
    transition: 0.3s;
}
.naq931bgt-history--link:hover {
    color: #008083;
}
.naq931bgt-history__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.naq931bgt-history--bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}
.naq931bgt-history--bottom .naq931bgt-btn {
    max-width: 161px;
    width: 100%;
}
.naq931bgt-history__header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.naq931bgt-history__stars {
    display: flex;
    justify-content: center;
}

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

.naq931bgt-history__star--half {
    background-image: url(../pictures/icons/star-half-naq931bgt.svg);
}

.naq931bgt-history__star--empty {
    background-image: url(../pictures/icons/star-empty-naq931bgt.svg);
}

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

/* page-reviews */

.naq931bgt-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.naq931bgt-reviews .naq931bgt-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* page-brand */

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

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

.naq931bgt-brand-intro__logo {
    display: block;
    margin-bottom: 24px;
}

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

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

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

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

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

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

.naq931bgt-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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* slider */

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

.naq931bgt-history__union .slick-track {
    display: flex !important;
}

.naq931bgt-history__union .slick-slide {
    height: inherit !important;
}

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

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

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

.naq931bgt-slider-next::after,
.naq931bgt-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);
}

.naq931bgt-slider-next::after {
    border-width: 2px 2px 0 0;
    left: 10px;
}
.naq931bgt-history__list {
    display: flex;
    flex-wrap: wrap;
    align-items: normal;
}

.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) {
    .naq931bgt-history__union {
        margin: 0;
        padding: 0 30px;
        width: 100%;
    }

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

    .naq931bgt-slider-prev {
        left: -4px;
    }
    .naq931bgt-history__list {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .naq931bgt-history__union {
        padding: 0;
    }

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

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

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

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

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

/* page advice */

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

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

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

.naq931bgt-advice__pic {
    width: 100%;
}

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

.naq931bgt-advice__text {
    width: 100%;
}

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

.naq931bgt-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;
}

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

.naq931bgt-advice__link {
    color: #f85955;
    font-size: 16px;
    text-transform: uppercase;
}
.naq931bgt-advice--btn {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #4fc2c4;
    transition: 0.3s;
}
.naq931bgt-advice--btn:hover {
    color: #008083;
}

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

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

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

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

/* advice single */

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

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

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

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

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

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

@media (max-width: 767px) {
    .naq931bgt-advice-single {
        padding: 20px 0 0;
    }
    .naq931bgt-advice-single .naq931bgt-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 .naq931bgt-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 .naq931bgt-btn-close:before,
.modal .naq931bgt-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 .naq931bgt-btn-close:before {
    transform: rotate(45deg);
    top: 0;
}

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

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

.modal .naq931bgt-roster__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 .naq931bgt-btn-close {
        right: 7px;
        top: 17px;
    }

    .modal .naq931bgt-roster__item {
        margin-bottom: 8px;
    }
}

/* text page */

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

.naq931bgt-text-page h2,
.naq931bgt-text-page h3 {
    font-weight: 800;
    font-size: 20px;
    color: #252525;
    padding: 27px 0 15px;
}

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

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

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

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

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

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

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

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

.naq931bgt-text-page a {
    font-weight: 700;
    color: #4fc2c4;
}

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

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

/* form */

.naq931bgt-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;
}

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

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

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

.naq931bgt-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.naq931bgt-form__control {
    resize: none;
    height: 213px;
}

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

.naq931bgt-form__control.error {
    border-color: #f23585;
}

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

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

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

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

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

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

    .naq931bgt-form__pic {
        display: none;
    }

    .naq931bgt-form__info {
        padding: 15px;
    }

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

/* reviews list */

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

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

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

.naq931bgt-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;
}

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

.naq931bgt-reviewlist__info {
    color: #5b5b5b;
}

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

.naq931bgt-reviewlist__stars {
    position: relative;
    display: flex;
    justify-content: center;
    width: 104px;
    height: 25px;
}
.naq931bgt-reviewlist__stars::before {
    content: "";
    background-image: url(../pictures/stars-naq931bgt.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 100%;
}
.naq931bgt-reviewlist__item:nth-of-type(3) .naq931bgt-reviewlist__stars::before {
    background-image: url(../pictures/stars-half-naq931bgt.svg);
}
.naq931bgt-reviewlist__item:nth-of-type(4) .naq931bgt-reviewlist__stars::before {
    background-image: url(../pictures/stars-off-1-naq931bgt.svg);
}
.naq931bgt-reviewlist__item:nth-of-type(n + 5) .naq931bgt-reviewlist__stars::before {
    background-image: url(../pictures/stars-off-2-naq931bgt.svg);
}

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

.naq931bgt-reviewlist__link {
    font-weight: 700;
    color: #4fc2c4;
    text-transform: uppercase;
    transition: 0.3;
}
.naq931bgt-reviewlist__link:hover {
    color: #008083;
}
.naq931bgt-reviewlist__link svg {
    margin-left: 10px;
    position: relative;
    top: 2px;
}

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

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

    .naq931bgt-reviewlist__header {
        justify-content: space-between;
    }

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

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

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

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

@media (max-width: 767px) {
    .naq931bgt-section__awareness {
        padding: 20px 0 22px;
    }
}

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

.naq931bgt-content {
    color: #000000;
    font-family: "Inter", sans-serif;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100vh;
}
.naq931bgt-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;
}
.naq931bgt-main--bg {
    background-image: url(../pictures/bg-main-1.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.naq931bgt-main--bg-3 {
    background-image: url(../pictures/bg-main-3.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.naq931bgt-main--bg-4 {
    background-image: url(../pictures/bg-main-4.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.naq931bgt-main--bg-5 {
    background-image: url(../pictures/bg-main-5.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.naq931bgt-main--bg-6 {
    background-image: url(../pictures/bg-main-6.jpg);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}
.naq931bgt-step {
    max-width: 706px;
    width: 100%;
    margin: 0 0 0 auto;
    background: #ffffff;
    border-radius: 40px;
    padding: 80px 55px;
}
.naq931bgt-large--block .naq931bgt-step {
    max-width: 906px;
}
.naq931bgt-title--large {
    font-size: 64px;
    line-height: 70px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 42px;
}
.naq931bgt-text--small {
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    margin-bottom: 20px;
}
.naq931bgt-text--small + .naq931bgt-text--small {
    margin-bottom: 70px;
}
.naq931bgt-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) {
    .naq931bgt-step {
        max-width: 606px;
        padding: 60px 40px;
    }
    .naq931bgt-large--block .naq931bgt-step {
        max-width: 606px;
    }
    .naq931bgt-title--large {
        font-size: 50px;
        line-height: 54px;
        font-weight: 700;
        margin-bottom: 30px;
    }
    .naq931bgt-text--small {
        font-size: 34px;
        line-height: 44px;
        margin-bottom: 15px;
    }
    .naq931bgt-text--small + .naq931bgt-text--small {
        margin-bottom: 50px;
    }
    .naq931bgt-button {
        font-size: 32px;
        line-height: 40px;
        height: 100px;
    }
}

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

@media (max-width: 680px) {
    .naq931bgt-main--content {
        padding: 20px 15px;
    }
    .naq931bgt-main--bg {
        background-image: url(../pictures/bg-main-mob-1.jpg);
    }
    .naq931bgt-main--bg-3 {
        background-image: url(../pictures/bg-main-mob-3.jpg);
    }
    .naq931bgt-main--bg-4 {
        background-image: url(../pictures/bg-main-mob-4.jpg);
    }
    .naq931bgt-main--bg-5 {
        background-image: url(../pictures/bg-main-mob-5.jpg);
    }
    .naq931bgt-main--bg-6 {
        background-image: url(../pictures/bg-main-mob-6.jpg);
    }
    .naq931bgt-title--large {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 12px;
    }
    .naq931bgt-text--small {
        font-size: 20px;
        line-height: 26px;
        margin-bottom: 10px;
    }
    .naq931bgt-text--small + .naq931bgt-text--small {
        margin-bottom: 25px;
    }
    .naq931bgt-button {
        height: 62px;
        font-size: 20px;
        line-height: 26px;
    }
    .naq931bgt-step {
        padding: 41px 27px 45px;
    }
}
