* {
    border: 0;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    min-width: 320px;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth !important;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    text-size-adjust: 100%;
}

input,
button,
textarea {
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
}

a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

body {
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    font-family: var(--font-main);
    color: var(--secondary-color);
    background: var(--bg-primary);
    overflow-x: hidden;
    overflow-y: auto;
}

.main {
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
    margin-top: -108px;
}

.container {
    max-width: 1302px;
}

.header-container {
    max-width: 1532px;
}

.container,
.header-container {
    width: 100%;
    padding: 0px 16px;
    margin: 0 auto;
}

._ibg,
._ibg-contain {
    position: relative;
}

._ibg img,
._ibg-contain img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

._ibg-contain img {
    object-fit: contain;
}

:root {
    --primary-color: #0b101d;
    --secondary-color: #434c62;
    --third-color: #a8a8b8;

    --primary-inverted-color: #ffffff;

    --bg-primary: #ffffff;
    --bg-primary-inverted: #0b101d;

    --link-color: #0059df;
    --hint-color: #df6200;
    --secondary-hint-color: #e39f02;
    --font-main: "Geologica", sans-serif;
}

._gradient-title {
    background: linear-gradient(to left, #febe2c 0%, #df6200 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;

    display: inline-block;
}

._btn-primary,
._btn-secondary {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 10px 15px;
    min-height: 42px;
    height: fit-content;
    transition: all 0.3s ease 0s;
    overflow: hidden;
    border-radius: 6px;
    text-align: center;
}

._btn-primary {
    background: var(--bg-primary-inverted);
    color: var(--bg-primary);
}

@media (any-hover: hover) {
    ._btn-primary:hover {
        background-color: var(--secondary-hint-color);
    }
}

._btn-secondary {
    position: relative;
    color: var(--primary-inverted-color);
    background: var(--secondary-hint-color);
}

._btn-secondary::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, #e39f02 0%, #df6200 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

@media (any-hover: hover) {
    ._btn-secondary:hover {
        color: var(--primary-inverted-color);
        background-color: transparent;
    }
    ._btn-secondary:hover::before {
        opacity: 1;
    }
}

.hero {
    position: relative;
    padding: 237px 0px 45px;
}

.hero__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__top {
    color: var(--primary-inverted-color);
    margin-bottom: 92px;
}

.hero__title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero__title div {
    font-weight: 900;
    font-size: 120px;
    line-height: 150px;
    display: block;
    letter-spacing: 14%;
}
.hero__title span {
    font-weight: 200;
    font-size: 98px;
    line-height: 123px;
    letter-spacing: 24%;
    display: block;
    margin-top: -2%;
}

.hero__subtitle {
    font-size: 16px;
    line-height: 20px;
    max-width: 614px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 43px;
}

.hero__button {
    min-height: 54px;
    min-width: 200px;
    width: fit-content;
    margin: 0 auto;
}

.hero__items {
    display: flex;
    gap: 12px;
}

.hero__item {
    flex: 0 1 25%;
    min-width: 0;
    overflow-wrap: break-word;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    position: relative;
    color: var(--primary-inverted-color);
    border-radius: 12px;
    min-height: 140px;
    height: fit-content;
    text-align: center;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(
        to right,
        rgba(11, 16, 29, 0.3) 0%,
        rgba(11, 16, 29, 0.6) 100%
    );
}

.hero__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0px);
    height: 2px;
    width: 75px;
    border-radius: 1px;
    background-color: var(--hint-color);
    z-index: 1;
}

@media (max-width: 1289.98px) {
}

@media (max-width: 991.98px) {
    .hero {
        padding: 200px 0px 45px;
    }
    .hero__title div {
        font-size: 100px;
        line-height: 120px;
    }
    .hero__title span {
        font-size: 80px;
        line-height: 100px;
    }
    .hero__items {
        flex-wrap: wrap;
        gap: 10px;
    }
    .hero__item {
        padding: 14px;
        flex: 0 1 calc(50% - 5px);
    }
}

@media (max-width: 767.98px) {
    .hero__title div {
        font-size: 70px;
        line-height: 100px;
    }
    .hero__title span {
        font-size: 60px;
        line-height: 80px;
    }
    .hero__subtitle {
        margin-bottom: 34px;
    }
}

@media (max-width: 619.98px) {
    .hero {
        padding: 182px 0px 40px;
    }
    .hero__top {
        margin-bottom: 105px;
    }
    .hero__title div {
        font-size: 38px;
        line-height: 48px;
    }
    .hero__title span {
        font-size: 32px;
        line-height: 40px;
    }
    .hero__subtitle {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 24px;
    }
}

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

.main__wrapper {
    background: linear-gradient(
        180deg,
        #eef1f3 0%,
        #f5f7f8 15%,
        #fbfbfc 30%,
        #ffffff 50%,
        #fbfbfc 70%,
        #f5f7f8 85%,
        #eef1f3 100%
    );
}

.media-blog__wrapper {
    background: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 8%,
        #fefefe 16%,
        #fdfdfd 28%,
        #fbfbfc 42%,
        #f8f9fa 58%,
        #f5f7f8 72%,
        #f2f4f5 86%,
        #eef1f3 100%
    );
}

.team__wwrapper {
    background: linear-gradient(
        to bottom,
        #f3f5f7 0%,
        #fbfbfc 15%,
        #ffffff 25%,
        #ffffff 75%,
        #fbfbfc 85%,
        #f3f5f7 100%
    );
}

.about {
    padding-top: 130px;
}

.about__container {
}

.about__items {
    display: flex;
    gap: 16px;
}

.about__item {
    flex: 0 1 50%;
}

.about__box {
    padding: 20px;
    min-height: 147px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
    background-color: var(--bg-primary);
}

.about__box_top {
    border: 1px solid #c2c5cc;
    margin-bottom: 10px;
}

.about__title {
    font-size: 30px;
    line-height: 38px;
    font-weight: 700;
    text-transform: uppercase;
}
.about__title span {
    font-weight: 400;
}

.about__text {
    text-align: center;
    color: var(--secondary-color);
    font-weight: 300;
    line-height: 24px;
    font-size: 14px;
}
.about__text a {
    transition: color 0.3s ease 0s;
    display: inline-block;
    text-decoration: underline !important;
}

@media (any-hover: hover) {
    .about__text a:hover {
        color: var(--hint-color) !important;
    }
}

@media (max-width: 991.98px) {
    .about__items {
        gap: 10px;
        flex-wrap: wrap;
    }
    .about__item {
        flex: 0 1 calc(50% - 5px);
    }
    .about__item:last-child {
        flex: 1 1 100%;
    }
}

@media (max-width: 767.98px) {
    .about {
        padding-top: 92px;
    }
    .about__items {
        gap: 24px;
    }
    .about__item {
        flex: 1 1 100%;
    }
    .about__box_top {
        margin-bottom: 4px;
    }
    .about__box {
        padding: 18px;
        min-height: 108px;
    }
    .about__title {
        font-size: 20px;
        line-height: 25px;
    }
}

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

.services {
    padding-top: 132px;
}

.services__container {
}

.services__title {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 62px;
    line-height: 78px;
    margin-bottom: 40px;
}

.services__items {
}

.services__item {
    border-radius: 12px;
    border: 1px solid #c2c5cc;
    background-color: var(--bg-primary);
    transition: all 0.3s ease 0s;
    cursor: default;
}

@media (any-hover: hover) {
    .services__item_stock:hover {
        border-color: #0059df;
        background-color: #e1eeff;
    }
    .services__item_global:hover {
        border-color: #04a54d;
        background-color: #e6fff3;
    }
    .services__item_digital:hover {
        border-color: #e39f02;
        background-color: #fff4eb;
    }
    .services__item_derivatives:hover {
        border-color: #df6200;
        background-color: #fff4eb;
    }
}

.services__about {
    display: flex;
    gap: 24px;
    flex: 0 1 35%;
}

.services__image {
    width: fit-content;
    min-width: 104px;
    height: 104px;
    border-radius: 11px;
    overflow: hidden;
}

.services__subtitle {
    align-self: center;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: var(--primary-color);
}

.services__text {
    flex: 1 1 auto;
    align-self: center;
    font-weight: 300;
    color: var(--secondary-color);
}

@media (min-width: 767.98px) {
    .services__item {
        display: flex;
        min-height: 104px;
        margin-bottom: 12px;
        gap: 40px;
    }
    .services__subtitle {
        min-width: 200px;
    }
}

@media (max-width: 991.98px) {
    .services__title {
        font-size: 52px;
        line-height: 68px;
        margin-bottom: 34px;
    }
}

@media (max-width: 767.98px) {
    .services {
        padding-top: 92px;
    }
    .services__title {
        font-size: 42px;
        line-height: 58px;
    }
    .services__item {
        display: block;
        overflow: hidden;
        margin-bottom: 24px;
    }

    .services__item:last-child {
        margin-bottom: 0px !important;
    }

    .services__about {
        padding-right: 20px;
    }
    .services__text {
        padding: 23px;
    }
}

@media (max-width: 619.98px) {
    .services__title {
        font-size: 32px;
        line-height: 40px;
    }
}

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

.company {
    padding-top: 122px;
    padding-bottom: 95px;
}

.company__container {
    position: relative;
}

.company__info {
    width: 100%;
    max-width: 695px;
}

.company__title {
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 62px;
    line-height: 78px;
    margin-bottom: 40px;
}

.company__items {
    margin-bottom: 46px;
}

.company__text {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 14px;
}

.company__text--padding {
    font-weight: 300;
    /*    padding-left: 30px;*/
    margin-bottom: 0px;
    max-width: 576px;
}

.company__text a {
    display: inline;
    color: var(--link-color);
    text-decoration: underline !important;
    transition: color 0.3s ease 0s;
    font-weight: 600;
}

.company__links {
    display: flex;
    flex-direction: column;
}

.company__link {
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: var(--link-color);
    text-decoration: underline !important;
    transition: color 0.3s ease 0s;
    font-weight: 600;
    width: fit-content;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.company__image {
    width: 49%;
    padding-bottom: 31%;
}

@media (any-hover: hover) {
    .company__link:hover,
    .company__text a:hover {
        color: var(--hint-color) !important;
    }
}

@media (min-width: 767.98px) {
    .company__image {
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translate(0px, -50%);
    }
}

@media (max-width: 1199.98px) {
    .company__image {
        width: 40%;
    }
}

@media (max-width: 991.98px) {
    .company {
        padding-top: 92px;
        padding-bottom: 47px;
    }

    .company__title {
        font-size: 52px;
        line-height: 68px;
        margin-bottom: 34px;
    }
    .company__info {
        max-width: 500px;
    }
    .company__image {
        width: 37%;
    }
}

@media (max-width: 767.98px) {
    .company__title {
        font-size: 42px;
        line-height: 58px;
    }
    .company__info {
        max-width: 100%;
    }
    .company__image {
        width: 100%;
        padding-bottom: 62%;
    }
    .company__text--padding {
        padding: 0;
        max-width: 100%;
    }
    .company__items,
    .company__text {
        margin-bottom: 20px;
    }
    .company__text,
    .company__link {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 619.98px) {
    .company__title {
        font-size: 32px;
        line-height: 40px;
    }
}

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

.licence {
    padding: 132px 0;
}

.licence__title {
    display: block;
    margin-bottom: 40px;

    text-align: center;
    text-transform: uppercase;

    font-size: 62px;
    line-height: 78px;
    font-weight: 500;
}

.licence__images {
    display: flex;
    gap: 28px;
}

.licence__box {
    position: relative;

    flex: 0 1 50%;

    min-height: 464px;
    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #c2c5cc;
    border-radius: 12px;

    background-color: transparent;

    overflow: hidden;
    cursor: pointer;

    transition:
        border-color 0.3s ease,
        transform 0.3s ease;
}

.licence__box::before {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 3;

    background-color: rgba(0, 89, 223, 0.4);

    opacity: 0;

    transition: opacity 0.3s ease;
}

.licence__image {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;
    max-width: 420px;
    max-height: 297px;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.licence__zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;

    width: 104px;
    height: 104px;

    transform: translate(-50%, -50%) scale(0.85);

    opacity: 0;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.licence__zoom img {
    width: 100%;
    height: 100%;
    display: block;
}

@media (any-hover: hover) {
    .licence__box:hover .licence__zoom {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@media (any-hover: hover) {
    .licence__box:hover {
        border-color: #0059df;
        transform: scale(1.03);
    }

    .licence__box:hover::before {
        opacity: 1;
    }

    .licence__box:hover::after {
        transform: translate(-50%, -50%) scale(1);
    }

    .licence__box:hover .licence__image {
        transform: scale(1.03);
    }
}

@media (max-width: 991.98px) {
    .licence {
        padding: 92px 0;
    }

    .licence__title {
        margin-bottom: 34px;

        font-size: 52px;
        line-height: 68px;
    }

    .licence__box {
        min-height: 300px;
    }

    .licence__box::after {
        width: 90px;
        height: 90px;
        background-size: 46px 46px;
    }
}

@media (max-width: 767.98px) {
    .licence__title {
        font-size: 42px;
        line-height: 58px;
    }

    .licence__box {
        min-height: 200px;
        padding: 27px;
    }
}

@media (max-width: 619.98px) {
    .licence__title {
        font-size: 32px;
        line-height: 40px;
    }

    .licence__images {
        flex-direction: column;
        gap: 25px;
    }

    .licence__image {
        max-height: 0;
        padding-bottom: 70%;
    }
}
/* ----------------------------------------------------------------------------- */

.team {
    padding: 132px 0px;
}

.team__block {
    margin-bottom: 90px;
}

.team__block:last-child {
    margin-bottom: 0;
}

.team__title {
    display: block;

    margin-bottom: 40px;

    text-align: center;
    text-transform: uppercase;

    font-size: 62px;
    line-height: 78px;
    font-weight: 400;

    color: var(--primary-color);
}

.team__subtitle {
    margin-bottom: 60px;

    text-align: center;
    text-transform: uppercase;

    font-size: 30px;
    line-height: 38px;
    font-weight: 400;

    color: var(--primary-color);
}

.team__items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.team__items_top {
    justify-content: center;
    gap: 108px;
}

.team__items_bottom {
    align-items: stretch;
    justify-content: center;
}

.team__item {
    flex: 0 1 25%;
    max-width: 236px;
    width: 100%;

    cursor: pointer;

    transition: transform 0.3s ease;
}

.team__item_bottom {
    max-width: 290px;
}

.team__image {
    position: relative;

    width: 100%;
    padding-bottom: 100%;
    margin-bottom: 28px;

    border-radius: 12px;
    overflow: hidden;

    background-color: #dfe3e8;

    transition: all 0.3s ease 0s;

    border: 1px solid transparent;
}

.team__image img {
    transition:
        transform 0.45s ease,
        filter 0.3s ease;
}

.team__name {
    margin-bottom: 20px;

    font-size: 20px;
    line-height: 25px;
    font-weight: 700;

    text-transform: uppercase;

    color: var(--primary-color);

    transition: color 0.3s ease;
}

.team__role {
    width: fit-content;

    margin-bottom: 14px;
    padding: 6px 12px;

    border-radius: 6px;

    font-size: 14px;
    line-height: 18px;
    font-weight: 700;

    text-transform: uppercase;

    color: var(--secondary-hint-color);
    background-color: rgba(227, 159, 2, 0.2);

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.team__role_seo {
    color: var(--hint-color);
    background-color: rgba(223, 98, 0, 0.2);
}

.team__text {
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;

    color: var(--secondary-color);

    transition: color 0.3s ease;
}

.team__label {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;

    text-transform: uppercase;

    color: var(--secondary-color);

    transition: color 0.3s ease;
}

@media (any-hover: hover) {
    .team__item:hover {
        transform: translateY(-6px);
    }

    .team__item:hover .team__image {
        border: 1px solid var(--link-color);
    }

    .team__item_seo:hover .team__image {
        border-color: var(--hint-color);
    }

    .team__item_board:hover .team__image {
        border-color: var(--secondary-hint-color);
    }

    .team__item:hover .team__image::after {
        opacity: 1;
    }

    .team__item:hover .team__image img {
        transform: scale(1.05);
        filter: brightness(1.03);
    }

    .team__item:hover .team__name {
        color: var(--link-color);
    }

    .team__item_seo:hover .team__name {
        color: var(--hint-color);
    }

    .team__item_board:hover .team__name {
        color: var(--secondary-hint-color);
    }

    .team__item:hover .team__role {
        transform: translateY(-2px);
    }

    .team__item_seo:hover .team__role {
        color: var(--hint-color);
        background-color: rgba(223, 98, 0, 0.2);
    }

    .team__item_board:hover .team__role {
        color: var(--secondary-hint-color);
        background-color: rgba(227, 159, 2, 0.2);
    }
}
@media (max-width: 991.98px) {
    .team {
        padding: 92px 0;
    }

    .team__title {
        margin-bottom: 34px;

        font-size: 52px;
        line-height: 68px;
    }

    .team__subtitle {
        margin-bottom: 48px;
    }

    .team__items_top {
        gap: 30px;
    }

    .team__items_bottom {
        flex-wrap: wrap;
        justify-content: center;
    }

    .team__item,
    .team__item_bottom {
        flex: 0 1 calc(50% - 15px);
        max-width: unset;
    }
}

@media (max-width: 767.98px) {
    .team__title {
        font-size: 42px;
        line-height: 58px;
    }

    .team__subtitle {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 619.98px) {
    .team__title {
        font-size: 32px;
        line-height: 40px;
    }

    .team__subtitle {
        margin-bottom: 38px;

        font-size: 20px;
        line-height: 28px;
    }

    .team__name {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 519.98px) {
    .team__items_top,
    .team__items_bottom {
        display: block;
    }

    .team__item,
    .team__item_bottom {
        max-width: 236px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 35px;
    }
    .team__item:last-child,
    .team__item_bottom:last-child {
        margin-bottom: 0px !important;
    }

    .team__image {
        margin-bottom: 22px;
    }

    .team__name {
        margin-bottom: 16px;
    }
}
/* ----------------------------------------------------------------------------- */

.reviews {
    padding: 132px 0;
    background-color: #eff1f3;
    overflow: hidden;
}

.reviews__title {
    margin-bottom: 76px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 62px;
    line-height: 78px;
    color: var(--primary-color);
}

.reviews__slider {
    position: relative;
}

.reviews__viewport {
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    margin-right: calc((100% - 100vw) / 2);
    overflow: visible;
}

.reviews__track {
    display: flex;
    gap: 12px;
    padding: 0 calc((100vw - 1302px) / 2 + 16px);
    transition: transform 0.3s ease;
}

.reviews__slide {
    position: relative;
    flex: 0 0 310px;
    min-height: 292px;
    padding: 70px 28px 44px;
    border-radius: 12px;
    background-color: var(--bg-primary);
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

.reviews__slide.is-active {
    opacity: 1;
}

.reviews__slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 75px;
    height: 2px;
    transform: translateX(-50%);
    background-color: var(--hint-color);
}

.reviews__quote {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 81px;
    height: 81px;
    opacity: 0.35;
}

.reviews__text {
    margin-bottom: 22px;
    font-weight: 300;
}

.reviews__name {
    font-weight: 700;
    text-transform: capitalize;
}

.reviews__text,
.reviews__name {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    color: var(--secondary-color);
}

.reviews__arrow {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background-color: var(--bg-primary);
    color: var(--primary-color);
    transform: translateY(-50%);
    transition: all 0.3s ease;
    z-index: 5;
}

.reviews__arrow.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.reviews__arrow_left {
    left: -62px;
}

.reviews__arrow_right {
    right: -62px;
}

.reviews__arrow svg {
    width: 15px;
    height: 15px;
}

.reviews__arrow_right svg {
    transform: rotate(180deg);
}

@media (any-hover: hover) {
    .reviews__arrow:hover {
        background-color: var(--secondary-hint-color);
        color: var(--primary-inverted-color);
    }
}

@media (max-width: 1400px) {
    .reviews__track {
        padding-left: 70px;
        padding-right: 70px;
    }
    .reviews__arrow {
        width: 50px;
        height: 50px;
    }
    .reviews__arrow_left {
        left: -10px !important;
    }

    .reviews__arrow_right {
        right: -10px !important;
    }
}

@media (max-width: 991.98px) {
    .reviews {
        padding: 92px 0;
    }
    .reviews__slide {
        min-height: 0px !important;
    }
    .reviews__title {
        margin-bottom: 56px;
        font-size: 52px;
        line-height: 68px;
    }
}

@media (max-width: 767.98px) {
    .reviews__title {
        font-size: 42px;
        line-height: 58px;
    }

    .reviews__slide {
        flex-basis: 280px;
    }
}

@media (max-width: 619.98px) {
    .reviews__title {
        margin-bottom: 36px;
        font-size: 32px;
        line-height: 40px;
    }

    .reviews__track {
        gap: 14px;
        padding-left: calc((100vw - 275px) / 2);
        padding-right: calc((100vw - 275px) / 2);
    }

    .reviews__arrow {
        width: 32px;
        height: 32px;
    }
    .reviews__slide {
        flex: 0 0 275px;
        padding: 43px 22px 44px;
    }

    .reviews__arrow_left {
        left: 0px;
    }

    .reviews__arrow_right {
        right: 0px;
    }
}

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

.content {
    padding: 132px 0;
    overflow: hidden;
}

.content__media {
    margin-bottom: 60px;
}

.media__title,
.blog__title {
    font-size: 30px;
    line-height: 38px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.media__items {
    display: flex;
    gap: 16px;
}

.media__item {
    position: relative;
    flex: 0 1 33.333%;
    padding-bottom: 18.8%;
    border-radius: 11px;
    overflow: hidden;
    background-color: var(--bg-primary-inverted);
}

.media__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.media__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(11, 16, 29, 0.72);
    z-index: 2;
    transition: background-color 0.3s ease;
}

.media__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 58px;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: transform 0.3s ease;
}

@media (any-hover: hover) {
    .media__item:hover .media__play {
        transform: translate(-50%, -50%) scale(1.06);
    }

    .media__item:hover .media__bg::after {
        background-color: rgba(11, 16, 29, 0.36);
    }
}

/* Blog */

.blog__slider {
    position: relative;
}

.blog__viewport {
    overflow: hidden;
}

.blog__track {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
}

.blog__slide {
    background-color: transparent;
    flex: 0 0 calc((100% - 48px) / 4);
    min-width: 0;
    cursor: pointer;
    height: auto;
}

@media (any-hover: hover) {
    .blog__slide:hover .blog__label {
        color: var(--link-color);
    }
}

.blog__image {
    border-radius: 11px;
    overflow: hidden;
    width: 100%;
    padding-bottom: 50%;
    margin-bottom: 18px;
}

.blog__inner {
    padding: 0 12px;
    text-align: left;
}

.blog__type {
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 20px;
    background-color: rgba(67, 76, 98, 0.1);
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog__label {
    margin-bottom: 13px;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    min-height: 54px;
}

.blog__text {
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
}

.blog__arrow {
    position: absolute;
    top: 74px;
    width: 50px;
    height: 50px;
    border-radius: 11px;
    background-color: var(--bg-primary);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: all 0.3s ease;
}

.blog__arrow_left {
    left: -62px;
}

.blog__arrow_right {
    right: -62px;
}

.blog__arrow_right svg {
    transform: rotate(180deg);
}

.blog__arrow.disabled {
    opacity: 0.5;
    pointer-events: none;
}

@media (any-hover: hover) {
    .blog__arrow:hover {
        background-color: var(--secondary-hint-color);
        color: var(--primary-inverted-color);
    }
}

@media (max-width: 991.98px) {
    .media__items {
        flex-direction: column;
    }

    .media__item {
        flex: none;
        padding-bottom: 56%;
    }

    .blog__slide {
        flex: 0 0 calc((100% - 16px) / 2);
    }
    .blog__arrow {
        top: 74px;
        width: 40px;
        height: 40px;
    }

    .blog__arrow_left {
        left: -10px;
    }

    .blog__arrow_right {
        right: -10px;
    }
}

@media (max-width: 619.98px) {
    .content {
        padding: 92px 0px;
    }

    .blog__viewport {
        width: 100vw;
        margin-left: calc((100% - 100vw) / 2);
        overflow: visible;
    }

    .blog__track {
        gap: 20px;
        padding-left: 58px;
        padding-right: 58px;
    }

    .blog__slide {
        flex: 0 0 272px;
        opacity: 0.25;
        transition: opacity 0.3s ease;
    }

    .blog__slide.is-active {
        opacity: 1;
    }

    .blog__arrow {
        top: 80px;
        width: 32px;
        height: 32px;
    }

    .blog__arrow_left {
        left: 0px;
    }

    .blog__arrow_right {
        right: 0px;
    }
}

.footer {
    color: var(--primary-color);
    overflow: hidden;
}

.footer__top {
    position: relative;
    padding: 90px 0 120px;
    overflow: hidden;
}

.footer__top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: url("../../assets/footer-bg.jpg") center top / cover no-repeat;
    z-index: 1;
}

.footer__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 50px;
}

.footer__form {
    overflow: hidden;
    flex: 0 1 560px;
    max-width: 560px;
    padding: 60px 30px;
    border: 1px solid #282f41;
    border-radius: 12px;
    background-color: var(--bg-primary-inverted);
}

.footer__title {
    margin-bottom: 25px;
    font-size: 62px;
    line-height: 78px;
    font-weight: 500;
    text-transform: uppercase;
    text-overflow: ellipsis;
    overflow: hidden;
    min-width: 0;
    display: block;
}

html[lang="ru"] .footer__title {
    font-size: 54px;
}

.footer__subtitle {
    margin-bottom: 41px;
    font-size: 14px;
    line-height: 24px;
    color: var(--third-color);
}

.footer__fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-inverted-color);
}

.footer__input {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background-color: #1a2233;
    color: var(--primary-inverted-color);
    outline: none;
    transition: all 0.3s ease 0s;
}

.footer__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.footer__input.error {
    border-color: #ff4d4f;
}

.error-text {
    margin-top: 6px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #ff4d4f;
}

.footer__submit:disabled,
.footer__submit.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.footer__checkbox {
    margin-top: 24px;
    margin-bottom: 28px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox__box {
    position: relative;
    width: 22px;
    display: block;
    flex: 0 0 22px;
    min-width: 22px;
    height: 22px;
    border-radius: 4px;
    background-color: #1a2233;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.checkbox__input:checked + .checkbox__box::before {
    content: "✓";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #f2a900;
}

.checkbox__text {
    pointer-events: none;
    font-size: 14px;
    color: var(--primary-inverted-color);
    pointer-events: auto;
    cursor: pointer;
}

.checkbox__link {
    color: var(--primary-inverted-color);
    text-decoration: underline !important;
}

.footer__submit {
    width: 100%;
    min-height: 54px;
    border: 0;
    cursor: pointer;
}

.footer-contact {
    flex: 1 1 0;
    min-width: 0;

    padding-bottom: 5px;
}

.footer-contact__title {
    margin-bottom: 82px;
    font-size: 30px;
    line-height: 42px;
    font-weight: 200;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--primary-inverted-color);
}

.footer-contact__subtitle {
    max-width: 402px;
    margin-bottom: 22px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    text-shadow: 1px 1px 1px var(--primary-inverted-color);
}

.footer-contact__items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact__item {
    padding: 22px 24px;
    border-radius: 8px;
    background-color: #f4f6f8;
}

.footer-contact__item--columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-contact__column {
    min-width: 0;
}

.footer-contact__label {
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #434c62;
}

.footer-contact__link,
.footer-contact__value {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    color: var(--primary-color);
    overflow-wrap: anywhere;
}

.footer-contact__link {
    white-space: nowrap;
    display: inline-block;
    color: var(--link-color);
    border-bottom: 1px solid transparent;
    transition: border 0.3s ease;
}

.footer-contact__column:last-child .footer-contact__link {
    color: var(--primary-color);
}

.footer-contact__item--socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-contact__socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.footer-contact__social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease 0s;
}
@media (any-hover: hover) {
    .footer-contact__social:hover {
        transform: scale(1.1);
    }
}

.footer__bottom {
    background: linear-gradient(to bottom, #eff1f3 0%, #ffffff 100%);
}

.footer__container--bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 75px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.footer__nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
    align-items: center;
}

.footer__nav-link,
.footer__copy {
    font-size: 14px;
    line-height: 18px;
    padding: 10px 15px;
    font-weight: 500;
    color: var(--secondary-color);
}

.footer__nav-link {
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer__nav-link--active {
    color: var(--hint-color);
    pointer-events: none;
}

.footer__copy {
    font-weight: 300;
}

@media (any-hover: hover) {
    .footer-contact__link:hover {
        color: var(--link-color) !important;
        border-bottom-color: inherit;
    }

    .footer__nav-link:hover {
        color: var(--hint-color);
    }
}

@media (max-width: 1289.98px) {
    .footer__container {
        gap: 20px;
    }
    .footer__form {
        padding: 30px 25px;
    }
    .footer-contact__item {
        padding: 20px;
    }
    .footer__top::before {
        height: 40%;
    }
}

@media (max-width: 991.98px) {
    .footer__top {
        padding: 92px 0 44px;
    }

    .footer__top::before {
        height: 65%;
    }
    .footer__container {
        flex-direction: column;
        align-items: stretch;
    }

    .footer__form {
        flex: 0 1 auto;
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .footer__top::before {
        height: 68%;
    }
}

@media (max-width: 619.98px) {
    .footer__container {
        gap: 40px;
    }
    .footer__top::before {
        height: 61%;
    }

    .footer__form {
        padding: 30px 18px;
    }

    .footer__title {
        font-size: 32px;
        line-height: 42px;
    }

    html[lang="ru"] .footer__title {
        font-size: 32px;
    }

    .footer-contact__title {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 47px;
    }
    .footer-contact__subtitle {
        font-size: 16px;
        line-height: 26px;
    }

    .footer-contact__item--columns {
        flex-direction: column;
        gap: 18px;
    }

    .footer-contact__item--socials {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__container--bottom {
        flex-direction: column;
        justify-content: center;
        padding-top: 25px;
        padding-bottom: 25px;
        text-align: center;
    }

    .footer__nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 519.98px) {
    .footer__top::before {
        height: 62%;
    }
}

@media (max-width: 429.98px) {
    .footer__top::before {
        height: 63%;
    }
    .footer__nav {
        display: block;
    }
    .footer__nav-link {
        display: block;
        text-align: center;
    }
}

@media (max-width: 359.98px) {
    .footer__top::before {
        height: 62%;
    }
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;

    display: flex;
    align-items: flex-start;
    justify-content: center;

    padding: 100px 16px 60px;

    overflow-x: hidden;
    overflow-y: auto;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    background: rgba(11, 16, 29, 0.72);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal__overlay {
    position: absolute;
    inset: 0;
}

.modal__inner {
    position: relative;
    z-index: 1;

    width: 100%;
    margin: auto 0;

    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.modal.open .modal__inner {
    opacity: 1;
    transform: translateY(0);
}

.modal__inner--article {
    max-width: 1040px;
}

.modal__inner--licence {
    max-width: 1060px;
}

.modal__inner--team {
    max-width: 1040px;
}

.modal__close {
    position: absolute;
    top: -60px;
    right: 0;
    z-index: 2;

    font-size: 42px;
    line-height: 1;

    color: var(--primary-inverted-color);
    background: transparent;

    cursor: pointer;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

@media (any-hover: hover) {
    .modal__close:hover {
        color: var(--hint-color);
        transform: rotate(90deg);
    }
}

.modal__content {
    border-radius: 12px;
    background: var(--bg-primary);
}

/* Article modal */

.article-modal {
    padding: 32px;
}

.article-modal__image {
    width: 100%;
    padding-bottom: 56%;
    margin-bottom: 32px;

    border-radius: 12px;
    overflow: hidden;
}

.article-modal__type {
    width: fit-content;

    margin-bottom: 18px;
    padding: 6px 14px;

    border-radius: 20px;

    background: rgba(67, 76, 98, 0.1);
    color: var(--secondary-color);

    font-size: 14px;
    line-height: 18px;
    font-weight: 700;

    text-transform: uppercase;
}

.article-modal__title {
    margin-bottom: 28px;

    font-size: 18px;
    line-height: 27px;
    font-weight: 700;

    color: var(--primary-color);
}

.article-modal__text {
    display: flex;
    flex-direction: column;
    gap: 24px;

    font-size: 16px;
    line-height: 26px;
    font-weight: 300;

    color: var(--secondary-color);
}
.article-modal__text strong {
    font-weight: 700;
}
.article-modal__text p + p,
.article-modal__text p + ol,
.article-modal__text ol + p,
.article-modal__text p + blockquote,
.article-modal__text blockquote + p {
    margin-top: 10px;
}
.article-modal__text ol {
    padding-left: 16px;
}
.article-modal__text ol li + li {
    margin-top: 10px;
}
.article-modal__text a {
    text-decoration: underline;
    font-weight: 700;
}
.article-modal__text a:hover {
    text-decoration: none;
}
.article-modal__text blockquote {
    font-style: italic;
    padding-left: 16px;
    border-left: 2px solid rgba(128, 128, 128, 0.483);
}

/* Licence modal */

.licence-modal__image {
    display: block;

    width: 100%;
    height: auto;

    background: var(--bg-primary);

    user-select: none;
}

/* Team modal */

.team-modal {
    display: flex;
    gap: 42px;

    padding: 32px;
}

.team-modal__aside {
    flex: 0 0 260px;
}

.team-modal__content {
    flex: 1 1 auto;
    min-width: 0;
}

.team-modal__image {
    width: 100%;
    padding-bottom: 100%;
    margin-bottom: 28px;

    border-radius: 12px;
    overflow: hidden;

    background-color: #dfe3e8;
}

.team-modal__name {
    margin-bottom: 16px;

    font-size: 28px;
    line-height: 34px;
    font-weight: 700;

    text-transform: uppercase;

    color: var(--primary-color);
}

.team-modal__role {
    width: fit-content;

    margin-bottom: 18px;
    padding: 6px 12px;

    border-radius: 8px;

    font-size: 14px;
    line-height: 18px;
    font-weight: 700;

    text-transform: uppercase;

    color: var(--secondary-hint-color);
    background-color: rgba(227, 159, 2, 0.2);
}

.team-modal__role--ceo {
    color: var(--hint-color);
    background-color: rgba(223, 98, 0, 0.2);
}

.team-modal__position {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;

    color: var(--secondary-color);
}

.team-modal__text {
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;

    color: var(--secondary-color);
}

.team-modal__role:empty,
.team-modal__position:empty,
.team-modal__text:empty {
    display: none;
}

.hidden {
    display: none !important;
}

body.modal-lock {
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .team-modal {
        flex-direction: column;
        gap: 24px;
    }

    .team-modal__aside {
        flex: none;
    }

    .team-modal__image {
        max-width: 260px;
        padding-bottom: 260px;
    }
}

@media (max-width: 619.98px) {
    .modal {
        padding: 80px 16px 40px;
    }

    .modal__close {
        top: -55px;
        font-size: 38px;
    }

    .article-modal,
    .team-modal {
        padding: 28px 18px;
    }

    .article-modal__image {
        display: none;
    }

    .team-modal__name {
        font-size: 22px;
        line-height: 30px;
    }
}

.modal__inner--account {
    max-width: 560px;
}

.account-modal {
    padding: 45px;
    background-color: var(--bg-primary-inverted);
    border: 1px solid #282f41;
}

.account-modal__title {
    margin-bottom: 20px;
    font-size: 42px;
    line-height: 52px;
    font-weight: 500;
    text-transform: uppercase;
}

.account-modal__subtitle {
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 24px;
    color: var(--third-color);
}

.account-modal__fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.account-modal__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-modal__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-inverted-color);
}

.account-modal__input {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background-color: #1a2233;
    color: var(--primary-inverted-color);
    outline: none;
}

.account-modal__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.account-modal__checkbox {
    margin-top: 24px;
    margin-bottom: 28px;
}

.account-modal__submit {
    width: 100%;
    min-height: 54px;
}

@media (max-width: 619.98px) {
    .account-modal {
        padding: 30px 18px;
    }

    .account-modal__title {
        font-size: 32px;
        line-height: 42px;
    }
}

.header {
    position: relative;
    z-index: 2;
    width: 100%;
}

.header__top {
    background-color: var(--bg-primary-inverted);
}

.header__container {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.header__lang-switcher {
    display: flex;
    margin-left: auto;
    justify-content: flex-end;
    margin-right: -7px;
    position: relative;
    z-index: 11;
}

.header__lang {
    font-weight: 500;
    line-height: 18px;
    padding: 7px;
    text-transform: uppercase;
    color: var(--third-color);
    transition: color 0.3s ease 0s;
    background-color: transparent;
}

@media (any-hover: hover) {
    .header__lang:hover {
        color: var(--primary-inverted-color);
    }
}

.header__lang--active {
    pointer-events: none;
    color: var(--primary-inverted-color);
}

.header__body {
    min-height: 76px;
    display: flex;
    align-items: center;
    background: linear-gradient(
        180deg,
        rgba(11, 16, 29, 0.5) 0%,
        rgba(11, 16, 29, 0.46) 12%,
        rgba(11, 16, 29, 0.4) 24%,
        rgba(11, 16, 29, 0.32) 40%,
        rgba(11, 16, 29, 0.24) 58%,
        rgba(11, 16, 29, 0.17) 74%,
        rgba(11, 16, 29, 0.12) 88%,
        rgba(11, 16, 29, 0.1) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header__logo {
    display: block;
    width: fit-content;
    min-width: 90px;
    height: 32px;
    position: relative;
    z-index: 11;
}

.header__phone {
    white-space: nowrap;
    font-weight: 500;
    color: var(--primary-inverted-color);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease 0s;
    height: fit-content;
    position: relative;
    z-index: 11;
}

@media (any-hover: hover) {
    .header__phone:hover {
        color: var(--link-color);
        border-color: inherit;
    }
}

.header__nav {
    margin-left: auto;
}

.header__link {
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--primary-inverted-color);
    padding: 10px 15px;
    transition: color 0.3s ease 0s;
}

.header__link-accent {
    color: var(--hint-color);
}

@media (any-hover: hover) {
    .header__link:hover {
        color: var(--hint-color);
    }
}

.header__actions {
    display: flex;
    gap: 20px;
}

.header__action {
    min-width: 185px;
    width: fit-content;
    display: none;
    position: relative;
    z-index: 11;
}

.header__action--active {
    display: flex !important;
}

@media (min-width: 991.98px) {
    .icon-menu {
        display: none;
    }
}

@media (min-width: 619.98px) {
    .header__action_nav {
        display: none !important;
    }
}

@media (min-width: 519.98px) {
    .header__lang-switcher_nav {
        display: none;
    }
    .header__lang_nav {
        display: none;
    }
}

@media (max-width: 1289.98px) {
    .header__container {
        gap: 20px;
    }
}

@media (max-width: 991.98px) {
    .header {
        position: relative;
        z-index: 20;
    }

    .header__container {
        gap: 40px;
    }

    .header__logo,
    .header__phone,
    .header__actions,
    .header__lang-switcher,
    .icon-menu {
        position: relative;
        z-index: 12;
    }

    .header__phone {
        margin-right: auto;
    }

    .header__nav {
        position: fixed;
        top: 76px;
        left: -100%;

        width: 100%;
        height: calc(100vh - 76px);

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;

        padding: 25px 16px;

        background-color: var(--bg-primary-inverted);

        overflow-y: auto;
        transition: left 0.3s ease;

        z-index: 10;
    }

    .header__nav::before {
        content: "";
        position: fixed;

        top: 0;
        left: -100%;

        width: 100%;
        height: 76px;

        background-color: var(--bg-primary-inverted);

        transition: left 0.3s ease;

        z-index: 11;
    }

    .header__nav.open {
        left: 0;
    }

    .header__nav.open::before {
        left: 0;
    }

    .header__link {
        width: 100%;
        padding: 16px 0;

        font-size: 20px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .icon-menu {
        align-self: center;
        min-width: 30px;
        height: 30px;
        cursor: pointer;
    }

    .icon-menu span,
    .icon-menu::before,
    .icon-menu::after {
        content: "";
        position: absolute;
        right: 0;

        width: 100%;
        height: 2px;

        background-color: var(--primary-inverted-color);

        transition: all 0.3s ease;
    }

    .icon-menu::before {
        top: 20%;
    }

    .icon-menu::after {
        bottom: 20%;
    }

    .icon-menu span {
        top: calc(50% - 1px);
    }

    .icon-menu.open span {
        width: 0;
    }

    .icon-menu.open::before {
        top: calc(50% - 1px);
        transform: rotate(-45deg);
    }

    .icon-menu.open::after {
        bottom: calc(50% - 1px);
        transform: rotate(45deg);
    }
}

@media (max-width: 619.98px) {
    .header__actions {
        display: none;
    }
    .header__action {
        display: none;
    }
    .header__link {
        text-align: center;
    }
    .header__action_nav {
        width: 100%;
        border: 1px solid var(--primary-inverted-color);
        min-height: 51px;
        font-size: 20px;
    }
    .header__action_nav.header__action--active {
        display: flex !important;
    }
}

@media (max-width: 519.98px) {
    .header-container {
        gap: 20px;
    }
    .header__top {
        display: none;
    }
    .header__lang-switcher {
        display: none;
    }
    .header__lang {
        display: none;
    }
    .header__lang-switcher_nav {
        display: flex !important;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        gap: 10px;
        margin-right: 0px !important;
        margin-bottom: 10px;
    }
    .header__lang_nav {
        display: flex !important;
        flex: 0 1 calc(50% - 5px);
        border-radius: 6px;
        padding: 10px 15px;
        justify-content: center;
        text-align: center;
        border: 1px solid var(--third-color);
    }
    .header__lang_nav.header__lang--active {
        border: 1px solid var(--primary-inverted-color);
    }
}

.blog__arrow svg {
    width: 15px;
    height: 15px;
}

.blog__slider,
.reviews__slider {
    position: relative;
}

.blog__track,
.reviews__track {
    cursor: grab;
    user-select: none;
    touch-action: pan-y;
}

.blog__track.is-dragging,
.reviews__track.is-dragging {
    cursor: grabbing;
}

.blog__arrow,
.reviews__arrow {
    border: none;
    cursor: pointer;
}

.blog__arrow_right svg,
.reviews__arrow_right svg {
    transform: rotate(180deg);
}

/* static pages */

.page {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1 1 100%;
}

.static-page {
    padding: 228px 0 80px;
    flex: 1 1 100%;
    min-height: 100%;
}

.static-page__container {
    width: 100%;
}

.static-page__title {
    margin-bottom: 40px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.static-page__content {
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    font-size: 18px;
    line-height: 1.8;
    color: #374151;
}

.static-page__content h2 {
    margin: 48px 0 20px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

.static-page__content h3 {
    margin: 36px 0 16px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

.static-page__content p {
    margin-bottom: 20px;
}

.static-page__content ul,
.static-page__content ol {
    list-style: none;
    margin: 20px 0;
    padding-left: 34px;
}

.static-page__content li {
    margin-bottom: 12px;
    position: relative;
}

.static-page__content li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #374151;
}

.static-page__content a {
    color: inherit;
    text-decoration: underline !important;

    transition: all 0.3s ease 0s;
}

.static-page__content a:hover {
    color: var(--link-color, #2563eb);
    text-decoration-color: currentColor;
}

.static-page__content a:visited {
    color: inherit;
}

.static-page__content a:focus-visible {
    color: var(--link-color, #2563eb);
    outline: none;
}

.static-page__content strong,
.static-page__content b {
    font-weight: 700;
    color: #111827;
}

.static-page__content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.static-page__content table th,
.static-page__content table td {
    padding: 12px;
    border: 1px solid #e5e7eb;
}

.static-page__content table th {
    background: #f8fafc;
    font-weight: 700;
}

.static-page__content blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    border-left: 4px solid #2563eb;
    background: #f8fafc;
    font-style: italic;
}

@media (max-width: 991px) {
    .static-page {
        padding: 150px 0 60px;
    }

    .static-page__title {
        font-size: 38px;
    }

    .static-page__content {
        padding: 30px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .static-page {
        padding: 120px 0 40px;
    }

    .static-page__title {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .static-page__content {
        padding: 20px;
        border-radius: 16px;
    }

    .static-page__content h2 {
        font-size: 24px;
    }

    .static-page__content h3 {
        font-size: 20px;
    }
}

.faq-page {
    padding: 228px 0 80px;
    flex: 1 1 100%;
    min-height: 100%;
}

.faq-page__container {
    width: 100%;
}

.faq-page__title {
    margin-bottom: 40px;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.faq-page__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-page__item {
    padding: 32px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-page__question {
    margin-bottom: 16px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
}

.faq-page__answer {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
}

.faq-page__answer p {
    margin-bottom: 16px;
}

.faq-page__answer p:last-child {
    margin-bottom: 0;
}

.faq-page__answer a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.faq-page__answer a:hover {
    color: var(--link-color, #2563eb);
}

.faq-page__answer ul,
.faq-page__answer ol {
    margin: 16px 0;
    padding-left: 24px;
}

.faq-page__answer li {
    margin-bottom: 10px;
}

.faq-page__empty {
    padding: 32px;
    background: #ffffff;
    border-radius: 24px;
    color: #374151;
}

@media (max-width: 991px) {
    .faq-page {
        padding: 150px 0 60px;
    }

    .faq-page__title {
        font-size: 38px;
    }

    .faq-page__item {
        padding: 28px;
    }

    .faq-page__answer {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .faq-page {
        padding: 120px 0 40px;
    }

    .faq-page__title {
        margin-bottom: 24px;
        font-size: 30px;
    }

    .faq-page__item {
        padding: 20px;
        border-radius: 16px;
    }

    .faq-page__question {
        font-size: 20px;
    }
}

.modal__inner--video {
    max-width: 1040px;
}

.video-modal {
    padding: 32px;
}

.video-modal__image {
    width: 100%;
    padding-bottom: 56%;
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
}

.video-modal__image video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
