.list-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media only screen and (max-width: 749px) {
  .list-social {
    justify-content: center;
  }
}
.list-social__link {
  align-items: center;
  display: flex;
  transition: transform 0.3s ease-out;
}

.list-social__item:not(:last-child) {
  margin-right: 30px;
}

.list-social__link:hover {
  transform: scale(1.1);
}
