/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-slider-partner {
  background-color: var(--slider-partner-bg, var(--wp--preset--color--bg-gray-medium));
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .s-slider-partner .l-wrapper {
    padding: 0 !important;
  }
}
.s-slider-partner__inner {
  overflow: visible;
  padding: 1.25rem 0 0;
}
.s-slider-partner__title {
  margin: 0;
  color: var(--wp--preset--color--txt-gray-dark);
}
.s-slider-partner__title h2 {
  font-weight: 500;
  color: var(--wp--preset--color--txt-gray-dark);
  margin: 0;
}
.s-slider-partner__title h2 {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .s-slider-partner__title h2 {
    font-size: calc(24px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-slider-partner__title h2 {
    font-size: 1.5rem;
  }
}
.s-slider-partner__title h3 {
  font-weight: 500;
  color: var(--wp--preset--color--txt-gray-dark);
  margin: 0;
}
.s-slider-partner__title h3 {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .s-slider-partner__title h3 {
    font-size: calc(24px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-slider-partner__title h3 {
    font-size: 1.5rem;
  }
}
.s-slider-partner__title p {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 300;
  color: var(--wp--preset--color--txt-gray-dark);
  margin: 0;
}
.s-slider-partner__marquee {
  position: relative;
  margin-top: 1.25rem;
  overflow: hidden;
}
.s-slider-partner__marquee::before, .s-slider-partner__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 9.375rem;
  z-index: 2;
  pointer-events: none;
}
.s-slider-partner__marquee::before {
  left: 0;
  background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0) 100%);
}
.s-slider-partner__marquee::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 100%);
}
.s-slider-partner__track {
  display: flex;
  width: max-content;
  --slider-partner-distance: 50%;
  --slider-partner-duration: 40s;
  animation: slider-partner-scroll var(--slider-partner-duration) linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.s-slider-partner__list {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  margin: 0;
  padding: 1.25rem 1.875rem 2.5rem;
  list-style: none;
}
.s-slider-partner__item {
  width: 9.375rem;
  height: 6.25rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-slider-partner__item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(10);
  display: block;
}
@media screen and (max-width: 767px) {
  .s-slider-partner__inner {
    padding-top: 1rem;
  }
  .s-slider-partner__title {
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.025rem;
  }
  .s-slider-partner__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) and (min-width: 569px) {
  .s-slider-partner__title {
    font-size: calc(20px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 767px) and (min-width: 1440px) {
  .s-slider-partner__title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .s-slider-partner__marquee::before, .s-slider-partner__marquee::after {
    width: 5rem;
  }
  .s-slider-partner__list {
    gap: 3rem;
    padding: 1rem 1.25rem 2rem;
  }
  .s-slider-partner__item {
    width: 7.5rem;
    height: 5rem;
  }
}

@keyframes slider-partner-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--slider-partner-distance)), 0, 0);
  }
}