* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: sans-serif;
    font-size: 18px;
    line-height: 24px;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    line-height: 40px;
}

h2,
h3,
h4,
h5,
h6 {
    line-height: 32px;
}

ul,
ol {
    margin: 25px 0;
}

.table-wrapper {
    overflow-x: scroll;
}

.content table {
    margin: 0;
    background-color: #fbfbfb;
    border-radius: 6px;
    padding: 20px;
    border: 1px solid #e8e8e8;
    min-width: 600px;
}

.content table tr {
    padding: 10px;
    gap: 13px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 20px;
}

.content table tr td p {
    padding: 0;
}

.container {
    max-width: 1320px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}

.btn {
    background: #75d900;
    text-decoration: none;
    color: #fff;
    padding: 15px 35px;
    border-radius: 6px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.btn:visited {
    color: #fff;
}

.btn:hover {
    background-color: #3cb663;
    color: #fff;
}

.btn-outline {
    background: #fff !important;
    color: #1a1a1a !important;
    border: 3px solid #fbfbfb !important;
}

.btn-outline:hover {
    background: #fbfbfb !important;
}

.btn-outline:visited {
    color: #1a1a1a;
}

.btn-gray {
    background: #F3F2F7;
    color: #1a1a1a;
}

.btn-gray:visited {
    color: #1a1a1a;
}

.toc {
    background-color: #fff;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
}

.toc-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}

.toc-title span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.toc-list {
    display: none;
}

.toc ol {
    margin: 25px 0;
}

.toc ol li a {
    color: #1a1a1a;
    text-decoration: none;
}

.header {
    padding-top: 100px;
}

.header-navbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background-color: #fff;
    z-index: 99;
}

.header-navbar .btn {
    padding: 10px 25px;
    font-size: 14px;
}

.header-navbar__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
}
.header-logo a{
    font-size: 24px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
.header-logo img {
    height: 55px;
    width: auto;
    max-width: none;
}

.header-nav {
    width: -webkit-fill-available;
}

.header-nav ul {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.header-nav ul li.btn {
    display: none;
}

.header-nav ul li a {
    padding: 5px;
    color: #1a1a1a;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
}

.menu-item-has-children {
    padding-right: 15px;
}

.menu-item-has-children:after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
    background: url(chevron-down.svg) no-repeat center center;
    background-size: contain;
    width: 15px;
    height: 15px;
    transition: all .2s ease-in-out;
}

.menu-item-has-children.focus::after,
.menu-item-has-children:hover::after {
    transform: rotate(180deg);
}

.sub-menu {
    flex-direction: column;
    padding: 15px !important;
    border-radius: 5px;
    gap: 0 !important;
    transition: all .2s ease-in-out;
    background: #fff;
}

.header-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
}

.header-action.first {
    margin-right: auto;
    margin-left: 20px;
}

.header-content {
    padding-bottom: 55px;
}

.header-content__wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    gap: 50px;
}

.header-content__inner {
   
    width: 100%;
}

.header-content__props tbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    margin: 35px 0;
}

.header-content__props-title {
    color: #767384;
    font-size: 14px;
    margin-bottom: 5px;
    height: -webkit-fill-available;
}

.header-content__props-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.header-content__props-value {
    font-size: 18px;
    font-weight: bold;
}

.header-content__props-value ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.header-content__props-value ul li img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.header-content__props-value a {
    color: #1a1a1a;
}

.header-content__action {
    padding: 25px 0;
    float: left;
    margin-right: 20px;
}

/* .header-content__action.second{
    display: none;
} */
.header-content__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    height: 100%;
    
}

.header-content__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
}

.systems {
    z-index: -1;
}

.systems ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 35px 0;
    margin: 0;
    gap: 15px;
}

.systems img {
    width: 20px;
    height: auto;
}

.partners {
    padding: 55px 0;
}

.partners-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
}

.partners-title {
    font-size: 48px;
    line-height: normal;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 55px;
}

.partners-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
}

.partners-grid__item a {
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
}

.partners-grid__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.table {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
    margin: 55px 0;
}

.table table {
    width: 100%;
}

.table-list {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    background-color: #fbfbfb;
    border-radius: 6px;
    padding: 20px;
}

.table-list__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.table-item {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #e8e8e8;
    font-size: 20px;
}

.table-item__title {

    color: #767384;

}

.table-item__value {
    font-weight: bold;
    text-align: right;
}

.iframe-game {
    width: 100%;
    height: 400px;
}

.content-block {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding: 55px 0;
}

.content {
    background-color: #fbfbfb;
    padding: 55px 0;
}

.content-white {
    background-color: #fff;
}

.content-block__img {
    height: 500px;
}

.content-block__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
}

.content-block__text-more {
    text-align: right;
    padding: 10px 0;
}

.content-block__text-more a {
    color: #1a1a1a;
}

.content-block__action {
    margin-top: 35px;
}

.gallery {
    padding: 55px 0;
    display: block;
}

.gallery-title {
    margin-bottom: 25px;
    text-transform: uppercase;
    font-size: 28px;
    font-weight: bold;
    line-height: normal;
}

.gallery-swiper {
    height: 550px;
    padding-bottom: 50px;
}

.gallery-swiper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 6px;

}

.ac {
    background-color: #fbfbfb;
    border: none;
    padding: 10px;
    border-radius: 6px;
}

.ac .ac-trigger:after {
    font-size: 28px;
    font-weight: 100;
}

.footer {
    /* background-color: #1a1a1a; */
    padding: 55px 0;
}

.footer-row.first {
    border-bottom: 1px solid #e7e7e7;
}

.footer-row {
    padding: 55px 0;
}
.footer-social{
    display: flex;
    justify-content: flex-start;
    text-align: left;
}
.footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.footer-text {
    color: #888596;
    font-size: 14px;
    margin-bottom: 25px;
}

.footer-copyright {
    color: #888596;
    font-size: 14px;
}

.social-list {
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 12px;
    padding: 0;
}

.social-list li a {
    background-color: #fbfbfb;
    padding: 20px;
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.social-list li a:hover {
    background-color: #90e0ef;
    color: #fff;
}

.social-list li a:hover svg {
    fill: #fff;
}

.footer-subscribe__title {
    font-size: 28px;
    line-height: normal;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-subscribe__text {
    font-size: 20px;
    margin-bottom: 35px;
}

.footer-subscribe form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
}

.footer-subscribe input[type="email"] {
    font-size: 18px;
    padding: 15px;
    border: 1px solid #fbfbfb;
    border-radius: 6px;
    background: #fbfbfb;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.footer-subscribe input[type="submit"] {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    background: #75d900;
    text-decoration: none;
    color: #fff;
    padding: 15px 55px;
    border-radius: 6px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 18px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 59px;
}

.footer-navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 35px;
}

.footer-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 20px;
    list-style-type: none;
    padding: 0;
    margin: 25px 0;
    flex-wrap: wrap;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.footer-logo {
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.footer-logo img {
    height: 100%;
    width: 100%;
    max-width: 200px;
    -o-object-fit: contain;
    object-fit: contain;
}

.footer-images ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    list-style-type: none;
    padding: 0;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
}

.footer-images ul li {
    background-color: #fbfbfb;
    padding: 10px;
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.footer-images ul li:hover {
    background-color: #fbfbfb;
}

.footer-images ul li img {
    height: 30px;
}

.footer-images ul li img.invert {
    filter: invert(0.8);
}

#cookie-note {
    display: none;
    position: fixed;
    bottom: 0;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 5px 0;
    background-color: white;
    border-radius: 6px;
    -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.cookie-note__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

#cookie-note p {
    margin: 0;
    font-size: 11px;
    line-height: 13px;
    text-align: left;
    color: black;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.cookie_accept {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    min-width: 120px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    border: none;
    font-size: 12px;
    padding: 10px 20px;
    background: #fbfbfb;
    color: #1a1a1a;
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 35px;
}

.contacts-content h1 {
    letter-spacing: .095rem;
    text-transform: uppercase;
    font-size: 3.875rem;
    font-weight: 900;
    line-height: 3.875rem;
}

.contacts-content p {
    font-size: 1.125rem;
    line-height: 1.688rem;
    margin-bottom: 100px;
}

.contacts-content .social-list {
    justify-content: flex-start;
    border-top: 1px solid #e4e1ed;
    padding: 25px 0;
}

.contacts-email a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contacts-form {
    background: #fbfbfb;
    border-radius: 35px;
    padding: 20px 50px;
}

.contacts-form input,
.contacts-form textarea {
    width: 100% !important;
    max-width: none !important;
    border-radius: 10px !important;
}

.contacts-form input[type="checkbox"] {
    width: auto !important;
}

.contacts-form .btn-outline {
    width: 100%;
    background: #fff !important;
    border-radius: 6px !important;
    font-size: 20px;
    font-weight: 600;
    padding: 15px;
    height: auto;
}

.wpforms-container-full {
    margin: 24px auto;
}

.wpforms-field {
    padding: 15px 0;
}

.wpforms-field-label {
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
}

.wpforms-field-textarea {
    padding-bottom: 0;
}

.wpforms-field-checkbox {
    display: flex;
    align-items: center;
}

.wpforms-field-label-inline {
    font-size: 12px;
    margin-left: 10px;
}

#popup {
    display: none; /* Скрываем попап по умолчанию */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border: 1px solid #ccc;
    padding: 30px;
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 220px;
    max-height: 220px;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    font-size: 20px;
}

#overlay {
    display: none; /* Скрываем оверлей по умолчанию */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.icon {
    margin-bottom: 10px;
    font-size: 44px;
    padding: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #75d900;
    color: #75d900;
    border-radius: 100%;
}

.close {
    margin-left: auto;
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 10px;
}

.hidden {
    display: none;
}

@media (min-width: 576px) {
    #cookie-note.show {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 960px) {
    .contacts-content h1 {
        font-size: 44px;
        line-height: 54px;
    }
}

@media (max-width: 820px) {
    #cookie-note.show {
        display: block;
        text-align: left;
    }

    .cookie-note__wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .header {
        padding-top: 85px;
    }

    .header-logo {
        order: 2;
    }

    .header-nav {
        order: 1px;
        width: auto;
    }

    .header-nav ul {
        display: none;
        position: fixed;
        left: 0;
        top: 60px;
        padding: 20px;
        background: #fff;
        width: 100%;
        height: 100%;
    }

    .header-nav ul li.btn {
        display: inline-flex;
    }

    .sub-menu {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        z-index: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
        display: none !important;
        align-items: flex-start !important;
    }

    .menu-item-has-children.focus .sub-menu {
        display: flex !important;
    }

    .header-action.second {
        order: 3;
        margin-left: auto; 
    }

    .header-action.second .btn-outline {
        display: none;

    }

    .menu-toggle {
        background: none;
        border: none;
        padding: 0;
    }

    .menu-toggle svg {
        width: 30px;
        height: 30px;
    }

    .header-action.first {
        display: none;
    }

    .header-content__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 20px;
    }

    .header-content__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .header-content__text {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }

    .header-content__props tbody {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        gap: 5px;
        margin: 0;
    }

    .header-content__action.first {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .header-content__action.second {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }

    .header-content__action .btn {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .systems ul {
        justify-content: center;
    }

    .table {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .content-block {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
    }

    .content-block__action .btn {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .footer-navbar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-images ul {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .partners-wrapper {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
    }

    .partners-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .contacts-wrapper {
        grid-template-columns: auto;
    }

    .header-content__props {
        order: 2;
    }

    .systems {
        order: 3;
    }

    .header-content__text {
        order: 4;
    }
}

@media screen and (max-width: 520px) {
    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 36px;
    }

    .btn {
        font-size: 18px;
        padding: 10px 25px;
    }

    .header-logo img {
        height: auto;
        width: 100%;
    }

    .header-content__img {
        height: auto;
        width: 100%;
    }

    .header-navbar__wrapper {
        padding: 5px 0;
        gap: 12px;
        justify-content: flex-start;
    }

    .table-item__value {
        font-size: 20px;
    }

    .content-block__img {
        height: 250px;
    }

    .header-content__props-item {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
        flex: 0 0 45%;
    }

    .table-list__wrapper {
        -ms-grid-columns: auto;
        grid-template-columns: auto;
    }

    .table-item {
        padding: 10px 0;
    }

    .gallery {
        margin: 0;
    }

    .gallery-swiper {
        height: 250px;
        width: 100%;
        padding-bottom: 0;
    }

    /* .gallery-swiper img{
        object-fit: contain;
    height: auto;
    } */
    .footer-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .social-list {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .footer-subscribe form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .footer-logo {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .footer-subscribe form input {
        width: 100% !important;
    }
    .games-slider .swiper-wrapper{
        gap: 5px;
    }
    .games-slider .swiper-slide{
        height: 50px !important;
    }
}
.games-slider{
    overflow: hidden;
}
.games-slider .swiper-wrapper {
    display: grid
;
        grid-auto-flow: column;
        grid-template-rows: repeat(var(--rows), 1fr);
    --rows: 3;
    max-height: 600px;
    gap: 10px;
}
.games-slider  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    height: calc((100% - 30px) / 2);
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: clamp(132px, calc(18vw - 161px), 174px);
    height: calc(10.08vw - 90.16px);
    max-height: 97px;
    background-color: #1a1a1a;
    border-radius: 10px;
  }
 .games-slider__navigation{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
 }
 .swiper-navigate {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #fbfbfb;
    cursor: pointer;
    color: #000;
 }
 .providers-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
 }
 .footer .menu{
    flex-direction: column;
    align-items: flex-start;
 }