/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 13 2025 | 08:40:20 */
.texte-en-fond-defilant {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
	max-width:100%;
}

.texte-defilant {
  display: flex;
  width: 200%;
  animation: defilement-lineaire 20s linear infinite;
}

.texte-defilant span {
  display: inline-block;
  width: 100%;
  font-size: 250px;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  color: #ff6900;
	font-weight: bolder
}


@keyframes defilement-lineaire {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section-avec-fond > *:not(.texte-en-fond-defilant) {
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .texte-defilant {
    animation-duration: 10s; /* plus rapide que les 20s d'origine */
  }
	
	@media screen and (max-width: 768px) {
  .texte-defilant {
    animation-duration: 10s; /* plus rapide que les 20s d'origine */
  }

  .texte-defilant span {
    font-size: 120px; /* optionnel : réduit la taille pour s’adapter aux écrans */
  }
}

}

