/* ------------------------------------------------------------- */
/* Fonts */
/* ------------------------------------------------------------- */

/*'Satoshi-Medium';*/
@import url('Font/Satoshi_Complete/Fonts/WEB/css/satoshi.css');
/*'IBM Plex Sans';*/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500&display=swap');

/* ------------------------------------------------------------- */
/* Couleurs */
/* ------------------------------------------------------------- */

/* bleu foncé = #00284b */
/* jaune = #ffeb6e */
/* violet = #6941eb */

/* ------------------------------------------------------------- */
/* Eléments principaux de la page */
/* ------------------------------------------------------------- */

body {
    background: white;
    font-family: 'IBM Plex Sans'; /*'Satoshi-Medium';*/
    font-size: 1em;
    color: #00284b;} 

#bloc_page {
    width: 70em;
    margin: auto; }


/* ------------------------------------------------------------- */
/* Header */
/* ------------------------------------------------------------- */

header {
    border-bottom: 2px solid #00284b; 
    display: flex;
    justify-content: space-between;
    align-items: center; }

header h1 {
    font-family: 'IBM Plex Sans';
    font-weight: 600;
    font-size: 1.8em;
    margin: 0.8em 0em 1.2em 0em;
    flex: 1; }

header img {
    float: right; }

header a {
    color: #00284b; 
    text-decoration: none;
    margin: 0em 0.7em 0em 0.7em; }


/* ------------------------------------------------------------- */
/* Navigation */
/* ------------------------------------------------------------- */

nav { 
    border-bottom: 2px solid #00284b;
    margin-bottom: 3em; }

nav ul {
    padding-left: 3em;
    padding-right: 3em;
    list-style-type: none;
    display: flex;
    justify-content: space-around; }

nav a {
    font-family: 'IBM Plex Sans';
    font-weight: 500;
    /* text-transform: uppercase; */
    font-size: 1.3em;
    color: #00284b; 
    padding-bottom: 0.85em;
    padding-top: 0.85em;
    padding-right: 1.3em;
    padding-left: 1.3em;
    text-decoration: none; }

nav a:hover {
    color: white ;
    background-color: #00284b; }

/* ------------------------------------------------------------- */
/* Corps */
/* ------------------------------------------------------------- */

section {
    margin-bottom: 3em; }

section h1 {
    font-family: 'IBM Plex Sans';
    font-weight: 600;
    font-size: 1.4em; 
    margin-bottom: 0em; }
    
section h3 {
    font-family: 'IBM Plex Sans';
    font-weight: 500;
    font-size: 1.2em; 
    margin-top: 0.7em;
    margin-bottom: -0.5em; }

section a {
    text-decoration: none; 
    color: #6941eb; }

article {
    margin-bottom: 2em;
    text-align: justify; }

article p {
	font-size: 1em; }
    

img.right {
    float: right;
    margin-left: 2em; 
    margin-right: -2em;}

img.centered {
    display: block;
    margin-left: auto;
    margin-right: auto }

/* class pour les images de WRT */
figure.WRT { width:100%; overflow: hidden; margin:0; }
img.WRT { margin: -8% 0; width: 100%; }
img.WRT2 { margin: -4% 0; display: block; margin-left: auto; margin-right: auto}
video.center { display: block;
    margin-left: auto;
    margin-right: auto }


/* ------------------------------------------------------------- */
/* Footer */
/* ------------------------------------------------------------- */

footer {
    border-top: 2px solid #00284b; 
    margin-top: 3em; }

footer p {
    font-size: 0.8em;
    text-align: right; }

footer a {
    text-decoration: none; 
    color: #6941eb; }


