/* ANIMATION */
.animate-bottom {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-in-out;
}

.animate-bottom.animated {
  opacity: 1;
  transform: translateY(0);
}
