.menu-footer{
    display: flex;
    flex-direction: column;
}
.menu-footer{
    width: 85vw;
    align-items: center;
}
.menu-footer-sub1{
    width: 100%;
    border-top: 1px solid #4c4c4c;
    border-bottom: 1px solid #4c4c4c;
    justify-content: space-between;
}
.menu-email{
    width: 100%;
    padding: 1.5em 0;
    justify-content: start;
}
.menu-langs{
    padding: 1.5em 4em;
    gap: 2em;
    border-left: 1px solid #4c4c4c;
}
.menu-footer-sub2{
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid #4c4c4c;
    padding: 1.5em 0;
}
.menu-email a, .menu-langs p, .menu-footer-sub2 a{
    text-decoration: none;
    color: var(--color-light);
    font-weight: 500;
    font-size: var(--fs-md);
}


/* --- MOBILE: ~480px and below --- */
@media (max-width: 31em) {
    .menu-email{
        padding: 2em 0;
    }
    .menu-langs{
        padding: 2em 2.5em;
    }
    .menu-footer-sub2{
        padding: 2em 0;
    }
    .menu-footer{
        width: 90vw;
    }
}
/* --- MINI: ~360px and below --- */
@media (max-width: 20em) {
    .menu-footer-sub1{
        flex-direction: column;
    }
    .menu-email{
        justify-content: center;
        padding: 1.5em 0;
    }
    .menu-langs{
        border-left: 0;
        padding: 1.5em 0;
        width: 100%;
        border-top: 1px solid #4c4c4c;
        justify-content: center;
    }
    .menu-footer-sub2{
        padding: 1.5em 0;
    }
}