/*=========================== Partelaire =====================*/

.section-partenaire{
    height: auto;
    width: 100%;
    max-width: 1200px;
    padding-bottom: 50px;
}
.section-partenaire > h2{
    font-family: 'Bebas Neue';
    font-size: 40px;
    margin: 40px 0px;
    text-align: center;
}

.slider-partenaire{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0px;
    position: relative;
}
.container-slider-partenaire{
    width: calc(100% - 70px);
    height: 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    
}
@keyframes animPartClose {
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
#buttonNext{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 40px;
    cursor: pointer;
    color: #DD412B;
}
#buttonPrev{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 40px;
    cursor: pointer;
    color: #DD412B;
}
#listePage{
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-around;
    width: 80px;
}
.pageNoUse{
    border: solid 5px #e9c5c0;
    height: 10px;
    width: 10px;
    border-radius: 50%;
}
.pageUse{
    border: solid 5px #e9c5c0;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #DD412B;
}



.container-slider-partenaire > a{
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
}
.container-slider-partenaire > a > img{
    width: 100%;
}

@media screen and (max-width: 1100px) {
    .section-partenaire{
        background-color: white;
        box-shadow: 0px 5px 10px silver;
        margin: 10px 0px;
    }
    .section-partenaire > h2{
        margin: 10px 0px;
    }
    .section-partenaire{
        width: 100%;
        height: auto;
    }

    .container-slider-partenaire{
        flex-wrap: wrap;
        height: auto;
        margin-bottom: 30px;
    }

    .container-slider-partenaire > a{
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
    }
    
}