/* region Десктоп*/

.footerMenu {
    display: flex;
    justify-content: center;
}


.footerMenuItem {
    font-family: var(--font-family-RobotoCondensed);
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    margin-left: 10px;
    padding-right: 20px;
    padding-left: 20px;
    white-space: nowrap;
    text-decoration: none;
    color: var(--link-color);
    border-bottom: 2px solid var(--link-color);
}

.footerMenuItem:hover {
    color: var(--link_hover-color);
    border-bottom-color: var(--link_hover-color);
}

.footerMenuItem:active {
    color: var(--link_active-color);
    border-bottom-color: var(--link_active-color);
}

.footerMenuItem:last-child {
    margin-right: 0;
}

/*endregion*/

/* region Планшет*/
@media all and (max-width: 1100px) {

}

/*endregion*/

/* region Мобильный*/
@media screen and (max-width: 450px) {
    .footerMenu {
        display: none;
    }
}

/*endregion*/