/* Footer */

footer {
    text-align: center;
    padding: 60px 0 40px 0;
    font-size: 12px;
    background: var(--color-accent);
    color: var(--color-text-white);
}

.footer__nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
}

.footer__nav li {
    position: relative;
}

.footer__nav li:not(:last-child):after {
    content: '';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    background: var(--color-text-white);
    height: 12px;
}

.footer__nav li a {
    color: var(--color-text-white);
    position: relative;
}

.footer__nav li a:hover {
    text-decoration: underline;
}

.footer_text {
    line-height: 1;
}

.footer-img {
    margin: 20px auto 0;
}

@media screen and (max-width: 720px) {
/* Footer */

    footer {
        padding: 40px 20px;
    }

    .footer-img {
        max-width: 130px;
    }
}