.slide.is-entering {
  transition:
    opacity 1.4s ease,
    transform 1.4s ease,
    filter 1.4s ease,
    clip-path 1.4s ease;
}

.slide-fx.fx-custom {
  animation: fx-custom 1.4s ease forwards;
}

@keyframes fx-custom {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
  }
}
