.phrases-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 180px;
  
}

.phrases-wrapper {
  display: inline-block;
  white-space: nowrap;
  animation: scroll 48s linear infinite; /* Durée doublée pour diviser la vitesse par 2 */
}

.phrase {
  display: inline-block;
  font-size: 90px;
  padding-right: 0px; /* Espacement entre les phrases */
  padding-left:50px;position:relative;line-height:180px;text-align:center;letter-spacing:-.5px;
 
}


.phrase::before {
 content:'';border-radius:100px;width:30px;height:30px;background:#e61f93;display:block;position:absolute;left:0;top:calc(50% - 15px);margin-left:10px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-12.5%); } /* Ajusté pour 3 phrases triplées */
}