/*
==========
= FOOTER =
==========
 */

footer {
    position: relative;
    min-height: 100px;
    overflow: visible;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footer-container {
    width: 100%;
    position: relative;
}
.footer-nav ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0 40px;
}
@media screen and (min-width: 768px) {
    .footer-nav ul {
        justify-content: flex-end;
    }
}
.footer-nav a {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 11px;
    line-height: 14px;
    letter-spacing: 0;
}
@media screen and (min-width: 768px) {
    .footer-nav a {
        font-size: 20px;
        line-height: 33px;
        letter-spacing: 0.02em;
    }
}
@media (hover: hover) {
    .footer-nav a:hover {
        color: var(--orange);
    }
}
