/** Testimonial CSS **/

.testimonial-slider {
    background: #3c3c3b;
    border-radius: 8px;
    margin-bottom: 16px;
    min-height: 230px;
}
.testimonial-slide.show-slide{
    display: flex;
}

.testimonial-slide.hide-slide{
    display: none;
}

.testimonial-slide {
    display: grid;
    grid-template-columns: 100%;
    grid-template-areas: "testimonial-text";

}

.testimonial-slide .testimonial-content {
    min-height: 200px;
    width: 80%;
    background: url('../img/quote-red.png');
    background-repeat: no-repeat;
    background-size: 270px;
    background-position: 0 -40px;
    padding: 16px 16px 16px 96px;
    display: flex;
    justify-content: center;
    flex-direction: column;

    
}

.testimonial-content p {
    font-family: 'noto_seriflight_italic', Arial, sans-serif, -apple-system, system-ui, BlinkMacSystemFont;
     font-size: 20px;
    line-height: normal;
    color: #fff;
}


.testimonial-slide figcaption {
    flex-grow: 1;
    flex: 0 0 20%;
    display: flex;
    justify-content: center;
    align-items: right;
    flex-direction: column;
    font-size: 12px;
    text-align: center;
}

.testimonial-slide figcaption .citation-text {
    text-align: center;
    color: #fff;
    
}

.testimonial-slide figcaption .citation-text strong {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.citation-img img {
      border-radius: 50%;
      width: 120px;
      border: 2px solid #fff;
      margin: 0 auto;
}

.glow-testimonial-dots {
    
  text-align: center;
  padding-bottom: 16px;
}

  .dot {
    width: 14px;
    height: 14px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin: 0 5px;
    background: transparent;
    cursor: pointer;
    transition: background-color 500ms ease-in-out;
    display: inline-block;
  }

    .active-dot {
      background: #fff;
      border: 1px solid #fff;
    }
