body {
  background-color: #f9fafa;
}

.testimonial-container {
  padding-top: 50px;
}
.testimonial-container .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-container .testimonial-grid .testimonial-list {
  color: #666666;
}
.testimonial-container .testimonial-grid .testimonial-list h2 {
  color: #032157;
  font-size: 18px;
}
.testimonial-container .testimonial-grid .testimonial-list h4 {
  font-size: 16px;
  margin: 0 !important;
}
.testimonial-container .testimonial-grid .testimonial-list p {
  font-size: 16px !important;
  line-height: 20px !important;
  height: 60px !important;
  overflow-y: auto !important;
}
.testimonial-container .testimonial-grid .testimonial-list img {
  width: 55px;
  height: 55px;
  border: 1px solid #ccc;
  border-radius: 100%;
}

@media (max-width: 991px) {
  .testimonial-container {
    padding-top: 30px;
  }
  .testimonial-container .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-container .testimonial-grid .testimonial-list {
    color: #666666;
  }
  .testimonial-container .testimonial-grid .testimonial-list p {
    font-size: 16px !important;
    line-height: 20px !important;
    height: 60px !important;
    overflow-y: auto !important;
  }
}
@media (max-width: 768px) {
  .testimonial-container {
    padding-top: 20px;
  }
  .testimonial-container .testimonial-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
