/* general */

body {
    /* reset pré-set */
    margin: 0%;
    color: #181818;
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    background-color: #525C7C;
}

.flex {
    display: flex;
}

mark {
    background-color: inherit;
    color: inherit;
    font-weight: bold;
    text-decoration: underline;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

section img {
    max-width: 300px
}

/* Les effets */

.div-zoom {
    overflow: hidden;
    margin: 1.6%;
    float: left;
}

.img-zoom:hover {
    transform: scale(1.1);
}


/* header */

#img-banniere {
    width: 100%;
}

#img-logo {
    width: 13%;
    margin: auto 5%;
}

header {
    background-color: #293A72;
}

header h1 {
    font-family: 'Staatliches', Arial, Helvetica, sans-serif;
    color: white;
    font-size: 3em;
}

header p {
    color: #dadada;
    width: 95%;
    text-align: justify;
}


/* navigation */

nav {
    position: sticky;
    top: 0%;
    height: 40px;
    z-index: 1000;
    display: flex;
    justify-content: space-around;
    background-color: #828282;
    text-transform: uppercase;
}

nav a {
    display: block;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    color: #001454;
    text-decoration: none;
    font-size: 1.2em;
}

nav a:hover {
    color: white;
    background-color: #001454;
}


/* sections */

section {
    margin: 1%;
    padding: 1.7%;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25), 0 2px 10px 0 rgba(0, 0, 0, 0.2);
    background-color: #dadada;
}

article,
aside {
    margin: auto 1.4%;
    flex: 1;
}

section h2 {
    margin: 1% 1% 1.6% 0.5%;
    font-size: 1.6em;
    color: #001454;
    text-decoration: underline #BADA55;
}

section h3 {
    font-size: 1.4em;
    color: #0A1F65;
    text-align: center;
}

section p {
    text-indent: 5%;
    text-align: justify;
}

aside {
    padding: 0.7%;
    border: solid #BADA55;
    border-radius: 10px;
}


/* tableau information */

#info h2 {
    text-align: center;
}

table {
    margin: auto;
    /*collé les bordures*/
    border-collapse: collapse;
}

td,
th {
    border: 1px solid black;
    padding: 1.8vh;
}

#liste-contactes {
    list-style-type: none;
    text-align: center;
    justify-content: center;
    padding: 0%;
    margin: 0%;
    display: flex;
}

#liste-contactes li {
    margin: 2%;
}

#liste-contactes li:hover {
    text-decoration: underline #BADA55;
}

#liste-contactes a {
    color: inherit;
}


/* footer */

footer {
    text-align: center;
    font-style: italic;
}

footer ul {
    list-style-type: none;
}

footer a {
    color: inherit;
}


/* responsive design */

@media only screen and (max-width: 660px) {
    /* smartphone */
    #img-logo {
        width: 100px;
    }
    #bar-recherche input {
        width: 90%;
        text-align: center;
    }
    #btn-recherche {
        left: 35px;
    }
    td,
    th {
        padding: 0.4vh;
        font-size: 0.75em;
    }
}