.section-brands {
    background-color: var(--color-white);
}

.brands-title {
    text-align: center;
    padding: var(--pms-20);
    font-size: 25px;
    font-weight: bold;
}

.own-color {
    color: var(--color-primary);
}

.brand-logos {
    justify-content: space-evenly;
}

/*.custom-shape-brand {*/
/*    background-color: var(--color-white);*/
/*    padding: 2px;*/
/*    box-shadow: 0 0 50px 0 rgba(48, 47, 47, 0.17);*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*}*/

/*.custom-shape-brand img {*/
/*    max-height: 100%;*/
/*    object-fit: contain;*/
/*    display: block;*/
/*}*/

/*.shape-color-w,*/
/*.shape-color-w::before,*/
/*.shape-color-w::after {*/
/*    background-color: var(--color-white);*/
/*}*/

/*.shape-color-y,*/
/*.shape-color-y::before,*/
/*.shape-color-y::after,*/
/*.shape-color-y-two,*/
/*.shape-color-y-two::before,*/
/*.shape-color-y-two::after {*/
/*    background-color: var(--color-yellow-light);*/
/*}*/

/*.shape-color-b,*/
/*.shape-color-b::before,*/
/*.shape-color-b::after {*/
/*    background-color: var(--color-yellow-bright);*/
/*}*/


/*!*SCREEN SIZE*!*/
/*@media (max-width: 768px) {*/
/*    .custom-shape-brand img {*/
/*        margin: var(--horizontal-center);*/
/*        max-width: 50%;*/
/*    }*/

/*    .custom-shape-brand {*/
/*        margin-bottom: var(--pms-20);*/
/*    }*/
/*}*/

/*@media (min-width: 768px) and (max-width: 992px) {*/
/*    .custom-shape-brand {*/
/*        margin-bottom: var(--pms-20);*/
/*    }*/

/*    .custom-shape-brand img {*/
/*        max-width: 50%;*/
/*        margin: var(--horizontal-center);*/
/*    }*/
/*}*/

/*@media (min-width: 992px) {*/
/*    .custom-shape-brand img {*/
/*        max-width: var(--full-width);*/
/*    }*/

/*    .custom-shape-brand {*/
/*        margin-bottom: 50px;*/
/*    }*/
/*}*/



.custom-shape-brand {
    background-color: var(--color-white); /* Fond blanc */
    padding: 10px; /* Espace interne */
    border-radius: 8px; /* Coins arrondis */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre douce */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Espacement entre les éléments */
    transition: transform 0.2s ease-in-out; /* Animation légère au survol */
}

.custom-shape-brand:hover {
    transform: scale(1.05); /* Agrandissement léger au survol */
}

.custom-shape-brand img {
    max-height: 70px; /* Limite la hauteur de l'image */
    object-fit: contain; /* Ajuste l'image sans la déformer */
    display: block;
}

/* Couleurs pour chaque catégorie */
.shape-color-w {
    background-color: var(--color-white);
}

.shape-color-y {
    /*background-color: var(--color-yellow-light);*/
}

.shape-color-b {
    background-color: var(--color-yellow-bright);
}
.shape-color-e {
    background-color: #002D88;
}

/*SCREEN SIZE*/
@media (max-width: 768px) {
    .custom-shape-brand img {
        margin: var(--horizontal-center);
        max-width: 50%;
    }

    .custom-shape-brand {
        margin-bottom: var(--pms-20);
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .custom-shape-brand {
        margin-bottom: var(--pms-20);
    }

    .custom-shape-brand img {
        max-width: 50%;
        margin: var(--horizontal-center);
    }
}

@media (min-width: 992px) {
    .custom-shape-brand img {
        max-width: var(--full-width);
    }

    .custom-shape-brand {
        margin-bottom: 50px;
    }
}



