.hsf-quote-carousel .splide__pagination {
  gap: 16px;
}
.hsf-quote-carousel .splide__pagination__page {
  background-color: transparent;
  border: 2px solid #0063A6;
  width: 16px;
  height: 16px;
  padding: 0;
}
.hsf-quote-carousel .splide__pagination__page.is-active {
  background-color: #0063A6;
}
.hsf-quote-carousel .splide__arrow {
  background-color: transparent;
  width: 64px;
  height: 64px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  transition: all 0.3s ease-out;
}
.hsf-quote-carousel .splide__arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

.hsf-quote-carousel .splide__arrow:hover {
  background-color: #0063A6;

}
.hsf-quote-carousel .splide__arrow:hover svg {
  fill: #fff;
}
.hsf-quote-carousel .splide__arrow svg {
  fill: #0063A6;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-out;
}

.hsf-quote-carousel .splide__arrow--prev {
  order: 1;
}
.hsf-quote-carousel .splide__arrow--next {
  order: 0;
  position: absolute;
}
.hsf-quote-carousel .splide__arrow--next.moveleft {
  transform: translateX(-70px);
}
.hsf-quote-carousel .splide__arrow--next svg {
  transform: rotate(180deg);
}

@media (min-width: 812px) {
  .hsf-quote-carousel .splide__track::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
}
@media (min-width: 1025px) {
  .hsf-quote-carousel .splide__track {
    transform: translateX(96px);
  }
}
.hsf-quote-carousel .splide__arrows {
  display: flex;
  gap: 16px;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
  padding-left: 50px;
}