/* Liens */
.link {
  display: inline-block;
  color: #283B71;
  font-weight: 400;
  //border-bottom: 1px solid #283B71;
}

.link:hover {
  color: #283B71;
  //border-bottom-width: 0;
}

.link::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #283B71;
    transition: width .3s;
}

.link:hover::after {
    width: 0;
    //transition: width .3s;
}

a.link {
  text-decoration: none;
}

.portrait-mosaique .people__item{
  margin: 2rem!important;
}