#stage{
 position:relative;
 margin:0 auto;
 width:100%;
 height:600px;
}
#stage img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  opacity:0;
  animation-name:fading; 
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  height:auto;
  max-height:600px;
}
#stage img:nth-of-type(1){animation-delay: 0s;}
#stage img:nth-of-type(2){animation-delay: 5s;}
#stage img:nth-of-type(3){animation-delay: 10s;}
@keyframes fading {
  0%{opacity:0; }
  5%{opacity:1;}
  
  33%{opacity:1;}
  38%{opacity:0;}
  
  100%{opacity:0;}
}

@media (max-width: 1024px){
#stage {height:460px;}
}


@media (max-width: 1000px){
.mobile-img {background:url(../images/hs-main-mobile.jpg);background-repeat: no-repeat;background-attachment: fixed;background-position: center; }
#stage img {display:none;}
}

