.crossfade > .slider-img {
  backface-visibility: hidden;
  background-size: cover;
  background-position: center center;
  color: transparent;
  /*height: 100%;*/
  left: 0px;
  opacity: 0;
  position: absolute;
  top: 0px;
  /*width: 100%;*/
  z-index: 0;
}

@keyframes imageAnimation {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  5% {
    animation-timing-function: ease-out;
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
