/* START GLOBAL STYLE */
html{
    height: 100%;
    font-family: Arial, Helvetica, Verdana sans-serif;
}
html, body{
    margin: 0;
    padding: 0;
    background-color: #333333;
    min-height: 100%;
}
h2{
    text-align: center;
    color: #333333;
    font-weight: bold;
    font-size: 40px;
    margin: 0;
    padding: 0;
    text-decoration: underline;
    text-shadow: 3px 1px 0px #888888;
}
title{
    display: none;
}
/* END GLOBAL STYLE */

/* All website is in it */
.container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    vertical-align: center;
    min-height: 100vh;
}
/* ------------------- */

/* START HEADER */
header{
    display: flex;
    align-items: center;
    justify-content: center;
    flex:0;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    min-height: 8vh;
    background-color: #cdb618;
    color: #333333;
    border-bottom: 1px solid black;
    font-weight: bold;
}

header.img header.h1{
    display: inline-block;
}
/* END HEADER */

/* START SLIDE STYLE */
.contener_slideshow {
    position: relative;
    overflow: hidden;
}
.slid_1, .slid_2, .slid_3, .slid_4 {
    position: absolute;
}
.contener_slide {
    left: 0px;
    position: absolute;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: anim_slide;
    -moz-animation-duration: 10s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-name: anim_slide;
    -ms-animation-duration: 10s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-name: anim_slide;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: anim_slide;
}
@media screen and (min-width: 700px) {
    .contener_slideshow {
        height: 400px;
        width: 600px;
    }

    .slid_1, .slid_2, .slid_3, .slid_4 {
        width: 600px;
        height: 400px;
    }

    .slid_1 {left: 0;}
    .slid_2 {left: 600px;}
    .slid_3 {left: 1200px;}
    .slid_4 {left: 1800px;}

    .contener_slide {
        height: 400px;
    }

    @-webkit-keyframes anim_slide {
        0% {left: 0px;}
        12.5% {left: 0px;}
        25% {left: -600px;}
        37.5% {left: -600px;}
        50% {left: -1200px;}
        62.5% {left: -1200px;}
        75% {left: -1800px;}
        87.5% {left: -1800px;}
    }
    @-moz-keyframes anim_slide {
        0% {left: 0px;}
        12.5% {left: 0px;}
        25% {left: -600px;}
        37.5% {left: -600px;}
        50% {left: -1200px;}
        62.5% {left: -1200px;}
        75% {left: -1800px;}
        87.5% {left: -1800px;}
    }
    @-ms-keyframes anim_slide {
        0% {left: 0px;}
        12.5% {left: 0px;}
        25% {left: -600px;}
        37.5% {left: -600px;}
        50% {left: -1200px;}
        62.5% {left: -1200px;}
        75% {left: -1800px;}
        87.5% {left: -1800px;}
    }
    @keyframes anim_slide {
        0% {left: 0px;}
        12.5% {left: 0px;}
        25% {left: -600px;}
        37.5% {left: -600px;}
        50% {left: -1200px;}
        62.5% {left: -1200px;}
        75% {left: -1800px;}
        87.5% {left: -1800px;}
    }
}
@media screen and (max-width: 699px) {
    .contener_slideshow {
        height: 200px;
        width: 300px;
    }

    .slid_1, .slid_2, .slid_3, .slid_4 {
        width: 300px;
        height: 200px;
    }
    .slid_1 img, .slid_2 img, .slid_3 img, .slid_4 img{
        width: 300px;
        height: 200px;
    }
    .slid_1 {left: 0;}
    .slid_2 {left: 300px;}
    .slid_3 {left: 600px;}
    .slid_4 {left: 900px;}

    .contener_slide {
        height: 200px;
    }

    @-webkit-keyframes anim_slide {
        0% {left: 0px;}
        12.5% {left: 0px;}
        25% {left: -300px;}
        37.5% {left: -300px;}
        50% {left: -600px;}
        62.5% {left: -600px;}
        75% {left: -900px;}
        87.5% {left: -900px;}
    }
    @-moz-keyframes anim_slide {
        0% {left: 0px;}
        12.5% {left: 0px;}
        25% {left: -300px;}
        37.5% {left: -300px;}
        50% {left: -600px;}
        62.5% {left: -600px;}
        75% {left: -900px;}
        87.5% {left: -900px;}
    }
    @-ms-keyframes anim_slide {
        0% {left: 0px;}
        12.5% {left: 0px;}
        25% {left: -300px;}
        37.5% {left: -300px;}
        50% {left: -600px;}
        62.5% {left: -600px;}
        75% {left: -900px;}
        87.5% {left: -900px;}
    }
    @keyframes anim_slide {
        0% {left: 0px;}
        12.5% {left: 0px;}
        25% {left: -300px;}
        37.5% {left: -300px;}
        50% {left: -600px;}
        62.5% {left: -600px;}
        75% {left: -900px;}
        87.5% {left: -900px;}
    }
}
/* END SLIDE STYLE */

/* Slides, pictures and form is on it */
section{
    display: flex;
    align-items: center;
    vertical-align: center;
    flex:1;
    flex-wrap: wrap;
    flex-direction: column;
    width: 80vw;
    margin-top: 20px;
}
/* ------------------------------- */

/* Pictures */
.cartes{
    display: flex;
    justify-content: center;
    vertical-align: center;
    flex-wrap: wrap;
    flex-direction: row;
    width: 80%;
    margin-top: 30px;
}
.cartes img{
    margin: 5px 10px 5px 10px;
}
@media screen and (min-width: 1040px) {
    .cartes img{
        width: 250px;
        height: 200px;
    }
}
@media screen and (max-width: 1039px) {
    .cartes img {
        width: 150px;
        height: 100px;
    }
}
/* --------- */
/* START TEXT STYLE */
.Covid{
    display: flex;
    flex-direction: column;
    color: red;
    margin-top: 15px;
}
.Covid p{
    margin:5px;
    font-size: 1vw;
}
.info{
    display: flex;
    color: white;
    flex-direction: column;
}
.info p, .info ul, .info li{
    font-size: 1vw;
}
.texte{
    width: 60%;
    text-align: justify;
    color: white;
    margin-top: 30px;
}
.texte h2{
    text-align: center;
    color: white;
}
.texteFooter{
    text-align: center;
    color: white;
    font-size: 16px;
    margin: 10px;
}
.texte_formualaire{
    text-align: center;
    color: green;
    width: 100%;
    font-weight: bold;
}
/* END TEXT STYLE */

/* START FORM STYLE */
.g-recaptcha{
    margin: auto;
}
.formulaire-colomn{
    display: flex;
    vertical-align: center;
    flex-wrap: wrap;
    flex-direction: column;
    width: 60%;
    margin-top: 30px;
    border: 1px solid black;
    border-radius: 15px;
    padding: 10px;
    background-color: #cdb618;
}
.formulaire-row{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
}
input, select{
    margin: 5px;
    padding-left: 5px;
    min-height: 40px;
    min-width: 200px;
    flex: 1;
    border: 1px solid black;
    color: #333333;
    border-radius: 10px;
    box-shadow: 4px 4px 0px #6f6f6f;
}
/* START placeholder style */
::placeholder {
    color: #333333;
    font-style: normal;
}
/* END placeholder style */
textarea{
    margin: 5px;
    padding: 5px 0 0 5px;
    flex: 1;
    color: #333333;
    border: 1px solid black;
    border-radius: 10px;
    box-shadow: 4px 4px 0px #6f6f6f;
}
.button{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex: 1;
}

.button input{
    min-width: 20%;
    height: 30px;
}
/* END FORM STYLE */

/* START FOOTER */
footer{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 8vh;
    width: 100%;
    margin-top: 20px;
    background-color: #cdb618;
    text-align: center;
    border-top: 1px solid black;
}
footer p{
    font-size: 13px;
    color: #333333;
    font-weight: bold;
}
/* END FOOTER */
