.footer__social-items {
    display: flex;
    list-style: none;
    padding: 24px 0 0;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer__social-item {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__social {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #ffffff;

    border: 1px solid #efd9e8;

    box-shadow:
        0 6px 18px rgba(181,116,154,.10);

    transition:
        transform .22s ease,
        background .22s ease,
        box-shadow .22s ease;
}

.footer__social i {
    font-size: 18px;
    line-height: 1;
    transition: all 0.25s ease-in-out;
    color: #b05b91;
}

.footer__social svg {
    fill: #b05b91;
    width: 20px;
    height: 20px;
    transition: all 0.25s ease-in-out;
}

/* HOVER */

.footer__social:hover {

    transform: translateY(-2px);

    background:
        linear-gradient(
            135deg,
            #cf82b3,
            #b890db
        );

    box-shadow:
        0 12px 24px rgba(181,116,154,.22);
}

.footer__social:hover i,
.footer__social:hover svg {

    fill: #ffffff;
    color: #ffffff;
}

/* ICON FIX */

.footer__social_telegram svg,
.footer__social_pinterest svg {
    width: 18px;
    height: 18px;
}

/* MOBILE */

@media (max-width: 1699px) {

    .footer__social-items {
        padding-top: 10px;
    }
}

@media (max-width: 991px) {

    .footer__social-items {
        justify-content: center;
    }

    .footer__social {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
}