/* Animation */

.animate-on-scroll {
  opacity: 0;
  transition: all 0.5s ease-out;
  will-change: opacity, transform;
}

.animate-on-scroll.visible {
  opacity: 1;
}

.animate-left {
  transform: translateX(-50px);
}
.animate-left.visible {
  transform: translateX(0);
}

.animate-right {
  transform: translateX(50px);
}
.animate-right.visible {
  transform: translateX(0);
}

.animate-top {
    transform: translateY(50px);
}
.animate-top.visible {
    transform: translateY(0);
}