.footer {
    background: var(--gray);
    margin-top: 80px;
    padding: 40px 0;
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
}

.footer__aleyron {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text-gray-dark {
    color: var(--gray-dark);
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__title {
    /* text-h3-mobile desktop:text-h3 */
    font-weight: 500;
}

.footer__contact {
    font-weight: bold;
    font-size: 20px;
}

.footer__links {
    display: flex;
    gap: 177px;
}

.footer__links__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    font-size: var(--gray-dark);
}

@media (max-width: 1439px) {
    .footer__wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .footer__title {
        font-size: 14px;
    }
    .footer__links {
        gap: 46px;
    }
}
