.profil__section{
    background-color: #F8F8F8;
}

.profil__bg{
    background-color: #F8F8F8;
    position: relative;
    top: -150px;
}
.profil__banniere{
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.profil__banniere__fitre{
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(140, 124, 124, 0.2), #000000db);
}

.profil__section .profil__section__blockinfo{
    max-width: 1300px;
    margin: auto;
    background-color: white;
    position: relative;
    top: -140px;
    border-radius: 4px;
    padding: 30px 15px;

}
.profil__banniere__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profil__section__userinfo__image{
    height: 130px;
    width: 130px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}
.profil__section__userinfo{
    display: flex;
    gap: 20px;
}
.profil__section__userinfo h1{
    font-weight: 500;
}

.profil__section__button button{
    padding: 12px 20px;
    border-radius: 4px;
    border: none;
    outline: none;
    margin: 0 10px;
    font-size: 1.1em;
    margin-bottom: 10px;
    background-color: #65acff;
    color: #FFF;
}

.profil__user__service_info{
    margin-top: 20px;
}

.profil__user__service_info ul{
    display: flex;
    border-top: 1px solid #e1e1e1; 
}
.profil__user__service_info li{
    padding: 15px 30px;
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    color: #999;
    border-right: 1px solid #e1e1e1;
    font-size: 14px;
    align-items: center;
    gap: 10px;
}
.profil__user__service_info li:last-child{
    border: none;
}
.profil__user__service_info .nombre{
    font-size: 2em;
    color: #65acff;
}

@media screen and (max-width:1300px) {
    .profil__section .profil__section__blockinfo{
        max-width: 80%;
    }
    
}

@media screen and (max-width:868px) {
    .profil__section__userinfo{
        display: block;
        text-align: center;
    }
    .profil__section__userinfo__image{
        margin: auto;
    }

    .profil__banniere__header{
        display: block;
        text-align: center;
    }
    .profil__user__service_info ul{
        display: block;
        border-top: 1px solid #e1e1e1; 
    }
    .profil__user__service_info li{
        width: fit-content;
        border: none;
    }
  }