div:has(>.testimonials) { position: static; }

#testimonials > div {
  -webkit-transition: all 800ms ease-out 0s;
  -moz-transition: all 800ms ease-out 0s;
  -o-transition: all 800ms ease-out 0s;
  transition: all 800ms ease-out 0s;
}

#testimonials > div > div { overflow: hidden; } /* Auto Height */

.testimonial-wrapper {
  width: calc(85% - 80px);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

  /* Testimonial image */
  .testimonial-image { margin-top: 40px; }

  .testimonial-image > img {
    display: block;
    width: 125px;
    height: 125px;
    border: 5px solid white;
    border-radius: 100%;
    margin: 0 auto;

    -webkit-box-shadow: 1px 1px 5px 0px #4B5564;
    -moz-box-shadow: 1px 1px 5px 0px #4B5564;
    -ms-box-shadow: 1px 1px 5px 0px #4B5564;
    -o-box-shadow: 1px 1px 5px 0px #4B5564;
    box-shadow: 1px 1px 5px 0px #4B5564;
  }

  .testimonial-image figcaption,
  .testimonial-image figcaption > strong { line-height: 1.4; }

  .testimonial-image figcaption {
    font-family: CeraPRO-Condensed;
    font-size: 1.2rem;
  }

  .testimonial-image figcaption > strong {
    font-family: CeraPRO-Condensed;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .75pt;
  }

  /* Testimonial quote */
  .testimonial-quote {
    position: relative;
    padding: 30px;
    text-align: center;
    background-color: white;
  }

  .testimonial-quote:after {
    content: ' ';

    position: absolute;
    bottom: -15px;
    right: 0;
    left: 0;

    display: block;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-top: 15px solid white;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
  }

  .testimonial-quote > blockquote {
    font-size: .9rem;
    font-style: italic;
    color: #4B5564!important;
  }

  @media screen and (max-width: 699px) {   .testimonial-quote > blockquote { font-size: .9rem; } }

  /* Testimonial links */
  .testimonial-website,
  .testimonial-reference {
    display: inline-block;
    padding: 6px 10px 5px;
    border-radius: 5px;
    margin-top: 15px;

    font-family: CeraPRO-Condensed;
    font-weight: 500;
    line-height: 1;

    background-color: #00444C;
  }

  .testimonial-reference { margin-left: 5px; }

  .testimonial-website:hover,
  .testimonial-reference:hover { background-color: #00AABE; }

  /* Testimonials controls */
  .testimonials-controls {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;

    z-index: 99;

    width: 85%;
    max-width: 1150px;
    margin: 0 auto;

    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .testimonials-controls > button { position: absolute; }
  .testimonials-controls > .testimonials-prev { left: 0; }
  .testimonials-controls > .testimonials-next { right: 0; }

  .testimonials-controls svg {
    display: block;
    width: 15px;
  }

  .testimonials-controls svg * { fill: white; }

  .testimonials-controls > button:hover > svg { opacity: .5; }
