/* EQUIPE */

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

/* CONTACT */

#contact
{
display: flex;
gap: 2em;
place-content: center;
place-items: center;
}
#contact section {}
#contact section:first-of-type
{
padding-right: 2em;
border-right: 1px solid lightgrey;
}
#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;
}