.footer-social {
  display: flex;
  gap: 10px;
}

.icon-socials {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease-in-out;
}

.icon-socials:hover {
  transform: translateY(-3px);
}

.icon-facebook {
  background-image: url('../Icons/facebook.svg');
}

.icon-facebook:hover {
  background-image: url('../Icons/facebook-hover.svg');
}

.icon-twitter {
  background-image: url('../Icons/twitter.svg');
}

.icon-twitter:hover {
  background-image: url('../Icons/twitter-hover.svg');
}

.icon-instagram {
  background-image: url('../Icons/instagram.svg');
}

.icon-instagram:hover {
  background-image: url('../Icons/instagram-hover.svg');
}

.icon-linkedin {
  background-image: url('../Icons/linkedin.svg');
}

.icon-linkedin:hover {
  background-image: url('../Icons/linkedin-hover.svg');
}
