.footer-menu {
    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #777777;
}

.footer-menu ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;

    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.footer-menu a {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #777777;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-menu a:hover,
.footer-menu a:focus,
.footer-menu a:active,
.footer-menu .current-menu-item > a,
.footer-menu .current_page_item > a {
    color: #C00D0D;
}