.footer {
    padding: 50px 0;
    background: #202020;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer__logo {
    max-width: 350px;
    width: 100%;
}

.footer__legals {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
}

.footer__legals-item {
    font-family: 'Muller';
    font-size: 12px;
    line-height: 12px;

    color: #FFFFFF;
    opacity: 0.5;
}

.footer__disclaimer {
    font-family: 'Muller';
    font-size: 12px;
    line-height: 18px;

    color: #FFFFFF;
    opacity: 0.4;
}

.footer__disclaimer b {
    font-weight: 800;
}

@media (max-width: 850px) {
    .footer__logo {
        max-width: 278px;
    }
}

@media (max-width: 720px) {
    .footer {
        padding: 30px 0;
    }

    .footer__top {
        flex-direction: column;
        row-gap: 20px;
        margin-bottom: 15px;
    }
}