/*============================================================================================
	Testimonial Area
==============================================================================================*/
.testimonial-area {
  background: #f7faff;
  overflow: hidden;
}
.single-testimonial {
  text-align: center;
  background: var(--white-color);
  box-shadow: 0px 2px 4px rgba(8, 32, 50, 0.12);
  border-radius: 16px;
  padding: 32px 24px;
  margin-top: 92px;
}
.testimonial-content i {
  font-size: 72px;
  color: var(--accent-color);
}
.testimonial-img {
  display: inline-block;
  margin-bottom: 20px;
  margin-top: -88px;
}
.testimonial-img img {
  width: 112px !important;
  height: 112px !important;
  max-width: 112px;
  max-height: 112px;
  object-fit: cover;
  border-radius: 100%;
  filter: drop-shadow(0px 24px 72px rgba(8, 32, 50, 0.12));
}
.testimonial-user-info {
  margin-top: 6px;
}
.testimonial-user-name {
  font-weight: 600;
  margin-bottom: 4px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.testimonial-user-designations {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  opacity: 0.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.testimonial-info-text {
  margin: 0;
  margin-top: 16px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.testimonial-slider .owl-stage-outer {
  overflow: visible;
}
.testimonial-slider .owl-item {
  opacity: 0;
  transition: opacity 500ms;
}
.testimonial-slider .owl-item.active {
  opacity: 1;
}

/* Slider Dot */
.testimonial-area .owl-dots {
  position: relative;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  line-height: 4px;
  margin-top: 32px;
}
.testimonial-area .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 0;
  margin-right: 6px;
  background: #f9d7db;
  display: block;
  border-radius: 100%;
  transition: all 0.4s ease;
}
.testimonial-area .owl-theme .owl-dots .owl-dot span:hover {
  background: var(--accent-color) !important;
}
.testimonial-area .owl-theme .owl-dots .owl-dot.active span {
  background: var(--accent-color) !important;
}

@media only screen and (max-width: 767px) {
  .testimonial-img img {
    width: 92px !important;
    height: 92px !important;
  }
  .testimonial-content i {
    font-size: 52px;
  }
  .testimonial-user-name {
    font-size: 18px;
  }
  .testimonial-img {
    margin-bottom: 14px;
  }
}

/*============================================================================================
	End Testimonial Area
==============================================================================================*/
