body {
    background: rgba(26, 26, 26, 1);
    font-family: 'Roboto', sans-serif;
}

* {
    padding: 0;
    margin: 0;
}

@media screen and (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
}

.container {
    max-width: 1200px;
    /* width: 100%; */
    margin: 0 auto;
    padding: 0 20px;
}


h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 140%;
    letter-spacing: 0;
    color: rgba(238, 238, 238, 1);
    margin-bottom: 8px;
}

h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    letter-spacing: 0;
    color: rgba(238, 238, 238, 1);
    margin-bottom: 8px;
    margin-top: 24px;
}

h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: 0;
    color: rgba(238, 238, 238, 1);
    margin-bottom: 8px;
    margin-top: 24px;
}


main, p {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0;
    color: rgba(163, 163, 163, 1);
    margin-bottom: 24px;
}


@media screen and (max-width: 768px) {
    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    main, p {
        font-size: 16px;
    }
}

/* HEADER */

.header {
    padding: 40px 0;
    background: rgba(26, 26, 26, 1);
}

.header__container {
    display: flex;
    gap: 35px;
    align-items: center;
}

.header__logo-link {
    display: block;
}

.header__logo-img {

    width: 100%;

    min-width: 150px;
}

.header__nav-wrap {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.header__nav {
    display: flex;
    gap: 1dvw;
}

.header__nav-link {
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
    text-decoration: unset;
    font-weight: 500;

    &:hover {
        color: rgba(255, 188, 0, 1);
    }
}

.header__btns {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__btn {
    color: rgba(26, 26, 26, 1);
    text-decoration: unset;
    background: rgba(255, 188, 0, 1);
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    display: block;
    cursor: pointer;

    &:hover {
        background: rgb(255 205 63);
    }
}

.header__lang-switcher {
    background: rgba(255, 255, 255, 0.1);
    padding: 9px 16px;
    border-radius: 8px;
    position: relative;
}

.header__lang-current {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    position: relative;
}

.header__lang-list {
    display: none;
    flex-direction: column;
    position: absolute;
    /* gap: 10px; */
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    left: 0;
    top: 45px;
    width: -webkit-fill-available;
}

.header__lang-list::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.header__lang-switcher:hover .header__lang-list {
    display: flex;
}

.header__lang-link {
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
    font-weight: 500;
    text-decoration: unset;
    display: block;
    padding: 6px 16px;
}

.header__lang-link:hover {
    color: rgba(255, 188, 0, 1);
}


.header__mob-controls {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}


.header__burger {
    display: flex;
}

.header__close {
    display: none;

}

.mob-menu-border {
    width: 100%;
    overflow: hidden;
}

.mob-menu-border::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 188, 0, 1);
    width: calc(100dvw - 1px);
    left: 0;
    overflow: hidden;
}

.header__mob-footer {
    flex-direction: column;
    padding: 24px 0;
    gap: 24px;
}

.header__mob-footer-socials {
    display: flex;
    gap: 14px;
}

.header__mob-footer-socials-item-link {
}

.header__mob-footer-socials-item-img {
}

.header__mob-footer-supports {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    gap: 12px;
}

.header__mob-footer-supports-icon {
}

.header__mob-footer-supports-text-wrap {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 1);
    gap: 4px;
}

.header__mob-footer-supports-tel {
    color: rgba(255, 255, 255, 1);
    text-decoration: unset;
}

@media screen and (max-width: 768px) {

    .header {
        padding: 20px 0;
    }

    .header__nav-wrap {
        display: none;
    }

    .header__logo-img {
        width: 137px;
    }


    .header__container {
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: space-between;
        background: rgba(26, 26, 26, 1);
    }

    .mob-menu-active {

        position: fixed;
        top: 0;
        padding-top: 30px;
        height: 100dvh;
        overflow: auto;
		z-index: 55;


        .header__mob-footer-socials{
            justify-content: center;
        }

        .header__mob-footer{
            width: 100%;
        }

        .header__container {
            min-height: calc(100dvh - 60px);
        }

        .header__burger {
            display: none;
        }

        .header__close {
            display: flex;
        }

        .header__nav-wrap {
            order: 3;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            flex: auto;
        }

        .header__nav {
            flex-direction: column;
            width: 100%;
            gap: 24px;
        }

        .header__btns {
            flex-direction: column;
            width: 100%;
        }

        .header__btn {
            width: 100%;
            text-align: center;
        }

        .header__lang-switcher {
            width: 100%;
        }


        .header__lang-current {
            justify-content: space-between;
        }

        .header__lang-list {
            position: relative;
            top: 4px;
            left: 0;
            background: none;
        }

        .header__lang-link {
            padding: 6px 0;
        }

    }

}


/* HERO */

.hero {

}

.hero__container {
    background: var(--hero-bg-img, url('../img/hero-banner.png')) no-repeat center;
    background-size: cover;
    border-radius: 8px;
    padding: 0 40px;
    box-sizing: border-box;
}

.hero_content {
    padding: 129px 0;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero_title {
    font-weight: 700;
    max-width: 500px;
    font-size: 42px;
    line-height: 120%;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 1);

    span {
        color: rgba(255, 188, 0, 1);
    }

}

.hero_sub-title {
    font-weight: 500;
    max-width: 500px;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 1);
}

.hero_btns {
    display: flex;
    gap: 12px;
    margin-top: 50px;
}

.hero_btn {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
    display: block;
    text-decoration: unset;
    padding: 9px 16px;
    border-radius: 8px;
    cursor: pointer;

    &.grey {
        background: rgba(48, 48, 48, 1);
        color: rgba(255, 255, 255, 1);

        &:hover {
            background: rgb(83 78 78);
        }
    }

    &.yellow {
        background: rgba(255, 188, 0, 1);
        color: rgba(26, 26, 26, 1);

        &:hover {
            background: rgb(255 205 63);
        }
    }

}

@media screen and (max-width: 768px) {

    .hero__container {
        padding: 0 16px;
        background-position: right;
    }

    .hero_content {
        padding: 53px 0;
    }

    .hero_title {
        font-weight: 700;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: 0;
        max-width: 250px;

    }

    .hero_sub-title {
        font-weight: 500;
        font-size: 14px;
        line-height: 130%;
        letter-spacing: 0;
        max-width: 250px;

    }

    .hero_btns {
        justify-content: center;
        margin-top: 32px;
        padding: 9px 21px;
    }


}


/* MAIN */

.main {
    margin-top: 40px;
}

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

.main__content {
    flex: 1;
}

.main__sidebar {
    flex-basis: 190px;
}

.sidebar__widget {
}

@media screen and (max-width: 768px) {
    .main__container {
        flex-direction: column;
    }

    .main__content {
        order: 1;
    }

    .main__sidebar {
        flex-basis: unset;
        order: 0;
    }
}


/* TABLE */

.main__content figure {
    margin: 0 0 24px 0;
    overflow-x: auto;
}

.main__content figure::-webkit-scrollbar {
    height: 6px;
}

.main__content figure::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.main__content figure::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.main__content figure::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.main__content table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    table-layout: fixed;
}

.main__content thead {
    background: rgba(255, 255, 255, 0.1);
}

.main__content thead th {
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    color: rgba(255, 255, 255, 1);
    text-align: left;
    padding: 10px 16px;
}

.main__content thead th:not(:last-child) {
    border-right: 1px dashed rgba(255, 188, 0, 1);
}

.main__content tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
}

.main__content tbody tr:last-child {
    border-bottom: none;
}

.main__content tbody td {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: rgba(163, 163, 163, 1);
    padding: 16px 24px;
}

.main__content tbody td:first-child {
    color: rgba(170, 170, 170, 1);
    font-weight: 400;
}

.main__content tbody td:not(:last-child) {
    border-right: 1px dashed rgba(255, 188, 0, 1);
}

@media screen and (max-width: 768px) {
    .main__content thead th {
        font-size: 16px;
        padding: 16px;
    }

    .main__content tbody td {
        font-size: 16px;
        padding: 16px;
    }
}

.wp-block-table td, .wp-block-table th {
    border: none;
    padding: .5em;
}

.wp-block-table thead {
    border: none;
}

/* slotst */

.slots {
    margin: 16px 0;
}

.slots__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.slots__card {
    background: rgba(48, 48, 48, 1);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slots__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.slots__card-img {
    width: 100%;
    height: 210px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(26, 26, 26, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slots__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slots__card-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
    color: rgba(255, 255, 255, 1);
    margin: 0 0 12px 0;
}

.slots__card-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: rgba(170, 170, 170, 1);
    margin-bottom: 20px;
    flex-grow: 1;
}

.slots__card-btn {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    background: rgba(255, 188, 0, 1);
    color: rgba(26, 26, 26, 1);
    transition: background 0.3s ease;
    width: fit-content;
    padding: 9px 30px;
    margin-left: auto;
}

.slots__card-btn:hover {
    background: rgb(255, 205, 63);
}

.slots.style-2 {
    .slots__card-btn {
        width: -webkit-fill-available;
        display: block;
        padding: 9px;
        margin-top: auto;
    }

    .slots__card-title {
        text-align: center;
    }

    .slots__card-img {
        height: 176px;
    }
}

@media screen and (max-width: 768px) {
    .slots {
        margin: 24px 0;
    }

    .slots__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .slots__card {
        padding: 16px;
    }

    .slots__card-img {
        margin-bottom: 12px;
    }

    .slots__card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .slots__card-text {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .slots__card-btn {
        font-size: 14px;
        padding: 9px 30px;
    }
}


ol, ul {
    margin-bottom: 24px;
    list-style-position: inside;
}

ul li {
    margin-bottom: 8px;
}

ol li {
    margin-bottom: 8px;
    list-style: none;
    position: relative;
    padding-left: 35px;
}

ol li:before {
    content: counter(list-item);
    counter-increment: list-item - 1;
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: rgba(255, 188, 0, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(28, 28, 28, 1);
    font-weight: 500;
}


ul li {
    margin-bottom: 8px;
    list-style: none;
    position: relative;
    padding-left: 35px;
}

ul li:before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: rgba(28, 28, 28, 1);
    font-weight: 500;
    background: rgba(255, 188, 0, 1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='10' viewBox='0 0 14 10' fill='none'%3E%3Cpath d='M13.3 0.709971C13.7 1.09997 13.7 1.69997 13.3 2.09997L5.8 9.59997C5.4 9.99997 4.8 9.99997 4.4 9.59997L0.7 5.89997C0.3 5.49997 0.3 4.89997 0.7 4.49997C1.1 4.09997 1.7 4.09997 2.1 4.49997L5 7.39997L11.9 0.499971C12.3 0.0999707 12.9 0.0999707 13.3 0.709971Z' fill='%231C1C1C'/%3E%3C/svg%3E") no-repeat center;
}


/* slider */
.slider {
}

.slider__container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider__control {
    background: rgba(255, 255, 255, 0.1);
    padding: 14px 22px;
    border-radius: 8px;
    cursor: pointer;
}

.slider__control-right {
}

.slider_control_img {
    max-width: 100%;
}

.slider_control_img-right {
}

.slider__content {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    overflow-y: auto;
    width: 0;
    flex: 1;
    scrollbar-width: none; /* Для Firefox */
    -ms-overflow-style: none; /* Для Internet Explorer и Edge */
    padding: 5px 20px;
    position: relative;
    counter-reset: slider-counter;
    user-select: none; /* Предотвращает выделение текста при драге */
    -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
}

.slider__content::-webkit-scrollbar {
    display: none;
}

.slider_item {
    width: 250px;
    min-width: 250px;
    counter-increment: slider-counter;
    position: relative;
    padding-top: 50px;
}

.slider_item::before {
    content: counter(slider-counter);
    position: absolute;
    width: 32px;
    height: 32px;
    background: rgba(255, 188, 0, 1);
    top: 0;
    left: 0;
    text-align: center;
    color: rgba(28, 28, 28, 1);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 22;
}

.slider_item::after {
    content: '';
    position: absolute;
    width: calc(100% + 15px); /* 15px = gap между элементами */
    height: 1px;
    background: rgba(163, 163, 163, 1);
    top: 16px; /* Центр круга (32px / 2 = 16px, можно 15px) */
    left: 32px; /* Начинается от правого края круга */
    z-index: 2;
}

/* Убираем линию у последнего элемента */
.slider_item:last-child::after {
    display: none;
}

.slider__item-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0;
    margin-top: 16px;

}

.slider_item_img {
    width: 100%;
}

.slider__control-left {
}

.slider_control_img-left {
}


@media screen and (max-width: 768px) {
    .slider {
    }

    .slider__container {
    }

    .slider__control {
        display: none;
    }

    .slider__control-right {
    }

    .slider_control_img {
    }

    .slider_control_img-right {
    }

    .slider__content {
        flex-direction: column;
        padding: 0;
    }

    .slider_item {
        width: 100%;
        max-width: 100%;
        padding: 0 50px;
    }

    .slider_item::after {
        width: 1px; /* Меняем ширину на высоту */
        height: calc(100% + 15px); /* Высота = высота элемента + gap */
        top: 32px; /* Начинается от нижнего края круга */
        left: 16px; /* Центр круга (32px / 2 = 16px) */
    }

    /* Убираем линию у последнего элемента */
    .slider_item:last-child::after {
        display: none;
    }

    .slider__item-desc {
        font-weight: 400;
        font-size: 16px;
        line-height: 140%;
        letter-spacing: 0;
        margin-top: 16px;
        margin-left: 8px;

    }

    .slider_item_img {
    }

    .slider__control-left {
    }

    .slider_control_img-left {
    }
}


/* BANNER */
.banner {
}

.banner__container {
    background: var(--banner-img-bg, url('../img/banner1.png')) center center no-repeat;
    border-radius: 8px;
    padding: 26px 40px;
}

.banner-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 1);
    text-shadow: 0 1px 2px 0 rgba(0, 0, 0, 1);
    max-width: 50%;

    span {
        color: rgba(255, 188, 0, 1);
    }

}

.banner-btn {
    background: rgba(255, 188, 0, 1);
    padding: 9px 50px;
    color: rgba(26, 26, 26, 1);
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    text-align: center;
    border-radius: 8px;
    width: fit-content;
    margin-top: 16px;
    cursor: pointer;
    text-decoration: unset;


    &:hover {
        background: rgb(255, 205, 63);
    }
}

@media screen and (max-width: 768px) {
    .banner {
    }

    .banner__container {
    }

    .banner-title {
        font-size: 16px;
        max-width: 80%;
    }

    .banner-btn {
        width: 100%;
    }
}


.sidebar__menu {
    background: rgba(48, 48, 48, 1);
    padding: 24px;
    display: flex;
    gap: 24px;
    flex-direction: column;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar__menu-link {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 1);
    text-decoration: unset;

    &:hover {
        color: rgba(255, 188, 0, 1);
    }
}


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

.sidebar__banners-link {
}

.sidebar__banners-img {
    width: 100%;
}


.footer {
    margin-bottom: 50px;
}

.footer__container {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    box-sizing: border-box;
    border-radius: 16px;
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.footer__row {
    display: flex;
    gap: 24px;
}

.footer__logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 30%;
}

.footer__logo-link {
}

.footer__logo-img {
}

.footer__info-text {
    color: rgba(163, 163, 163, 1);
    font-size: 18px;
    font-weight: 400;
}

.footer__menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    flex: 1;
}

.footer__menu-link {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 1);
    text-decoration: unset;
    &:hover{
        color: rgba(255, 188, 0, 1);
    }
}


.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer__social-link {
}

.footer__social-img {
}

.footer_support {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    display: flex;
    gap: 10px;
    border-radius: 8px;
}

.footer_support-icon {
}

.footer_support-text-wrap {
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 1);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer_support-tel {
    text-decoration: unset;
]: color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
}

.footer_partners {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding-top: 24px;
    display: flex;
    gap: 11px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer_partner {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 50px;
    text-align: center;
    flex-basis: calc(70% / 3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_partners-img {
}

@media screen and (max-width: 768px) {
    .footer__row {
        flex-direction: column;
    }

    .footer__logo-wrap{
        width: 100%;
        max-width: 100%;
    }

    .footer__menu {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer_partner {
        flex-basis: 100%;
    }
}

.only-mobile, .only-mobile-flex {
    display: none;
}


@media screen and (max-width: 768px) {
    .only-mobile {
        display: block;
    }

    .only-mobile-flex {
        display: flex;
    }
}



.only-desktop {
    display: block;
}

.only-desktop-flex {
    display: flex;
}

@media screen and (max-width: 768px) {
    .only-desktop, .only-desktop-flex {
        display: none;
    }
}

.wp-block-button__link {
    color: #000;
    background-color: rgba(255, 188, 0, 1);
    border-radius: 8px;
    box-shadow: none;
    text-decoration: none;
    padding: 9px 62px;
    font-size: 18px;
    font-weight: 500;
    &:hover {
        background-color: rgb(255, 205, 63);
    }
}

.wp-block-buttons>.wp-block-button {
    display: inline-block;
    margin: 0;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .wp-block-button__link {
        width: 100%;
    }
    .wp-block-buttons>.wp-block-button{
        display: block;
        width: 100%;
    }
}

