/* Juste pour le bouton 'Obtenir plus d'informations' tout en haut de la page */
.btn-info {
    transition: color 0.3s ease;
}

.btn-info:hover {
    color: white !important;
}

/* Pour le bouton 'Voir comment inscrire son enfant sur le portail amilia' */
.btn-inscription-enfant-portail {
    transition: color 0.3s ease;
}

.btn-inscription-enfant-portail:hover {
    color: #1B2A4A !important;
}

/* Les trois boutons de la section 'Camp de la relâche' */
.btn-fill-1::before {
  background: #49556e;
}

.btn-fill-2::before {
  background: #33a6ca;
}

.btn-fill-3::before {
  background: #adcb4c;
}

/* Bouton 'Voir comment inscrire son enfant' */
.btn-inscription-enfant {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-inscription-enfant::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: #1B2A4A;
    
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-inscription-enfant:hover {
    color: #1B2A4A !important;
}

.btn-inscription-enfant:hover::after {
    transform: scaleX(1);
}
