footer {
    width: 100%;
}

.site-footer {
    background-image: url('../img/footer-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 3em 0 4em;
}

.footer-menu {
    width: 100%;
}

.footer-menu .menu {
    margin: 0;
    width: 100%;
    display: flex;
    
}

.footer-menu li {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    margin: 0 0px 5px;
    flex: 1;
}

.footer-menu > ul > li {
    padding-right: 1em;
    padding-bottom: 2em;
}

.footer-menu a {
    font-family: 'Poppins-Light';
    font-size: 14px;
    color: #aaaaaa !important;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.footer-menu a:hover {
    color: red !important;
}

.footer-menu .menu > li > a {
    text-transform: uppercase;
    font-size: 20px; 
    font-family: 'Gotham-Bold';
    color: white !important;
}

.footer-menu .menu > li > a:hover {
    color: white !important;
    cursor: auto;
}

.footer-menu .sub-menu {
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 0px;
}

@media screen and (max-width: 767px) {
    .footer-menu li {
        width: 100%;
        max-width: none;
    }

    .footer-menu .menu {
        flex-direction: column;
        padding: 0px;
    }
}