.site-footer .site-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #FFF;
    background: #69392D;
    align-content: center;
    padding: 5px 0;
}

.footer-menu {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    align-items: center;
    padding-right: 10px;
    flex-wrap: wrap;
    height: 100%;
}

.footer-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 10.8px;
    display: block;
}

@media screen and (max-width:990px) {
    .site-footer .site-info {
        flex-direction: column-reverse;
        align-items: center;
        gap: 10px;
    }

    .footer-menu {
        justify-content: center;
    }
}