.flip-card {
  width: calc(50% - 32px);
  background-color: #f8f6f2;
  border-color: #f8f6f2;
  box-shadow: none;
  padding: 31px;
  margin-bottom: 32px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.cards-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3%;
}


.card__title {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: black !important;

}

.card__text {
  font-size: 16px;
  line-height: 24px;
  font-family: "Open Sans", sans-serif;

}

.section-title {
  font-weight: 600;
  color: black !important;
}

.section-title,
.section-subtitle {
  text-align: center;
  font-family: "Open Sans", sans-serif;
}

.testimonial-container {
  /* max-width: 80%; */
  margin: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 3% 0;
  padding: 3% 0;
}

.testimonial-slides {
  display: flex;
  overflow: hidden;
}

.testimonial-slide {
  /* flex: 0 0 33.33%; Set width to 33.33% for three visible testimonials */
  box-sizing: border-box;
  text-align: center;
  display: none;
  width: 30%;
  /* background-color: #f8f6f2; */
  border-color: #f8f6f2;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  padding: 2%;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.testimonial-slide p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

.review__text {
  margin-bottom: 10%;
}

.author {
  font-weight: 600;
  margin-top: 10%;

}

.workRole {
  color: grey;
  font-size: 12px !important;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Navigation buttons styles */
.prev,
.next {
  font-size: 20px;
  background-color: #FAFAFA;
  color: gray;
  border: none;
  padding: 10px;
  cursor: pointer;
}

/* Position the navigation buttons */
.prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.review-text-highlighted--green {
  background-color: rgba(183, 232, 216, .7);
}

.review-text-highlighted--purple {
  background-color: rgba(227, 220, 249, .8);
}

.review-text-highlighted--blue {
  background-color: rgba(199, 227, 250, .8);
}


@media only screen and (max-width: 600px) {

  .cards-list {
    display: flex;
    flex-direction: column;
  }

  .flip-card {
    width: 90%;
  }

  .testimonial-slide {
    flex: 0 0 100%;
    /* Set width to 100% for one visible testimonial on mobile */
  }
}