.testimonials {
  display: flex;
  padding: 80px 0;
  color: #505050;
  background: #fff;
}

.testimonials > div {
  flex: 1;
  margin: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: top;
}

.testimonials > div img {
  width: 60%;
}

.testimonials > div p {
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 36px;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .testimonials > div {
    margin: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .testimonials {
    flex-direction: column;
  }

  .testimonials > div img {
    max-width: 200px;
  }

  .testimonials > div {
    margin: 40px;
  }
}
