footer {
    max-width: 91.5rem;
    padding: 3rem 1rem;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    gap: 1rem;
    width: 100%;
}
.footer-wrapper {
    display: flex;
    width: 100%;
    gap: 2rem;
}
.footer__about {
    font-size: .75rem;
    line-height: 1.5rem;
    display: flex;
    flex-flow: column;
    gap: 1rem;
}
.footer__column {
    display: flex;
    flex-flow: column;
    gap: 1rem;
    flex: 1;
}
.footer__column-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-flow: column;
    gap: 1rem;
}
.footer__column-title {
    margin: 0;
}
.footer__column-item {
    color: #FFFFFF90;
    font-size: 0.875rem;
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-link__item {
    width: 1rem;
    height: 1rem;
    display: block;
}
.social-link__item_inst {
    background: url(../images/social/Instagram.svg);
}
.social-link__item_inst {
    background: url(../images/social/Instagram.svg);
}
.social-link__item_dribbble {
    background: url(../images/social/Dribbble.svg);
}
.social-link__item_telegram {
    background: url(../images/social/Telegram.svg);
}
.social-link__item_linkedin {
    background: url(../images/social/LinkedIn.svg);
}

.footer__logo {
    width: 6rem;
}

.footer__logo img {
    width: 100%;
}

@media (max-width: 576px) {
    .footer__column {
        align-items: center;
        text-align: center;
    }
    .footer-wrapper {
        flex-flow: column;
    }
    .social-links {
        justify-content: center;
    }
    footer {
        background: #011C2D;
    }
}