.testimonial-card-ctrl.slide-normal {
  animation: slide 150s linear infinite; }

.testimonial-card-ctrl.slide-reverse {
  animation: slide-reverse 150s linear infinite; }

.testimonial-card-ctrl:hover {
  animation-play-state: paused; }

.testimonial-card-ctrl .testimonial-card {
  padding: 24px 28px;
  border-radius: 4px;
  background: #fff;
  height: 100%; }
  @media (max-width: 991px) {
    .testimonial-card-ctrl .testimonial-card {
      margin-bottom: 40px; } }
  .testimonial-card-ctrl .testimonial-card__person {
    display: flex; }
    .testimonial-card-ctrl .testimonial-card__person img {
      margin-right: 12px;
      width: 48px;
      height: 48px;
      border-radius: 50%; }
  .testimonial-card-ctrl .testimonial-card__info .company {
    font-size: 20px;
    margin-bottom: 5px; }
  .testimonial-card-ctrl .testimonial-card__info .name, .testimonial-card-ctrl .testimonial-card__info .role {
    line-height: 1.2;
    font-size: 16px;
    margin-top: 2px;
    margin-bottom: 2px; }

@keyframes slide {
  0% {
    transform: translate3d(30px, 0, 0); }
  100% {
    transform: translate3d(calc(-600px * 8 - 30px), 0, 0); } }

@keyframes slide-reverse {
  0% {
    transform: translate3d(calc(-600px * 5 - 30px), 0, 0); }
  100% {
    transform: translate3d(-30px, 0, 0); } }
