/* Pour  l'impression */
@media print {
    
        nav, footer, audio {
            display: none;
        }
    
        body {
            font-size: 12px;
            color: black;
        }
    
        section {
            border: none;
            box-shadow: none;
 
       }

    }
     
/* Pour l'entete*/

    header {
        background-color: #56b8a1;
        text-transform: uppercase;
        color: white;
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /*General*/
    
    h1 {
        position: relative;
        text-transform: uppercase;
        color: #0a445e;
        font-weight: 200;
        font-size: 3rem;
        line-height: 1.25em;
        margin: 0 5vmin;
        padding: 10vmin 0 0;
    }
    
    h2 {
        text-transform: uppercase;
        color: #0a445e;
        font-weight: 400;
        font-size: 1.25rem;
        line-height: 1.25em;
        border-bottom: solid #0a445e 2px;
        margin: 2rem 1rem 0;  
        display: inline-block;
    }
    
    h3 {
        color: #56b8a1;
        font-weight: 600;
        font-size: 2.75rem;
        margin: .75rem 0 2rem;
    }

  /* Pour le Footer */ 

  footer {
    background-color: #56b8a1;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 3px solid #0a445e;
    font-size: 0.9rem;
}

footer .footer-column {
    flex: 1;
    margin: 5px;
}

footer .footer-column h3 {
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000000;
    font-size: 1rem;
}

footer .footer-column p, footer .footer-column a {
    color: #000000;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: block;
}

footer .footer-column a:hover {
    color: #0e96bd;
    text-decoration: underline;
}

footer p    {
    margin-bottom: 1rem;
    margin-right: 2rem;

}
footer p:last-of-type{
    flex: 0 0 100%;
}