@charset "utf-8";
/* CSS Document */

@keyframes fadeRight {
	from {
		opacity: 0;
		transform: translate3d(0, 50%, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInRight {
   0% {
      opacity: 0;
      transform: translateX(500px);
   }
   100% {
      opacity: 1;
      transform: translateX(0);
   }
} 


@keyframes fadeInLeft {
   0% {
      opacity: 0;
      transform: translateX(-500px);
   }
   100% {
      opacity: 1;
      transform: translateX(0);
   }
} 

 /* Style the container with a rounded border, grey background and some padding and margin */
.containerTestimonialRight {
  border: 2px solid #ccc;
  background-color: #eee;
  border-radius: 5px;
  padding: 16px;
  margin: 16px 0;
  animation: fadeInRight 2s ease-in both;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Add drop shadow */

}

.containerTestimonialLeft {
  border: 2px solid #ccc;
  background-color: #eee;
  border-radius: 5px;
  padding: 16px;
  margin: 16px 0;
  animation: fadeInLeft 2s ease-in both;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Add drop shadow */

}

/* Clear floats after containers */
.containerTestimonialRight::after {
  content: "";
  clear: both;
  display: table;
}

/* Clear floats after containers */
.containerTestimonialLeft::after {
  content: "";
  clear: both;
  display: table;
}

/* Float images inside the container to the left. Add a right margin, and style the image as a circle */
.containerTestimonialRight img {
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}

.containerTestimonialLeft img {
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}

/* Increase the font-size of a span element */
.containerTestimonialRight span {
  font-size: 20px;
  margin-right: 15px;
}

.containerTestimonialLeft span {
  font-size: 20px;
  margin-right: 15px;
}

/* Add media queries for responsiveness. This will center both the text and the image inside the container */
@media (max-width: 500px) {
  .containerTestimonialLeft {
    text-align: center;
  }
	
	.containerTestimonialRight {
    text-align: center;
  }

  .containerTestimonialLeft img {
    margin: auto;
    float: none;
    display: block;
  }
	
	 .containerTestimonialRight img {
    margin: auto;
    float: none;
    display: block;
  }
} 
