

.section-testimonials {
  background-color: var(--background-blue);
}

.section-testimonials .title {
  text-align: center;
  font-size: 2rem;
}

.hashtag {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 200;
  font-style: italic;
  text-align: center;
}

.testimonials-box {
  /* max-width: 500px; */
}

.testimonial {
  background-color: #012529;
  padding: 20px;
  margin: 20px;
  border-radius: 30px;
  max-width: 27rem;
}

.testimonial blockquote {
  text-align: center;
  margin: 10px 10px 20px 10px;
}

.testimonial figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial img {
  border-radius: 50%;
  object-fit: cover;
  width: 4rem;
  height: 4rem;
}

.testimonial div {
  display: flex;
  flex-direction: column;
  margin: 0px 0px 0px 5px;
}

.testimonial p {
  margin: 5px 0px 0px 0px;
  font-size: 0.8rem;
}

@media (min-width: 1200px) {
  .testimonials-box {
    display: flex;
  }
}