.footer__social-items {
  display: flex;
  list-style: none;
  padding: 20px 0 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: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.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: var(--text-xs);
  line-height: 1;
  transition: all 0.4s ease-in-out;
  color: var(--color-text);
}
.footer__social svg {
  fill: var(--color-text);
  width: 16px;
  height: 16px;
  transition: all 0.4s ease-in-out;
}
.footer__social:hover i,
.footer__social:hover svg {
  fill: var(--color-accent);
  color: var(--color-accent);
}
.footer__social_telegram svg {
  width: 14px;
  height: 14px;
}
.footer__social_pinterest svg {
  width: 15px;
  height: 15px;
}
