.testimonials-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .testimonials-grid {
    display: block;
  }
}
.testimonials-grid li {
  flex: 0 0 calc(50% - 40px);
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .testimonials-grid li {
    flex: unset;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
.testimonials-grid li:last-child {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .testimonials-grid li:last-child {
    margin-bottom: 0;
  }
}
.testimonials-grid li .testimonial {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 10px;
}
@media (max-width: 768px) {
  .testimonials-grid li .testimonial {
    max-height: unset;
    margin-bottom: 20px;
  }
}
.testimonials-grid li .testimonial::-webkit-scrollbar {
  width: 8px;
  background-color: rgba(var(--middleColorRGB), 0.1);
}
.testimonials-grid li .testimonial::-webkit-scrollbar-thumb {
  background-color: rgba(var(--middleColorRGB), 0.1);
  cursor: grab;
}
.testimonials-grid li .testimonial::-webkit-scrollbar-thumb:hover {
  background-color: rgba(var(--middleColorRGB), 0.3);
}
.testimonials-grid li .testimonial::-webkit-scrollbar-thumb:active {
  cursor: grabbing;
}
.testimonials-grid li .name {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  color: var(--highlightColor);
  font-weight: 600;
  margin-bottom: 0;
  text-transform: uppercase;
}
