:root {
  font-size: 62.5%;
}

.backend a {
  pointer-events: none !important;
}

.block-bandeau-defilant {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f9f5ef;
  padding: 10px 0;
}
.block-bandeau-defilant .band-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  flex-wrap: nowrap;
  gap: calc(clamp(16px, 14.7692307692px + 0.3846153846vw, 20px) * 2);
  animation-name: bandeau-defilant;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.block-bandeau-defilant .band-marquee__item {
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 4rem;
  font-family: "Syne", sans-serif;
  color: #ff3900;
}
.block-bandeau-defilant:hover .band-marquee__track {
  animation-play-state: paused;
}

@keyframes bandeau-defilant {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}
