.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: var(--blue-brand-color);
    color: var(--white);
}
.footer .logo {
    width: 285px;
    height: 280px;
    position: relative;
    background-image: url(../../../../img/icons/footer/logo-white.svg);
    background-repeat: no-repeat;
    background-size: 285px 82px;
    background-position: 0 50%;
}
.footer .logo::before {
    content: '';
    display: block;
    width: 280px;
    height: 280px;
    position: absolute;
    left: -60px;
    background-image: url(../../../../img/icons/footer/emblem-large-white.svg);
    background-repeat: no-repeat;
    background-size: 280px;
}

.footer-menu {
    display: flex;
    column-gap: 60px;
}
.footer-menu .submenu-item {
    max-width: 140px;
}
.footer-menu .submenu-item .submenu-title {
    height: 32px;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    cursor: default;
}
.footer-menu .submenu-item .menu-items {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
}

.footer .info {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.footer .copyright {
    width: 500px;
    line-height: 130%;
}
.footer .contact-links {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
    row-gap: 20px;
}
.footer .contacts {
    display: flex;
    column-gap: 20px;
}
.footer .social-media {
    display: flex;
    column-gap: 12px;
}
.footer .social-media > * {
    width: 32px;
    height: 32px;
    background-size: contain;
}
.footer .social-media .facebook {
    background-image: url(../../../../img/icons/social-media/links/facebook.svg);
}
.footer .social-media .facebook:hover {
    background-image: url(../../../../img/icons/social-media/links/facebook-blue.svg);
}
.footer .social-media .telegram {
    background-image: url(../../../../img/icons/social-media/links/telegram.svg);
}
.footer .social-media .telegram:hover {
    background-image: url(../../../../img/icons/social-media/links/telegram-blue.svg);
}
.footer .social-media .instagram {
    background-image: url(../../../../img/icons/social-media/links/instagram.svg);
}
.footer .social-media .instagram:hover {
    background-image: url(../../../../img/icons/social-media/links/instagram-blue.svg);
}
.footer .social-media .youtube {
    background-image: url(../../../../img/icons/social-media/links/youtube.svg);
}
.footer .social-media .youtube:hover {
    background-image: url(../../../../img/icons/social-media/links/youtube-blue.svg);
}

@media (max-width: 1280px) {
    .footer .footer-menu {
        column-gap: 30px;
    }
    .footer .copyright {
        width: 450px;
    }
}

@media (max-width: 992px) {
    .footer .logo {
        margin-left: 50px;
    }
    .footer .footer-menu {
        display: grid;
        grid-template: 1fr 1fr / 1fr 1fr;
        row-gap: 40px;
        column-gap: 20px;
        padding: 40px 0;
    }
    .footer .info {
        row-gap: 40px;
        flex-direction: column-reverse;
    }
    .footer .contact-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer .logo {
        width: 232px;
        height: 106px;
        background-size: 232px 66px;
        margin-left: 60px;
    }
    .footer .logo::before {
        width: 106px;
        height: 106px;
        background-size: 106px;
        left: -70px;
    }
    .footer .footer-menu {
        width: 100%;
        padding: 20px 10px;
    }
    .footer .submenu-item {
        max-width: none;
    }
    .footer .info {
        font-size: 12px;
    }
    .footer .copyright {
        width: unset;
        text-align: center;
    }
    .footer .social-media > * {
        width: 24px;
        height: 24px;
    }
}




