.number-container{
    border: solid;
    border-color: white;
    color: white;
    height: 100%;
    border-radius: 10px;
    padding: 15px;
}

.number-container h1{
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

@media (max-width: 768px) {


    .row {
        gap: 20px;
    }
}



.expert-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; /* assure que les colonnes ont la même hauteur */
}

.expert-col {
    display: flex;
    align-items: center; /* centre verticalement */
    justify-content: center; /* centre horizontalement */
}

.expert_cyber {
    max-width: 250px;
    width: 100%;
    height: auto;
}




.cyberdiag{
    text-align: center;
}





.raccoon_pro{
    width: 100%;
    border-radius: 5px;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.raccoon_pro:hover{
    transform: scale(1.1) translateY(-5px);
}


.margin_bottom{
    margin-bottom: 30px;
}


.rubrique2 p{
    color: white;
    text-align: justify;
}



.rubrique2 .card {
    background-color: rgb(0, 0, 0);
    border: 3px solid white;
    border-radius: 8px;
    margin: 10px;
    padding: 10px;
    height: 100%;
}




.stars span {
    color: #FFD700;
    font-size: 1.5em;
    margin: 0 2px;
}

.accordion-header button{
    font-family: Arial, Helvetica, sans-serif
}










.carousel-container {
    position: relative;
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-viewport {
    width: 100%;
    overflow: hidden;
}

.logos {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.logo-box {
    flex: 0 0 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 100px;
}

.logo-box img {
    max-width: 100%; /*100%*/
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(255, 255, 255, 0.2)); /* Ombre blanche */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.logo-box img:hover {
    transform: scale(1.3) translateY(-5px);
}




@media (max-width: 768px) {

    .logo-box img {
        max-width: 100%;
        max-height: 100%;
        text-align: center;
    }

}





