/* 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-partner-list.has-bg-secondary-lightest-background-color {
  background-color: var(--wp--preset--color--bg-black);
}
.s-partner-list .l-container {
  padding-left: 0;
  padding-right: 0;
}
.s-partner-list__title {
  width: 43rem;
  margin-bottom: 5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  line-height: 1;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.s-partner-list__title {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-partner-list__title {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-partner-list__title {
    font-size: 3.5rem;
  }
}
.s-partner-list__list {
  --logo-max-width: 10rem;
  --logo-max-height: 3.5rem;
  --partner-columns: 6;
  container-type: inline-size;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .s-partner-list__list {
    --logo-max-width: 7.5rem;
    --logo-max-height: 2.5rem;
    --partner-columns: 3;
  }
}
.s-partner-list__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
@media screen and (max-width: 991px) {
  .s-partner-list__track {
    gap: 0.75rem;
  }
}
.s-partner-list__item {
  flex: 0 0 calc(100cqw / var(--partner-columns));
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.25rem;
}
.s-partner-list__item-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--logo-max-height);
}
.s-partner-list__item-icon {
  display: block;
  width: auto;
  height: auto;
  max-width: var(--logo-max-width);
  max-height: var(--logo-max-height);
  object-fit: contain;
}
@media (max-width: 767px) {
  .s-partner-list__list {
    --partner-columns: 3;
  }
}

@keyframes partner-list-scroll {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}