@charset "utf-8";
/* CSS Document */

.tech-slideshow {
  height: 245px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.tech-slideshow > div {
  height: 245px;
  width: 2000px;
  background: url(../consultoria/pastagens/f01.gif);
  position: absolute;
  margin-top:10px;
  margin-left:10px;
  top: 0;
  left: 0;
  height: 100%;
  transform: translate3d(0, 0, 0);
}

.tech-slideshow .movie-1 {
  animation: moveSlideshow 20s linear infinite;
}

.tech-slideshow .movie-2 {
  opacity: 0;
  transition: opacity 0.5s ease-out;
  background-position: 0 -200px;
  animation: moveSlideshow 15s linear infinite;
}

.tech-slideshow:hover .movie-2 {
  opacity: 1;
}

@keyframes moveSlideshow {
  100% { 
    transform: translateX(-66.6666%);  
  }
}

