/* === Remplacer visuellement "Prestataire" par "Entreprises" === */

/* Cacher le texte original */
.steps li:nth-child(3) * {
    visibility: hidden !important;
}

/* Réécrire le texte */
.steps li:nth-child(3)::after {
    content: "Entreprises";
    visibility: visible;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: inherit;
    white-space: nowrap;
}