

.slider{
  max-width: 1300px;
  width: 1000%;
  height: 500px;
  border: 2px solid rgb(248, 77, 9);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.image-box{
  display: flex;
  height: 100%;
  width: 400%;
  justify-content: space-between;
}
.image-box{
  animation: imgBox 30s infinite linear;
}
@keyframes imgBox{
  0%{
    margin-left: 0;
  }
 

  100%{
    margin-left: -300%;
  }
}
.image-box:hover{
  animation-play-state: paused;
}
.image-box .image{
  width: calc(100% - 100px);
  height: 100%;
}
.image-box img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
