@keyframes fader {
    from { opacity: 1.0; }
    to   { opacity: 0.0; }
  }

  .fading-slideshow {
    position: relative;
    padding: 0;
    list-style-type: none;
    width:100%;
    height:0;
    padding-top: 56.25%;
  }
  .fading-slideshow > li {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* current slide */

  .fading-slideshow > li:first-of-type {
    animation-name: fader;
    animation-delay: 3s;
    animation-duration: 1.5s;
    z-index: 20;
  }

  /* next slide to display */

  .fading-slideshow > li:nth-of-type(2) {
    z-index: 10;
  }

  /* all other slides */

  .fading-slideshow > li:nth-of-type(n+3) {
    display: none;
  }

  /* slider img */
  .slider-img0{animation-delay:7s;}
  .slider-img1{background-image:url(../img/towels-1511875_1280.jpg);background-size:cover;background-position-x:center;}

  @media screen and (min-width: 768px) {
  }
  @media screen and (max-width: 767.9px) {
  }