.menu-footer {
    display: flex;
    flex-direction: column;
    grid-area: 1 / 1 / 3 / 2;
    padding-left: 2px;
}
.menu-footer__main,
.menu-footer__blog,
.menu-footer__policy {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.menu-footer__blog {
    margin: 32px 0 27px;
}
.menu-footer__link {
    color: var(--white);
    font-family: var(--inter);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    white-space: nowrap;
}
.menu-footer__link:hover {
    opacity: 0.7;
}

@media (max-width: 1200px) {
    .menu-footer {
        grid-area: 1 / 1 / 3 / 2;
        justify-self: self-start;
        align-self: self-end;
    }
}
@media (max-width: 768px) {
    .menu-footer {
        order: 2;
        align-self: self-start;
        border-bottom: 1px solid #2B3749;
        width: 100%;
        padding: 5px 0 28px 0;
    }
}