.testimonials {
  padding: 3rem;
  display: grid;
  justify-content: center;
}


.testimonials blockquote {
  max-width: 50rem;
}

.testimonials blockquote {
  font-size: 1.2rem;
  line-height: 1.4;
  padding-top: 1.5rem;
  margin-bottom: 0.5rem;
}

/* open quote symbol */
q:before {
  content: open-quote;
  display: inline;
  height: 0;
  line-height: 0;
  left: -10px;
  position: relative;
  top: 1.5rem;
  color: #ccc;
  font-size: 3em;
}

/* end quote symbol */
q::after {
  content: close-quote;
  display: inline;
  height: 0;
  line-height: 0;
  left: 10px;
  position: relative;
  top: 1.5rem;
  color: #ccc;
  font-size: 3em;
}

/* person quoted */
.testimonials p {
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: right;
  font-size: 1em;
  font-style: italic;
}

/* ======
Color
====== */
.testimonials {
  background-color: #f4f4f4;
}

hr {
  opacity: 20%;
  width: 90%;
}

