.social-links__list {
  display: flex;
}
.social-links__item {
  text-decoration: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.48;
}
.social-links__item svg {
  flex: none;
}
.social-links__item svg path {
  transition: all 600ms cubic-bezier(0.25, 0.8, 0.25, 1);
  -webkit-transition: all 600ms cubic-bezier(0.25, 0.8, 0.25, 1);
  -moz-transition: all 600ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.social-links__item:hover {
  opacity: 1;
}
.social-links__item i {
  font-size: 30px;
}
.social-links__item:not(:first-child) {
  margin-left: 32px;
}
.social-links__item_max{
    border-radius: 50%;
    border: 1px solid #fff;
}
.social-links__item_max svg{
    width: 22px;
}