#mn-footer-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    border-top: 1px solid #000;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    display: none;  /* Hide the menu initially */
    z-index: 999;
}

#mn-footer-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;  /* Aligns list items horizontally */
    justify-content: space-around;  /* Distributes items evenly */
}

#mn-footer-menu li {
    display: inline-block;  /* Allows inline arrangement while keeping block properties */
    margin: 0 10px;
}

#mn-footer-menu a {
    color: #fff;
    text-decoration: none;
    display: flex;  /* Arranges icon and text */
    flex-direction: column;
    align-items: center;  /* Centers icon and text */
}

#mn-footer-menu a span {
    margin-top: 5px;
}

/* Hide menu on screens wider than 768px */
@media (min-width: 768px) {
    #mn-footer-menu {
        display: none !important;  /* Override other display properties on larger screens */
    }
}

/* Show the menu after scrolling */
#mn-footer-menu.show {
    display: flex;  /* Shows menu */
}

