.footer__menu {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:6.4rem;
}
.footer__menu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer__menu-link,
.footer__menu-title {
    font-size: 1.5rem;
    line-height: 100%;
    color: var(--white);
}
.footer__menu-link {
    transition: all .3s ease;
}
.footer__menu-link:hover {
    color: var(--primary);
}


@media (min-width: 768px) and (max-width: 1280px) {
    .footer__menu {
        grid-template-columns: repeat(1, 1fr);
    }
    .footer__bottom {
        flex-direction: column;
    }
    .footer__bottom-wrapper {
        width: 100%;
    }
    .footer__bottom .footer__col:nth-child(2) {
        flex-direction: row-reverse;
        display: flex;
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .footer__menu {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }
}