.testimonial {
  font-size: 1.2rem;
  /* margin: 3rem 0; */
}

/* .testimonial__list {
  width: 50%;
  margin: auto;
} */
.testimonial:first-of-type {
  margin-top: 6rem;
}

.testimonial__image-container {
  width: 100%;
  max-width: 40rem;
  /* max-width: 700px;
  min-width: 400px;
  max-height: 400px;
  min-height: 200px; */
  /* display: inline-block; */
  /* vertical-align: middle; */
  box-shadow: 2px 2px 2px 2px #5e716d;
}

.testimonial__image {
  /* width: 100%; */
  /* height: 50%; */
  width: 100%;
  /* border-radius: 8px; */
  vertical-align: top;
}

.testimonial__info {
  text-align: right;
  padding: 0.5rem;
  /* display: inline-block; */
  /* vertical-align: middle; */
  /* width: 30%; */
}

#customer-2 .testimonial {
  text-align: right;
}

#customer-2 .testimonial__info {
  text-align: left;
}

.testimonial__name {
  margin: 0.2rem;
  color: #ff5454;
  font-size: 2rem;
}

.testimonial__subtitle {
  margin: 0;
  font-size: 1.1rem;
  color: #ccc;
}

.testimonial__subtitle a {
  color: inherit;
  text-decoration: none;
}

.testimonial__subtitle a:hover,
.testimonial__subtitle a:active {
  color: #7a7a7a;
}

.testimonial__text {
  margin: 0.2rem;
}

@media (min-width: 40rem) {
  .testimonial {
    max-width: 85%;
    margin: 3rem auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }

  .testimonial__image-container {
    /* display: inline-block;
    vertical-align: middle; */
    width: 56%;
  }

  .testimonial__image-container:hover {
    animation: rotator 2s ease-in-out;
  }

  .testimonial__info {
    /* display: inline-block;
    vertical-align: middle; */
    width: 40%;
  }
}

@keyframes rotator {
  0% {
    transform: rotateZ(0deg);
  }

  50% {
    transform: rotateZ(180deg);
  }

  100% {
    transform: rotateZ(360deg);
  }
}
