.footer {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 96px 96px 48px 96px;
    background: #F3F4F6;
}

.footerLogo {
    width: 176px;
    height: 60px;
    margin: 0 auto;
    padding: 0;
}

.footerNavbar {
    margin: 48px auto;
    width: 100%;
}

.footerNavbar ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 842px;
    margin: 0 auto;
    list-style: none;
    flex-wrap: wrap;
}

.footerNavbar ul:last-child {
    justify-content: center;
    margin: 30px auto 0 auto;
}

.footerNavbar ul:last-child li:first-child {
    margin-right: 25px;
}

.footerNavbar a {
    text-decoration: none;
    color: var(--main-blue);
    font-size: 20px;
    font-weight: 500;
}

.footerContacts {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
}

.footerContacts img {
    width: 48px;
    height: 48px;
    margin-right: 16px;
}

.footerContacts a {
    text-decoration: none;
    color: var(--main-blue);
    font-size: 20px;
    font-weight: 400;
}

.mobileSizeFooterNav {
    display: none;
}

@media (max-width: 1300px) {
    .footerContacts {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .footerContacts > a {
        width: 70%;
    }
}

@media (max-width: 930px) {
    .footer {
        justify-content: space-around;
        padding: 48px 48px 24px 48px;
        background: #F3F4F6;
    }
}

@media (max-width: 800px) {
    .footerNavbar ul {
        justify-content: space-around;
        max-width: 100%;
        column-gap: 10px;
        row-gap: 10px;
        margin: 0 auto;
        list-style: none;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .footer {
        flex-direction: column-reverse;
        justify-content: space-around;
        padding: 48px 10px;
    }

    .footerContactsIcons {
        width: 100%;
        text-align: center;
    }

    .footerLogo {
        order: 2;
        margin-bottom: 32px;
        height: 48px;
        width: 140px;
    }

    .footerNavbar {
        order: 1;
        margin: 0;
    }

    .footerNavbar ol, .footerNavbar ul {
        padding-left: 0;
    }

    .footerContacts a {
        text-decoration: none;
        color: var(--main-blue);
        font-size: 14px;
        line-height: 157%;
        font-weight: 400;
    }

    .footerContactsGeo span {
        text-decoration: none;
        color: var(--main-blue);
        font-size: 14px !important;
        line-height: 157%;
        font-weight: 400;
    }

    .footerContacts > a {
        width: 100%;
    }

    .footerContacts img {
        width: 44px;
        height: 44px;
    }

    .footerContacts {
        order: 3;
        row-gap: 8px;
        margin-bottom: 32px;
    }

    .footerNavbar ul:last-child {
        justify-content: center;
        margin: 10px auto 0 auto;
        font-size: 14px;
        line-height: 157%;
    }

    .footerNavbar a {
        font-size: 14px;
        line-height: 157%;
    }

    .fullSizeFooterNav {
        display: none;
    }

    .mobileSizeFooterNav {
        display: flex;
        max-width: 286px !important;
        margin: 0 auto;
        justify-content: space-between;
    }

    .footerNavbar li {
        margin: 0 !important;
    }
}
