.to-fade {
	opacity: 0;
}
.fade-up-sm {
	animation: fade-in-up-sm 800ms;
	opacity: 1  !important;
}
.fade-up-sm-next-1 {
	animation: fade-in-up-sm 1100ms;
	opacity: 1  !important;
}
.fade-up-sm-next-2 {
	animation: fade-in-up-sm 1400ms;
	opacity: 1  !important;
}
.fade-up-sm-next-2 {
	animation: fade-in-up-sm 1700ms;
	opacity: 1  !important;
}
.testimonial-content-wrapper .to-fade {
	opacity: 0 !important;
	transition: 1s all ease-in-out;
  -webkit-transition: 1s all ease-in-out;
  -moz-transition: 1 all ease-in-out;
  -o-transition: 1 all ease-in-out;
}
.testimonial-content-wrapper.slick-current .to-fade {
	opacity: 1 !important;
	transition: 1s all ease-in-out;
  -webkit-transition: 1s all ease-in-out;
  -moz-transition: 1 all ease-in-out;
  -o-transition: 1 all ease-in-out;
}
.testimonial-content-wrapper .testimonial-image-main .testimonial-inner-image,
.testimonial-content-wrapper .testimonial-message,
.testimonial-content-wrapper .tstimonial-info .the-name,
.testimonial-content-wrapper .tstimonial-info .the-position
 {
  opacity: 0;
  transition: 1s all ease-in-out;
  -webkit-transition: 1s all ease-in-out;
  -moz-transition: 1 all ease-in-out;
  -o-transition: 1 all ease-in-out;
}
.testimonial-content-wrapper.slick-current .testimonial-image-main .testimonial-inner-image,
.testimonial-content-wrapper.slick-current .testimonial-message,
.testimonial-content-wrapper.slick-current .tstimonial-info .the-name,
.testimonial-content-wrapper.slick-current .tstimonial-info .the-position {
  opacity: 1;
  transition: 1s all ease-in-out;
  -webkit-transition: 1s all ease-in-out;
  -moz-transition: 1 all ease-in-out;
  -o-transition: 1 all ease-in-out;
}
.testimonial-content-wrapper.slick-current .testimonial-image-main .testimonial-inner-image {
	transition-delay: 0.2s;
}
.testimonial-content-wrapper.slick-current .testimonial-message {
	transition-delay: 0.2s;
}
.testimonial-content-wrapper.slick-current .tstimonial-info .the-name {
	transition-delay: 0.5s;
}
.testimonial-content-wrapper.slick-current .tstimonial-info .the-position {
	transition-delay: 0.8s;
}

@-webkit-keyframes fade-in-up-sm {
	0% {
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
		opacity: 0
	}
	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
		opacity: 1
	}
}

