#coreValues {
  display: flex;
}

#coreValues>div {
  flex: 1;
  align-items: flex-start;
}

#clientList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 20px;
}

#clientList img {
  flex: 1 1 auto;
  height: auto;
  max-width: 150px;
  object-fit: scale-down;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  box-sizing: border-box;
  color: #034638;
  font-size: 1.3rem;
}

#testimonials {
  background-color: whitesmoke;
}

.swiper-button-next,
.swiper-button-prev {
  color: #004539;
}

.testimonial-icon {
  padding: 15px;
}

@media only screen and (max-width: 876px) {
  #coreValues {
    flex-direction: column;
  }

  #coreValues>div {
    gap: 1rem;
  }
}

@media only screen and (max-width: 603px) {
  #clientList {
    gap: 0.5rem;
  }

  #clientList img {
    width: 25%;
    height: auto;
    object-fit: scale-down;
  }
}
