.testimonial-slider {
  width: 100%;
  transition: all .5s ease;
}
.testimonial-slider * {
  margin: 0;
  padding: 0;
}
.testimonial-slider__swiper-container {
  position: relative;
}
.testimonial-slider__container {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}
.testimonial-slider__title {
  margin-bottom: 50px;
  transition: all .5s ease;
}
.testimonial-slider__slide {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: auto !important;
  justify-content: space-between;
  transition: all .5s ease;
}
.testimonial-slider__slide-container {
  display: flex;
  flex-direction: column;  
  height: 100%;
}
.testimonial-slider__slide.swiper-slide-active, 
.testimonial-slider__slide.swiper-slide-prev,
.testimonial-slider__slide.swiper-slide-next,
.testimonial-slider__slide-header-title,
.testimonial-slider__slide-text * {
  transition: all .5s ease;
}
.testimonial-slider__slide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.testimonial-slider__slide-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 50px;
  margin-top: auto;
}
.testimonial-slider__slide-author-photo {
  line-height: 0;
  width: 80px;
  height: 80px;
}
.testimonial-slider__slide-author-photo > img {
  border-radius: 100%;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.testimonial-slider__slide-author-info {
  display: flex;
  flex-direction: column;
}
.testimonial-slider .swiper-button-next:after, 
.testimonial-slider .swiper-button-prev:after {
  all: unset;
}
.testimonial-slider__swiper-pagination {
  bottom: -60px !important;
}
.testimonial-slider__swiper-button-next {
  right: -50px !important;
  transition: all .5s ease;
}
.testimonial-slider__swiper-button-prev {
  left: -50px !important;
  transition: all .5s ease;
}

{# ---- Tablet Breakpoint ---- #}
@media (max-width: 992px) {
  .testimonial-slider__title {
    margin-bottom: 30px;
  }
}