
.footer__social-items {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}
.footer__social-item {
    margin: 0px 2px;
    padding: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--main-background-color);
    border-radius: 50%;
    transition: all 0.2s;
}

.footer__social-item:hover {
    background: var(--accent-color);
}
.footer__social-item:first-of-type {
    margin-left: 0;
}
.footer__social {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer__social i {
    font-size: 17px;
    line-height: 1;
    transition: all 0.2s;
    color: var(--accent-color);
}
.footer__social svg {
    fill: var(--accent-color);
    width: 16px;
    height: 16px;
    transition: all 0.2s;
}
.footer__social:hover i,
.footer__social:hover svg {
    fill: var(--secondary-text-color);
    color: var(--secondary-text-color);
}
.footer__social_telegram svg{
    width: 14px;
    height: 14px;
}
.footer__social_pinterest svg{
    width: 15px;
    height: 15px;
}