.menu-footer {
    width: 100%;
}

.menu-footer-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-footer-list .menu-item {
    display: flex;
    align-items: center;
}

.menu-footer-list .menu-item a {
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease;
}

/*
|--------------------------------------------------------------------------
| Separator
|--------------------------------------------------------------------------
*/

.menu-footer-with-separator .menu-item:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: currentColor;
    opacity: .35;
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media screen and (max-width: 767px) {

    .menu-footer-list {
        justify-content: center !important;
    }

}