.footer__row {
    display: flex;
    justify-content: space-between;
    padding: clamp(24px, 0.731rem + 3.08vw, 56px) 0;
    min-height: 253px;
    gap: 32px;
}

.footer__policy {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
}

.footer__logo img {
    width: 152px;
    height: 43px;
}

.footer__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__text p {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 16.8px;
}

.footer__text a {
    width: max-content;
    font-size: 16px;
    position: relative;
}

.footer__text a:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--white-color);
}

.footer__links {
    display: flex;
    gap: 24px;
    justify-content: end;
}

.footer__links a {
    font-size: 14px;
}

.footer__group {
    margin-top: 14px;
    display: none;
    gap: 32px;
}

.footer__group a {
    font-size: 14px;
    font-weight: 300;
    line-height: 10px;
    color: rgba(255, 255, 255, 1);
    position: relative;
}

.footer__group a:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 1);
}

.footer__nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

@media (max-width: 890px) {
    .footer__row {
        flex-direction: column;
    }

    .footer__links {
        gap: 20px;
        flex-direction: column;
    }
    
    .footer__links a {
        font-size: 16px;
    }

    .footer__nav {
        gap: 24px;
    }

    .footer__payments {
        justify-content: start;
    }
}