.testimonial__slider {
    height: auto;
    overflow: hidden;
    position: relative;
}
.testimonial__track {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: scroll-vertical 8s linear infinite;
}
.testimonial__slider .testimonial__track.bottom {
  animation-direction: reverse;
}
.testimonial__slider .testimonial__track.hover_on:hover {
  animation-play-state: paused;
}
.testimonial__item__content{
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px 0 rgb(104 55 255 / 10%);
}
.testimonial__item__content .quote_icon {
    margin-bottom: 20px;
}
.testimonial__item__content .slider__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #484848;
  margin-bottom: 35px;
  margin-top: 10px;
}
.testimonial__item__content .slider__author__info {
    gap: 10px;
}
.testimonial__item__content .author__icon img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  border: 5px solid #f1f1f1;
}
.testimonial__item__content .slider__author__info__content h6 {
  font-size: 16px;
  font-weight: 600;
  color: #050D20;
}
.testimonial__item__content .slider__author__info__content span {
  color: #484848;
}
.testimonial__item__content .slider__rating .star-rating {
  display: flex;
  gap: 10px;
}
.testimonial__item__content .slider__rating i {
  font-size: 25px;
  color: var(--e-global-color-secondary);
}
.testimonial__slider .star {
  position: relative;
  color: var(--e-global-color-primary);
  display: inline-block;
  font-family: "rt-icons";
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  height: 18px;
  line-height: 27px;
  text-align: center;
  text-decoration: inherit;
  vertical-align: top;
  width: 18px;
}
.testimonial__slider .star.star-full:before {
  content: "\e821";
  position: absolute;
  left: 0;
  top: 0;
}
.testimonial__slider .star.star-half:before {
  content: "\e82a";
  position: absolute;
  left: 0;
  top: 0;
}

/* Infinite vertical scroll keyframes */
@keyframes scroll-vertical {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* move one set of slides */
}


