* {
  padding: 0;
  margin: 0
}

.crossfade > figure {
  animation: imageAnimation 30s linear infinite 0s;
-webkit-animation: imageAnimation 30s linear infinite 0s;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center center;
  color: transparent;
  height: 100%;
  left: 0px;
  opacity: 0;
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 0;
}

.crossfade > figure:nth-child(1) { background-image: url('../../../images/BG/LB_Fbt_01-1.jpg'); }

.crossfade > figure:nth-child(2) {
  animation-delay: 6s;
  -webkit-animation-delay: 6s;
  background-image: url('../../../images/BG/IMG_8215.JPG');
}

.crossfade > figure:nth-child(3) {
  animation-delay: 12s;
  -webkit-animation-delay: 12s;
  background-image: url('../../../images/BG/atlantic-ocean-2174060.jpg');
}

.crossfade > figure:nth-child(4) {
  animation-delay: 18s;
  background-image: url('../../../images/BG/deep-sea-fishing-1323571.jpg');
}

.crossfade > figure:nth-child(5) {
  animation-delay: 24s;
  -webkit-animation-delay: 24s;
  background-image: url('../../../images/BG/norway-1637436.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;
  }
  100% {
    opacity: 0;
  }
}
