html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: 'Roboto', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* Style CSS PERSO */

strong{
    color: #e2a606;
}
.container{
    max-width: 1320px;
    margin: auto;
    position: relative;
}
.blackbarre{
    background-color: black;
    width: 100%;
}
/* MENU */ 
#logo{
    padding: 15px;
}
.blackbarre{
    position: sticky;
    z-index: 2;
}
#logo:hover{
    transform: scale(0.95);
    transition: all 0.3s;
}
nav{
    width: 100%;
    margin: 0 auto;
    background-color: black;
    position: sticky;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

nav ul{
    display: flex;
    width: 50%;
    padding: 15px;
}

nav ul li{
    flex: 1 1 auto;
    text-align: center;
    position: relative;
    width: 100%;
}

nav a{
    display: block;
    text-decoration: none;
    color: white;
    padding: 15px;
    transition: all 0.1s;
}
nav a:hover{
    color: white;
    background-color: #e2a606;
    transition: all 0.1s;
}

.sous{
    display: none;
    background-color: black;
    position: absolute;
    width: 100%;
    z-index: 1;
}
.sous ul li{
    width: 100%;
    transition: all 0.1s;
}
nav > ul li:hover .sous{
    display: flex;
    flex-flow: column wrap;
    padding: 0;
    width: 100%;
    transition: all 0.1s;
}
.sous li{
    flex: 1 1 auto;
    text-align: center;
}
.sous a{
    border-bottom: none;
    text-align: center;
    transition: all 0.1s;
}
.sous a:hover{
    background-color: #e2a606;
    border-bottom: 2px solid white;
    padding: 15px;
    transition: all 0.1s;
}

/* slider */
.rslides {
    position: relative;
    list-style: none;
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 1;
}
.rslides li {
    position: absolute;
    display: none;
    width: 100%;
    left: 0;
    top: 0;
} 
.rslides li:first-child {
    position: relative;
    display: block;
    float: left;
}
.rslides img {
    display: block;
    height: auto;
    width: 100%;
    border: 0;
}
.texteslider{
    position: absolute ;
    text-align: center;
    color: white;
    z-index: 1000;
    top:  50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.texteslider h2{
    font-size: 30px;
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 10px;
}

/* Bloc image */

.bloc-3 {
    display: flex;
    justify-content: space-between;
    flex-flow: wrap;
}
.cadre{
    width: 30%;
    padding: 10px;
    text-align: center;
    margin: 30px 0;
    position: relative;
}
.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}
.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 0%;
    text-align: left;
}
.cadre:hover .image {
    opacity: 0.8;
}
.cadre:hover .middle {
    opacity: 0.8;
    height: 105px;
}
.text {
    background-color: #e2a606;
    color: white;
    font-size: 16px;
    height: 100%;
    padding: 10px 15px;
}
.lienPage{
    position: relative;
    top: 0;
    background-color: black;
    display: flex;
    height: auto;
    font-weight: bold;
}
.lienPage:hover{
    background-color: #e2a606;
    opacity: 0.8;
}
.lienPage .lien{
    padding-top: 8px;
    padding-left: 8px;
    font-size: 18px;
    color: white;
    text-decoration: none;
}
.lienPage .picto{
    background-color: #e2a606;
    padding: 3px;
}
/* Image de fond et bloc */
#imgFond{
    background-image
    :linear-gradient(
        rgba(0, 0, 0, 0.736), 
        rgba(0, 0, 0, 0.736)
      ), url("img/Program-management.png");
    height: auto;
}
.bloc-2{
    display: flex;
}
.contain{
    width: 48%;
    margin: 1.5% auto;
}
.contain .texteWorker{
    color: white;
    padding-top: 150px;
}
.contain .texteWorker h2{
    font-weight: bolder;
    text-transform: uppercase;
    font-size: 30px;
    margin-top: 15px;
}

.contain .texteWorker p{
    font-size: 18px;
    line-height: 1.2;
    margin-top: 15px;
}
.contain .texteWorker .Btn{
    margin-top: 15px;
    background-color: #e2a606;
    width: 30%;
    font-size: 18px;
}
.contain .texteWorker .Btn a{
    color: white;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 17px;
    transition: all 0.5s;
}
.contain .texteWorker .Btn a:hover{
    background-color: #a77c06;
    transition: all 0.5s;
}
/* SERVICE + reprise de page */

.service{
    text-align: center;
    padding: 100px 0 50px 0;
    width: 50%;
    margin: auto;
}
.service h2{
    font-size: 30px;
    font-weight: bolder;
    text-transform: uppercase;
}
.cadre h3{
    font-size: 20px;
    font-weight: bolder;
    text-transform: uppercase;
}
.cadre .photos{
    width: 100%;
}
.cadre .TextLeft h3{
    padding: 15px 0 15px 0;

}.cadre .TextLeft p{
    line-height: 2;
}
.cadre .TextLeft{
    padding-bottom: 15px;
    text-align: left;
    border-bottom: 2px solid #e2a606;
}
.cadre .TextLeft .fleche{
    background-color: #e2a606;
    width: 4%;
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 10px;
}
/* PAGE  */

.container .titePage h1{
    padding: 50px 0 25px 0;
    font-size: 30px;
    font-weight: bolder;
    text-transform: uppercase;
}
.bloc-2 .contain h2{
    font-size: 25px;
    color: white;
    padding: 25px 0 25px 0;
    text-transform: uppercase;
}
.bloc-2 .contain h3{
    font-size: 25px;
    color: #e2a606;
    padding: 25px 0 25px 0;
    font-weight: bolder;
}
.bloc-2 .contain p{
    padding: 10px 0 10px 0;
    font-size: 13px;
    line-height: 1.5;
}
.fondpage img{
    width: 100%;
}

/* CONTACT */ 
#contact .cadre h3{
    font-size: 25px;
    color: #e2a606;
    padding: 25px 0 25px 0;
    font-weight: bolder;
    text-transform:none!important;
}
#contact .contain{
    text-align: left;
}
#contact .contain .fas{
    margin-right: 10px;
    color: #e2a606;
}
#contact .contain p{
    padding: 10px 0 10px 0;
}
input{
    margin-bottom: 10px;
}
form input[type=text]{
    width: 100%;
    height: 45px;
    border: 1px solid darkgray;
}
form input[type=email]{
    width: 100%;
    height: 45px;
    border: 1px solid darkgray;
}
textarea{
    resize: vertical;
    background: none;
    border: 1px solid darkgray;
    width: 100%;
    height: 187px;
    outline: none;
    color: black;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}
input[type=submit]{
    margin-top: 20px;
    width: 25%;
    background-color: #e2a606;
    color: white;
    border: none;
    height: 35px;

}
input[type=submit]:hover{
    background-color: #a77c06;
    color:black;
}
.contain .reseau{
    display: flex;
    justify-content: space-evenly;
}
.contain .reseau img{
    width: 70%;
}
.contain .reseau a{
    transition: all 0.5s;
}
.contain .reseau a:hover{
    -ms-transform: scale(1.3); /* IE 9 */
    -webkit-transform: scale(1.3); /* Safari 3-8 */
    transform: scale(1.3);
}

/* FOOTER */
footer #fond{
    background-color: #373737;
    width: 100%;
    height: 100%;
}
footer #block-4{
    display: flex;
    color: lightgray;
}
footer .section{
    width: 24%;
    margin: 1%;
}
footer .section h4{
    font-size: 20px;
    font-weight: bolder;
    padding: 100px 0 25px 0;
}
footer .section p{
    font-size: 13px;
    padding: 10px 0 10px 0;
}
footer .section .fas{
    margin-right: 10px;
}
footer .section a{
    text-decoration: none;
    color: lightgray;
}
footer .section .articles{
    display: flex;
    padding-bottom: 10px;
}
footer .section .articles p{
    margin-left: 10px;
}
footer .section .articles a{
    text-decoration: none;
    color: lightgray;
}
footer .section .articles a:hover{
    text-decoration: underline;
    color: white;
}
.section input[type=email]{
    border: 2px solid lightgray;
    background: none;
    width: 70%;
    font-family: 'Roboto', sans-serif;
}
.section input[type=email]::placeholder{
    color: lightgray;
}
.section button[type=submit]{
    background-color: #e2a606;
    color: lightgray;
    padding: 17px;
    border: none;
    text-align: center;
}
.section button[type=submit]:hover{
    background-color: #a77c06;
}
.Mention{
    background-color: black;
}
.textMention{
    margin: auto;
    text-align: center;
    color: white;
    padding: 20px;
}

/* responsive */

@media screen and (max-width: 992px){
    .contain .texteWorker .Btn a{
        padding: 14px;
    }
    .contain .texteWorker{
        padding-top: 85px;
    }
    .bloc-2 .contain h2{
        padding: 25px 0 0px 0;
    }
    .cadre .TextLeft {
        border-bottom: 5px solid #e2a606;
    }
    .cadre .TextLeft .fleche {
        width: 10%;
    }
    .cadre .TextLeft .fleche img{
        width: 60%;
    }
    footer .section {
        width: 23%;
        margin: 1.5%;
    }
    footer .section h4 {
        padding: 50px 0 25px 0;
    }
    .container .titePage h1 {
        padding: 50px 0 25px 15px;
    }
    #imgFond {
        background-repeat: no-repeat;
        background-size: cover;
    }
    #imgFond .container .bloc-2{
        display: flex;
    }
    #imgFond .container .bloc-2 .contain{
        width: 47%;
        margin: 3% auto;
    }
    .bloc-2 {
        display: block;
    }
    .contain {
        width: 96%;
        margin: 4% auto;
    }
}

/* menu responsive  */
.slicknav_menu {
    display:none;
}

@media screen and (max-width: 769px) {
    /* #menu is the original menu */
    #menu {
        display:none;
    }

    .slicknav_menu {
        display:block;
    }
    .bloc-3 {
        display: block;
    }
    .cadre {
        width: 40%;
        padding: 10px;
        text-align: center;
        margin: auto;
    }
    #imgFond{
        background-image: none;
    }
    #imgFond .container .bloc-2{
        display: block;
    }
    #imgFond .container .bloc-2 .contain{
        margin: auto;
        width: 90%;
    }
    .bloc-2 .contain .photoWorker{
        text-align: center;
    }
    .bloc-2 .contain h2{
        color:black
    }
    .bloc-2 .contain p{
        color:black
    }
    footer #block-4 {
        display: block;
    }
    footer .section {
        margin: auto;
        width: 90%;
    }
}
@media screen and (max-width: 577px) {
    .cadre {
        width: 55%;
    }
    .section input[type=email] {
        height: 45px;
    }
}