.logocontainer {
  position: relative;
  min-height: 147px;
}

.logo {
  display: block;
  max-width: 100%;
  margin-top: 10%;
}

@keyframes rotate-testimonials {
  from {
    opacity: 1;
    transform: scale(1);
    filter: none;
  }

  31% {
    opacity: 1;
    transform: scale(1);
    filter: none;
  }

  35% {
    opacity: 0;
    transform: scale(1.5);
    filter: blur(10px);
  }

  98% {
    opacity: 0;
    transform: scale(0.67);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: none;
  }
}

.testimonial-container {
  position: relative;
}

.testimonial {
  animation-name: rotate-testimonials;
  animation-duration: 24s;
  animation-iteration-count: infinite;
}

.testimonial {
  animation-delay: -16s;
}
.testimonial + .testimonial {
  animation-delay: -8s;
  position: absolute;
  top: 0;
}
.testimonial + .testimonial + .testimonial {
  animation-delay: 0s;
}

.testimonial-header {
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 0px;
  font-weight: 600;
  letter-spacing: -0.06em;
  font-family: 'Open Sans', sans-serif;
  color: #777;
}
.testimonial-subheader {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: -0.06em;
  font-family: 'Open Sans', sans-serif;
  color: #777;
}
