:root {
    --video-slider-bottom: rgba(0, 179, 60, 0.10);
    --news-linear-gradient: linear-gradient(0deg, rgba(26, 178, 72, 0.60) 0%, rgba(26, 178, 72, 0.60) 100%);
    --map-info-bg: linear-gradient(180deg, rgba(249, 249, 249, 0.00) 0%, rgba(249, 249, 249, 0.84) 46.46%, var(--input-bg) 100%);
    --promo-bubbles-bg: hsl(0, 0%, 73%);
    --promo-button-icon: hsl(0, 0%, 0%);
}
.promo-slider {
    max-width: 1280px;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    .slides-wrapper {
        margin-bottom: 6px;
        position: relative;
        overflow: hidden;
        border-radius: 0 0 40px 40px;
        .slides {
            display: flex;
            height: 600px;
            .slide {
                display: flex;
                flex-direction: column;
                justify-content: end;
                width: 400px;
                min-width: 400px;
                padding: 40px;
                position: relative;
                overflow: hidden;
                button {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 100px;
                    height: 100px;
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    border: none;
                    background: url(../images/index/promo-button-bg.svg) center / 100% 100% no-repeat;
                    pointer-events: all;
                    &::before {
                        content: '\e006';
                        font-family: 'icon';
                        font-size: 16px;
                        font-weight: 700;
                        color: var(--promo-button-icon);
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 40px;
                        height: 40px;
                        border-radius: 50%;
                        background: var(--input-bg);
                        transition: .3s linear;
                    }
                }
                img {
                    width: auto;
                    height: 100%;
                    position: absolute;
                    z-index: -1;
                    left: -62%;
                    top: 0;
                }
                &:first-child img {
                    left: -88%;
                }
                h1, h2 {
                    color: var(--input-bg);
                    font-size: 24px;
                    font-weight: 400;
                    line-height: 100%;
                }
                &::after {
                    content: '';
                    position: absolute;
                    z-index: -1;
                    bottom: 0;
                    left: 0;
                    right: 0;
                    height: 250px;
                    background: var(--linear-gradient-2);
                    backdrop-filter: blur(1px);
                }
            }
        }
        .arrow {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 30px;
            height: 70px;
            position: absolute;
            z-index: 2;
            top: 50%;
            transform: translateY(-50%);
            background: var(--main);
            box-shadow: var(--box-shadow-hide);
            transition: .3s linear;
            button {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 16px;
                height: 16px;
                border: none;
                background: var(--main);
                cursor: pointer;
                &::before {
                    content: '\e010';
                    font-family: 'icon';
                    color: var(--second);
                    margin-right: 5px;
                    transition: .3s linear;
                }
            }
            &::before, &::after {
                content: '';
                width: 20px;
                height: 20px;
                position: absolute;
            }
            &:has(.arrow-l) {
                left: 0;
                border-radius: 0 20px 20px 0;
                &::before {
                    left: 0;
                    top: -18px;
                    background: radial-gradient(circle at right top, transparent 20px, var(--main) 20px);
                }
                &::after {
                    left: 0;
                    bottom: -18px;
                    background: radial-gradient(circle at right bottom, transparent 20px, var(--main) 20px);
                }
            }
            &:has(.arrow-r) {
                right: 0;
                border-radius: 20px 0 0 20px;
                &::before {
                    right: 0;
                    top: -18px;
                    background: radial-gradient(circle at left top, transparent 20px, var(--main) 20px);
                }
                &::after {
                    right: 0;
                    bottom: -18px;
                    background: radial-gradient(circle at left bottom, transparent 20px, var(--main) 20px);
                }
                button:before {
                    margin-right: 0;
                    margin-left: 5px;
                    transform: rotate(180deg);
                }
            }
        }
    }
    .bubbles {
        display: flex;
        justify-content: center;
        gap: 6px;
        div {
            display: flex;
            width: 20px;
            height: 2px;
            border-radius: 2px;
            background: var(--promo-bubbles-bg);
            transition: .3s linear;
            cursor: pointer;
            &.selected {
                width: 40px;
                background: var(--second);
            }
        }
    }
}
.slide-preview {
    .body {
        .slides {
            .slide {
                .content {
                    h2 {
                        padding-right: 20px;
                        font-size: 24px;
                    }
                    .text {
                        padding-right: 20px;
                        overflow-y: auto;
                        p {
                            color: var(--text-2);
                            letter-spacing: -0.2px;
                        }
                    }
                }
            }
        }
    }
}
.run-line {
    padding: 40px 0;
    margin-bottom: 100px;
    position: relative;
    background: var(--el-bg);
    .slides {
        display: flex;
        align-items: center;
        gap: 100px;
        .slide {
            display: flex;
            flex-shrink: 0;
            gap: 100px;
            a {
                img {
                    width: 100%;
                    height: 20px;
                }
            }
        }
    }
}
.video-slider {
    margin-bottom: 100px;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    border-bottom: 1px solid transparent;
    border-image: var(--linear-gradient);
    border-image-slice: 1;
    h2 {
        margin-bottom: 4px;
    }
    &>p {
        margin-bottom: 30px;
        line-height: 19px;
        letter-spacing: -0.2px;
        color: var(--text-2);
    }
    .slides {
        display: flex;
        gap: 20px;
        width: 590px;
        margin: 0 auto 19px;
        position: relative;
        .slide {
            min-width: 350px;
            min-height: 350px;
            display: grid;
            grid-template-rows: 1fr max-content;
            justify-content: center;
            position: relative;
            &:has(iframe) {
                min-width: 590px;
            }
            iframe {
                display: block;
                width: 100%;
                align-self: stretch;
                margin-bottom: 7px;
                border-radius: 20px;
                border: none;
                position: relative;
                z-index: 2;
            }
            /* .instagram-media {
                margin: 0;
                position: absolute;
                transform: scale(0.33);
                transform-origin: top;
            }
            .tiktok-embed {
                display: contents;
                iframe {
                    margin: 0;
                    transform: scale(0.42);
                    position: absolute;
                    transform-origin: top;
                }
            } */
            video {
                border-radius: 20px;
                max-height: 352px;
                margin: 0 auto;
            }
            a {
                position: absolute;
                top: 0;
                left: 0;
                bottom: 0;
                right: 0;
            }
            p {
                grid-row: 2;
                display: flex;
                align-items: center;
                gap: 10px;
                opacity: 0;
                color: var(--text-weight-600);
                font-size: 18px;
                font-weight: 600;
                line-height: 100%;
                transition: .4s linear;
                img {
                    max-width: 40px;
                    object-fit: cover;
                    border-radius: 20px;
                }
            }
            &.active {
                p {
                    opacity: 1;
                }
            }
        }
    }
    .controls {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 26px;
        margin-bottom: 30px;
        button {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 10px;
            background: var(--el-bg);
            transition: .3s linear;
            &.ws-arrow-disabled {
                opacity: 0.5;
                cursor: auto;
            }
            &.arrow-r {
                transform: rotate(180deg);
            }
            &::before {
                content: '\e010';
                font-family: 'icon';
                color: var(--second);
                transition: .3s linear;
            }
        }
        .bubbles {
            display: flex;
            gap: 6px;
            div {
                display: flex;
                width: 8px;
                height: 8px;
                border-radius: 2px;
                background: var(--el-bg);
                transition: .3s linear;
                cursor: pointer;
                &.selected {
                    width: 40px;
                    background: var(--second);
                }
            }
        }
    }
    .links {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 40px;
        position: relative;
        a {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 192px;
            gap: 6px;
            padding: 6px;
            border-radius: 8px;
            background: var(--el-bg);
            font-size: 14px;
            font-weight: 600;
            line-height: 100%;
            &::before {
                font-family: 'icon';
                font-size: 26px;
                line-height: 28px;
                color: var(--second);
                transition: .3s linear;
            }
            &.youtube::before {
                content: '\e003';
            }
            &.tiktok::before {
                content: '\e005';
            }
            &.instagram::before {
                content: '\e004';
            }
            &.telegram::before {
                content: '\e002';
                font-size: 28px;
            }
        }
    }
}
.tariffs {
    margin-bottom: 100px;
    overflow: hidden;
    h2 {
        margin-bottom: 30px;
    }
    .slides {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        .slide {
            display: flex;
            flex-direction: column;
            gap: 20px;
            min-width: calc(50% - 10px);
            &:nth-child(odd) {
                .item:first-child {
                    background-image: url(../images/index/tariffs-bg-1.webp);
                }
                .item:last-child {
                    background-image: url(../images/index/tariffs-bg-2.webp);
                }
            }
            &:nth-child(even) {
                .item:first-child {
                    background-image: url(../images/index/tariffs-bg-2.webp);
                }
                .item:last-child {
                    background-image: url(../images/index/tariffs-bg-1.webp);
                }
            }
            .item {
                display: flex;
                flex-direction: column;
                height: 100%;
                max-height: 200px;
                padding: 30px 33px;
                border-radius: 20px;
                border: 1px solid var(--el-bg);
                background: var(--el-bg);
                background-position: 110% 100%;
                background-size: auto 100%;
                background-repeat: no-repeat;
                position: relative;
                box-shadow: var(--box-shadow-hide);
                transition: .3s linear;
                &.hit {
                    &::before {
                        content: '';
                        width: 70px;
                        height: 70px;
                        position: absolute;
                        right: 13px;
                        top: 20px;
                        background: url(../images/index/hit.svg) center / 100% 100% no-repeat;
                    }
                }
                h3 {
                    max-width: 267px;
                    margin-bottom: auto;
                    font-size: 24px;
                    font-weight: 700;
                    line-height: 28px;
                    transition: .3s linear;
                }
                p {
                    margin-bottom: 20px;
                    color: var(--text-2);
                    line-height: 19px;
                    letter-spacing: -0.2px;
                    max-width: 390px;
                }
                .info {
                    display: flex;
                    align-items: center;
                    gap: 4px;
                    span {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        padding: 11px 23px;
                        border-radius: 30px;
                        border: 1px solid var(--main);
                        background: var(--input-bg);
                        transition: .3s linear;
                        color: var(--text-2);
                        font-weight: 500;
                        line-height: 19px;
                        letter-spacing: -0.2px;
                    }
                }
            }
        }
    }
    .bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        p {
            font-size: 12px;
            line-height: 14px;
            letter-spacing: -0.2px;
            width: 350px;
            a, span {
                color: var(--second);
                font-size: 12px;
                line-height: 14px;
                letter-spacing: -0.2px;
                text-decoration-line: underline;
                text-decoration-style: solid;
                text-decoration-skip-ink: auto;
                text-decoration-thickness: auto;
                text-underline-offset: auto;
                text-underline-position: from-font;
                cursor: pointer;
                transition: .3s linear;
            }
        }
        .controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 300px;
            button {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 40px;
                height: 40px;
                border: none;
                border-radius: 10px;
                background: var(--el-bg);
                transition: .3s linear;
                &.ws-arrow-disabled {
                    opacity: 0.5;
                    cursor: auto;
                }
                &.arrow-r {
                    transform: rotate(180deg);
                }
                &::before {
                    content: '\e010';
                    font-family: 'icon';
                    color: var(--second);
                    transition: .3s linear;
                }
            }
            .bubbles {
                display: flex;
                gap: 6px;
                div {
                    display: flex;
                    width: 8px;
                    height: 8px;
                    border-radius: 2px;
                    background: var(--el-bg);
                    transition: .3s linear;
                    cursor: pointer;
                    &.selected {
                        width: 40px;
                        background: var(--second);
                    }
                }
            }
        }
        &>a {
            display: flex;
            align-items: center;
            justify-content: end;
            gap: 2px;
            width: 350px;
            font-size: 14px;
            font-weight: 700;
            line-height: 24px;
            letter-spacing: 0.4px;
            &::after {
                content: '\e010';
                font-family: 'icon';
                font-size: 12px;
                color: var(--second);
                display: flex;
                justify-content: center;
                align-items: center;
                width: 14px;
                height: 14px;
                transform: rotate(180deg);
            }
        }
    }
}
.partnership {
    margin-bottom: 100px;
    h2 {
        margin-bottom: 4px;
    }
    h3 {
        margin-bottom: 30px;
        color: var(--text-2);
        font-size: 20px;
        font-weight: 700;
        line-height: 23px;
        letter-spacing: -0.2px;
        span {
            color: var(--second);
            font-size: 20px;
            font-weight: 700;
            line-height: 23px;
            letter-spacing: -0.2px;
        }
    }
    .content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-radius: 20px;
        background: var(--el-bg);
        overflow: hidden;
        .img {
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            border-radius: 0 20px 20px 0;
            img {
                max-width: 100%;
            }
        }
        form {
            display: flex;
            flex-direction: column;
            padding: 50px 49px;
            label {
                display: flex;
                padding-left: 10px;
                margin-bottom: 3px;
                font-size: 14px;
                line-height: 16px;
                letter-spacing: -0.028px;
            }
            input:not([type="submit"], [type="checkbox"]), textarea {
                display: flex;
                width: 100%;
                padding: 10px 12px;
                margin-bottom: 10px;
                border-radius: 10px;
                border: 2px solid var(--main);
                background: var(--input-bg);
                color: var(--text-3);
                font-weight: 400;
                line-height: 18px;
                letter-spacing: -0.032px;
                transition: .3s linear;
                &:focus {
                    border: 2px solid var(--second);
                }
                &.error {
                    border: 2px solid rgb(233, 0, 0);
                }
                &:placeholder {
                    font-weight: 400;
                    line-height: 18px;
                    letter-spacing: -0.032px;
                    color: var(--placeholder);
                }
            }
            textarea {
                height: 100px;
                margin-bottom: 30px;
            }
            input[type="submit"] {
                display: flex;
                justify-content: center;
                align-items: center;
                max-width: 218px;
                padding: 12px;
                border: none;
                border-radius: 10px;
                background: var(--second);
                color: var(--main);
                font-size: 14px;
                font-weight: 700;
                line-height: 24px;
                transition: .3s linear;
                margin-bottom: 20px;
            }
            label:has(input[type="checkbox"]) {
                display: flex;
                align-items: center;
                gap: 10px;
                p,span {
                    color: var(--text-2);
                    font-size: 12px;
                    font-weight: 300;
                    line-height: 14px;
                    letter-spacing: -0.2px;
                    text-align: left;
                    a {
                        font-size: 12px;
                        font-weight: 300;
                        line-height: 14px;
                        letter-spacing: -0.2px;
                        color: var(--second);
                    }
                }
            }
        }
    }
}
.news {
    max-height: 700px;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
    .items {
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: transform 0.8s ease;
        .slide {
            flex: 0 0 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            box-sizing: border-box;
            gap: 122px;
            .info {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                max-width: 486px;
                h2 {
                    margin-bottom: 20px;
                }
                p, div {
                    color: var(--text-2);
                    line-height: 19px;
                    letter-spacing: -0.2px;
                    max-width: 100%;
                }
                img {
                    width: auto;
                    max-height: 150px;
                    margin-top: auto;
                    border-radius: 20px;
                    object-fit: contain;
                }
                img.small {
                    width: auto;
                    max-height: 320px;
                    margin-top: auto;
                    border-radius: 20px;
                    object-fit: contain;
                    max-width: 100%;
                }
            }
            & > img {
                width: auto;
                height: 700px;
                border-radius: 20px;
                object-fit: contain;
            }
        }
    }
    .bubbles {
        display: flex;
        flex-direction: column;
        max-width: 80px;
        position: absolute;
        bottom: 0;
        left: calc(50% - 50px);
        border-radius: 10px;
        overflow: hidden;
        div {
            position: relative;
            cursor: pointer;
            &::before {
                content: '\e012';
                font-family: 'icon';
                font-size: 45px;
                color: var(--main);
                display: flex;
                justify-content: center;
                align-items: center;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: var(--news-linear-gradient);
                opacity: 0;
                transition: .3s linear;
            }
            &.selected::before {
                opacity: 1;
            }
        }
    }
}
.map {
    margin-bottom: 100px;
    h2 {
        margin-bottom: 30px;
    }
    .container {
        width: 100%;
        height: 647px;
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        .ymaps3x0--map-copyrights__logo,
        .ymaps3x0--map-copyrights__container {
            display: none;
        }
        .marker {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 115px;
            position: relative;
            left: -40px;
            top: -40px;
        }
        .tabs {
            display: none;
            grid-template-columns: repeat(2, 1fr);
            gap: 2px;
            padding: 0 30px;
            button {
                display: flex;
                justify-content: center;
                align-items: center;
                padding: 12px;
                border-radius: 10px;
                border: none;
                background: var(--el-bg);
                font-size: 14px;
                font-weight: 500;
                line-height: 16px;
                &.selected {
                    color: var(--main);
                    background: var(--second);
                }
            }
        }
        .window-background {
            display: contents;
            position: static;
            .window-body {
                display: flex;
                flex-direction: column;
                gap: 20px;
                max-width: 360px;
                padding: 30px 0;
                position: absolute;
                z-index: 1;
                top: 30px;
                left: 30px;
                overflow: hidden;
                border-radius: 20px;
                background: var(--main);
                box-shadow: var(--box-shadow);
                .tabs {
                    display: grid;
                }
                .body-wrapper {
                    .body {
                        display: flex;
                        position: relative;
                        left: 0%;
                        transition: .3s linear;
                        will-change: left;
                        &>div {
                            display: flex;
                            flex-direction: column;
                            min-width: 100%;
                            padding: 0 30px;
                            &.contacts {
                                img {
                                    margin-bottom: 20px;
                                    padding: 20px 30px;
                                    height: 93px;
                                    border: 1px solid var(--second);
                                    border-radius: 10px;
                                }
                                a {
                                    margin-bottom: 4px;
                                    font-size: 20px;
                                    font-weight: 900;
                                    line-height: 23px;
                                    letter-spacing: 0.6px;
                                    &.mail {
                                        font-weight: 500;
                                    }
                                }
                                p {
                                    margin-bottom: 21px;
                                    color: var(--text-2);
                                    font-size: 16px;
                                    font-weight: 400;
                                    line-height: 19px;
                                    letter-spacing: -0.2px;
                                }
                                button {
                                    display: flex;
                                    justify-content: center;
                                    align-items: center;
                                    padding: 12px;
                                    border: none;
                                    border-radius: 10px;
                                    background: var(--second);
                                    color: var(--main);
                                    font-size: 14px;
                                    font-weight: 700;
                                    line-height: 24px;
                                    letter-spacing: 0.4px;
                                }
                            }
                            &.route {
                                h3 {
                                    margin-bottom: 20px;
                                    font-size: 20px;
                                    font-weight: 900;
                                    line-height: 23px;
                                    letter-spacing: 0.6px;
                                }
                                form {
                                    display: contents;
                                    label {
                                        display: flex;
                                        flex-direction: column;
                                        gap: 4px;
                                        margin-bottom: 21px;
                                        position: relative;
                                        color: var(--text-2);
                                        font-size: 12px;
                                        line-height: normal;
                                        letter-spacing: -0.2px;
                                        &::after {
                                            content: '\e013';
                                            font-family: 'icon';
                                            font-size: 16px;
                                            color: var(--second);
                                            display: flex;
                                            position: absolute;
                                            bottom: 14px;
                                            right: 10px;
                                        }
                                        input {
                                            display: flex;
                                            padding: 10px 30px 10px 10px;
                                            border: 1px solid var(--line);
                                            border-radius: 8px;
                                            background: var(--el-bg);
                                            color: var(--text-2);
                                            font-size: 16px;
                                            font-weight: 400;
                                            line-height: 22px;
                                            letter-spacing: -0.2px;
                                        }
                                    }
                                    input[type="submit"] {
                                        display: flex;
                                        justify-content: center;
                                        align-items: center;
                                        padding: 12px;
                                        margin-bottom: 10px;
                                        border: none;
                                        background: var(--main);
                                        font-size: 14px;
                                        font-weight: 500;
                                        line-height: 16px;
                                        text-decoration-line: underline;
                                        text-decoration-style: solid;
                                        text-decoration-skip-ink: auto;
                                        text-decoration-thickness: auto;
                                        text-underline-offset: auto;
                                        text-underline-position: from-font;
                                    }
                                }
                                .apps {
                                    display: grid;
                                    grid-template-columns: 1fr;
                                    gap: 2px;
                                    a {
                                        display: flex;
                                        justify-content: center;
                                        align-items: center;
                                        padding: 10px 0;
                                        border-radius: 10px;
                                        background: var(--el-bg);
                                        font-size: 14px;
                                        font-weight: 500;
                                        line-height: 16px;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
        .info {
            padding: 30px 65px 0px;
            position: absolute;
            z-index: 1;
            left: 0;
            bottom: 0;
            right: 0;
            background: var(--map-info-bg);
            .slides {
                display: flex;
                justify-content: space-between;
                padding-bottom: 14px;
                .item {
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    min-width: 200px;
                    max-width: 200px;
                    &:nth-child(1) {
                        &>span {
                            width: 102px;
                            span {
                                left: -27px;
                            }
                        }
                    }
                    &:nth-child(2) {
                        &>span {
                            width: 112px;
                            span {
                                left: -19px;
                            }
                        }
                    }
                    &:nth-child(3) {
                        &>span {
                            width: 170px;
                            letter-spacing: -25.2px;
                            span {
                                display: flex;
                                width: 55px;
                                left: 11px;
                            }
                        }
                    }
                    &:nth-child(4) {
                        &>span {
                            width: 120px;
                            span {
                                left: -10px;
                            }
                        }
                    }
                    &>span {
                        display: flex;
                        align-items: flex-end;
                        justify-content: space-between;
                        position: relative;
                        color: var(--second);
                        font-size: 140px;
                        font-weight: 900;
                        line-height: 145px;
                        letter-spacing: 4.2px;
                        span {
                            color: var(--second);
                            font-size: 34px;
                            font-weight: 500;
                            line-height: 40px;
                            position: relative;
                            top: -17px;
                            letter-spacing: normal;
                        }
                    }
                    p {
                        margin: -20px auto 0px;
                        text-align: center;
                        font-size: 15px;
                        line-height: 18px;
                        letter-spacing: -0.3px;
                        text-transform: uppercase;
                    }
                }
            }
            .controls {
                display: none;
                justify-content: center;
                align-items: center;
                gap: 83px;
                padding-top: 10px;
                background: var(--main);
                button {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 40px;
                    height: 40px;
                    border: none;
                    border-radius: 10px;
                    background: var(--el-bg);
                    &.arrow-r {
                        transform: rotate(180deg);
                    }
                    &::before {
                        content: '\e010';
                        font-family: 'icon';
                        color: var(--second);
                    }
                }
                .bubbles {
                    display: flex;
                    gap: 6px;
                    div {
                        display: flex;
                        width: 8px;
                        height: 8px;
                        border-radius: 2px;
                        background: var(--el-bg);
                        transition: .3s linear;
                        cursor: pointer;
                        &.selected {
                            width: 40px;
                            background: var(--second);
                        }
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 1240px) {
    .promo-slider {
        width: 100%;
    }
    .video-slider {
        .slides {
            .slide {
                min-width: 590px;
                iframe {
                    width: 100%;
                }
            }
        }
        .links {
            .item {
                max-width: 172px;
            }
        }
    }
    .tariffs {
        .slides {
            .slide {
                .item {
                    padding: 20px 23px;
                    background-position: 120% 100%;
                    background-size: 320px 100%;
                }
            }
        }
        .bottom {
            p {
                width: 220px;
            }
            .controls {
                width: 250px;
            }
            &>a {
                width: 220px;
            }
        }
    }
    .news {
        max-height: 650px;
        .items {
            .slide {
                gap: 100px;
                .info {
                    max-width: 466px;
                }
                &>img {
                    margin-top: auto;
                    height: 630px;
                    max-width: 500px;
                }
            }
        }
        .bubbles {
            max-width: 60px;
            left: calc(50% - 50px);
        }
    }
    .partnership {
        .content {
            grid-template-columns: 560px 1fr;
            form {
                padding: 30px;
            }
        }
    }
    .map {
        .container {
            .window-background {
                .window-body {
                    padding: 20px 0;
                    top: 10px;
                    left: 10px;
                    .tabs {
                        button {
                            padding: 16px 5px;
                        }
                    }
                    .body-wrapper {
                        .body {
                            &>div {
                                padding: 0 20px;
                            }
                        }
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 1040px) {
    .tariffs {
        .slides {
            .slide {
                .item {
                    background-position: 155% 100%;
                    background-size: 230px 100%;
                }
            }
        }
    }
    .news {
        max-height: none;
        .items {
            gap: 70px;
            .slide {
                display: grid;
                grid-template-columns: 5fr 4fr;
                gap: 52px;
                .info {
                    display: flex;
                    gap: 20px;
                    max-width: 100%;
                    h2 {
                        margin-bottom: 20px;
                    }
                    p {
                        color: var(--text-2);
                        line-height: 19px;
                        letter-spacing: -0.2px;
                    }
                    img {
                        margin-left: auto;
                        max-height: 200px;
                    }
                }
                &>img {
                    width: 100%;
                    height: auto;
                }
                &:nth-child(odd) {
                    grid-template-columns: 2fr 3fr;
                    .info img {
                        margin-left: 0;
                    }
                    &>img {
                        grid-area: 1/1/2/2;
                    }
                }
            }
        }
        .bubbles {
            display: none;
        }
    }
    .partnership {
        .content {
            display: grid;
            grid-template-columns: 1fr;
            .img {
                padding: 30px 0 0 30px;
                justify-content: start;
                img {
                    max-width: 500px;
                }
            }
        }
    }
    .map {
        .container {
            height: 650px;
            &>.tabs {
                display: grid;
                width: 100%;
                max-width: 600px;
                padding: 0px 20px;
                position: absolute;
                left: 50%;
                top: 20px;
                z-index: 1;
                transform: translateX(-50%);
            }
            .window-background {
                display: flex;
                position: fixed;
                &.show {
                    top: 0;
                }
                .window-body {
                    width: calc(100% - 20px);
                    padding: 20px 0;
                    position: relative;
                    top: 0;
                    left: 0;
                    border-radius: 20px;
                    overflow: inherit;
                    .close {
                        right: 3px;
                        left: auto;
                        top: -33px;
                    }
                    .tabs {
                        padding: 0px 20px;
                    }
                    .body-wrapper {
                        overflow: hidden;
                    }
                }
            }
            .info {
                padding: 34px 0px 0px;
                .slides {
                    display: flex;
                    gap: 90px;
                    padding-bottom: 10px;
                }
                .controls {
                    display: flex;
                }
            }
        }
    }
}
@media screen and (max-width: 767px) {
    .promo-slider {
        margin-bottom: 20px;
        .slides-wrapper {
            margin-bottom: 20px;
            border-radius: 0 0 30px 30px;
            .slides {
                height: 621px;
                .slide {
                    width: 355px;
                    min-width: 355px;
                    padding: 30px;
                    img {
                        left: -73%;
                    }
                    &:first-child img {
                        left: -108%;
                    }
                }
            }
            .arrow {
                display: none;
            }
        }
        .bubbles {
            gap: 10px;
            div {
                height: 4px;
            }
        }
    }
    .run-line {
        margin-bottom: 80px;
    }
    .video-slider {
        margin-bottom: 80px;
        padding-bottom: 15px;
        border-radius: 0;
        &>p {
            margin-bottom: 20px;
        }
        .slides {
            gap: 10px;
            max-width: 355px;
            min-width: 355px;
            width: 100%;
            .slide {
                max-height: 320px;
                min-height: 320px;
                &:has(iframe) {
                    min-width: 100%;
                }
                min-width: 100%;
                iframe {
                    width: 100%;
                    aspect-ratio: 59/33.24;
                    height: auto;
                }
                video {
                    max-height: 265px;
                }
                p {
                    font-size: 16px;
                }
            }
        }
        .links {
            display: grid;
            grid-template-columns: repeat(2, 172px);
            margin-bottom: 0;
        }
    }
    .tariffs {
        margin-bottom: 80px;
        h2 {
            margin-bottom: 20px;
        }
        .slides {
            gap: 0;
            .slide {
                gap: 10px;
                min-width: 100%;
                .item {
                    padding: 20px;
                    background-position: calc(100% + 150px) 100%;
                    background-size: 327px 100%;
                    &.hit {
                        &::before {
                            width: 60px;
                            height: 60px;
                        }
                    }
                    .info {
                        span {
                            padding: 6px 12px;
                        }
                    }
                }
            }
        }
        .bottom {
            flex-direction: column;
            gap: 20px;
            p {
                width: max-content;
                order: 3;
            }
            .controls {
                gap: 62px;
                width: fit-content;
            }
            &>a {
                justify-content: center;
                width: fit-content;
                order: 2;
            }
        }
    }
    .news {
        margin-bottom: 80px;
        .items {
            gap: 40px;
            .slide {
                display: flex;
                flex-direction: column;
                gap: 10px;
                .info {
                    gap: 10px;
                    h2 {
                        font-size: 24px;
                        margin-bottom: 0px;
                        order: -3;
                    }
                    p {
                        order: 1;
                    }
                    img {
                        max-height: 166px;
                        margin-left: 0;
                        order: -2;
                    }
                }
            }
        }
    }
    .partnership {
        margin-bottom: 80px;
        h3 {
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 19px;
            span {
                font-size: 16px;
                line-height: 19px;
            }
        }
        .content {
            .img {
                padding: 0;
                img {
                    max-width: 355px;
                }
            }
            form {
                padding: 30px 20px 20px;
                input[type="submit"] {
                    width: 100%;
                    max-width: 355px;
                }
            }
        }
    }
    .map {
        margin-bottom: 80px;
        h2 {
            margin-bottom: 20px;
        }
        .container {
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
            .info {
                .slides {
                    gap: 0;
                    .item {
                        min-width: 180px;
                    }
                }
                .controls {
                    justify-content: space-between;
                    gap: 0;
                    width: 100%;
                    margin: 0 auto;
                }
            }
        }
    }
}
@media screen and (max-width: 420px) {
    .promo-slider {
        .slides-wrapper {
            .slides {
                .slide {
                    min-width: calc(100% - 20px);
                }
            }
        }
    }
    .slide-preview {
        .body {
            .slides {
                .slide {
                    .content {
                        padding-right: 10px;
                        h2 {
                            padding-right: 20px;
                            font-size: 20px;
                        }
                        .text {
                            pointer-events: all;
                            overflow-y: auto;
                            p {
                                color: var(--text-2);
                                letter-spacing: -0.2px;
                            }
                        }
                    }
                }
            }
        }
    }
}
@media (hover:hover) {
    .promo-slider {
        .slides-wrapper {
            .arrow:hover {
                box-shadow: var(--box-shadow);
                button:not(.ws-arrow-disabled):hover::before {
                    color: var(--btn-hover);
                }
            }
            .slides .slide button:hover::before {
                color: var(--second);
            }
        }
        .bubbles div:hover {
            background: var(--second);
        }
    }
    .video-slider .controls,
    .tariffs .bottom .controls {
        button:not(.ws-arrow-disabled):hover {
            background: var(--second);
            &::before {
                color: var(--main);
            }
        }
        .bubbles div:hover {
            background: var(--second);
        }
    }
    .video-slider .links a:hover {
        background: var(--second);
        color: var(--main);
        &::before {
            color: var(--main);
        }
    }
    .tariffs {
        .slides .slide .item:hover {
            border: 1px solid var(--second);
            box-shadow: var(--box-shadow);
            h3 {
                color: var(--second);
            }
            .info span {
                border: 1px solid var(--second);
            }
        }
        .bottom {
            p a:hover, p span:hover, &>a:hover {
                color: var(--btn-hover);
            }
        }
    }
    .partnership .content form input[type="submit"]:hover,
    .map .container .window-background .window-body .body-wrapper .body>div.contacts button:hover {
        background: var(--btn-hover);
    }
}