.insert-photo{
    background-color: #F5F5FA;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.laureat-img{
    margin: 0;
}
.laureat-img img{
    max-width: 100%;
}

.entreprise{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.entreprise__tile{
    width: 100%;
    background-color: #F5F5FA;
    padding: 1rem;
}
.entreprise__tile:nth-child(1){
    border-top: 9px solid #FF8200;
}
.entreprise__tile:nth-child(2){
    border-top: 9px solid #00DAFF;
}
.entreprise__tile:nth-child(3){
    border-top: 9px solid #3AACB4;
}
.entreprise__tile:nth-child(4){
    border-top: 9px solid #6B4997;
}
.entreprise__tile h3{
    display: flex;
    gap: .5rem;
    align-items: center;
    margin-top: 0!important;
}
.entreprise__tile h3 div{
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 100px;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.entreprise__tile__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .5rem;
    margin-top: .5rem;
}
.entreprise__tile__item figure{
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.entreprise__tile__item figure img{
    max-width: 100px;
    max-height: 100px;
}
.entreprise__tile__item p{
    margin-bottom: 0;
}
.entreprise__tile__liste{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.entreprise__tile__liste .entreprise__tile__item{
    position: relative;
    margin-top: calc(15px + .5rem);
}
.entreprise__tile__liste .entreprise__tile__item:nth-child(1){
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 10px;
}
.entreprise__tile__liste .entreprise__tile__item .special{
    position: absolute;
    background-color: white;
    padding: 2px 12px;
    border-radius: 100px;
    top: -15px;
    left: 0;
    font-size: 12px;
}

@media only screen and (min-width: 992px){
    .insert-photo{
        flex-direction: row;
    }
    .insert-photo img{
        max-width: 100px;
    }
    .entreprise{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .entreprise__tile{
        width: calc(50% - .5rem);
    }
    .entreprise__tile__item{
        flex-direction: row;
        text-align: left;
    }
    .entreprise__tile__item p{
        width: 50%;
    }
    .entreprise__tile__item figure{
        width: 50%;
    }
}
@media only screen and (min-width: 1400px){
    .entreprise__tile__item p{
        width: 100%;
    }
    .entreprise__tile__item figure{
        width: 200px;
    }
}