#footer nav {
    display: grid;
    row-gap: 2vh;
    box-sizing: border-box;
}

#footer nav a {        
    justify-content: center;
    align-items: center;

    height: 100%;
    
    padding: var(--padding-m);

    box-sizing: border-box;
    border: 1px solid black;
    border-radius: 1.5vw 0 1.5vw 0;

    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;

    background-color: white;
    color: inherit;
}

#footer nav a:hover {
    background: black;
    color: white;
}

#footer .mobile-menu {
    background: white;
    height: 100%;
}

#footer .mobile-menu {
    background: white;
}

#footer .mobile-menu a {
    min-height: 4rem;
    border: 2px solid black;
}

#footer .footer-menu {
    box-sizing: border-box;
    column-gap: 5%;
}

#footer .footer-menu a {
    min-height: 2vh;
    padding: var(--padding-s);
    border: 1px solid black;
    border-radius: 1.5vw 0 1.5vw 0;
}


@media screen and (min-width: 900px) {
    #mobile-menu {
        display: grid;
    }

    #container-hero-text-menubar {
        justify-content: left;
        width: auto;
    }

    .footer-menu {
        grid-template-columns: 1fr 1fr;
    }

}