footer {
    font-family: "Source Sans 3", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    padding-top: 30px;
    color: #085DA9;
}

footer .footer-menu-block {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

footer span {
    margin-left: 100px;
}

footer ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 0;
    list-style: none;
}

footer ul li {
    position: relative;
    display: flex;
}

footer ul li,
footer ul li a {
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    text-decoration: none;
    color: #085DA9;
    transition: font-weight 0.2s ease;
    width: 100%;
    text-align: center;
}

footer ul li:not(:last-child)::after {
    display: inline-block;
    font-size: 30px;
    font-weight: 300;
    line-height: 36px;
    content: '\00A0|\00A0';
    color: #085DA9;
}

/* Копия текста для фикса ширины */
footer ul li a::after {
    content: attr(data-text);
    font-weight: 700;
    display: block;
    visibility: hidden;
    overflow: hidden;
    height: 0;
    pointer-events: none;
}

footer ul li a:hover {
    font-weight: 600;
}

/* -------- Media -------- */
@media (min-width: 768px) and (max-width: 1200px) {
    footer .footer-menu-block {
        justify-content: space-around;
    }

    footer span {
        margin-left: 0;
    }

    footer ul li,
    footer ul li a,
    footer span {
        font-size: 24px;
        line-height: 36px;
    }

    footer ul li:not(:last-child)::after {
        font-size: 24px;
        font-weight: 300;
        line-height: 36px;
    }
}

@media (max-width: 767px) {
    footer {
        font-size: 20px;
        line-height: 26px;
        padding-bottom: 10px;
        text-align: center;
    }

    footer .footer-menu-block {
        flex-direction: column;
        justify-content: center;
    }

    footer ul {
        flex-direction: column;
        margin: 0;
    }

    footer ul li:not(:last-child)::after {
        display: none;
        content: none;
    }

    footer ul li,
    footer ul li a {
        font-size: 20px;
        line-height: 26px;
        text-align: center;
    }

    footer ul li:last-child {
        margin-bottom: 17px;
    }

    footer span {
        font-size: 16px;
        line-height: 36px;
        margin: 0;
        text-align: center;
    }
}
