/******************************************
Section | Testimonial Grid
******************************************/
/**************************************************
Stylesheet: Defaults Stylesheet
**************************************************/
/**************************************************
Stylesheet: Mixins Stylesheet
**************************************************/
/*******************
FONT MIXINS (size, color, weight, line-height)
********************/
/*********************
Column split into X columns
@include column-count(3);
*********************/
/*********************
Column split with px gap
@include column-gap(40px);
*********************/
/*********************
Column split style
@include column-rule-style(solid);
*********************/
/*********************
Column split border
@include column-rule(1px solid #ededed);
*********************/
/*********************
Background gradient 2 color
@include background-gradient($gray, #000);
*********************/
/*********************
Background gradient 3 color
@include accordion-gradient($gray, #000, #666);
*********************/
/*********************
Transform duration by X seconds
@include transition(1.5s);
*********************/
/*********************
Transform Rotate element by x degrees
@include rotate(180);
*********************/
/*********************
Creates a 6px arrow with pure css
@include arrow(#000);
*********************/
/*********************
Clip 10px corner off the bottom right corner
@include cornerclip(#000);
*********************/
/*********************
Clip 3px corner off the bottom right corner
@include cornerclipsmall(#000);
*********************/
/*********************
Clip 10px corner off the top right corner
@include cornercliptop(#000);
*********************/
/*********************
Clip 10px corner off the top left corner
@include cornercliptopleft(#000);
*********************/
.testimonial-grid {
  background: #033266;
}
.testimonial-grid .inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 84px 30px 74px;
}
.testimonial-grid .section-eyebrow {
  margin: 0 0 22px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(240, 222, 0, 0.35);
  background: rgba(240, 222, 0, 0.1);
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #f0de00;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.testimonial-grid h2 {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 54px;
  color: #ffffff;
  font-weight: 800;
  line-height: 0.98em;
  margin: 0 0 26px;
  max-width: 880px;
}
.testimonial-grid .section-intro {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 24px;
  color: rgba(225, 234, 247, 0.8);
  font-weight: 500;
  line-height: 1.45em;
  margin: 0 0 42px;
  max-width: 980px;
}
.testimonial-grid .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.testimonial-grid .testimonial-card {
  background: #eceef2;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
}
.testimonial-grid .card-image {
  overflow: hidden;
  margin-bottom: 18px;
  background: #d6d8df;
}
.testimonial-grid .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-grid .quote {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 18px;
  color: #33435c;
  font-weight: 500;
  line-height: 1.55em;
  margin: 0 0 20px;
  font-style: italic;
}
.testimonial-grid .name {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 20px;
  color: #0f1e35;
  font-weight: 700;
  line-height: 1.2em;
  margin: auto 0 6px;
}
.testimonial-grid .role {
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #5a6b86;
  font-weight: 600;
  line-height: 1.3em;
  margin: 0;
}
@media only screen and (max-width: 1100px) {
  .testimonial-grid h2 {
    font-size: 56px;
  }
  .testimonial-grid .section-intro {
    font-size: 28px;
  }
  .testimonial-grid .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonial-grid .name {
    font-size: 28px;
  }
  .testimonial-grid .role {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-grid .inner {
    padding: 58px 20px;
  }
  .testimonial-grid .section-eyebrow {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .testimonial-grid h2 {
    font-size: 40px;
    margin-bottom: 16px;
  }
  .testimonial-grid .section-intro {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .testimonial-grid .cards-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 25px 50px;
  }
  .testimonial-grid .testimonial-card {
    padding: 14px;
  }
  .testimonial-grid .quote {
    font-size: 18px;
    margin-bottom: 14px;
  }
  .testimonial-grid .name {
    font-size: 24px;
  }
  .testimonial-grid .role {
    font-size: 18px;
  }
}
