.mobile-menu-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(4px) saturate(180%);
    -webkit-backdrop-filter: blur(4px) saturate(180%);
    z-index: 10;
    display: none;
    justify-content: space-around;
    align-content: center;
    align-items: center;
    overflow: hidden;
    padding: 5px 0;
}

.mobile-menu-footer a {
    display: flex;
    flex-direction: column;
    gap: 3px;
    justify-content: space-evenly;
    align-items: center;
    padding: 0;
    width: 100%;
    position: relative;
    color: #333;
    align-content: stretch;
    text-align: center;
}

.mobile-menu-footer a span {
    font-size: 0.6rem;
}
/*

.mobile-menu-footer a:nth-child(2)::before {
    content: "";
    position: absolute;
    top: -30px;
    right: 0;
    width: 3px;
    height: 130px;
    z-index: -1;
    border: 2px solid rgba(0, 0, 0, 0.15);
    padding: 2px;
    rotate: 25deg;
}

.mobile-menu-footer a:nth-child(2)::after {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 3px;
    height: 130px;
    z-index: -1;
    border: 2px solid rgba(0, 0, 0, 0.15);
    padding: 2px;
    rotate: -25deg;
}


.mobile-menu-footer a:nth-child(4)::after {
    content: "";
    position: absolute;
    top: -30px;
    right: 0;
    width: 3px;
    height: 130px;
    z-index: -1;
    border: 2px solid rgba(0, 0, 0, 0.15);
    padding: 2px;
    rotate: 25deg;
}

.mobile-menu-footer a:nth-child(4)::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 3px;
    height: 130px;
    z-index: -1;
    border: 2px solid rgba(0, 0, 0, 0.15);
    padding: 2px;
    rotate: -25deg;
}

.mobile-menu-footer a:nth-child(3) svg {
    width: 30px;
    height: 30px;
    fill: #333;
}
    */

.mobile-menu-footer a svg {
    width: 22px;
    height: 22px;
    fill: #333;
}

@media (max-width: 768px) {
    .mobile-menu-footer {
        display: flex;
        margin: 3px;
        border-radius: 100px;
        margin-bottom: 0;
    }
}