.header__logo img,
.footer__col_1 img {
    max-width: 150px;
    width: 150px;
    height: auto;
}

@media (max-width: 767px) {
    .header__logo img,
    .footer__col_1 img {
        max-width: 118px;
        width: 118px;
    }

}

.intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.intro__title {
    color: var(--title-color);
    margin-bottom: 20px;
}

.intro > p {
    max-width: 900px;
}

.intro > p:not(:first-of-type) {
    margin-top: 14px;
}

.intro .button {
    margin-top: 28px;
}

.intro__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    margin-top: 28px;
    padding: 0;
    list-style: none;
}

.page-main .intro__stats li,
.page-main ul.intro__stats li {
    display: flex;
    flex-direction: column;
    gap: 6px 0;
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: #0f1730;
}

.page-main .intro__stats li:before {
    content: none;
}

.intro__stats b {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
}

.intro__stats span {
    color: #abb8c3;
    font-size: 15px;
    line-height: 20px;
}

@media (max-width: 900px) {
    .intro__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .intro__stats b {
        font-size: 22px;
        line-height: 26px;
    }

    .intro .button,
    .intro__stats {
        margin-top: 20px;
    }

    .intro .button {
        width: 100%;
    }

}

@media (max-width: 374px) {
    .intro__stats {
        grid-template-columns: 1fr;
    }

}

.cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 30px;
    border-radius: 12px;
    border: 1px solid rgba(10, 99, 246, .45);
    background: linear-gradient(120deg, #12203f 0, #0d1730 60%, #131c38 100%);
}

.cta__title {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
}

.cta__text {
    color: #abb8c3;
    font-size: 16px;
    line-height: 24px;
    margin: 0;
    max-width: 760px;
}

.cta .button {
    margin: 0;
}

.cta__note {
    color: #7c8aa0;
    font-size: 13px;
    line-height: 18px;
    margin: 0;
}

@media (max-width: 767px) {
    .cta {
        padding: 20px 18px;
    }

    .cta__title {
        font-size: 21px;
        line-height: 27px;
    }

    .cta .button {
        width: 100%;
    }

}

.text-image._no-image {
    grid-template-columns: 1fr;
    gap: 0;
}

.about._no-image {
    display: block;
}

.about._no-image .text-image__info {
    margin-top: 0;
    width: 100%;
}

.how-to__item._no-image {
    grid-template-columns: min-content 1fr;
    grid-template-rows: auto;
}

.how-to__item._no-image:before {
    content: none;
}

.how-to__item._no-image .how-to__item-title {
    margin-bottom: 8px;
}

@media (max-width: 1024px) {
    .how-to__item._no-image .how-to__item-label + * {
        margin-top: 0;
    }

    .how-to__item._no-image .how-to__item-title {
        display: flex;
        align-items: center;
        min-height: 32px;
    }

}

@media (max-width: 500px) {
    .about .text-image__info tbody tr {
        flex-wrap: wrap;
    }

    .about .text-image__info tbody td,
    .about .text-image__info tbody th {
        flex: 1 1 100% !important;
        max-width: 100%;
        text-align: left;
    }

    .about .text-image__info tbody td {
        margin-top: 4px;
        text-align: left;
    }
}

.ct-table {
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 767px) {
    .ct-table table th {
        font-size: 16px;
        line-height: 22px;
        padding: 10px;
    }

    .ct-table td {
        font-size: 15px;
        line-height: 22px;
        padding: 10px 12px;
    }

}

.ct-table._two-col table {
    min-width: 0;
}

.contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    list-style: none;
    padding: 0;
}

.page-main .contacts li,
.page-main ul.contacts li {
    display: flex;
    flex-direction: column;
    gap: 4px 0;
    padding: 16px 18px;
    border-radius: 10px;
    border: 1px solid rgba(10, 99, 246, .5);
    background: #0f1730;
}

.page-main .contacts li:before {
    content: none;
}

.contacts b {
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.contacts span,
.contacts a {
    color: #abb8c3;
    font-size: 15px;
    line-height: 22px;
    word-break: break-word;
}

.contacts a {
    color: #40a4fb;
    text-decoration: none;
}

.contacts a:hover {
    text-decoration: underline;
}

@media (max-width: 767px) {
    .contacts {
        grid-template-columns: 1fr;
    }

}

.notice {
    padding: 18px 20px;
    border-radius: 10px;
    border-left: 4px solid #0a63f6;
    background: #0f1730;
    color: #cdd8e1;
}

.notice > :not(:first-child) {
    margin-top: 10px;
}

.page-main .wrapper > h2 + p,
.page-main .wrapper > h3 + p,
.page-main .wrapper > h4 + p,
.page-main .wrapper > p + p,
.page-main .wrapper > p + ul,
.page-main .wrapper > p + ol,
.page-main .wrapper > ul + p,
.page-main .wrapper > ol + p {
    margin-top: 0;
}

.page-main .wrapper > h3,
.page-main .wrapper > h4 {
    color: #fff;
    margin-top: 16px;
}

.page-main .wrapper > h2 {
    color: #fff;
}

.wrapper > :not(:last-child) {
    margin-bottom: 20px;
}

.wrapper > h2:not(:last-child),
.wrapper > h3:not(:last-child),
.wrapper > h4:not(:last-child) {
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .wrapper > :not(:last-child) {
        margin-bottom: 16px;
    }

    .page-main .wrapper > h3,
    .page-main .wrapper > h4 {
        margin-top: 12px;
    }

}

.footer__nav-list {
    justify-content: center;
}

.footer__disclaimer {
    color: #7c8aa0;
    font-size: 13px;
    line-height: 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer__col.footer__col_4 {
    flex-direction: column;
    gap: 14px;
}

.payment-systems img,
.payment-systems svg {
    height: 25px;
    width: auto;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border: 2px solid #e0413f;
    border-radius: 50%;
    color: #e0413f;
    font-size: 14px;
    font-weight: 700;
}

h1, h2, h3, h4,
.text-image__title,
.how-to__title,
.faq__question {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: none;
    hyphens: none;
}

@media (max-width: 767px) {
    .footer {
        padding-bottom: 72px;
    }
}

.related {
    margin-top: 8px;
}

.related__title {
    color: var(--title-color);
    margin-bottom: 18px;
}

.related__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0;
    list-style: none;
}

.page-main .related__list li {
    padding: 0;
    margin: 0;
}

.page-main .related__list li:before {
    display: none;
}

.related__link {
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 100%;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(10, 99, 246, .32);
    background: #101a33;
    text-decoration: none;
    transition: border-color .25s ease-in-out, background .25s ease-in-out;
}

.related__link:hover {
    border-color: rgba(10, 99, 246, .75);
    background: #13203d;
}

.related__link-title {
    color: var(--title-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
}

.related__link-text {
    color: var(--text-color);
    font-size: 15px;
    line-height: 21px;
}

@media (max-width: 767px) {
    .related__list {
        grid-template-columns: 1fr;
    }

    .related__link-title {
        font-size: 16px;
    }

}

a.button,
a.page-header__button {
    width: fit-content;
}

@media (max-width: 1024px) {
    a.how-to__item-button {
        width: 100%;
    }
}

.lang-sw {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 12px;
    padding: 3px;
    border: 1px solid rgba(10, 99, 246, .4);
    border-radius: 10px;
    background: #101a33;
}

.lang-sw__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 38px;
    padding: 0 10px;
    border-radius: 7px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: background .2s ease-in-out, color .2s ease-in-out;
}

a.lang-sw__item:hover {
    background: #13203d;
    color: #fff;
}

.lang-sw__item[aria-current] {
    background: #0a63f6;
    color: #fff;
    cursor: default;
}

@media (max-width: 1024px) {
    .lang-sw {
        order: 2;
        margin: 0 16px 0 0;
    }

    .lang-sw__item {
        min-width: 38px;
        height: 32px;
        padding: 0 8px;
        font-size: 13px;
    }
}

.ct-figure {
    margin: 28px auto;
    max-width: 900px;
    text-align: center;
}

.ct-figure img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.ct-figure figcaption {
    margin-top: 10px;
    color: #7c8aa0;
    font-size: 14px;
    line-height: 20px;
}
