.fadeIn_up {
  opacity: 0;
  transform: translate(0, 30%);
  transition: 2s;
}
.fadeIn_up.is-open {
  transform: translate(0, 0);
  opacity: 1;
}