#testimonials									{  }
#testimonials .offset							{  }
#testimonials .testimonial						{  padding: 2rem 1rem 6rem 0;  }
#testimonials .heading							{ width: 100%;   }
#testimonials .testimonials 					{ width: 100%; margin-left: 0%; display: flex; flex-wrap: wrap; align-items: center; align-content: center; max-width: 650px; }

#testimonials .testimonial div.right h3			{ font-family: 'Poppins', sans-serif; color: #FFF; font-size: 1.45rem; font-weight: 300; font-style: italic; margin-bottom: 0.5rem; line-height: 2.0rem; }
#testimonials .testimonial div.right h4			{ font-family: 'Poppins', sans-serif; color: #04d875; font-weight: 300; margin-top: 0.5rem; }

#testimonials .testimonial.slick-current		{  animation: fade-in-move-down 2s; }

@media only screen and (min-width: 0px) and (max-width: 800px) 
{
	#testimonials .offset						{ flex-wrap: wrap; width: 100%; justify-content: center; }
	#testimonials .image						{ width: 100%; padding-top: 3rem; max-width: 80%; }
	#testimonials .testimonial					{ padding: 2rem 0; }				
	#testimonials .testimonials					{ width: 100%; margin-left: 0; }				
}

@keyframes fade-in-move-down {
    0% {
      opacity: 0;
      transform: translateY(-4rem);
    } 
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }


