.footer {
    padding-top: 90px;
    background: url('../media/footer/footer-bg.webp') center / cover no-repeat;
}

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


.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.footer__nav--with-margin {
    margin-top: 20px;
}

.footer__wrapper--with-margin {
    margin-top: 80px;
}

.footer__nav--row {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 34%;
}

.footer__main-img {
    margin: 0 auto;
    height: auto;
    width: 100%;
    object-fit: contain;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 66%;
}

@media screen and (max-width: 1141px) {
    .footer {
        padding-top: 44px;
    }

    .footer__wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__logo {
        width: 226px;
        height: 38px;
        align-self: center;
    }

    .footer__content {
        margin-top: 35px;
        width: 100%;
        flex-wrap: wrap;
    }

    .footer__nav--row {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .footer__text {
        font-size: 14px;
    }

    .footer__wrapper--with-margin {
        margin-top: 40px;
    }
}