a { color: #db1762; }

span.a {
    /*color: #db1762;*/
    font-weight: bold;
}

/* ----- NAV ----- */
/*.contour{
    border: 1px solid #000 ;
    border-radius: 0.25em;
    padding: 0.25em 0em;
    background-color: #F0F0F0 ;
}*/

.contour {
    box-shadow: 1px 1px black;
    border: 1px solid #000 ;
}

.pure-menu-children {
    background-color: transparent;
}

/*Toujours afficher l'arborescence*/
.arbo { display: inline; }

.contact {
    text-align: center;
}

.titre_contact {
    text-decoration: underline;
}

/* ----- PIED DE PAGE ----- */
.footer .colophon {
    width: 100%;
}

.flex-ligne {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

/* ----- Mobile first ----- */
/*Par défault : Masquer le chapo de site dans les rubriques*/
.chapo_rubrique {
    font-weight: bold;
    display: none;
}
 /*Pour les écrans supérieur à 500px : Afficher le chapo dans les rubriques*/
@media screen and (min-width : 500px){
    .chapo_rubrique{
        display: block;
    }

    .contour {
    box-shadow: none;
}
}