.animated-tooltip {
  position: relative;
  display: inline-block;
  font-weight: 500;
  transition: color 0.15s;
  text-transform: uppercase;
  font-size: 1rem;
  cursor: pointer;
}
.animated-tooltip:hover {
  color: #fff;
}
.animated-tooltip-icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -25px);
  opacity: 0;
  pointer-events: none;
  filter: blur(5px);
  transition:
    opacity 0.3s,
    filter 0.3s,
    transform 0.3s;
  z-index: 10;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.animated-tooltip:hover .animated-tooltip-icon {
  opacity: 1;
  filter: blur(0);
  /* transform will be set by JS for rotation */
}
.animated-tooltip-icon img {
  width: 50px;
  border-radius: 0.25rem;
  display: block;
}

/* Footer link colors by order */
.animated-tooltip:nth-child(1) { color: #26c7ff; }
.animated-tooltip:nth-child(2) { color: #c913f2; }
.animated-tooltip:nth-child(3) { color: #bafd14; }
.animated-tooltip:nth-child(4) { color: #ff7700; }
.animated-tooltip:nth-child(5) { color: #ffcf36; }
.animated-tooltip:nth-child(6) { color: #fd4016; }
.animated-tooltip:nth-child(7) { color: #0fbffc; }

/* On hover, all become white (already handled), or you can reinforce: */
.animated-tooltip:hover { color: #fff; }
