.tech-slideshow {
  height: 102px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.mover-1 {
  height: 180px;
  width: 10000px;
  
  position: absolute;
  overflow-x:hidden;
  top: 0;
  left: 0;

  animation: moveSlideshow 6s linear infinite;
}

.mover-1 img {
  display:inline-block;
  vertical-align:middle;
  width:100px;
  margin:0;
}

@keyframes moveSlideshow {
  100% { 
    transform: translateX(-520px);  
  }
}