.testimonials {
  background: #403048;
  padding: 1.5rem;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
}

.testimonials h1 {
  color: white;
  font-weight: 800;
  text-align: center;
  font-size: 1.4rem;
  padding-bottom: 1.5rem;
}

.testimonial-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 0;
}

.testimonial {
  background: white;
  padding: 1rem;
  border-radius: 15px;
  margin: 1rem;
}

.testimonial .quote {
  color: #403048;
  font-size: 5rem;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.testimonial .quote-text {
  font-size: .9rem;
  line-height: 1.2rem;
  margin-top: -35px;
}

.testimonial .attribution {
  padding-top: 1rem;
  line-height: 1rem;
}

.testimonial .img-container {
  padding-right: 1rem;
}
.testimonial .attribution img {
  width: 50px;
  border-radius: 50%;
}

.testimonial .name {
  font-weight: 600;
  font-size: 1rem;
}

.testimonial .position {
  font-size: .7rem;
}

.testimonial .company {
  font-weight: 600;
  font-size: .9rem;
}

@media only screen and (max-width: 650px) {
  .testimonial-container {
    display: block;
  }
}