.rw-words{
	display: inline;
	text-indent: 10px;
}
.rw-words-1 h2{
	position: absolute;
	opacity: 0;
	overflow: hidden;
      top: -20px;
	-webkit-animation: rotateWord 24s linear infinite 0s;
	-ms-animation: rotateWord 24s linear infinite 0s;
	animation: rotateWord 24s linear infinite 0s;
}
.rw-words-1 h2:nth-child(2) { 
    -webkit-animation-delay: 3s; 
	-ms-animation-delay: 3s; 
	animation-delay: 3s; 
}
.rw-words-1 h2:nth-child(3) { 
    -webkit-animation-delay: 6s; 
	-ms-animation-delay: 6s; 
	animation-delay: 6s; 
}
.rw-words-1 h2:nth-child(4) { 
    -webkit-animation-delay: 9s; 
	-ms-animation-delay: 9s; 
	animation-delay: 9s; 
}
.rw-words-1 h2:nth-child(5) { 
    -webkit-animation-delay: 12s; 
	-ms-animation-delay: 12s; 
	animation-delay: 12s; 
}
.rw-words-1 h2:nth-child(6) { 
    -webkit-animation-delay: 15s; 
	-ms-animation-delay: 15s; 
	animation-delay: 15s; 
}
.rw-words-1 h2:nth-child(7) { 
    -webkit-animation-delay: 18s; 
	-ms-animation-delay: 18s; 
	animation-delay: 18s; 
}
.rw-words-1 h2:nth-child(8) { 
    -webkit-animation-delay: 21s; 
	-ms-animation-delay: 21s; 
	animation-delay: 21s; 
}
/*
@-webkit-keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -webkit-transform: translateY(-30px); }
	5% { opacity: 1; -webkit-transform: translateY(0px);}
    17% { opacity: 1; -webkit-transform: translateY(0px); }
	20% { opacity: 0; -webkit-transform: translateY(30px); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}
@-ms-keyframes rotateWord {
    0% { opacity: 0; }
    2% { opacity: 0; -ms-transform: translateY(-30px); }
	5% { opacity: 1; -ms-transform: translateY(0px);}
    17% { opacity: 1; -ms-transform: translateY(0px); }
	20% { opacity: 0; -ms-transform: translateY(30px); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}
*/
@keyframes rotateWord {
    0% { opacity: 0; }
    5% { opacity: 0; -webkit-transform: translateY(-30px); transform: translateY(0px); }
	9% { opacity: 1; -webkit-transform: translateY(0px); transform: translateY(0px);}
    12% { opacity: 1; -webkit-transform: translateY(0px); transform: translateY(0px); }
	17% { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(0px); }
	80% { opacity: 0; }
    100% { opacity: 0; }
}


.tech-slideshow {
  height: 615px;
  max-width: 2000px;
  margin: 0 auto;
  position: relativite;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.tech-slideshow > div {
  height: 615px;
  width: 2000px;
  background: url(http://walcotts.com.au/wp-content/uploads/2017/11/productcollage_compressed.jpg);
  position: fixed;
  top: 0;
  left: 0;
  height: 150%;
  transform: translate3d(0, 0, 0);
}
.tech-slideshow .mover-1 {
  animation: moveSlideshow 15s linear infinite;
}
.tech-slideshow .mover-2 {
  opacity: 0;
  transition: opacity 0.5s ease-out;
  background-position: 0 -0px;
  animation: moveSlideshow 30s linear infinite;
}
.tech-slideshow:hover .mover-2 {
  opacity: 1;
}

@keyframes moveSlideshow {
  100% { 
    transform: translateX(-66.6666%);  
  }
}