.mobile-menu {
    display: none;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
    bottom: 0;
    width: 100%;
    height: 120px;
    transition: 1s all ease;
    z-index: 100;
}

.mobile-menu-wrap {
    width: 100vw;
    height: 100vh;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
    pointer-events: none;
}

.mobile-menu-content {
    position: relative;
    bottom: calc(-100vh + 120px);
    display: flex;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    background: var(--blue);
    transition: all 0.3s ease;
    pointer-events: all;
}

.mobile-menu-content ul {
    margin: 0;
    padding: 20px 40px;
}

.mobile-menu-content ul li {
    text-align: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.mobile-social-icons .social-icons img {
    height: 40px;
}

.mobile-menu-content.right-open {
    bottom: calc(var(--navbar-height) - 100vh);
    display: flex;
    position: relative;
}

.mobile-logo {
    position: relative;
    height: 72px;
    z-index: 10;
    margin-top: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.close-button {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
    padding: 10px 40px;
    width: 240px;
    background: transparent;
    border: solid 1px var(--white);
    margin: 0 auto;
}

.active {
    background: var(--white);
    color: var(--blue);
}