.testimonial--light {
  padding: 100px 25px;
}

.testimonial-title {
  font-size: 66px;
  margin-bottom: 100px;
  font-weight: 700;
  margin-top: 50px;
}

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

.testimonial-card {
  position: relative;
  padding-left: 40px;
}

.testimonial-quote {
  position: absolute;
  top: -100px;
  left: 0px;
  font-family: "Arial Black", sans-serif;
  font-size: 350px;
  color: #eee;
  line-height: 1;
  z-index: -1;
}

.testimonial-name {
  font-size: 40px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 18px;
}

.is-hidden {
  display: none;
}

.testimonial-button-wapper {
  display: flex;
  justify-content: right;
}

.testimonial-btn {
  margin-top: 60px;
  background: #000;
  color: #fff !important;
  border: 2px solid #000;
  border-radius: 99px;
  padding: 12px 36px !important;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  margin-left: auto;
}

.testimonial-btn:hover {
  background: transparent;
  color: #000000 !important;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-title {
    font-size: 42px;
  }

  .testimonial-name {
    font-size: 28px;
  }
}