.menu-slide-in-container {
    position: relative;
}
.menu-icon {
    cursor: pointer;
}
.slide-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
}
.slide-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #fff;
    transition: right 0.3s ease-in-out;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    z-index: 999;
    overflow-y: auto;
}
.slide-menu.open {
    right: 0;
}
.slide-menu-overlay.open {
    display: block;
}
.close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.desktop-menu, .mobile-menu {
    padding: 20px;
    position: relative;
}
.desktop-menu > ul > li, .mobile-menu > ul > li {
    position: relative;
}
.menu-bottom-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
}
@media (min-width: 769px) {
    .mobile-menu {
        display: none;
    }
}
body.menu-open {
    overflow: hidden;
}
.sub-menu {
    position: fixed;
    top: 0;
    right: -84%;
    width: 84%;
    height: 100%;
    background-color: #fff;
    transition: right 0.3s ease-in-out;
    z-index: 1001;
    overflow-y: auto;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
}
.sub-menu.active {
    right: 0;
}
.back-button {
    margin-bottom: 20px;
    cursor: pointer;
}

.has-submenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon-arrow-right, .icon-arrow-left {
    width: 14px;
    height: 14px;
    margin-left: 10px;
}

.back-button {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.back-button .icon-arrow-left {
    margin-right: 10px;
    margin-left: 0;
}

.icon-arrow-right rect, .icon-arrow-left rect {
    fill: transparent;
}
.social-icons-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.social-icon img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.2);
}

.sub-menu.active a {
    font-size: 20px!Important;
    line-height: 25px;
}

li.back-button {
    margin-top: 28px ! Important;
    font-size: 13px;
    margin-bottom: 17px ! Important;
}