/* CSS Document */
/* Fade effect for image */
  .fade-img {
    transition: opacity 0.6s ease-in-out;
  }
  .fade-out { opacity: 0; }
  .fade-in { opacity: 1; }

  /* Testimonial text default */
  .testimonial-item { cursor: pointer; }
  .testimonial-item p, 
  .testimonial-item small { 
    color:#666666;
    transition: color 0.3s ease; 
  }

  /* Active testimonial text color */
  .testimonial-item.active p, 
  .testimonial-item.active small {
    color:#000000;
    
  }
  
  
  .TestimonialsCount{
  position: relative;
  font-size:45px;
  font-weight:700;
  line-height:1;
  color:#CCC;
  font-family:'Butler';
  padding:5px;
  transition: color 0.3s ease;  
  }
  
  .TestimonialsCount.active {
  color: #00bcd4;   /* active number color */
}
  
 .TestimonialsCount.active::before {
  content: "";
  position: absolute; 
  left: -80px;
  top: 52%;
  width: 70px;   /* line length */
  height: 2px;   /* line thickness */
  background-color: #00bcd4; /* same as number color */
  transform: translateY(-50%);
}

.TestimonialsQuote{
  font-size:23px;
  font-weight:600;
  line-height:1.4;
  color:#959595;
  font-family:'Butler';
  padding-right:30px;
  }
  
.TestimonialsQuote.active{
    color:#000000;
   }
  
.TestimonialsMeta{
  font-size:14px;
  font-weight:400;
  line-height:1.4;
  color:#969696;
  font-family:'Gordita';
  }

