/*
This file contains footer hovers and animations that will be loaded synchronously using Google's recommended filamentgroup loadCSS link stylesheet trick
Type: Footer hovers and animations
Usage: loadCSS link stylesheet trick
Load: Asynchronously
Devices: Desktops, Laptops
 */

.footer-social {
    transition: background-color 0.2s linear
}

.footer-social:hover {
    background-color: #0a0018
}

.footer-social:hover img {
    filter: invert(1)
}
.footer-menu-link:after {
    position: absolute;
    content: '';
    height: 1px;
    bottom: 0;
    right: 0;
    width: 0;
    background: #0a0018;
    transition: width .2s
}
.footer-menu-link:hover:after {
    width: 100%
}