section .testimonials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
}

.testimonials-section {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}

@media (max-width: 768px) {
  section .testimonials {
    text-align: center;
    flex-direction: column;
  }

  section .testimonials img {
    margin-bottom: 10px;
  }
}

section .testimonials h2 {
  font-weight: 500;
  font-size: 24px;
  color: #249e6b;
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
}

section .testimonials p {
  color: #000000;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.1rem;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  section .testimonials p {
    padding: 0;
  }
}

section .testimonials .product-sku {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
  margin-bottom:0;
}

section .testimonials .product-sku .star-group {
  display: flex;
  align-items: center;
  gap: 5px;
}

section .testimonials .product-sku .star-group img {
  width: 18px;
  height: auto;
  display: block;
}

section .testimonials .product-sku .star-text {
  font-size: 13px;
  color: #000;
  margin: 0;
  padding-left: 10px;
  font-weight: 400;
  width: auto;
  letter-spacing: normal;
  line-height: normal;
}


.brands {
  background-color: #F1F2F2;
  padding: 32px 0;
  background-image: linear-gradient(#E0E0E0 1px, transparent 1px), linear-gradient(90deg, #E0E0E0 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: -1px -1px;
  background-repeat: repeat;
  border-bottom: 1px solid #000;
}

@media (min-width: 320px) {
  .brands {
    width: 100%;
  }
}

.brands .brands-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

@media (max-width: 991px) {
  .brands .brands-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

.brands .brands-wrapper .brands-label {
  font-weight: 500;
  font-size: 26px;
  color: #000;
  /*white-space: nowrap;*/
  margin-right: 40px;
  flex-shrink: 0;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .brands .brands-wrapper .brands-label {
    margin-right: 0;
  }
  .brands .brands-wrapper .brands-label br {
    display:none;
  }
}


.brands .brands-wrapper .brands-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Center vertically */
  gap: 20px;
  flex-grow: 1;
  width: 100%;
  min-width: 0;
}

.brands .brands-wrapper .brands-logos>.slide {
  display: flex;
}

.brands .brands-wrapper .brands-logos>.slide:nth-child(n+6) {
  display: none;
}

@media (max-width: 768px) {
  .brands .brands-wrapper .brands-label {
    font-size: 22px;
  }
  .brands .brands-wrapper .brands-logos>.slide:nth-child(n+4) {
    display: none;
  }
}

.brands .brands-wrapper .brands-logos .slick-slide {
  display: flex;
}

.brands .brands-wrapper .brands-logos .slick-track {
  display: flex;
  align-items: center;
}

.brands .brands-wrapper .brands-logos .slick-list {
  width: 100%;
}

.brands .brands-wrapper .brands-logos .slick-slide {
  padding: 0 15px;
}

.brands .brands-wrapper .brands-logos .slick-slide img {
  margin: auto;
  width: auto;
  max-width: 100%;
  max-height: 80px;
  /*filter: grayscale(100%);*/
}

@media (max-width: 768px) {
  .brands .brands-wrapper .brands-logos .slick-slide img {
    max-width: 100px;
  }
}