* {
  margin: 0;
  padding: 0;
}

.testimonials-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem 0rem;
  text-align: center;
}

.review-rows {
  width: 90%;
  display: flex;
  gap: 2rem 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media only screen and (max-width: 700px) {
  /* For mobile phones: */
  .review-rows {
    flex-direction: column;
    align-items: center;
  }
}

.review {
  background-color: white;
  color: black;
  padding: 1rem 1rem;
  width: 42%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  font-size: large;
}

@media only screen and (max-width: 700px) {
  /* For mobile phones: */
  .review {
    width: inherit;
    height: min-content;
  }
}

.review-info {
  /* color: gray; */
  font-size: medium;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-stars {
  display: flex;
  align-items: center;
}

.review-stars img {
  width: 1.5rem;
  height: 1.5rem;
}

.review-quote {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 12;
  /* text-align: left; */
  text-align: left;
  letter-spacing: 0.05rem;
  line-height: 1.4rem;
  font-size: small;
}

.review-sign {
  text-align: start;
  font-style: italic;
  font-family: 'Times New Roman', Times, serif;
}

.review-buttons {
  width: 75%;
  display: flex;
  gap: 2rem;
}

.review-buttons button {
  background-color: #cc0000;
  color: white;
  padding: 1rem 1rem;
  width: 50%;
  font-size: large;
  font-weight: normal;
  border: none;
  cursor: pointer;
}

.review-buttons button:hover {
  background-color: #b80000;
}