#footer {
    font-family: 'Gilroy', sans-serif;
    width: 100%;
    background-color: #1B1C1E;
    color: #fff;
}

#footer .footerImage {
    width: 40px;
}

#footer .row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}


#footer .row .footer-col h4 {
    font-size: 22px;
    letter-spacing: 2px;
    margin: 2em 0;
}

#footer .row .footer-col h4::before {
    content: '';
    position: absolute;
    background-color: #e91e63;
    height: 2px;
    box-sizing: border-box;
    width: 70px;
    margin-top: 28px;
}

#footer .row .footer-col a {
    color: #aaa;
    transition: .3s;
}

#footer .row .footer-col li a:hover {
    color: #fff;
}


#footer .row .footer-col li {
    list-style: none;
    margin: 15px 0;
}

#footer .row .footer-col ul.social-links {
    display: flex;
    justify-content: space-between;
}

#footer .row .footer-col ul.social-links img {
    margin: 15px 0;
    border: 1px solid #fff;
    border-radius: 50%;
}

#footer .row .footer-col ul.social-links img:hover {
    padding: 5px;
    transition: .3s;
}

#footer .copyright {
    margin-top: 2rem;
    text-align: center;
    color: #aaa;
    font-size: 16px;
}

/*   RESPONSIVE */
@media screen and (max-width: 800px) {
    #footer .row {
        flex-direction: column;
        text-align: center;
    }

    #footer .row .footer-col ul.social-links {
        justify-content: space-around;
    }
}