/* Style des couleurs et hexagones */
.text-orange {
    color: #f57c00;
}

.text-yellow {
    color: #fbc02d;
}

.hexagon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

.hexagon {
    /* width: 120px;
    height: 70px; */
    background-color: #f57c00;
    position: relative;
    margin: 20px 0;

    display: flex;
    justify-content: center;
        /* Centre horizontalement */
    align-items: center;
        /* Centre verticalement */
    height: 50px;
        /* Ajuste la hauteur du conteneur si nécessaire */
    width: 50px;
        /* Ajuste la largeur du conteneur si nécessaire */
}

.hexagon:before,
.hexagon:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
}

.hexagon:before {
    bottom: 100%;
    border-bottom: 25px solid #f57c00;
}

.hexagon:after {
    top: 100%;
    width: 0;
    border-top: 25px solid #f57c00;
}

.hexagon.orange {
    background-color: #f57c00;
}

.hexagon.light-orange {
    background-color: #fbc02d;
}

.hexagon.brown {
    background-color: #8d6e63;
}

.hexagon.yellow {
    background-color: #fdd835;
}

/* Icônes à intégrer (ajouter les classes d'icônes selon les besoins) */
.icon-expert::before {
    content: "\f0c0";
    /* Exemple d'icône */
    font-family: FontAwesome;
    font-size: 2rem;
}

.icon-strategy::before {
    content: "\f0eb";
    /* Exemple d'icône */
    font-family: FontAwesome;
}

.icon-interactive::before {
    content: "\f2d0";
    /* Exemple d'icône */
    font-family: FontAwesome;
}

.icon-formation::before {
    content: "\f19d";
    /* Exemple d'icône */
    font-family: FontAwesome;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 0px;
    font-size: 18px;
}

/* code CSS caroussel */

/* Spécifique au carrousel avec l'ID logoCarousel */
#logoCarousel .carousel-item img {
    max-width: 150px;
    /* Ajuste la taille maximale des logos */
    max-height: 100px;
    /* Ajuste la hauteur maximale des logos */
}

#logoCarousel .carousel-inner {
    text-align: center;
    padding: 20px 0;
}

#logoCarousel .carousel-control-prev-icon,
#logoCarousel .carousel-control-next-icon {
    background-color: black;
    /* Si tu veux des contrôles visibles */
    border-radius: 50%;
}

/* code CSS pour le background */

.bg-section {
    background: repeating-linear-gradient(45deg,
                #FF9500,
                /* Couleur orange du logo */
                #FF9500 10px,
                #FFFFFF 10px,
                #FFFFFF 20px,
                #000000 20px,
                #000000 30px);
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
}


/* LOADING CSS */

/* Animation du spinner et masquage après chargement */
#loading-screen {
    transition: opacity 0.5s ease-out;
}
