/* Debut section card  */

/* Styles pour la section titre */
.text-primary-serv {
    color: var(--color-gray); /* Couleur bleue Bootstrap, adaptez selon votre thème */
}
.color-serv {
    background-color: var(--color-success); /* Couleur bleue Bootstrap, adaptez selon votre thème */
}
.max-w-3xl {
    max-width: 48rem; /* 768px */
}

.lead {
    font-size: 1.15rem;
    font-weight: 300;
    color: #4a5568;
}

/* Animation pour le divider */
.divider {
    height: 3px;
    width: 180px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.divider:hover {
    opacity: 1 !important;
    width: 200px !important;
}

.display-5 {
    font-size: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .display-5 {
        font-size: 1.6rem;
    }

    .lead {
        font-size: 1.1rem;
    }
}

/* Fin section card  */
