.slider_fade {
    /*position: relative;*/
}
.slider_fade img {
  height:940px;
  width: 100%;
  object-fit: cover;
  
}

.slider_fade > li {
    position: absolute;
    list-style: none;
    visibility: hidden;
    animation: anime_slider_fade 12s 0s infinite;
}
.slider_fade > li:nth-of-type(2) {
    animation-delay: 4s;
}
.slider_fade > li:nth-of-type(3) {
    animation-delay: 8s;
}

@keyframes anime_slider_fade {
    0% {
        visibility: visible;
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
    }
    48.3% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@media screen and (min-width:768px) and ( max-width:1024px) {
    .slider_fade img {
        height:auto;
        width: 100%;
        /*object-fit: cover;*/
        
      }
}
@media screen and (min-width:481px) and ( max-width:767px) {
    .slider_fade img {
        height:auto;
        width: 100%;
        object-fit: cover;
        
      }
      
}

@media screen and (max-width: 480px){
    .slider_fade img {
        height:auto;
        width: 100%;
        object-fit: cover;
        
      }
}