.testimonial {
  margin: 1rem auto;
  padding: 3rem 3rem;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
}
.testimonial-text {
  margin: 0;
  flex: 1 1 600px;
}
.testimonial-text blockquote:before {
  content: "";
}
.testimonial-text blockquote p {
  padding-left: 2rem;
  border-left: 4px solid var(--teal);
  margin: 0;
  font-style: normal;
}
.testimonial-info {
  flex: 1 1 250px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.testimonial-info-photo {
  width: 100px;
  height: 100px;
  margin-bottom: 1rem;
}
.testimonial-info-photo img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(1);
}
.testimonial-info-name {
  font-weight: 600;
  margin: 0;
}
.testimonial-info-title {
  margin: 0;
}
@media screen and (max-width: 600px) {
  .testimonial {
    padding: 2rem 2rem;
  }
  .testimonial-text blockquote {
    margin: 0;
  }
  .testimonial-text blockquote p {
    padding-left: 0rem;
    border-left: 0;
    margin-bottom: 2rem;
  }
}
