/* EQUIPE */

#equipe {}
.personnes
{
display: flex;
gap: 2em;
padding-top: 2em;
place-content: center;
place-items: center;
@media (max-width: 600px) {flex-direction: column;}
}
.personnes article
{
text-align: center;
& img
{
width: 7em;
height: 7em;
object-fit: cover;
clip-path: circle(50%);
}
& h3 {}
& em {}
}

/* CONTACT */

#contact
{
display: flex;
flex-direction: row;
gap: 2em;
place-content: center;
place-items: center;
@media (max-width: 500px) {flex-direction: column;}
}
#contact section {}
#contact section:first-of-type
{
padding-right: 2em;
border-right: 1px solid lightgrey;
@media (max-width: 500px) {padding: 0; border: none;}
}
#contact p {}
#contact p + p {margin-top: 1em;}
#contact section:first-of-type p {text-align: right;}
#contact p a {display: block;}
#contact p address {}
#contact img
{
width: 15em;
margin-bottom: 1em;
}