#recommendations {
  padding: 40px 20px;
  text-align: center;
  position: relative;
  margin-bottom: 180px;
}

#recoH2Div {
  display: flex;
  justify-content: center;
}

#recoH2Div h2 {
    font-family: 'Assistant', sans-serif;
    font-weight: 200;
    font-size: clamp(20px, 3vw, 26px);
    color: rgb(0, 27, 44);
    border-top: 1px solid rgb(197, 197, 197);
    border-bottom: 1px solid rgb(197, 197, 197);
    padding: 10px;
    width: 50%;
    text-align: center;
}

  @media (max-width: 1300px) {
   #recoH2Div h2 {
        width: 80%;
     }
  } 

#testimonials-section {
  max-width: 600px;
  /* padding-top: 20px; */
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 160px;
}

.testimonial {
  box-sizing: border-box;
  padding: 0px 40px;
  text-align: center;
  font-family: 'Assistant', sans-serif;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translateY(20px);
  position: absolute;
  width: 100%;
  /* top: 0; */
  left: 0;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  position: absolute;
}

.testimonial h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: rgb(0, 80, 130);
}

.testimonial p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  font-weight: 100;
  font-size: clamp(16px, 3vw, 22px);
  font-style: italic;
}

.name {
  color: rgb(142, 67, 21);
  font-weight: 200;
  font-size: clamp(14px, 3vw, 18px);
  font-style: italic;
}
