/* testimonials-section */
.testimonials-section {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.testimonials-section .section-header h2 {
  font-size: 36px;
  color: #00436e;
  margin-bottom: 10px;
}

.testimonials-section .section-header p {
  font-size: 16px;
  color: #666666;
  margin-bottom: 50px;
}

.testimonials-slider {
  position: relative;
  padding: 0 80px;
  margin-bottom: 50px;
}

.testimonials-slider .testimonial-item {
  padding: 15px;
}

.testimonials-slider .testimonial-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonials-slider .quote-icon-wrapper {
  margin-bottom: 20px;
  color: #d1dbde;
}

.testimonials-slider .testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #525c68;
  margin: 0;
  font-style: italic;
}

.testimonials-slider .slick-list {
  margin: 0 -15px;
}

.testimonials-slider .slick-track {
  display: flex !important;
}

.testimonials-slider .slick-slide {
  height: inherit !important;
}

.testimonials-slider .slick-prev,
.testimonials-slider .slick-next {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0;
  color: transparent;
}

.testimonials-slider .slick-prev {
  left: 10px;
}

.testimonials-slider .slick-next {
  right: 10px;
}

.testimonials-slider .slick-prev:before,
.testimonials-slider .slick-next:before {
  color: #333333;
  font-size: 20px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  opacity: 1;
}

.testimonials-slider .slick-prev:before {
  content: "\f104";
  /* fa-angle-left */
}

.testimonials-slider .slick-next:before {
  content: "\f105";
  /* fa-angle-right */
}

.testimonials-slider .slick-prev:hover,
.testimonials-slider .slick-next:hover,
.testimonials-slider .slick-prev:focus,
.testimonials-slider .slick-next:focus {
  background-color: #ffffff;
  color: transparent !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  outline: none;
}

.testimonials-slider .slick-dots {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.testimonials-slider .slick-dots li {
  width: auto;
  height: auto;
  margin: 0 5px;
  padding: 0;
}

.testimonials-slider .slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50px;
  background-color: #d1d9e6;
  padding: 0;
  border: none;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  color: transparent;
}

.testimonials-slider .slick-dots li button:focus {
  outline: none;
}

.testimonials-slider .slick-dots li button:before {
  display: none !important;
}

.testimonials-slider .slick-dots li.slick-active button {
  width: 30px;
  background-color: #1d4e56;
}

@media (max-width: 991px) {
  .testimonials-slider {
    padding: 0 60px;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-slider .testimonial-card {
    padding: 30px 20px;
  }
}

/* end testimonials-section */