@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');


body {
    background-image: url(../img/visuel_coverbox.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0;
    background-position: top center;
    width: 100%;
    font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
}
#container {
    background-color: #0076BC;
    padding: 2% 4%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 20%;
}



h1 {
    font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
}


h2 {
    font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 130%;
    color: #ffffff;
}

h3 {
    font-family: 'Montserrat', 'Arial Narrow', Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 135%;
    color: #7AC6C5;
}

p, a, a:active, a:visited, li, label {
    font-family : "Montserrat", 'Arial Narrow', Arial, sans-serif;
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 10px;
    list-style-type: square;
    color: #ffffff;
    text-decoration: none;
}


.bouton {
    border: 1px solid #E53262;
    background-color: #E53262;
    color: #ffffff;
    padding: 7px 10px;
    margin: 15px 0px;
    display: inline-block;
    border: none;
    font-family : "Montserrat", 'Arial Narrow', Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all ease 0.3s;
}
.bouton:hover {
    border: 1px solid #E53262;
    background-color: #ffffff;
    color: #E53262;
}




/* HEADER */

header {
    display: flex;
    justify-content: center;
}
header a {
    margin: 0 auto;
    display: inline-block;
    width: 20%;
}
/* logo WL */
header img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    display: block;
}


/* SECTION YT */
 .video-yt iframe {
    width: 100%;
    aspect-ratio: 1920 / 1080;
    margin-top: 50px;
 }


/* contenu SECTION 1 */

.logo-coverbox {
    display: block;
    margin: auto;
    max-width: 500px;
    margin-bottom: 50px;
}

/* 1er section */
.contenu section:first-child {
    margin-top: 20px;
}

/* contenu SECTION 2 FORM */

/* 2e section */
.contenu section:nth-child(2) {
    border-top: solid 3px #ffffff;
}

form {
    display: flex;
    flex-direction: column;
}

input {
    margin: 5px 0;
    padding: 5px;
    border: solid 2px #F6F6F6;
    font-family : "Montserrat", 'Arial Narrow', Arial, sans-serif;
    font-size: 14px;
    max-width: 500px;
}
input:focus {
    border-color: #7AC6C5;
    outline: none;
}

div#recaptcha {
    /* background-color: #ffffff;
    width: 100%;
    max-width: 300px;
    height: 100px; */
}

/* FOOTER */

footer {
    background-color: #304E55;
    padding: 20px 4%;
}
footer a {
    display: block;
}

/* logo WL */
footer>a {
    display: inline-block;
    width: 30%;
    max-width: 200px;
}
footer img {
    width: 100%;
}


.alert {
    padding: 10px;
    /* margin-top: 15px; */
    /* margin-bottom: 15px; */
    border: 1px solid transparent;
    border-radius: 4px;
    display: none;
}
.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}
.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}



@media (min-width: 1024px) {

body {
    height: 100%;
    background-size: cover;
    background-position: bottom center;
}

.contenu {
    display: flex;
    justify-content: space-around;
}

/* 2e section */
.contenu section:nth-child(2) {
    border-top: none;
    border-left: solid 3px #ffffff;
    width: 30%;
    padding-left: 5%;
}

/* FOOTER */
footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 5%;
}

}