.footer {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 41px;
}

.footer-logo {
    max-width: 170px;
    height: auto;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-links img {
    width: auto;
    height: 20px;
}

.footer-links__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links__item:last-child {
    margin-right: 0;
}


@media (min-width: 1024px) {
    .footer-wrapper {
        padding: 20px 24px;
    }

    .footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-links {
        flex-direction: row;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        background-color: #F2EFEA;
        padding: 20px 24px;
    }

    .hidden-on-desktop {
        display: flex;
    }

    .footer-links-mobile {
        display: flex;
        border-radius: 8px;
        background: #000;
        padding: 14px;
        width: 390px;
        justify-content: space-between;
    }

    .footer-links-mobile .footer-links__item img {
        width: 18px;
        height: auto;
    }

    .footer-links-mobile .footer-links__item p {
        color: #fff;
        font-size: 15px;
        font-weight: 500;
    }
}

@media (max-width: 450px) {
    .footer {
        flex-direction: column;
        align-items: center;
        background-color: #F2EFEA;
        padding: 20px 24px;
    }

    .footer-links-mobile {
        display: flex;
        border-radius: 8px;
        background: #000;
        padding: 14px;
        width: 390px;
        justify-content: space-between;
    }

    .footer-links-mobile .footer-links__item img {
        width: 18px;
        height: auto;
    }

    .footer-links-mobile .footer-links__item p {
        color: #fff;
        font-size: 15px;
        font-weight: 500;
    }
}