/*================ Personalité =================*/

.section-personalite{
    height: 500px;
    width: 100%;
    max-width: 1200px;
    display: flex;
    border-bottom: solid 2px black;
}
.personalite-text{
    width: 700px;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.personalite-text > h2{
    font-family: 'Bebas Neue';
    font-size: 40px;
    margin-bottom: 40px;
}
.personalite-text > p{
    font-size: 20px;

}
.personalite-img{
    width: 500px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
.personalite-img > a{
    height: 200px;
    width: 180px;
    display: block;
    margin: 10px;
    overflow: hidden;
}
.personalite-img > a > img{
    height: 200px;
    width: 180px;
    object-fit: cover;
    transition: 0.3s;
    
}
.personalite-img > a:hover > img{
    transform: scale(1.1);
}
#button-personalite-mobile{
    display: none;
}

@media screen and (max-width: 1100px) {
    .section-personalite{
        height: auto !important;
        width: 100%;
        flex-direction: column;
        background-color: white;
        box-shadow: 0px 5px 10px silver;
        margin: 10px 0px;
        border-bottom: none;
    }
    .personalite-text{
        width: 100%;
        height: auto;
    }
    .personalite-text > h2{
        font-family: 'Bebas Neue';
        font-size: 40px;
        margin-bottom: 20px;
        text-align: center;
    }
    .personalite-text > p{
        display: none;
    }
    .personalite-img{
        width: 100%;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
    }
    .personalite-img > a{
        height: 80px;
        width: 80px;
        display: block;
        margin: 10px;
        overflow: hidden;
    }
    .personalite-img > a > img{
        height: 80px;
        width: 80px;
        object-fit: cover;
        transition: 0.3s;
        border-radius: 50px;
        
    }
    .button-all-celebrite{
        display: none !important;
    }
    #button-personalite-mobile{
        text-decoration: none;
        background-color: #DD412B;
        color: white;
        width: 300px !important;
        height: auto !important;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        text-align: center;
        padding: 10px 0px;
        border-radius: 3px;
    }
}