footer {
    background-color: var(--innerBg);
}
.footer__top {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-between;
    padding-top: 36px;
}
.footer__top > div:first-child {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}
.footer__top > div > ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}
.footer__top > div > ul a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: var(--innerBlackBg);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__top > div > ul img {
    height: 45%;
    object-fit: contain;
}
.footer__top > div:first-child > a {
    min-width: 124px;
}

.footer__top > nav {
}
.footer__top > nav ul {
    margin-left: auto;
    max-width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 39px;
    row-gap: 12px;
    justify-content: right;
}
.footer__top > nav li a {
    width: max-content;
}

.footer__bottom {
    padding: 32px 0;
    text-align: left;
}

@media (max-width: 768px) {
    .footer__top {
        flex-direction: column;
        align-items: start;
        gap: 24px;
    }
    .footer__top > nav ul {
        margin-left: initial;
        max-width: 80%;
        align-items: start;
        gap: 24px;
        row-gap: 12px;
        justify-content: left;
    }
}
