/* js trigger */
/* fade up */
.jsc-fadeUp {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 2s, transform 2s;
}
.jsc-fadeUp.is-active {
  opacity: 1;
  transform: translateY(0);
}

.jsc-fadeUp__delay {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 2s, transform 2s;
}
.jsc-fadeUp__delay.is-active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .4s;
}

/* fade in */
.jsc-fadeIn {
  opacity: 0;
  transition: opacity 2s;
}
.jsc-fadeIn.is-active {
  opacity: 1;
}
