footer {
    display: none !important;
}
@media only screen and (min-width: 1024px) {
    footer {
        display: grid !important;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 50px;
        padding: .8rem 1rem;
        background-color: white;
    }
}

footer.footer-transparent {background-color: transparent;}
footer.footer-black {background-color: black;}

footer.t-white .t-footer {color: white}
footer.t-black .t-footer {color: black}

.footer-pages {grid-column: 1/4;}
.footer-copyright {grid-column: 4/7;}
.footer-email {grid-column: 7/10;}
.footer-social {grid-column: 10/12;}
.footer-newsletter {grid-column: 12/-1;}

.footer-pages.active {
    color: #828282;
}

.footer-pages a.active {
    color: black;
}

@media (hover: hover) {
    body.page-not_home .footer-pages:hover a,
    body.page-not_home .footer-social:hover a {
        color: #828282;
    }

    body.page-not_home .footer-pages a:hover,
    body.page-not_home .footer-social a:hover,
    .footer-pages.active a:hover {
        color: unset;
    }
}