.marginto{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.bodito{
  height: 36vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  
}
.containerto{
  max-width: 1840px;
  width: 100%;
  height: 300px;
  border: 1px solid #888888;
  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 20s linear infinite;
}

@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;
}
