﻿.testimonial-wrap::-webkit-scrollbar {
	display: none;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 25px));
  }
}

.scroll {
  animation: scroll 70s linear infinite;
}

@media only screen and (min-width: 992px) {

	.scroll {
  	animation: scroll 45s linear infinite;
	}
	
  .testimonial-wrap:hover * {
    animation-play-state: paused;
  }
}

.reverse {
  animation-direction: reverse;
}