@media (max-width: 999px) {
    .mob-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        width: 32px;
        height: 32px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mob-menu__item {
        background-color: rgb(252, 252, 252);
        width: 24px;
        height: 2px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mob-menu__item::after, .mob-menu__item::before {
        position: absolute;
        content: "";
        background-color: rgb(252, 252, 252);
        width: 24px;
        height: 2px;
        left: 0;
    }

    .mob-menu__item::after {
        top: 8px;
    }

    .mob-menu__item::before {
        bottom: 8px;
    }

    .mob-menu.active .mob-menu__item {
        background-color: none;
        height: 0px;
    }

    .mob-menu.active .mob-menu__item::after {
        top: 50%;
        -webkit-transform: rotate(35deg);
        transform: rotate(35deg);
    }

    .mob-menu.active .mob-menu__item::before {
        top: 50%;
        -webkit-transform: rotate(-35deg);
        transform: rotate(-35deg);
    }

    .header {
        height: 70px;
    }

    .header__container {
        padding: 0 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .header__center {
        display: none;
        position: absolute;
        width: 100%;
        height: auto;
        padding: 20px 10px;
        top: 70px;
        left: 0;
        background: rgb(14, 14, 14);
        max-width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .header__center.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header__center.active::after {
        width: 100%;
        height: calc(100vh - 200px);
        content: "";
        background: rgba(24, 24, 24, 0.7);
        left: 0;
        bottom: -70vh;
        position: absolute;
    }

    .header__right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        max-width: 103px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header-log {
        max-width: 120px;
        height: 60px;
    }

    .header-log img {
        max-width: 120px;
        height: 60px;
    }

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

    .header-list__item {
        margin: 0 0 15px 0;
    }

    .en {
        max-width: 50px;
    }

    .en__logo {
        display: none;
    }

    .header-bg {
        height: auto;
    }

    .sliders {
        height: 90vh;
        padding: 30px 0 0 0;
    }

    .sliders__container {
        padding: 0 10px;
    }

    .sliders__title {
        font-family: Manrope;
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
        text-align: left;
        text-underline-position: from-font;
        -webkit-text-decoration-skip-ink: none;
        text-decoration-skip-ink: none;
    }

    .slide {
        display: none;
        width: 100%;
        height: auto;
        max-width: 100%;
        border: none;
        background: none;
        padding: 0;
    }

    .slide__title br {
        display: none;
    }

    .slide__logo {
        display: none;
        height: auto;
    }

    .slide.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background: none;
        -webkit-clip-path: none;
        clip-path: none;
        border: none;
    }

    .slide.active .slide__logo {
        display: none !important;
    }
}

@media (max-height: 630px) {
    .sliders__title {
        font-size: 30px;
    }

    .slide {
        max-height: 350px;
        min-height: 274px;
        height: 100%;
    }

    .slide.active .slide__logo {
        display: none !important;
    }
}