.testimony-container {
  padding: 10px;
  display: flex;
  overflow: hidden;
}

.testimony-card {
  padding: 10px 35px;
  flex: 0 0 calc(100% / 3 - 70px);
}

@media only screen and (max-width: 767px) {
  .testimony-card {
    flex: 0 0 calc(100% / 1 - 70px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .testimony-card {
    flex: 0 0 calc(100% / 1 - 70px);
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1199px) {
  .testimony-card {
    flex: 0 0 calc(100% / 2 - 70px);
  }
}

.testimony-profile {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0px 0px 7px 0px rgb(38 43 41/25%);
}

.testimony-name {
  font-weight: 900;
  color: #000;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 0.6rem;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  color: #fdb900;
}