/*ICONOS DE REDES SOCIALES*/
.icons {
  position: absolute;
  top: 50%;
  padding: 0 9%;
  transform: translateY(-50%);
}
.icons i {
  display: block;
  text-align: center;
  margin: 30px 0;
  font-size: 24px;
  color: white;
  transition: all 0.5s ease;
}
#icon-disc:hover {
  color: #67a9ff;
  transform: translateY(5px);
  text-shadow:
    0 0 5px #203550,
    0 0 10px #006eff,
    0 0 20px #fff,
    0 0 40px #203550;
}
#icon-face:hover {
  color: #5865f2;
  transform: translateX(5px);
  text-shadow:
    0 0 5px #30378a,
    0 0 10px #0015ff,
    0 0 20px #fff,
    0 0 40px #30378a;
}
#icon-insta:hover {
  color: #e4405f;
  transform: translateX(-5px);
  text-shadow:
    0 0 5px #691d2b,
    0 0 10px #ff002f,
    0 0 20px #fff,
    0 0 40px #691d2b;
}
#icon-xx:hover {
  color: #000000;
  transform: translateY(-5px);
  text-shadow:
    0 0 5px #686868,
    0 0 10px #999999,
    0 0 20px #fff,
    0 0 40px #686868;
}
/**/

@media (max-width: 768px) {
  .icons {
    position: static;
    transform: none;
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 0;
    margin-bottom: 20px;
  }

  .icons i {
    margin: 0;
    font-size: 30px;
  }
}