footer {
    display: grid;
    justify-content: center;
    align-items: center;
    
    position: relative;
    min-height: 100vh;
    height: auto;
    max-width: 100vw;

    margin-top: 150px;
}

#footer-content {

}
#logos-footer {
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: auto auto auto;
    grid-gap: 200px;
}
#logos-footer img {
    width: auto;
    height: 50px;

    opacity: 0.8;

    filter: drop-shadow(0px 100px 1px rgba(255, 255, 255, 0.2)) drop-shadow(0px -100px 1px rgba(255, 255, 255, 0.2));
}


/* ----
MEDIA QUERIES
---- */
@media screen and (max-width: 1200px) {
    #logos-footer {
        grid-gap: 100px;
    }
}