@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
	padding:0px;
	border:0px;
	margin:0px;
}

html{
width:100%;
min-width:1000px;
margin: 0 auto;
scroll-behavior: smooth;
}

.main_width{
width:1000px;
margin:auto;
}


body{
font-family: 'Poppins', sans-serif;
font-weight:400;
width:100%;
}


/* *********************** COMMON *********************** */

p{
color:#303030;
line-height:23px;
font-size:16px;
}

p+p{
	margin-top: 12px;
}

h1{
color: #303030;
text-transform: uppercase;
font-size: 30px;
font-weight: 800;
line-height: 41px;
font-style: italic;
}

h2{
color:#303030;
text-transform: uppercase;
font-size: 24px;
font-weight: 800;
line-height: 36px;
font-style: italic;
}



.button{
display: block;
width: fit-content;
border-radius: 30px;
background-color: #8bc53e;
text-transform: uppercase;
color: white;
padding: 4px 58px 4px 17px;
font-weight: 500;
transition: all 0.5s;
font-size: 14px;
text-decoration:none;
transition:all 0.3s;
position: relative;
}

.button:hover{
padding: 4px 68px 4px 17px;
}

.button:after{
	content: '';
    position: absolute;
    right: 13px;
    top: 8px;
    width: 36px;
    height: 11px;
    background-image: url(images/arrow-right-white.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

a{
color:inherit;
text-decoration:underline; 
transition: all 0.2s ease-in-out;
}



/* *********************** HEADING MSG*********************** */
#heading{
width:100%;
text-align:center;
background-color:#8bc53e;
z-index: 99;
}

#heading p{
color: white;
margin: 0;
padding: 0 70px;
box-sizing: border-box;
}



/* *********************** BANNER / MENU *********************** */
#banner{
width:100%;
position: fixed;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
max-width: 2200px;
background-color: #fff;
z-index: 200;
box-shadow: 0 -2px 8px lightslategray;
}

#banner .main_width{
	padding: 25px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.4s;
}

#banner .logo{
	width: 220px;
	height: auto;
	transition: all 0.4s;
}

#banner .logo img{
	width: 100%;
	height: auto;
}

#banner .menu-links{
	display: none;
}

#banner .burger{
	flex: 1;
}

#banner .burger ul{
	width: 100%;
	max-width: 720px;
	margin: 0 0 0 auto;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#banner .burger ul a{
	text-decoration: none;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 500;
	color: #303030;
}

#banner .burger ul a.selected{
	color: #8bc53e;
}

html:not([data-scroll='0']) #banner .logo{
	width: 200px;
}

html:not([data-scroll='0']) #banner .main_width{
	padding: 15px 0;
}

/* *********************** PAGES *********************** */
#wrapper{
	margin-top: 100px;
}

/* ***** HOME ***** */
#home{
	text-align: center;
}

#home .intro{
	position: relative;
	background-image: url(images/intro-background.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: 130px;
}

#home .intro>.image{
	position: absolute;
	left: 0;
	width: 45%;
	height: 100%;
	top: 0;
}

#home .intro>.image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#home .intro .content{
	width: calc(55% - 50px);
	margin: 0 0 0 auto;
	padding: 62px 0 93px;
	text-align: left;
}

#home .intro .content .contact-links{
	margin-bottom: 5px;
	max-width: 550px;
}

#home .intro .content .contact-links a{
	display: inline-block;
	text-decoration: none;
	color: #fff;
	padding-left: 30px;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 22px;
	margin: 0 20px 4px 0;
	background-size: 22px;
	background-position: left center;
	background-repeat: no-repeat;
}

#home .intro .content .contact-links a.tel{
	background-image: url(images/icon-tel.svg);
}

#home .intro .content .contact-links a.mail{
	background-image: url(images/icon-mail.svg);
}

#home .intro .content .contact-links a.map{
	background-image: url(images/icon-map.svg);
}

#home .intro h1{
	color: #fff;
	margin-top: 25px;
}

#home .intro .important{
	background-color: #fff;
	color: #8bc53e;
	border-radius: 4px;
	padding: 4px 18px;
	font-size: 13px;
	margin: 30px 0 50px;
	font-weight: 600;
	width: fit-content;
}

#home .intro .citation{
	position: absolute;
	left: 0;
	bottom: -140px;
	background-image: url(images/background-green.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 20px 50px;
	z-index: 6;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

#home .intro .citation .image{
	display: inline-block;
    width: 123px;
    height: 123px;
    vertical-align: top;
    margin-right: 26px;
    background-image: url(images/christian-et-jordan-schillings-attaches-consult.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
	margin-top: 15px;
}

#home .intro .citation .image+div{
	display: inline-block;
	vertical-align: top;
	width: calc(100% - 160px);
	max-width: 550px;
	text-align: left;
}

#home .intro .citation p{
	color: #fff;
	font-weight: 200;
	font-style: italic;
	font-size: 16px;
	margin: 0;
}

#home .intro .citation .signature{
	color:#fff;
	font-size: 13px;
	font-style: none;
	font-weight: 500;
	margin-top: 15px;
	display: block;
}

#home .intro:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 40px;
	background: #ffffff;
	background: linear-gradient(0deg,rgba(255, 255, 255, 1) 49%, rgba(255, 255, 255, 0) 100%);
	z-index: 5;
}

#home .c2{
	background-color: #fff;
	padding: 100px 0;
	position: relative;
}

.form_response{
	position: fixed;
	bottom: 50px;
	right: -700px;
	background-color: #74b643;
	padding: 20px 50px;
	-webkit-box-shadow: 0px 0px 4px 2px #c0c0c0;
	box-shadow: 0px 0px 4px 2px #c0c0c0;
	animation-name: response;
	animation-duration: 6s;
	animation-delay: 1s;
	z-index: 100;
}

.form_response p{
	color: #fff;
}

.form_response.error{
	background-color: #a34040;
}

@keyframes response {
0% {right: -700px;}
10% {right: 0;}
90% {right: 0;}
100% {right: -700px;}
}

#home .c2 .form{
	display: block;
	height: auto;
	border-radius: 5px;
	padding-top: 150px;
	width: 100%;
	max-width: 550px;
	margin: -150px auto 0;
}

#home .c2 .form h2{
	background-color: #8bc53e;
    color: #fff;
    padding: 7px 25px;
    text-align: left;
    font-weight: 300;
    font-style: normal;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	position: relative;
}

#home .c2 .form h2:after{
	content: '';
    position: absolute;
    right: 0px;
    top: -48px;
    width: 181px;
    height: 100px;
    background-image: url(images/devis-gratuit.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

#home .c2 .form form{
	background-color: #f6f6f6;
	padding-bottom: 20px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

#home .c2 .form .form_part{
	position: relative;
	width: 85%;
	margin: 0 auto;
	padding-top: 25px;
}

#home .c2 .form .form_part input, #home .c2 .form .form_part textarea{
	display: block;
	width: 100%;
	height: auto;
	padding: 5px 10px;
	background-color: #fff;
	font-size: 14px;
	border-radius: 7px;
	line-height: 30px;
	box-sizing: border-box;
	border: none;
	color: #6b6956;
	border: 1px solid #c0c0c0;
}

#home .c2 .form .form_part textarea{
	min-height: 150px;
	max-height: 250px;
	min-width: 100%;
	max-width: 100%;
	color: #6b6956;
	font-family: 'Poppins';
}

#home .c2 .form .form_part label{
	position: absolute;
	left: 10px;
	top: 46px;
	transform: translateY(-50%);
	color: #6b6956;
	font-size: 14px;
	transition: all 0.4s;
	pointer-events: none;
}

#home .c2 .form .form_part label.active{
	top: 7px;
	transform: translateY(0);
	font-size: 12px;
}

#home .c2 .form .info{
	color: #c0c0c0;
	text-align: left;
	display: block;
	margin: 10px auto 30px;
	font-style: italic;
	font-size: 15px;
	font-weight: 300;
	width: 85%;
}

#home .c2 .form .button{
margin: 0 auto;
padding: 7px 68px 5px 80px;
font-size: 16px;
background-image: url(images/icon-send.svg);
background-size: 16px;
background-repeat: no-repeat;
background-position: left 50px center;
cursor: pointer;
}

#home .c2 .form .button:hover{
background-position: left 58px center;
}

#home .c2 .form .info-required{
	color: #c0c0c0;
	text-align: center;
	display: block;
	margin: 10px auto 0;
	font-size: 13px;
	font-weight: 300;
}

#home .c2 .form .g-recaptcha{
	width: 85%;
    margin: 0 auto;
    padding-top: 20px;
}

#home .c2 .video{
	height: 400px;
	border-radius: 20px;
	overflow: hidden;    
	width: 100%;
    margin: 100px auto 0;
    max-width: 750px;
}

#home .c2 .video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#home .c3{
	background-image: url(images/background-green.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 100px 0;
	position: relative;
	z-index: 5;
}

#home .c3 .main_width{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

#home .c3 .item{
width: 24%;
background-color: #fff;
box-sizing: border-box;
border-radius: 10px;
padding: 15px 20px 15px 80px;
background-size: 50px;
background-repeat: no-repeat;
background-position: 15px 10px;
background-image: url(images/icon-client.svg);
text-align: left;
}

#home .c3 .item span{
	font-size: 16px;
	line-height: 20px;
	color: #b2b2b2;
	font-weight: 500;
	display: block;
}

#home .c3 .item:nth-of-type(3){
	background-image: url(images/icon-voiture.svg);
}

#home .c3 .item:nth-of-type(4){
	background-image: url(images/icon-support.svg);
}

#home .c3 .item:nth-of-type(1){
	background-image: none;
	padding: 15px 20px;
	background-image: url(images/avis-google.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

#home .c4{
	background-color: #fff;
	padding: 100px 0 200px;
	position: relative;
}

#home .c4 .image{
	position: absolute;
	left: 0;
	top: -150px;
	width: 40%;
	height: calc( 100% + 100px );
}

#home .c4 .image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left top;
}

#home .c4 .content{
	width: calc( 60% - 100px );
	margin: 0 50px 0 auto;
	text-align: left;
}

#home .c4 h2{
	margin-bottom: 20px;
}

#home .c4 p{
	text-align: justify;
}

#home .c4 .button{
	margin-top: 50px;
}

#home .c5{
	background-color: #fff;
	padding: 100px 0 150px;
}

#home .c5 h2{
	margin-bottom: 20px;
}

#home .c5 #slider-1{
	display: block;
	width: 100%;
	max-width: 85vw;
	margin: 0 auto;
}

#home .c5 .img{
	width: calc(100% - 20px);
	margin: 0 10px;
	height: 250px;
	overflow: hidden;
	border-radius: 10px;
	position: relative;
}

#home .c5 .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#home .c5 .item .title{
	position: absolute;
	right: 7px;
	bottom: 7px;
	color: #fff;
	background-color: #444c59;
	font-size: 13px;
	padding: 3px 8px;
	border-radius: 3px;
}

#home .c5 .owl-next {
	position: absolute;
	right: -36px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 30px;
	height: 30px;
	color: transparent;
	font-size: 0px;
	background-image: url(images/slider-arrow-right.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

#home .c5 .owl-prev {
	position: absolute;
    left: -36px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 30px;
    height: 30px;
    color: transparent;
    font-size: 0px;
    background-image: url(images/slider-arrow-left.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

#home .c6{
	padding: 400px 0 0;
	background-image: url(images/background-equipe-attaches-consult.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
}

@media screen and (min-width: 2100px) {
  #home .c6{
	background-attachment: local;
  }
}

#home .c6 h2{
	text-align: center;
	color: #fff;
	max-width: 750px;
	margin: 0 auto 30px;
}

#home .c6 ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

#home .c6 li{
	width: 30%;
	box-sizing: border-box;
	padding: 100px 30px 30px;
	border-radius: 10px;
	background: #444C59;
	background: linear-gradient(133deg,rgba(68, 76, 89, 1) 0%, rgba(96, 128, 124, 1) 77%);
	color: #fff;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 18px;
	position: relative;
}

#home .c6 li:after{
	content: '';
    position: absolute;
    left: 50%;
    top: 34px;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#home .c6 li:first-of-type:after{
	background-image: url(images/icon-client-green.svg);
}

#home .c6 li:nth-of-type(2):after{
	background-image: url(images/icon-independant.svg);
}

#home .c6 li:nth-of-type(3):after{
	background-image: url(images/icon-voiture-green.svg);
}

#home .c6 li:nth-of-type(2){
	top: 50px;
}

#home .c6 .background-green{
	background-image: url(images/background-green.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 130px 0 30px;
	margin-top: -50px;
}

#home .c6 .background-green .info{
	display: block;
	width: fit-content;
	margin: 0 auto;
	color: #fff;
	padding-left: 25px;
	background-image: url(images/icon-infos.svg);
	background-size: 17px;
	background-position: left center;
	background-repeat: no-repeat;
}

#home .c7{
	padding: 150px 0 100px;
	background-color: #fff;
}

#home .c8{
	background-color: #fff;
	padding-bottom: 100px;
	padding-top: 100px;
}

#home .c8 h2{
	text-align: center;
	max-width: 750px;
	margin: 0 auto 60px;
}

#home .c8 ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	max-width: 95vw;
	margin: 0 auto;
}

#home .c8 li{
	flex: 1;
    margin: 0 1%;
    box-sizing: border-box;
    padding: 30px 7px 20px;
    border: 1px solid #b2b2b2;
    border-radius: 10px;
    position: relative;
	font-size: 14px;
}

#home .c8 li:after{
	content: '1';
	color: #fff;
	background-color: #8bc53e;
	font-size: 18px;
	width: 35px;
	height: 35px;
	text-align: center;
	font-weight: 800;
	line-height: 35px;
	border-radius: 50px;
	left: 50%;
	transform: translate(-50%, -50%);
	top: 0;
	position: absolute;
}

#home .c8 li:nth-of-type(2):after{
	content: '2';
}

#home .c8 li:nth-of-type(3):after{
	content: '3';
}

#home .c8 li:nth-of-type(4):after{
	content: '4';
}

#home .c8 li:nth-of-type(5):after{
	content: '5';
}

#home .c8 li:nth-of-type(6):after{
	content: '6';
}

#home .c8 li:nth-of-type(7):after{
	content: '7';
}

#home .c8 li:nth-of-type(8):after{
	content: '8';
}

#home .c9{
	width: 100%;
	height: 600px;
}

#home .c9 iframe{
	width: 100%;
	height: 100%;
	object-fit: conver;
}



@media screen and (max-width: 1800px) {
  #home .c4{
	padding: 100px 0 50px;
  }
}

/* ***** REALISATIONS ***** */
#realisations{
	text-align: center;
}

#realisations .intro{
	background-image: url(images/intro-background.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0 200px;
}

#realisations h1{
	color: #fff;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 800;
    line-height: 42px;
    font-style: italic;
	max-width: 900px;
	margin: 0 auto 30px;
}

#realisations p{
	color: #fff;
}

#realisations .c2{
	margin-top: -150px;
	position: relative;
	z-index: 2;
}

#realisations .c2 .filters{
	margin-bottom: 20px;
}

#realisations .c2 .filters a{
	display: inline-block;
	vertical-align: middle;
    width: fit-content;
    border-radius: 30px;
    background-color: #fff;
    text-transform: uppercase;
    color: #8bc53e;
    padding: 4px 17px;
    font-weight: 500;
    transition: all 0.5s;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
	margin: 0 10px 20px;
}

#realisations .c2 .filters a:hover{
    padding: 4px 25px;
    background-color: #8bc53e;
    color: #fff;
}

#realisations .c2 .filters a.active{
    background-color: #8bc53e;
    color: #fff;
}

#realisations .c2 .item{
	display: inline-block;
	width: 400px;
	height: 250px;
	margin: 0 15px 40px;
}

#realisations .c2 .img{
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 10px;
	position: relative;
}

#realisations .c2 .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#realisations .c2 .item .title{
	position: absolute;
	right: 7px;
	bottom: 7px;
	color: #fff;
	background-color: #444c59;
	font-size: 13px;
	padding: 3px 8px;
	border-radius: 3px;
}


/* ***** SERVICES ***** */
#services{
	text-align: center;
}

#services .intro{
	background-image: url(images/intro-background.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 0 60px;
}

#services .intro h1{
	color: #fff;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 800;
    line-height: 42px;
    font-style: italic;
	max-width: 900px;
	margin: 0 auto 30px;
}

#services .intro p{
	color: #fff;
}

#services .c2{
	margin: 100px 0 100px;
}

#services .c2 .image{
	display: inline-block;
	width: 50%;
    height: 400px;
	vertical-align: middle;
	margin-right: 6%;
	position: relative;
}

#services .c2 .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
    border-radius: 20px;
}

#services .c2 .image:after {
    content: '';
    position: absolute;
    width: 230px;
    height: 63px;
    right: 50px;
    top: -20px;
    border-radius: 10px;
    background-image: url(images/avis-google.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#services.portes-velos .c2 .image:after{
   	background-image: url(images/deco-portes-velos.png);
	height: 120px;
	width: 280px;
	top: -52px;
	right: 10px;
}

#services .c2 .image .button{
	position: absolute;
	right: 30px;
	bottom: 20px;
}

#services .c2 .image .button:hover{
	right: 20px;
}

#services .c2 .content{
	display: inline-block;
	width: 43%;
	text-align: left;
	vertical-align: middle;
}

#services .iframes{
	text-align: center;
}

#services .iframes iframe{
	display: inline-block;
	vertical-align: middle;
	width: 455px;
	height: 257px;
	object-fit: cover;
	border-radius: 10px;
	margin: 0 20px;
	max-width: 85vw;
}

#services h2{
	margin-bottom: 20px;
}

#services h3{
	color: #8bc53e;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
	margin: 20px 0 0;
}

#services ul{
	list-style: none;
	margin: 15px 0;
}

#services ul li{
	padding-left: 20px;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    margin: 5px 0;
    color: #848483;
}

#services ul li:after{
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 7px;
	height: 7px;
	background-color: #8bc53e;
	border-radius: 20px;
}

#services .devis-gratuit{
	position: fixed;
	z-index: 999;
	right: 20px;
	bottom: 20px;
	width: 150px;
	height: 100px;
	background-image: url(images/devis-gratuit.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.4s;
	animation: zoom 2s infinite alternate ease-in-out;
}

#services .devis-gratuit:hover{
	transform: scale(1.2);
}

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

#services .c3{
	padding: 150px 0 200px;
	position: relative;
}

#services .c3 .image{
	position: absolute;
	right: 0;
	top: 50px;
	width: 40%;
	max-width: 750px;
	height: calc( 100% + 50px );
}

#services .c3 .image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right top;
}

#services.attaches .c3 .image:after{
	content: '';
	position: absolute;
	left: -50px;
	bottom: 200px;
	width: 220px;
	height: 220px;
	background-image: url(images/boitier-electrique.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

#services .c3 .content{
	width: calc( 60% - 100px );
	margin: 0 auto 0 0;
	text-align: left;
}

#services .c3 h2{
	margin-bottom: 20px;
}

#services .c3 p+h2{
	margin-top: 50px;
}

#services .c3 p{
	text-align: justify;
}

#services .c3 .button{
	margin-top: 50px;
}

#services .c4{
	padding: 50px 0 50px;
	background-image: url(images/background-green.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	margin-top: -70px;
}

#services .c4 .image{
	display: inline-block;
	width: 50%;
    height: 400px;
	vertical-align: middle;
	margin-right: 6%;
	position: relative;
}

#services .c4 .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
    border-radius: 20px;
}

#services .c4 .image .button{
	position: absolute;
	right: 30px;
	bottom: 20px;
}

#services .c4 .image .button:hover{
	right: 20px;
}

#services .c4 .content{
	display: inline-block;
	width: 43%;
	text-align: left;
	vertical-align: middle;
}

#services .c4 h2{
	color: #fff;
}

#services .c4 p{
	color: #fff;
}

#services .c4 li{
	color: #fff;
}

#services .c4 li:after{
	background-color: #fff;
}

#services .c5{
	padding: 100px 0;
	background-image: url(images/background-services.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

#services .c5 .item{
	background: #444C59;
    background: linear-gradient(133deg, rgba(68, 76, 89, 1) 0%, rgba(96, 128, 124, 1) 77%);
    color: #fff;    
	padding: 30px;
	box-sizing: border-box;
	width: 39%;
	margin: 0 5%;
    border-radius: 10px;
	text-align: left;
	display: inline-block;
	vertical-align: top;
}

#services .c5 .item h2{
	color: #fff;
}

#services .c5 .item p{
	color: #fff;
}

#services .c5 .item li{
	color: #fff;
}

#services p{
	text-align: justify;
}

/* ***** JOBS ***** */
#jobs{
	text-align: center;
}

#jobs .intro{
	background-image: url(images/intro-background.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 0 200px;
}

#jobs .intro h1{
	color: #fff;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 800;
    line-height: 42px;
    font-style: italic;
	max-width: 900px;
	margin: 0 auto 30px;
}

#jobs .intro p{
	color: #fff;
}

#jobs .c1{
	margin: -155px 0 150px;
}

#jobs .no-job a{
	color: #8bc53e;
}

#jobs .c1 .item{
	position: relative;
	width: 455px;
	height: 290px;
    margin: 0 15px 40px;
	display: inline-block;
    border-radius: 10px;
	overflow: hidden;
}

#jobs .c1 .item .photo{
	height: 100%;
	width: 100%;
    position: relative;
}

#jobs .c1 .item img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}

#jobs .c1 .item .photo:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgb(0 0 0 / 47%) 0%, rgba(0,0,0,0) 100%);
}

#jobs .c1 .item .infos{
	text-align: left;
    position: absolute;
    bottom: 23px;
    left: 26px;
    margin-right: 26px;
    transition: all 0.4s;
}

#jobs .c1 .item .titre{
	color: white;
	font-size: 29px;
    line-height: 35px;
	text-align: left;
	font-weight: 600;
	margin-top: 15px;
}

#jobs .c1 .item:hover .infos{
	transform: translateY(-10px);
}

#jobs .c1 .item h2{
margin-bottom:10px;
}

#jobs .c1 .item span.date{
font-size:13px;
color:#a4a4a4;
display:block;
margin-bottom:20px;
}


#jobs .c1 .item span.button{
display:block;
margin-top:30px;
font-weight:700;
text-align:right;
}

#jobs .c1 .item:hover span.button{
text-decoration:underline;
}

#jobs .microdata{
	display: none;
}

#jobs .c2{ /* affichage d'un article */
display: inline-block;
vertical-align: top;
text-align:center;
width: 100%;
margin-top: 80px;
}

#jobs .c2 .photo{
display: inline-block;
vertical-align: top;
position: relative;
width: 50%;
height: 400px;
margin-left: 9%;
border-radius: 15px;
overflow: hidden;
}

#jobs .c2 .photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#jobs .c2 .photo .date{
background-color: white;
padding: 5px 20px;
display: inline-block;
color: #1d001a;
font-size: 14px;
position: absolute;
bottom: 65px;
right: 15px;
}

#jobs .c2 h1{
margin-bottom:20px;
font-size: 45px;
line-height: 50px;
margin-bottom: 15px;
}

#jobs .c2 .button{
	margin-top: 30px;
}

#jobs .c2 p.date{
font-size:13px;
color:#a4a4a4;
display:block;
margin-bottom:20px;
}

#jobs .c2 .pdfs{
margin-top:30px;	
}

#jobs .c2 .pdfs a{
display: inline-block;
width: 200px;
max-width: 100%;
margin: 0 15px 30px;
height: 150px;
overflow: hidden;
position: relative;
background-color: #fff;
}

#jobs .c2 .pdfs a .image{
width: 100%;
height: 100%;
}

#jobs .c2 .pdfs a img{
	width: 100%;
    height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.6s;
}

#jobs .c2 .pdfs a:hover img{
	transform: scale(1.1);
}

#jobs .c2 .pdfs a .description{
	position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #012153;
    color: white;
    padding: 10px;
    box-sizing: border-box;
    line-height: 20px;
}


#jobs .c2 .content{
display: inline-block;
vertical-align: top;
text-align: left;
width: 40%;
}

#jobs .c2 ul{
margin-bottom:20px;
margin-top:20px;
list-style: none;
}

#jobs .c2 ul li{
font-size: 15px;
padding-left: 15px;
line-height: 28px;
position: relative;
color: #53bcbc;
margin-bottom: 15px;
}

#jobs .c2 ul li:after {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 20px;
	background-color: #53bcbc;
}

#jobs .c2 .photos_secondaires{
margin: 50px auto 0;
text-align: center;
}

#jobs .c2 .photos_secondaires .demo-gallery{
text-align: center;
}

#jobs .c2 .photos_secondaires a.item{
width: 315px;
max-width: 100%;
height: 210px;
margin: 0 10px 20px;
display: inline-block;
}

#jobs .c2 .photos_secondaires a.item img{
width: 100%;
height: 100%;
object-fit: cover;
transition: all 0.4s;
border-radius: 10px;
}

#jobs .c2 .photos_secondaires a.item:hover img{
opacity: 0.8;
}

#jobs .c2 .related{
margin-top:30px;
padding-top:30px;
border-top:1px solid #c0c0c0;
}

#jobs .c2 .related .item{
display:block;
line-height:40px;
color:black;
padding-left:35px;
transition:all 0.3s;
background-image:url('images/common/arrow-right-black-small.png');
background-repeat:no-repeat;
background-position:left -25px center;
}

#jobs .c2 .related .item:hover{
background-position:left 5px center;
}

#jobs .c2 .related .item:nth-child(odd){
background-color:#ececec;
}

#jobs .c2 .related .item:nth-child(even){
background-color:#f9f9f9;
}

#jobs .items_nav{
padding-top: 60px;
text-align: center;
}

#jobs .items_nav a{
	padding: 5px 10px;
	text-decoration: none;
	border: 1px solid lightgray;
	border-radius: 5px;
}

#jobs .items_nav a.next{
	background-position: right 9px center;
	padding: 5px 25px 5px 10px;
	margin: 0;
	background-image: url(images/common/next.png);
	background-repeat: no-repeat;
}

#jobs .items_nav a.prev{
	padding: 5px 10px 5px 25px;
	margin: 0;
	background-image: url(images/common/prev.png);
	background-repeat: no-repeat;
	background-position: 9px center;
}


/* ***** CONTACT ***** */

#contact{
text-align:center;
margin-top: 180px;
}


#contact .c1{
display:inline-block;
vertical-align:middle;
width:37%;
margin-right:6%;
text-align:left;
}

#contact .c1 h2{
    color: #8bc53e;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
	margin-bottom: 10px;
}

#contact .c1 p span.head{
display:block;
width:100%;
font-size:12px;
line-height:14px;
text-transform:uppercase;
color: #b9b9b9;
}

#contact .c1 a:hover{
	color: #8bc53e;
}

#contact .microdata{
	display: none;
}

#contact .c2{
display: inline-block;
vertical-align: middle;
width: 45%;
text-align: left;
height: 359px;
position: relative;
}

#contact .c2:after{
	content: '';
    position: absolute;
    width: 230px;
    height: 63px;
    left: -30px;
    top: 5px;
    border-radius: 10px;
    background-image: url(images/avis-google.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#contact .c2 .streetview{
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 15px;
overflow: hidden;
}

#contact .map{
width:100%;
height:433px;
margin-top: 100px;
}


/* ***** Mentions légales ***** */


#legal{
text-align:center;
margin-bottom:100px;
padding-bottom:30px;

}

#legal .main_width{
padding-top:85px;
padding-bottom:30px;
}


#legal h1{
text-align:center;
background-position:bottom center;
margin-bottom:73px;
}

#legal h2{
background-position: 0px 7px;
position: relative;
bottom: 0px;
margin-top: 14px;
margin-bottom: 14px;
font-size:28px;
line-height:30px;
background-position: bottom left;
padding-bottom: 7px;
}

#legal h3{
line-height:23px!important;
padding-bottom: 6px!important;
}

#legal p{
margin-bottom:5px;
}

#legal p span{
display:inline-block;
vertical-align:top;
width:166px;
text-decoration:underline;
}

#legal .c0{
width:600px;
text-align:left;
display:inline-block;
vertical-align:top;
border:1px solid #c0c0c0;
text-align:left;
padding:1%;
margin-bottom:30px;
background-color:white;
border-radius:13px;
}

#legal .c1{
display:inline-block;
vertical-align:top;
width:36%;
margin-right:6%;
padding:1%;
border:1px solid #c0c0c0;
text-align:left;
margin-bottom:30px;
min-height:262px;
background-color:white;
border-radius:13px;
}

#legal .c1.last{
margin-right:0px;
}

#legal .c1 p{
margin-bottom:8px;
font-size:13px;
line-height:22px;
}

#legal .c2{
width:36%;
padding:1%;
margin-right:4%;
text-align:left;
display:inline-block;
vertical-align:top;
border:1px solid #c0c0c0;
margin-bottom:30px;
height:600px;
overflow:auto;
padding-bottom:30px;
background-color:white;
border-radius:13px;
}

#legal .c2 h3{

}

#legal .c2 h4{

}

#legal .c2 p{
margin-bottom:8px;
font-size:13px;
line-height:22px;
}

#legal .c2 ul li{
margin-bottom:5px;
font-size:13px;
line-height:22px;
padding-left:15px;
list-style-type:none;
}

#legal .c2 ul ul li{
padding-left:30px;
}

#legal .c2.last{
margin-right:0px;
}


/* ***** 404 ***** */

#e404{
text-align:center;
margin-bottom:100px;
padding-bottom:30px;
}

#e404 .main_width{
padding-top:85px;
padding-bottom:30px;
}

#e404 h1{
	text-align:center;
background-position:bottom center;
margin-bottom:73px;
}


/* *********************** FOOTER *********************** */


#footer{
	background-color: #fff;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	padding-top: 150px;
}

#footer .content{
	width: 530px;
	text-align: center;
}

#footer .logo{
	width: 300px;
	margin: 0 auto 50px;
	display: block;
}

#footer .logo img{
	width: 100%;
	height: auto;
}

#footer .heures_ouverture{
	display: inline-block;
	vertical-align: top;
	text-align: left;
	width: 40%;
	margin: 0 5%;
}

#footer .heures_ouverture .title{
	display: block;
	margin-bottom: 10px;
	font-size: 13px;
	text-transform: uppercase;
	color: #303030;
	font-weight: 400;
}

#footer .heures_ouverture p{
	color: #444c59;
	text-transform: uppercase;
	font-size: 12px;	
	line-height: 12px;
}

#footer .heures_ouverture p.today{
	color: #8bc53e;
}

#footer .contact-links{
	display: inline-block;
	vertical-align: top;
	text-align: left;
	width: 40%;
	margin-right: 5%;
}

#footer .contact-links a:not(.button){
	display: block;
	width: fit-content;
	text-decoration: none;
	color: #303030;
	padding-left: 28px;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 21px;
	margin: 0 0 15px 0;
	background-size: 20px;
	background-position: left center;
	background-repeat: no-repeat;
}

#footer .contact-links a.tel{
	background-image: url(images/icon-tel.svg);
}

#footer .contact-links a.mail{
	background-image: url(images/icon-mail.svg);
}

#footer .contact-links a.map{
	background-image: url(images/icon-map.svg);
}

#footer .contact-links .button{
	margin-top: 30px;
}

#footer .images{
	flex: 1;
	position: relative;
}

#footer .images img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-left-radius: 150px;
}

#footer .images:after{
	content: '';
	width: 200px;
	height: 200px;
	background-image: url(images/christian-et-jordan-schillings-attaches-consult-green.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	right: 5%;
	top: -60px;
}

#footer p.copyright{
color: #303030;
text-align: center;
font-size: 12px;
margin-top: 90px;
padding-bottom: 15px;
margin-bottom: 0px;
max-width: 85%;
margin: 90px auto 0;
}

#footer p.copyright a{
color:#303030;
text-decoration:underline;
}

#footer p.copyright+a{
width: 100px;
display: block;
margin: 0 auto;
padding-bottom: 30px;
}

#footer p.copyright+a img{
width: 100%;
height: auto;
opacity: 0.4;
}



/* ***** CAPTCHA ***** */

.grecaptcha-badge { 
	visibility: hidden; 
}


/* ***** COOKIES ***** */

#cookieChoiceInfo{
	box-sizing: border-box;
}

#cookieChoiceInfo a{
	display: inline-block;
}

/* ***** AOS ***** */

.fade_container {
    overflow-x: hidden;
}