/*** Régles pour les fonts 
font-family: 'Great Vibes', cursive;
font-family: 'Lato', sans-serif;
font-family: 'Oswald', sans-serif; ***/

/*******************************************************
                        GENERAL
*******************************************************/
#global {
    width: 1120px;      /*largeur totale*/
    margin: 0 auto ;    /*  centrer le contenu */
}

a {
    text-decoration: none; /*aucune decoration des liens*/
}

a:hover {           /*colorer les liens au survol*/
    color:#000;
}

section {           /*police pour toute la section*/
    font-family: 'Lato', sans-serif;
}

.current a{          /*colore la page courante*/
	color:#000000;
}

.justify {          /*pour le texte qui sera justifié*/
    text-align: justify;
    text-justify: inter-word;
}

.right_align {      /*pour le texte qui sera aligné à droite*/
    text-align:right;
}

.center {           /*pour le texte qui sera centré*/
    text-align: center;
}

/*******************************************************
                        HEADER
*******************************************************/
header {        /*hauteur du header*/
    height: 180px;
}

h1 {        /* titre de niv 1 */
    position: relative ;
    z-index: 2;     /* pour que la boucle passe devant */
    font-family: 'Great Vibes', cursive;
    font-size :75px;
    font-weight: 600;
    letter-spacing: -0.005em;
}

h2 a { /* lien du titre de niveau 2 */
    color:#00171F;
}

header h2 { /* titre du niveau 2 du header */
    font-size: 70px;
	margin-top: -92px;
	letter-spacing: -0.0005em;
    font-family: 'Oswald', sans-serif; 
}

h2 { /* titre de niveau 2 */
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
}

/*******************************************************
                        NAVIGATION
*******************************************************/
nav { /* generale */
    position: relative;
    z-index: 3;
    top: -210px;
    left: 500px;
}

nav ul {
    padding-left: 0px; /* sans marge à gauche */
}

nav ul li {
    display: inline;
    list-style: none; /* sans puce */
    font-size: 30px;
    padding-right: 65px ;
}

nav a {
    font-size: 25px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase; /* lettre majuscule */
    font-weight: 500; /* gras de police */
}
/*******************************************************
                     COLONNES
********************************************************/
.col {                              /*commun à toutes les colonnes*/
    float: left;
    margin-right: 20px;
}
.separator { /* separateur */
    margin-bottom: 20px;
}
.clear{ /* pour revenir à un flux normal après un float */
	clear:both;
}

.last {  /* pour retirer la goutière de la dernier colonne */                       
    margin-right:0 !important ;
}

                    /*largeur des =! colonnes*/
/* Calcul : largeur total (1120) - nbr goutiere * largeur goutiere (20) */
.col-6-12 {             /* colonne 1/2 */
    width: 550px;
}
.col-4-12 {             /* colonne 1/3 */
    width: 360px;
}
.col-3-12 {             /* colonne 1/4 */
    width: 265px;
}
.col-8-12 {             /* colonne 2/3 */
    width: 740px;
}
.col-9-12 {             /* colonne 3/4 */
    width: 835px;
}
.col-2-12 {             /*colonne 1/6 */
    width: 170px;       
}

/*******************************************************
                     SECTION
********************************************************/
section h2 {
    text-align: center; /* centrer le texte */
}
/* TEXTES */
.inlay{ /* incrustation */
    float:right;
    margin : 0 0 0 10px;
}

section p { 
    margin-top: 0;
}
section ul li li {
    list-style: none; /* retire les puces */
}

/*******************************************************
                        IMAGE
*******************************************************/
.container /* boite pour contenir l'animation */
{
	position: relative;
	width: 100%;
}

.container:hover .overlay { /* background du survol */
	opacity: 0.7 ;
}

.overlay { /* survol */
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: .5s ease;
	background-color: #281b06
}

.text { /* texte du survol */
	color: white;
	font-size: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.image-slider {
    width: 1120px; /* largeur max */
    overflow: hidden; /* largeur max atteinte, les autres images sont "cachée" */
}
  
.slider-container {
    display: flex;
    width: 4480px; /* (1120px * 4 images) */
    animation: slide 20s  infinite; /* durer d'une boucle d'animation qui defile infiniment */
}
  
.slider-image {
    width: 1120px;
}
  
@keyframes slide { /* animation image */
    0% { transform: translateX(0); } /* position initiale */
    25% {transform: translateX(-1120px); } /* position 2e image */
    50% {transform: translateX(-2240px); } /* position 3e image */
    75% {transform: translateX(-3360px); } /* position 4e image */
    100% {transform: translateX(0); } /* retour à la position initiale */
}

/*****************************************************************
                            TABLEAU
******************************************************************/
table {     /* tableau */
    width: 100%;
    max-width: 560px;
    height: 85px;
    text-align: center;
    border-spacing: 0px;
    color:#ffffff;
    margin: auto;
}

table, td {
    border: 4px solid #ffffff;
    margin-bottom: 30px; 
}

/*****************************************************************
                            FOOTER
******************************************************************/
footer {
    text-align: center;
    margin: 20px 0px 10px 0px;
}
footer a {
    color: white
}
.footer-container {
    padding: 10px 20px;
}

/*****************************************************************
                            COULEUR
******************************************************************/
/* couleur de police */
.blue {
    color : #497CAB; 
}
.yellow {
    color : #FFE75C;
}
.red {
    color: #D75D47;
}
.green {
    color: #4A9655;
}
.black {
    color:#00171F;
}
.grey {
    color:#787e80
}

/* couleur de fond */
.blue_background {
    background-color : #497CAB; 
}
.yellow_background {
    background-color : #FFE75C;
}
.red_background {
    background-color: #D75D47;
}
.green_background {
    background-color: #4A9655;
}
.grey_background {
    background-color:#787e80;
}

/*****************************************************************
                            Formulaire
******************************************************************/
.container_form {   /* parametre de la boite du formulaire */
    margin-left: 20px;
    margin-bottom: 20px;
    width: 320px;
    padding: 20px;
    border: 1px solid #497CAB;
    border-radius: 5px;
}

.question { /* parametre de la question */
    margin-bottom: 10px;
    font-weight: 900;
}

.options label { /* parametre des réponses */
    display: block;
    margin-bottom: 10px;
    margin-left: 50px;
    font-weight: 600;
}

.options input[type="radio"] { 
    margin-right: 5px; /* marge */
}

.submit-btn { /* bouton envoyer */
    margin-top: 10px;
    text-align: center; 
}

.submit-btn input[type="submit"] { /* parametre du bouton envoyer */
    background-color: #497CAB;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.075em;
    text-transform: uppercase;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;  
}