.testimonial-cards-container{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.testimonial-cards-card{
  border-radius: 33px;
  box-shadow: 0px 3.861px 3.861px 0px rgba(0, 0, 0, 0.25);
  padding: 30px;
  background-color: #fff;
  width: 20%; {# Aqui se edita el ancho de las cards, 20px para 4 cards, 30px para 3 #}
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-cards-card-text p{
  font-size: 17px;
  color: #000;
  font-weight: 400;
}

.testimonial-cards-card-name p{
  color: #1D428A;
  font-size: 20px;
  font-weight: 700;
}
.testimonial-cards-see-more {
  width: 100%;
  text-align: center;
  padding-top: 30px;
  color: #1D428A;
  font-weight: 700;
  text-decoration: underline;
}
.testimonial-cards-see-more:hover {
  color: #FFC72C;
}
.testimonial-cards-card-image img {
    max-width: 120px;
}

@media (max-width:992px){
  .testimonial-cards-card{
    width: 100%
  }
}