/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */
/* =============== ЛОКАЛЬНАЯ СТИЛИЗАЦИЯ =============== */
/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */

.site_header_cl, .basement_website_cl {
    display: none !important;
}

.bg_video_cl {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

@media (max-width: 600px) {
    .bg_video_cl {
        object-position: 30%;
    }
}

.main_body_cl {
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100vw - 20vw);
    height: calc(100vh - 7vw);
    padding: 3.5vw;
    padding-left: 10vw;
    padding-right: 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    /* background-image: url(./images/bg_0.png);
    background-repeat: no-repeat;
    background-size: 100% 105%;
    background-position: 50% 25%; */
}

/* ----- Навигация ----- */

.main_body_cl>header {
    width: 100%;
}

.main_body_cl>header>nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.main_body_cl>header>nav>a {
    font-size: 2.5vh;
    font-weight: bold;
    color: white;
    text-decoration: none;
    font-style: italic;
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
}

/* Меню бургер */

.main_body_cl>header>section {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateY(5vh);
}

.main_body_cl>header>section>div {
    width: 40px;
    height: 3px;
    border-radius: 1.5px;
    background-color: gray;
}

/* ----- Центральный каталог ----- */

.main_body_cl>section {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.main_body_cl>section>a {
    font-size: 5vh;
    color: white;
    text-decoration: none;
    font-family: 'Impact_load_font';
}

.men_button_cl {
    transform: translateX(-5vw);
}

.women_button_cl {
    transform: translateX(5vw);
}

.main_body_cl>section>h1 {
    font-size: 8vh;
    color: white;
    margin: 0;
}

.main_body_cl>section>h1>svg {
    width: 64vh;
    height: 16vh;
    transition: 600ms all;
}

.main_body_cl>section>h1>svg:hover {
    cursor: pointer;
    color: gray;
}

.main_body_cl>section>section {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.main_body_cl>section>section>a {
    font-size: 4vh;
    color: white;
    text-decoration: none;
    font-family: 'Impact_load_font';
}

/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */
/* ===================== АНИМАЦИИ ===================== */
/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */

/* Перемещение цвета текста с лева на право */

.tx_anim_l_r {
    font-style: normal;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.tx_anim_l_r:hover {
    cursor: pointer;
}

.tx_anim_l_r>span {
    overflow: hidden;
    text-wrap: nowrap;
}

.tx_anim_l_r>span:nth-child(1) {
    position: absolute;
    width: 0px;
    color: gray;
    text-shadow: 0 0 2px gray;
    transition: 450ms all;
}

.tx_anim_l_r>span:nth-child(2) {
    padding-right: 15px;
}

/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */
/* ================ АДАПТИВНАЯ ВЕРСТКА ================ */
/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */

@media (max-width: 1000px) {

    .main_body_cl {
        width: calc(100% - 10vw);
        /* height: calc(100% - 10vw); */
        padding-left: 5vw;
        padding-right: 5vw;
    }

    .men_button_cl {
        transform: translateX(0);
    }

    .women_button_cl {
        transform: translateX(0);
    }

}

@media (max-width: 600px) {

    .main_body_cl {
        width: calc(100% - 10vw);
        /* height: calc(100% - 10vw); */
        padding: 5vw;
        background-size: 200% 125%;
        background-position: 25% 15%;
    }

    .main_body_cl>header>nav {
        display: none;
    }

    .main_body_cl>header>section {
        display: flex;
        gap: 7.5px;
    }

    .main_body_cl>header>section>div {
        width: 30px;
    }

    .men_button_cl {
        display: none;
    }

    .women_button_cl {
        display: none;
    }

    .main_body_cl>section {
        flex-direction: column;
        gap: 5vh;
    }

    .main_body_cl>section>h1 {
        font-size: 6.5vh;
    }

    .main_body_cl>section>h1>svg {
        width: 24vh;
        height: 6vh;
    }

    .main_body_cl>section>section {
        display: flex;
    }

}