/*-------------------------------
 	      CSS POUR TOUS
---------------------------------*/

/*---------------
 	Globalité
----------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font: normal 16px sans-serif;
    color: #555;
}

ul,
nav {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.9;
}

a:hover {
    opacity: 1;
}

.image {
    width: 50%;
    display: inline-block;
}


/* -------------------- */





/*-------------
 	Sections
-------------*/

section {
    display: flex;
    flex-direction: column;
    padding: 125px 100px;
}

section h3.title {
    color: #414a4f;
    font: bold 32px 'Open Sans', sans-serif;
    margin-bottom: 35px;
    text-align: center;
}

section p {
    text-align: center;
    margin-bottom: 35px;
    padding: 0 20px;
    line-height: 2;
}

section ul {
    text-align: center;
    margin-bottom: 35px;
    padding: 0 20px;
    line-height: 1.8;
    margin-left: 50px;
}

@media (max-width: 1000px) { /* Requêtes médias */
    section {
        padding: 100px 50px;
    }
}

@media (max-width: 600px) {
    section {
        padding: 80px 30px;
    }
}

/* -------------------- */



/*----------------------------------*/



/*-------------
 	Header
-------------*/

header {
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 100px 0;
}

header h2 {
    font-family: 'Quicksand', sans-serif;
}

header nav ul {
    display: flex;
}

header nav ul li {
    margin: 0 15px;
}

@media (max-width: 1000px) {    /* Requêtes médias */
    header {
        padding: 20px 50px;
    }
}

@media (max-width: 700px) {
    header {
        flex-direction: column;
    }
    header h2 {
        margin-bottom: 15px;
    }
}

/*----------------------*/

/*-------------------
 	Classe header
-------------------*/

.header {
    position: relative;
    justify-content: center;
    min-height: 100vh;
    color: #fff;
    text-align: center;
}

.header .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-color: #2196F3;
    z-index: -1;
}

.header h1 {
    font: bold 60px 'Open Sans', sans-serif;
    text-shadow: 2px 2px 4px black;
    margin-bottom: 15px;
}

.header h3 {
    font: normal 28px 'Open Sans', sans-serif;
    margin-bottom: 40px;
}

@media (max-width: 800px) {
    .header {
        min-height: 600px;
    }
    .header h1 {
        font-size: 48px;
    }
    .header h3 {
        font-size: 24px;
    }
    .header a.btn {
        padding: 15px 40px;
    }
}

/*----------------------*/

/*---------------------------------
 	Table des matières / Infos
---------------------------------*/

.info {
    background-color: #f7f7f7;
}

.info .table li {
    padding: 0 30px;
    flex-basis: 33%;
    text-align: center;
}

.info .table li i {
    color: #1b4ca6;
    font-size: 50px;
    margin-bottom: 25px;
    margin-top: 25px;
}

.info .table li h4 {
    color: #555;
    font-size: 20px;
    margin-bottom: 40px;
}

.info .table li p {
    margin-bottom: 50px;

}

ul.table {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 1000px) {     /* Requêtes médias */
    .info .table li {
        flex-basis: 70%;
        margin-bottom: 65px;
        margin-right: 90px;
    }
}

@media (max-width: 600px) {
    .info .table li {
        flex-basis: 100%;
    }
}

/*----------------------------*/

/*----------------------
 	      Pages
----------------------*/

.section01 {

    background-color: #f2f2f2;
}

.section02 {
    background-color: white;
}

h3.titleP {
    color: #414a4f;
    text-align: left;
    font: bold 25px 'Open Sans', sans-serif;
    margin-bottom: 30px;
    margin-left: -5px;
}

p.textP {
    max-width: 900px;
    text-align: left;
    margin-bottom: 10px;
}

ul.textP {
    max-width: 900px;
    text-align: left;
    margin-bottom: 10px;
}

ul.textLink li {
    max-width: 900px;
    text-align: left;
    margin-bottom: 10px;
    color: cornflowerblue;
}

/*----------------------*/
