.mobile-menu__nav {
    display: none;
    position: fixed;
    top: 225px;
    left: 0;
    width: 100%;
    height: calc(100% - 225px);
    background-color: #222;
    color: #fff;
    z-index: 1000;
    overflow-y: auto;
    box-shadow: 0 4px 8px #0000001a;
    overflow-x: hidden;
}

.mobile-menu__list li {
    max-width: 300px;
    width: 90%;
}

.mobile-menu__link {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    display: flex;
    padding: 10px 20px;
    background-color: transparent;
    transition: background-color .3s ease;
    text-align: left;
    max-width: 100%;
    border: .33px solid rgba(255, 255, 255, .5);
    line-height: 120%;
    align-items: center;
    justify-content: space-between;
}

/*  */

.mobile-menu__list {
    position: relative;
    width: 100%;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.mobile-menu__list li:first-child {
    margin-top: 30px;
}

.submenu {
    position: absolute;
    width: 100%;
    height: 100vh;
    /* Заполняет весь экран */
    top: 0;
    left: 0;
    background: #222222;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px
}

.submenu.open {
    transform: translateX(0);
}

.submenu li.back-btn {
    cursor: pointer;
    background: #222222;
}




/*ADAPTIVE*/
/* EXTRA LARGE */
@media only screen and (max-width : 1200px) {}

/* LARGE */
@media only screen and (max-width : 1080px) {
    .mobile-menu__nav {
        top: 214px;
        height: calc(100% - 214px);
    }
}

/* TAB */
@media only screen and (max-width : 992px) {}

/* MEDIUM */
@media only screen and (max-width : 768px) {
    .mobile-menu__nav {
        top: 200px;
        height: calc(100% - 200px);
    }
}

/* PHONE*/
@media only screen and (max-width : 576px) {
    .mobile-menu__nav {
        top: 160px;
        height: calc(100% - 160px);
    }
}

/* MINI */
@media only screen and (max-width : 374px) {}