
.testimonials-block {
  position: relative;
  margin: 0px;
  padding: 0px 0px 0px 0px;
  background: var(--color--white);
}
.testimonials-block .section__shell {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: var(--width--section-padded);
  margin: 0 auto;
}
.testimonials-block .section__content {
  position: relative;
  margin: auto auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.testimonials-block .section__content .section-heading {
  max-width: calc(100%);
  width: 100%;
  text-align: center;
  font-family: var(--font-family);
  font-variation-settings: "slnt" 0, "wght" 600;
  font-size: 20px;
  line-height: 32px;
  color: var(--color--title);
  margin-bottom: 0.5rem;
}
.testimonials-block .section__content .section-heading:after{
  content: "";
  display: block;
  width: 65px;
  height: 2px;
  background: var(--color--secondary);
  margin: 0.5rem auto;
}
.testimonials-block .section__content .section-paragraph,
.testimonials-block .section__content .section-paragraph h2,
.testimonials-block .section__content .section-paragraph h3,
.testimonials-block .section__content .section-paragraph h4 {
  font-family: var(--font-family);
  font-variation-settings: "slnt" 0, "wght" 300;
  font-size: 26px;
  line-height: 38px;
  color: var(--color--primary);
  max-width: var(--width--section-padded);
  width: calc(100% - 2rem);
  text-transform: none;
  text-align: center;
}
.testimonials-block .section__content .section__name {
  color: var(--color--primary);
  text-transform: none;
  text-align: center;
  font-family: var(--font-family);
  font-variation-settings: "slnt" 0, "wght" 600;
  font-size: 15px;
  line-height: 28px;
  padding: 0px;
  margin: 0px !important;
}
.testimonials-block .section__content .section__widget {
  margin-top: 2rem;
}
.testimonials-block .section__content .section__widget p{
  margin-bottom: 0px !important;
}


/** Mobile Design Overrides **/
@media (max-width: 34.375em) {
  .testimonials-block .section__content .section-heading {
    font-size: 18px;
    line-height: 1.5;
  }
  .testimonials-block .section__content .section-heading:after{
    width: 40px;
  }
  .testimonials-block .section__content .section-paragraph,
  .testimonials-block .section__content .section-paragraph h2,
  .testimonials-block .section__content .section-paragraph h3,
  .testimonials-block .section__content .section-paragraph h4 {
    font-size: 20px;
    line-height: 1.5;
    width: calc(100% - 4rem);
  }
  .testimonials-block .section__content .section__name {
    font-size: 13px;
    line-height: 1.5;
  }
}