.testimonial-slider {
  background-color: #e3f2fd;
  padding: 2rem 1.5rem;
}

.testimonial-slider__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonial-slider__header h2 {
  color: #3b414d;
  font-weight: 700;
  line-height: 1.4;
}

.testimonial-slider__header p {
  color: #3b414d;
  line-height: 2;
  margin-top: 0.75rem;
}

.testimonial-slider .testimonial {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 50px 0;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  height: 100%;
  width: 100%;
}

.testimonial-slider .testimonial-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 80px 40px 40px;
  text-align: center;
  width: min(100%, 720px);
}

.testimonial-slider .image {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 12px 30px rgba(12, 0, 46, 0.18);
  background-color: #e5e7eb;
}

.testimonial-slider .testimonial-card p {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  line-height: 1.9;
  margin: 0 0 20px;
}

.testimonial-slider .quote-icon {
  font-size: 28px;
  color: #4070f4;
  line-height: 1;
  display: inline-block;
  margin-bottom: 12px;
}

.testimonial-slider .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-slider .details .name {
  font-size: 17px;
  font-weight: 600;
  color: #333;
}

.testimonial-slider .details .job {
  font-size: 14px;
  font-weight: 400;
  color: #333;
}

.testimonial-slider .nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}

.testimonial-slider .nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.testimonial-slider .nav-btn::after,
.testimonial-slider .nav-btn::before {
  font-size: 20px;
  color: #fff;
}

.testimonial-slider .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}

.testimonial-slider .swiper-pagination-bullet-active {
  background-color: #4070f4;
}

@media screen and (max-width: 768px) {
  .testimonial-slider .testimonial-card {
    padding: 70px 24px 32px;
  }

  .testimonial-slider .image {
    height: 70px;
    width: 70px;
    top: -45px;
  }

  .testimonial-slider .nav-btn {
    display: none;
  }
}
