.css-slideshow{
  position: relative;
  width: 100%;
  height: 370px;
  margin-top: 0%;
  background-image: url("../img/leaf.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.css-slideshow figure{
  margin: 0;
  width: 100%;
  height: 370px;
  background-image: url("../img/leaf.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
}
.css-slideshow img{
  box-shadow: 0 0 2px #666;
}
.css-slideshow figcaption{
  position: absolute;
  top: 0;
  color: #fff;
  background: rgba(0,0,0, .3);
  font-size: .8em;
  padding: 8px 12px;
  opacity: 0;
  transition: opacity .5s;
}

.css-slideshow:hover figure figcaption{
  transition: opacity .5s;
  opacity: 1;
}
.css-slideshow-attr{
  max-width: 100%;
  text-align: right;
  font-size: .7em;
  font-style: italic;
  margin:0 auto;
}
.css-slideshow-attr a{
  color: #666;
}
.css-slideshow figure{
  opacity:0;
}
figure:nth-child(1) {
  animation: xfade 48s 42s infinite;
}
figure:nth-child(2) {
  animation: xfade 48s 36s infinite;
}
figure:nth-child(3) {
  animation: xfade 48s 30s infinite;
}
figure:nth-child(4) {
  animation: xfade 48s 24s infinite;
}
figure:nth-child(5) {
  animation: xfade 48s 18s infinite;
}
figure:nth-child(6) {
  animation: xfade 48s 12s infinite;
}
figure:nth-child(7) {
  animation: xfade 48s 6s infinite;
}
figure:nth-child(8) {
  animation: xfade 48s 0s infinite;
}

@keyframes xfade{
  0%{
    opacity: 1;
  }
  10.5% {
    opacity: 1;
  }
  12.5%{
    opacity: 0;
  }
  98% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/*Start media queries*/
/*Small*/
@media (max-width: 480px) {
  /*Small styles here*/

.css-slideshow{
  display:none;
}

}


/*Medium*/
@media (min-width: 481px) and (max-width: 768px) {
  /*medium styles here*/
.css-slideshow{
  display:none;
}