footer {
    background-color: var(--white);
}
.footer__top {
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    grid-template-columns: 1fr 1.5fr;
    align-items: start;
    justify-content: space-between;
    padding: 60px 0;
}
.footer__top > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.footer__top > div > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}
.footer__top > div > ul a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: var(--greenPrimary);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__top > div > ul img {
    height: 45%;
    object-fit: contain;
}

.footer__top > nav {
}
.footer__top > nav ul {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: end;
    flex-wrap: wrap;
    gap: 34px;
    row-gap: 12px;
}
.footer__top > nav li a {
    width: max-content;
}

.footer__bottom {
}
.footer__linksHelp > ul {
    display: flex;
    flex-direction: column;
    /* gap: 12px; */
    padding-bottom: 30px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer__linksHelp > ul {
        gap: 12px;
        padding-bottom: 0;
    }
    .footer__top {
        display: flex;
        flex-direction: column-reverse;
        align-items: start;
        gap: 24px;
        padding: 30px 0;
    }
    .footer__top > div:first-child > a {
        max-width: 153px;
    }
    .footer__top > div > ul {
        /* display: none; */
    }
    .footer__top > nav ul {
        margin-left: initial;
        /* max-width: 80%; */
        flex-direction: column;
        align-items: start;
        gap: 24px;
        row-gap: 12px;
        justify-content: left;
    }
}
