/*-----------------------------------*\
  #testimonials.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */

/*-----------------------------------*\
  #TESTIMONIALS
\*-----------------------------------*/

.testimonials {
  background-color: var(--black);
  color: var(--white);
}

.testimonials .section-title {
  margin-block-end: 40px;
}

.testimonials .section-text {
  margin-block-end: 60px;
}

.testi-card {
  text-align: center;
  padding: 40px 20px;
}

.testi-text {
  font-size: 54px;
  color: #fff;
  padding-bottom: 0px;
  font-weight: 200;
  margin-block-end: 30px;
}

.testi-name {
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 10px;
}

.testi-title {
  color: var(--quick-silver);
  font-size: var(--fontSize-label-1);
}

.testi-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-circle);
  margin-inline: auto;
  margin-block-end: 20px;
  border: 3px solid var(--gold-crayola);
}

