footer {
    padding: 0 15px;
    margin: 30px 0;
}

.footer {display: flex;align-items: center;justify-content: space-between;gap: 30px;}

.footer__copy {
    font-size: 13px;
    line-height: 120%;
}

.footer__nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.footer__nav a {
    text-transform: uppercase;
    font-size: 13px;
    line-height: 120%;
}

@media (min-width: 1024px) {
    footer {
        padding: 0 min(calc(15 / 1650 * 100vw), 15px);
        margin: min(calc(50 / 1650 * 100vw), 50px) 0;
    }

    .footer{
        max-width: min(calc(1650 / 1650 * 100vw), 1650px);
        margin: 0 auto;
    }

    .footer__copy{
        font-size: min(calc(14 / 1650 * 100vw), 14px);
        line-height: 120%;
    }

    .footer__nav a{
        font-size: min(calc(14 / 1650 * 100vw), 14px);
        line-height: 120%;
    }
}