.crossfade > figure {
  animation: imageAnimation 30s linear infinite 0s;
  backface-visibility: hidden;
  /*background-size: cover;*/
/*  background-position: center center;*/
    /*width: 100%;*/
  /*height: 100%;*/
 left: -40px;
 top: 236px;
  opacity: 0;
  background-repeat:no-repeat;
  background-position:top center;
  width: 100%;
  min-height: 482px;
  position: absolute;
  color: transparent;
  z-index: 0;
}

.crossfade2 > figure {
  animation: imageAnimation 30s linear infinite 0s;
  backface-visibility: hidden;
  /*background-size: cover;*/
/*  background-position: center center;*/
    /*width: 100%;*/
  /*height: 100%;*/
 left: -40px;
 top: -10px;
  opacity: 0;
  background-repeat:no-repeat;
  background-position:top center;
  width: 100%;
  min-height: 482px;
  position: absolute;
  color: transparent;
  z-index: 0;
}

.crossfade > figure:nth-child(1) {
  background-image: url('../imagesslide/001.jpg');
}
.crossfade > figure:nth-child(2) {
  animation-delay: 6s;
  background-image: url('../imagesslide/002.jpg');
}
.crossfade > figure:nth-child(3) {
  animation-delay: 12s;
  background-image: url('../imagesslide/003.jpg');
}
.crossfade > figure:nth-child(4) {
  animation-delay: 18s;
  background-image: url('../imagesslide/001.jpg');
}
.crossfade > figure:nth-child(5) {
  animation-delay: 24s;
  background-image: url('../imagesslide/002.jpg');
}
.crossfade > figure:nth-child(6) {
  animation-delay: 30s;
  background-image: url('../imagesslide/003.jpg');
}
.crossfade > figure:nth-child(7) {
  animation-delay: 36s;
  background-image: url('../imagesslide/001.jpg');
}
.crossfade > figure:nth-child(8) {
  animation-delay: 42s;
  background-image: url('../imagesslide/002.jpg');
}
.crossfade > figure:nth-child(9) {
  animation-delay: 48s;
  background-image: url('../imagesslide/003.jpg');
}
.crossfade > figure:nth-child(10) {
  animation-delay: 54s;
  background-image: url('../imagesslide/001.jpg');
}

.crossfade2 > figure:nth-child(1) {
  background-image: url('../imagesslide/002.jpg');
}
.crossfade2 > figure:nth-child(2) {
  animation-delay: 6s;
  background-image: url('../imagesslide/003.jpg');
}
.crossfade2 > figure:nth-child(3) {
  animation-delay: 12s;
  background-image: url('../imagesslide/001.jpg');
}
.crossfade2 > figure:nth-child(4) {
  animation-delay: 18s;
  background-image: url('../imagesslide/002.jpg');
}
.crossfade2 > figure:nth-child(5) {
  animation-delay: 24s;
  background-image: url('../imagesslide/003.jpg');
}

@keyframes imageAnimation {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
  }
  8% {
    animation-timing-function: ease-out;
    opacity: 1;
  }
  17% {
    opacity: 1
  }
  25% {
    opacity: 0
  }
   35% {
    opacity: 0
  }
  
    50% {
    opacity: 0
  }
  
     75% {
    opacity: 0
  }
  100% {
    opacity: 0
  }
}

