.testimonials-match {
  background: #f7fbff;
  padding: 28px 0 38px;
}

.testimonials-match .container {
  width: min(1180px, calc(100% - 44px));
  max-width: 1180px;
}

.testimonials-heading {
  text-align: center;
  margin-bottom: 32px;
}

.quote-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #e5aa1b;
  margin-bottom: 6px;
}

.quote-mark span {
  width: 58px;
  border-top: 2px solid #e5aa1b;
}

.quote-mark i {
  width: 48px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid #e5aa1b;
  border-radius: 6px;
  font-size: 25px;
}

.testimonials-heading h2 {
  font-family: var(--serif);
  color: #071b5b;
  font-size: 58px;
  line-height: 1.05;
  letter-spacing: 4px;
  margin: 0 0 8px;
  font-weight: 900;
}

.testimonial-shield {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #e5aa1b;
  margin-bottom: 16px;
}

.testimonial-shield span {
  width: 40px;
  border-top: 1px solid #e5aa1b;
}

.testimonial-shield i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #052f7f;
  color: #e5aa1b;
  font-size: 13px;
}

.testimonials-heading p {
  margin: 0 auto;
  color: #17233d;
  font-size: 17px;
  line-height: 1.5;
  max-width: 760px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e2eaf4;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(6, 47, 104, .09);
  padding: 28px 22px 24px;
}

.testimonial-top {
  position: relative;
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 26px;
  align-items: start;
  min-height: 152px;
}

.testimonial-top img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 12px #eef2f7;
}

.testimonial-top p {
  margin: 15px 24px 0 0;
  color: #111b31;
  font-size: 15px;
  line-height: 1.55;
}

.testimonial-top > i {
  position: absolute;
  top: -12px;
  right: 8px;
  color: #e5aa1b;
  font-size: 28px;
}

.testimonial-stars {
  margin: 8px 0 20px 142px;
  color: #eba812;
  font-size: 18px;
  letter-spacing: 3px;
  line-height: 1;
}

.testimonial-person {
  border-top: 1px solid #dfe6f0;
  padding-top: 17px;
}

.testimonial-person b {
  display: block;
  color: #071b5b;
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.testimonial-person span {
  color: #17233d;
  font-size: 14px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 16px 0 22px;
}

.testimonial-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #cbdbe9;
}

.testimonial-dots span:first-child {
  background: #052f7f;
}

.testimonial-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #d9e4ef;
  border-radius: 10px;
  background: rgba(255, 255, 255, .62);
  padding: 22px 26px;
}

.testimonial-stats div {
  display: grid;
  grid-template-columns: 86px 1fr;
  column-gap: 20px;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid #d4dfeb;
}

.testimonial-stats div:last-child {
  border-right: 0;
}

.testimonial-stats i {
  grid-row: 1 / 4;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #eaf3ff;
  border: 1px solid #d4dfeb;
  color: #052f7f;
  font-size: 30px;
}

.testimonial-stats b {
  color: #052f7f;
  font-size: 34px;
  line-height: 1;
}

.testimonial-stats strong {
  color: #071b5b;
  font-size: 15px;
  line-height: 1.2;
}

.testimonial-stats span {
  color: #17233d;
  font-size: 13px;
  line-height: 1.35;
}

.testimonial-cta {
  min-height: 86px;
  margin-top: 18px;
  border-radius: 10px;
  background: #052f7f;
  color: #fff;
  display: grid;
  grid-template-columns: 82px 1px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 14px 64px;
}

.testimonial-cta img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.testimonial-cta > span {
  height: 50px;
  border-left: 1px solid rgba(255, 255, 255, .45);
}

.testimonial-cta p {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.testimonial-cta a {
  min-width: 220px;
  min-height: 48px;
  border-radius: 7px;
  background: #eba812;
  color: #071b5b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 900;
  font-size: 17px;
}

@media (max-width: 1050px) {
  .testimonial-cards,
  .testimonial-stats {
    grid-template-columns: 1fr;
  }

  .testimonial-stats div {
    border-right: 0;
    border-bottom: 1px solid #d4dfeb;
    padding: 18px 0;
  }

  .testimonial-stats div:last-child {
    border-bottom: 0;
  }

  .testimonial-cta {
    grid-template-columns: 70px 1fr;
    padding: 20px 28px;
  }

  .testimonial-cta > span {
    display: none;
  }

  .testimonial-cta a {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .testimonials-heading h2 {
    font-size: 34px;
    letter-spacing: 1px;
  }

  .testimonial-top {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-stars {
    margin-left: 0;
  }

  .testimonial-stats div {
    grid-template-columns: 70px 1fr;
  }

  .testimonial-cta {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}
