@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

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

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

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


body{
font-family: "Varela Round", sans-serif;
font-weight: 400;
width:100%;
}


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

p{
color:#021126;
line-height:26px;
font-size:15px;
}

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

h1{
color:#012153;
font-size: 48px;
font-weight: 400;
line-height: 56px;
-webkit-text-stroke: 2px #012153;
}

h2{
color:#012153;
font-size: 40px;
font-weight: 400;
line-height: 48px;
-webkit-text-stroke: 1px #012153;
}

.button{
display: block;
width: fit-content;
margin-top: 20px;
background-color: #fff;
font-size: 13px;
line-height: 14px;
text-transform: uppercase;
border-radius: 20px;
padding: 7px 35px 7px 15px;
position: relative;
text-decoration: none;
transition: all 0.4s;
}

.button:after{
	content:'';
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 17px;
	height: 17px;
	background-image: url(images/icon-button.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 0.4s;
}

a.button:hover:after{
right: 10px;
}

a{
color:inherit;
text-decoration:underline;
}



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

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



/* *********************** BANNER / MENU *********************** */
#banner{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.15);
	-webkit-box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.15);
	padding: 20px 0;
	z-index: 100;
}

#banner a{
	text-decoration: none;
}

#banner .main_width{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#banner .logo{
	width: 220px;
	height: auto;
	margin-bottom:16px;
}

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

#banner .content{
	flex: 1;
	margin-left: 100px;
}

#banner .sub_menu{
	width: 100%;
	display: block;
	max-width: 580px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-left: auto;
}

#banner .sub_menu .links a{
	color: #BABABA;
	font-size: 13px;
	display: inline-block;
	text-transform: uppercase;
}

#banner .sub_menu .links a+a{
	padding-left: 10px;
	margin-left: 8px;
	border-left: 1px solid #BABABA;
}

#banner .sub_menu .links a:hover{
	text-decoration: underline;
}

.button-labo{
	border: 1px solid #E12E2A;
    padding: 5px 15px 5px 35px;
    margin-top: 0;
}

.button-labo:after{
	content:'';
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	width: 17px;
	height: 17px;
	background-image: url(images/icon-button-labo.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 0.4s;
}

.button-labo:hover:after{
	left: 10px;
}

#banner .langues a{
	color: #BABABA;
	font-size: 12px;
	display: inline-block;
}

#banner .langues a.selected{
	color: #022055;
	font-weight: 600;
}

#banner .langues a+a{
	padding-left: 5px;
	margin-left: 5px;
	border-left: 1px solid #BABABA;
}

#banner .langues a:hover{
	text-decoration: underline;
}

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

#banner .burger{
	position: absolute;
    right: 0;
    width: 1175px;
	max-width: 89vw;
    box-sizing: border-box;
    padding: 10px 0 10px 30px;
    padding-right: calc((100% - 1000px) / 2);
    background-color: #012153;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    bottom: 0;
    transform: translateY(50%);
}

@media screen and (min-width: 2000px) {
  #banner .burger {
    padding-right: 400px;
  }
}

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

#banner .burger ul a{
	text-transform: uppercase;
	font-size: 13px;
	color: #fff;
}

#banner .burger ul a.selected, #banner .burger ul a:hover{
	text-decoration: underline;
}

#banner ul li.has_sub{
	position: relative;
}

#banner .drop_menu{
	position: absolute;
	width: 207px;
	height: 0;
	overflow: hidden;
	left: -65px;
	z-index: 101;
	transition: all 0.4s;
	box-sizing: border-box;
	background-color: #012153;
}

#banner li.has_sub:hover .drop_menu{
	height: 315px;
    padding: 10px 0;
}

#banner .drop_menu a{
	width: 100%;
	box-sizing: border-box;
	padding: 7px 20px;
	font-size: 15px;
	display: block;
}

/* *********************** PAGES *********************** */

/* ***** HOME ***** */
#home{
padding-top: 250px;
}

#home .c1{
text-align: center;
position: relative;
}

#home .c1 h1{
margin-bottom: 15px;
}

#home h1 .wodry{
display: inline-block;
font-size: 44px;
vertical-align: middle;
line-height: 50px;
height: auto;
width: auto;
transition: all 0.2s;
color: #E12E2A;
text-transform: uppercase;
-webkit-text-stroke: 2px #E12E2A;
overflow: hidden;
}

#home h1+p{
	font-size: 20px;
	margin-bottom: 30px;
}

#home .video{
	position: relative;
	width: 100%;
	height: 370px;
	border-radius: 300px;
	overflow: hidden;
}

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

#home .c1 .container{
	position: relative;
}

#home .c1 .infos{
	background-color: #fff;
	position: absolute;
	left: -100px;
	bottom: -80px;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.09);
	-webkit-box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.09);
	-moz-box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.09);
	display: flex;
	justify-content: space-bewtween;
	align-items: center;
	padding: 10px;
	width: 555px;
	box-sizing: border-box;
}

#home .c1 .infos p{
	text-align: left;
    flex: 1;
    margin-right: 30px;
    font-size: 13px;
    line-height: 24px;
	padding-left: 10px;
}

#home .c1 .infos .image{
	width: 221px;
    height: 133px;
    border-radius: 15px;
    overflow: hidden;
}

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

@media screen and (max-width: 1500px) {
	#home .c1 .infos{
		left: 100px;
	}
}

#home .c2{
	text-align: center;
	padding-top: 200px;
	margin-bottom: 150px;
}

#home .c2 .content{
	display: inline-block;
	width: 45%;
	vertical-align: middle;
	margin-right: 9%;
	text-align: left;
}

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

#home .c2 .content .list{
	display: inline-block;
    width: 42%;
    vertical-align: top;
}

#home .c2 .list:first-of-type{
	padding-right: 6%;
	border-right: 2px solid #012153;
	margin-right: 5%;
	width: 44%;
}

#home .c2 .content a{
	text-decoration: none;
    margin: 30px 0;
    display: block;
    width: auto;
    color: #021126;
    text-transform: uppercase;
    font-size: 12px;
    padding-left: 35px;
    background-image: url(images/icon-link-c2.svg);
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: left center;
    letter-spacing: 1px;
	transition: all 0.2s;
}

#home .c2 .content a:hover{
    background-position: left 5px center;
}

#home .c2 .images{
	display: inline-block;
	width: 45%;
	vertical-align: middle;
	transform: translateY(-50px);
}

#home .c2 .images .grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	column-gap: 25px;
	row-gap: 25px;
}

#home .c2 .images .image-1{
	grid-row: 1 / 3;
	transform: translateY(100px);
}

#home .c2 .images .grid>div{
    overflow: hidden;
	border-radius: 15px;
}

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

#home .c3{
	position: relative;
	padding: 35px 0 150px;
}

#home .c3 .background{
	width: 100%;
	height: 100%;
	background-image: url(images/home-c3-background.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
	border-top-right-radius: 50px;
	border-top-left-radius: 50px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#home .c3 .content{
	display: inline-block;
	width: 63%;
	text-align: left;
}

#home .c3 h2{
	color: #fff;
	margin-bottom: 20px;
	-webkit-text-stroke: 1px #fff;
}

#home .c3 p{
	color: #fff;
}

#home .c3 .citation{
	margin-top: 50px;
	max-width: 550px;
}

#home .c3 .citation p:not(.signature){
	text-transform: uppercase;
	font-size: 16px;
    line-height: 29px;
	padding-left: 30px;
	background-image: url(images/icon-citation.svg);
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: left top 1px;
}

#home .c3 .citation p.signature{
	padding-left: 60px;
	background-image: url(images/icon-citation-signature.svg);
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: left 32px center;
	margin-top: 7px;
}

#home .c3 .image{
    display: inline-block;
    width: 30%;
    margin-left: 3%;
    height: 460px;
    transform: scale(1.5);
    transform-origin: top left;
}

#home .c3 .image .image-1{
	content: '';
    position: absolute;
    left: -40px;
    top: 13px;
	width: 181px;
    height: 359px;
    background-image: url(images/home-c3-image-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

#home .c3 .image .image-2{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;    
	width: 181px;
    height: 359px;
    background-image: url(images/home-c3-image-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}


@media screen and (max-width: 1500px) {
	#home .c3{
		padding: 60px 0 90px;
	}
	#home .c3 .image{
		width: 22%;
        height: 335px;
	}
	#home .c3 .image .image-1{
		width: 130px;
        height: 260px;
	}
	#home .c3 .image .image-2{
		width: 130px;
        height: 260px;
	}
}

/* ***** SERVICES ***** */
#services{
	padding-top: 200px;
	text-align: center;
}

#services .c1{
	position: relative;
}

#services .c1:after{
	content: '';
    position: absolute;
    right: 17%;
    top: -39px;
    width: 400px;
    height: 600px;
    background-image: url(images/home-intro-background-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

#services .c1:before{
	content: '';
    position: absolute;
    right: 2%;
    top: 179px;
    width: 400px;
    height: 600px;
    background-image: url(images/home-intro-background-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

@media screen and (max-width: 1500px) {
	#services .c1:before, #services .c1:after{
		width: 350px;
		height: 500px;
	}
}

#services h1{
	font-size: 36px;
    line-height: 42px;
	position: absolute;
    left: 0;
    top: 0;
    padding: 20px;
    width: 100%;
    color: #fff;
    -webkit-text-stroke: 1px #ffffff;
	z-index: 5;
	box-sizing: border-box;
}

#services h2{
	font-size: 25px;
    line-height: 38px;
    -webkit-text-stroke: 1px #012153;
}

#services .c1_c1{
	display: inline-block;
	width: 35%;
	margin-right: 4%;
	text-align: left;
	vertical-align: top;
	position: relative;
}

#services .image{
	overflow: hidden;
	border-radius: 20px;
	width: 100%;
	height: 450px;
	vertical-align: top;
	position: relative;
}

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

#services .image .links{
	position: absolute;
    z-index: 5;
    bottom: 0;
    left: 0;
    padding: 20px;
}

#services .image .links .button{
	margin-top: 15px;
}

#services h2{
	margin-top: -200px;
	padding-top: 200px;
}

#services .content{
	display: inline-block;
	vertical-align: middle;
	width: 45%;
	text-align: left;
	position: relative;
}

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

#services li{
	font-size: 13px;
	text-transform: uppercase;
	padding-left: 20px;
	position: relative;
}

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

#services li+li{
	margin-top: 15px;
}



#services .photos{
text-align:center;
margin-top:50px;
}

#services .photos img{
width:220px;
margin:10px;
display:inline-block;
border-radius:8px;
}

#services .rapport{
text-align:center;
margin-top:50px;
}

#services .rapport img{
max-width:45%;
margin:0px 2%;
border-radius:8px;	
display:inline-block;
vertical-align:top;
}

#services .c2{
	text-align: center;
	margin-top: 75px;
	margin-bottom: 80px;
}

#services .c2 h2{
	margin-bottom: 30px;
}

#services .c2 .items{
	margin-top: 40px;
}

#services .c2 .item{
	display: inline-block;
    vertical-align: middle;
    text-align: center;
    margin: 20px 15px 0;
}

#services .c2 .item.top{
    vertical-align: top;
}

#services .c2 .item span{
	display: block;
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 10px;
}

#services .c2 .item img{
	display: block;
    width: 110px;
    height: auto;
	margin: 0 auto;
}

#services .c2 .item img.small{
    width: 90px;
}

#services .c2 .text{
	text-align: left;
	max-width: 550px;
	margin: 0 auto;
}

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

#services .c2 .text+h2{
	margin-top: -150px;
}

#services .button{
	border: 1px solid #012153;
	margin-top: 30px;
}

/* ***** A propos ***** */
#a-propos{
	text-align: center;
	padding-top: 220px;
}

#a-propos .c1 .background{
	background-image: url(images/home-c3-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
	border-radius: 20px;
	padding: 40px 80px 55px;
	width: 100%;
	box-sizing: border-box;
	position: relative;
}

#a-propos .c1 h1{
	text-align: left;
	color: #fff;
	-webkit-text-stroke: 2px #fff;
}

#a-propos .c1 .content{
	text-align: left;
	display: inline-block;
	width: 45%;
	vertical-align: top;
	margin-right: 5%;
	margin-top: 35px;
}

#a-propos .c1 .content p{
	color: #fff;
	text-align: justify;
}

#a-propos .c1 .image{
	display: inline-block;
	width: 49%;
	vertical-align: top;
	position: relative;
}

#a-propos .c1 .image img{
	width: 100%;
    height: 650px;
    object-fit: cover;
    position: absolute;
    right: 0;
    top: 30px;
    border-radius: 15px;
    overflow: hidden;
}

#a-propos .c2{
	margin-top: 150px;
	position: relative;
}

#a-propos .c2 .content{
	display: block;
	width: 50%;
	margin: 0 0 0 auto;
	text-align: left;
}

#a-propos .c2 .content p{
	text-align: justify;
}

#a-propos .c2 .content ul{
	list-style: none;
	margin: 20px 0 40px;
}

#a-propos .c2 .content li{
	font-size: 13px;
	text-transform: uppercase;
	padding-left: 20px;
	position: relative;
}

#a-propos .c2 .content li:after{
	content:'';
	width: 7px;
	height: 7px;
	background-color: #E12E2A;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 4px;
}

#a-propos .c2 .content li+li{
	margin-top: 15px;
}

#a-propos .c2 .button-labo{
	margin: 20px 0 40px;
}

#a-propos .c2 .button:not(.button-labo){
	border: 1px solid #012153;
}

#a-propos .c2 .image{
    position: absolute;
    left: 68px;
    top: 108px;
    width: 30%;
    height: 460px;
    transform: scale(1.5);
}

#a-propos .c2 .image .image-1{
	content: '';
    position: absolute;
    left: 0;
    top: 13px;
	width: 150px;
    height: 359px;
    background-image: url(images/a-propos-c2-image-1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

#a-propos .c2 .image .image-2{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;    
	width: 150px;
    height: 359px;
    background-image: url(images/a-propos-c2-image-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
}

#a-propos .c3{
	margin: 120px 0 70px;
}

#a-propos .timeline{
border-left:1px solid #c0c0c0;
padding-left:55px;
text-align: left;
width: 100%;
max-width: 550px;
margin: 0 auto;
margin-top: 30px;
}

#a-propos .timeline h3{ 
background-image: url(images/h2_puce.svg);
background-repeat: no-repeat;
background-position: 0px 9px;
background-size: 15px;
position: relative;
left: -62px;
padding-left: 30px;
font-size: 28px;
max-width:100%;
margin-bottom:15px;
color: #012153;
font-size: 27px;
line-height: 35px;
}

#a-propos .timeline img+h3{
	margin-top: 30px;
}

#a-propos .timeline p{
	text-align: justify;
}

#a-propos .timeline img{
	width: 350px;
	height: auto;
	margin: 20px 0;
}

/* ***** DOCUMENTATION ***** */

#documentation .c1{
text-align:center;
}

#documentation .c1 .c1_c1{
	width: 100%;
	height: auto;
	min-height: 300px;
	overflow: hidden;
	background-image: url(images/home-c3-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

#documentation .c1 h1{
	padding: 250px 0 10px;
	color: #fff;
	-webkit-text-stroke: 2px #fff;
}

#documentation .c1 h1+p{
	padding-bottom: 300px;
	color: #fff;
}

#documentation .c1 .c1_c2{
	position: relative; 
	z-index: 1;
	margin-top: -240px;
}

#documentation .c1_c2 a{
	text-decoration: none;
	width: 100%;
	display: flex;
	justify-content: space-bewtween;
	align-items: center;
}

#documentation .c1_c2 .item{
	display: block;
	width: 100%;
	max-width: 550px;
	margin: 0 auto 25px;
	background-color: #fff;
	box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.09);
	-webkit-box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.09);
	padding: 15px 10px;
	border-radius: 20px;
	box-sizing: border-box;
	transition: all 0.4s;
}

#documentation .c1_c2 .item:hover{
	transform: scale(1.05);
}

#documentation .c1_c2 .image{
	width: 123px;
	height: 50px;
}

#documentation .c1_c2 .image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#documentation .c1_c2 .item .content{        
	text-align: left;
	flex: 1;
	margin-left: 40px;
}

#documentation .c1_c2 .item .content h2{        
	font-size: 15px;
	line-height: 18px;
}

#documentation .c1_c2 .item .content p.counter{        
	color: #b2b2b2;
	font-size: 11px;
	line-height: 15px;
	text-transform: uppercase;
	margin-top: 3px;
}

#documentation .c2{
text-align:center;
}

#documentation .c2 .c2_c1{
	width: 100%;
	height: auto;
	min-height: 300px;
	overflow: hidden;
	background-image: url(images/home-c3-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

#documentation .c2 h1{
	padding: 250px 0 10px;
	color: #fff;
	-webkit-text-stroke: 2px #fff;
}

#documentation .c2 h1+p{
	color: #fff;
}

#documentation .c2 h1+p+.button{
	margin: 30px auto 300px;
}

#documentation .c2 .c2_c2{
	position: relative; 
	z-index: 1;
	margin-top: -235px;
	min-height: 400px;
}

#documentation .c2 .filter{
	margin-bottom: 30px;
}

#documentation .c2 .filter a{
	background-color: #fff;
	font-size: 13px;
	padding: 5px 10px;
	line-height: 15px;
	display: inline-block;
	margin: 0 10px 10px;
	color: #012153;
	border-radius: 20px;
	width: fit-content;
}

#documentation .c2 .filter a.active{
	background-color: #012153;
	border: 1px solid #fff;
	color: #fff;
}

#documentation .c2_c2 .item{
	display: flex;
	justify-content: space-bewtween;
	align-items: center;
	width: 100%;
	max-width: 550px;
	margin: 0 auto 25px;
	background-color: #fff;
	box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.09);
	-webkit-box-shadow: 1px 0px 5px 0px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 1px 0px 5px 0px rgba(0,0,0,0.09);
	padding: 15px 10px;
	border-radius: 20px;
	box-sizing: border-box;
	transition: all 0.4s;
	cursor: pointer;
}

#documentation .c2_c2 .item:hover{
	transform: scale(1.05);
}

#documentation .c2_c2 .image{
	width: 123px;
	height: 50px;
}

#documentation .c2_c2 .image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}

#documentation .c2_c2 .item .content{        
	text-align: left;
	flex: 1;
	margin-left: 40px;
}

#documentation .c2_c2 .item .content h2{        
	font-size: 15px;
	line-height: 18px;
}

#documentation .c2_c2 .item .content p.counter{        
	color: #b2b2b2;
	font-size: 11px;
	line-height: 20px;
	text-transform: uppercase;
	margin-top: 3px;
	padding-left: 26px;
	background-image: url(images/icon-pdf.svg);
	background-size: 18px;
	background-repeat: no-repeat;
	background-position: left center;
}

#documentation #pop-up .form{
   position: fixed;
   z-index: 1000;
   width: 700px;
   max-width: 85vw;
   left: 50%;
   transform: translateX(-50%);
   background-color: #fff;
   border-radius: 30px;
   height: 80vh;
   top: -100vh;
   padding: 40px 30px;
   box-sizing: border-box;
   transition: all 0.6s;
   overflow: auto;
}

#documentation #pop-up.open .form{
   top: 10vh;
}

#documentation #pop-up .background{
	position: fixed;
	z-index: 999;
	background-color: #0000006b;
	left: 0;
	top: -200vh;
	width: 100%;
	height: 100%;
   transition: all 0.6s;
}

#documentation #pop-up.open .background{
	top: 0;
}

#documentation #pop-up h2 {
    font-size: 30px;
	line-height: 40px;
    padding-bottom: 0;
    display: block;   
	margin: 0 auto 30px;
    max-width: 500px;
}
#documentation #pop-up h2+p {
    margin: 0 auto 10px;
    max-width: 500px;
}
#documentation #pop-up .intro>div {
    display: inline-block;
    width: calc( 100% - 106px );
    margin-left: 35px;
    vertical-align: middle;
}
#documentation #pop-up .product_title {
    color: #275B90;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 7px;
}
#documentation #pop-up .product_title+p {
    margin: 0;
}
#documentation #pop-up img {
    height: auto;
    display: inline-block;
    width: 65px;
    vertical-align: middle;
    margin: 0;
}
#documentation #pop-up form {
    margin-top: 35px;
}
#documentation #pop-up p {
    font-size: 16px;
    color: #000;
}
#documentation #pop-up .c1 {
    display: inline-block;
    width: 48%;
    margin-right: 4%;
    vertical-align: top;
}
#documentation #pop-up .c2 {
    display: inline-block;
    width: 47%;
    vertical-align: top;
}
#documentation #pop-up p.optin {
    font-size:12px;
    line-height:21px;
}
#documentation #pop-up #optin {
    margin-right: 5px;
    position: relative;
    top: 2px;
    cursor: pointer;
}
#documentation #pop-up .form_part {
    margin: 0 auto 30px;
    max-width: 500px;
}
#documentation #pop-up label {
    display: block;
    margin-bottom: 5px;
    vertical-align: middle;
}
#documentation #pop-up input[type="text"], #documentation #pop-up input[type="email"], #documentation #pop-up input[type="datetime-local"] {
    border: 1px solid #bdc3c7;
    padding: 10px 20px;
    font-size: 16px;
    display: inline-block;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
    color: #000;
    vertical-align: middle;
	border-radius: 10px;
}
#documentation #pop-up input[type="text"]:hover, #documentation #pop-up textarea:hover {
    box-shadow: 1px 1px 10px 0px rgba(50, 50, 50, 0.20);
}
#documentation #pop-up select {
    border: 1px solid #bdc3c7;
    padding: 10px 20px;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    width:100%;
    color: #000;
    display: inline-block;
}
#documentation #pop-up .remarque label {
    width: 100%;
    margin: 0 0 10px;
}
#documentation #pop-up .required:after {
    content: "(requis)";
    font-size: 13px;
    color: #9d9d9d;
    margin-left: 8px;
}
#documentation #pop-up textarea {
    border: 1px solid #bdc3c7;
    padding: 10px 20px;
    font-size: 16px;
    color: #2c3e50;
    transition: all 0.2s ease-in-out;
    width:100%;
    max-width: 100%;
    min-width: 100%;
    box-sizing: border-box;
    height:100px;
    color: #424e5a;
    display: inline-block;
    font-family: 'Rubik', sans-serif;
}
#documentation #pop-up .small {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 10px;
    font-size: 12px;
    line-height: 18px;
    color: #b7b7b7;
}
#documentation #pop-up .opt_in {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
}
#documentation #pop-up .opt_in label {
    display: inline-block;
    cursor: pointer;
    width: calc(100% - 40px);
}
#documentation #pop-up .boutons {
    margin:0;
    text-align: center;
}
#documentation #pop-up .boutons .button{
    cursor: pointer;
	border: 1px solid #E12E2A;
	display: inline-block;
	margin-right: 20px;
	padding: 7px 25px 7px 25px;
}

#documentation #pop-up .boutons span{
	cursor: pointer;
	color: #BABABA;
}

/* ***** REFERENCES ***** */
#references .c1{
text-align:center;
}

#references .c1{
	width: 100%;
	height: auto;
	min-height: 300px;
	overflow: hidden;
	background-image: url(images/home-c3-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

#references .c1 h1{
	padding: 250px 0 10px;
	color: #fff;
	-webkit-text-stroke: 2px #fff;
}

#references .c1 h1+p{
	padding-bottom: 100px;
	color: #fff;
}

#references .c2{
	margin-top: 50px;
	text-align: center;
}

#references .c2 .item{
	height: auto;
	width: 200px;
	display: inline-block;
	vertical-align: top;
	margin: 0 30px 50px;
}

#references .c2 img{
	height: 70px;
	width: 80%;
	object-fit: contain;
	filter: grayscale(1);
	opacity: 0.8;
}

#references .c2 p{
	font-size: 13px;
    text-align: left;
    line-height: 18px;
	margin-top: 5px;
}

/* ***** LOCATION ***** */

#location{
text-align:center;
}

#location .c1{
	width: 100%;
	height: auto;
	min-height: 300px;
	overflow: hidden;
	background-image: url(images/home-c3-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

#location .c1 h1{
	padding: 250px 0 10px;
	color: #fff;
	-webkit-text-stroke: 2px #fff;
}

#location .c1 .filter{
	padding-bottom: 270px;
}

#location .c1 .filter a{
	background-color: #fff;
    font-size: 13px;
    line-height: 14px;
    text-transform: uppercase;
    border-radius: 20px;
    padding: 7px 15px;
    text-decoration: none;
	margin: 0 10px;
}

#location .c1 .filter a.active{
	color: #fff;
	background-color: #012153;
}

#location .c2{
	position: relative; 
	z-index: 1;
	margin-top: -220px;
}

#location .c2 .item{
	display: inline-block;
	vertical-align: top;
	width: 250px;
	max-width: 100%;
	height: auto;
	margin: 0 15px 30px;
}

#location .c2 .item a{
	text-decoration: none;
}

#location .c2 .item .image{
	width: 100%;
	height: 250px;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	margin-bottom: 15px;
}

#location .c2 .item .image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s;
}

#location .c2 .item:hover a .image img{
	transform: scale(1.2);
}

#location .c2 .item .image .cat{
	position: absolute;
	top: 10px;
	right: 10px;
	color: #fff;
	border-radius: 5px;
	font-size: 10px;
	text-transform: uppercase;
	padding: 4px 6px;
}

#location .c2 .item .image .cat-1{
	background-color: #7E5400;
}

#location .c2 .item .image .cat-2{
	background-color: #760015;
}

#location .c2 .item .image .cat-3{
	background-color: #012153;
}

#location .c2 .item .image .cat-4{
	background-color: #0E6800;
}

#location .c2 .item .content{
	text-align: left;
	padding: 0 15px;
}

#location .c2 .item .content h2{
	text-transform: uppercase;
	font-size: 15px;
	line-height: 20px;
}

#location .c2 .item .content .info{
	font-size: 14px;
    color: #BABABA;
}


/* ***** NEWS ***** */
#news .intro{
text-align:center;
}

#news .intro{
	width: 100%;
	height: auto;
	min-height: 300px;
	overflow: hidden;
	background-image: url(images/home-c3-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

#news .intro h1{
	padding: 250px 0 300px;
	color: #fff;
	-webkit-text-stroke: 2px #fff;
}

#news .c1{
margin-top: -250px;
position: relative;
z-index: 2;
min-height: 250px;
text-align: center;
}

#news .c1>p{
	text-align: center;
	color: #fff;
}

#news .c1 .item{
	position: relative;
	height: 317px;
	display: inline-block;
	width: 40%;
	margin: 0 2% 35px;
}

#news .c1 .item .photo{
	height: 100%;
	width: 100%;
}

#news .c1 .item img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
}

#news .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%);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

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

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

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

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

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


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

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

#news .microdata{
	display: none;
}

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

#news .c2 .photo{
display: inline-block;
vertical-align: top;
position: relative;
width: 50%;
margin-left: 9%;
}

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

#news .c2 .photo img{
width: 100%;
height: auto;
border-radius: 15px;
}

#news .c2 h1{
margin-bottom:20px;
}

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

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

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

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

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

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

#news .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;
}


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

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

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

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


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

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

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

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


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


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

#news .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;
}

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

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

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

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

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

#news .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;
}

#news .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;
}




/* ***** OFFRES D'EMPLOI ***** */

#offreemploi .intro{
text-align:center;
}

#offreemploi .intro{
	width: 100%;
	height: auto;
	min-height: 300px;
	overflow: hidden;
	background-image: url(images/home-c3-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

#offreemploi .intro h1{
	padding: 250px 0 300px;
	color: #fff;
	-webkit-text-stroke: 2px #fff;
}

#offreemploi .c1{
margin-top: -250px;
position: relative;
z-index: 2;
min-height: 250px;
text-align: center;
}

#offreemploi .c1>p{
	text-align: center;
	color: #fff;
}

#offreemploi .c1 .item{
	position: relative;
	height: 317px;
	display: inline-block;
	width: 40%;
	margin: 0 2% 35px;
}

#offreemploi .c1 .item .photo{
	height: 100%;
	width: 100%;
}

#offreemploi .c1 .item img{
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 30px;
}

#offreemploi .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%);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

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

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

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

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

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


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

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

#offreemploi .microdata{
	display: none;
}

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

#offreemploi .c2 .photo{
display: inline-block;
vertical-align: top;
position: relative;
width: 50%;
margin-left: 9%;
}

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

#offreemploi .c2 .photo img{
width: 100%;
height: auto;
border-radius: 15px;
}

#offreemploi .c2 h1{
margin-bottom:20px;
}

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

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

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

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

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

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

#offreemploi .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;
}


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

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

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

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


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

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

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

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


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


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

#offreemploi .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;
}

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

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

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

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

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

#offreemploi .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;
}

#offreemploi .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;
}

#contact .c1{
	width: 100%;
	height: auto;
	min-height: 300px;
	overflow: hidden;
	background-image: url(images/home-c3-background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
}

#contact .c1 h1{
	padding: 250px 0 300px;
	color: #fff;
	-webkit-text-stroke: 2px #fff;
}

#contact .c2{
	position: relative; 
	z-index: 1;
	margin-top: -220px;
}

#contact .c2 .item{
	display: inline-block;
	width: 31%;
	margin: 0 1%;
	background-color: #fff;
	border-radius: 20px;
	vertical-align: top;
	overflow: hidden;
}

#contact .c2 .item .map{
	display: block;
	width: 100%;
	height: 300px;
}

#contact .c2 .item .map iframe{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#contact .c2 .item .infos{
	width: 100%;
	padding: 20px 30px;
	box-sizing: border-box;
	text-align: left;
}

#contact .c2 .item .infos h2{
    font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 20px;
	line-height: 23px;
}

#contact .c2 .item .infos a{
	text-decoration: none;
    padding-left: 30px;
    font-size: 14px;
    line-height: 22px;
    display: block;
    margin: 12px 0;
    max-width: 156px;
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: left top 1px;
}

#contact .c2 .item .infos a.address{
	background-image: url(images/icon-address-dark.svg);
}

#contact .c2 .item .infos a.tel{
	background-image: url(images/icon-tel-dark.svg);
}

#contact .c2 .item .infos a.mail{
	background-image: url(images/icon-mail-dark.svg);
}

#contact .microdata{
	display: none;
}

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


#legal{
text-align:center;
text-align:center;
padding-top:250px;
margin-bottom: 70px;
}


#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;
padding-top:250px;
margin-bottom: 100px;
}

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


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


#footer{
width:100%;
text-align: center;
}

#footer .logo{
	width: 270px;
	height: auto;
	display: block;
	margin: 50px auto;
}

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

#footer .content{
	background-image: url(images/footer-background.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
	padding-top: 50px;
}

#footer .c1, #footer .c2{
	text-align: left;
	display: inline-block;
	vertical-align: top;
	width: 25%;
	margin-right: 5%;
}

#footer .c3{
	text-align: left;
	display: inline-block;
	vertical-align: top;
	width: 12%;
}

#footer .title{
	color: #fff;
	font-size: 15px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

#footer .content .c1 a, #footer .content .c2 a{
	text-decoration: none;
    color: white;
    padding-left: 30px;
    font-size: 14px;
    line-height: 22px;
    display: block;
    margin: 12px 0;
    max-width: 156px;
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: left top 1px;
}

#footer .content a.address{
	background-image: url(images/icon-address.svg);
}

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

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

#footer .content .c3 a{
	text-decoration: none;
    color: white;
    font-size: 12px;
    line-height: 22px;
    display: block;
    margin: 12px 0;
	text-transform: uppercase;
}

#footer .content .c3 a.selected{
	text-decoration: underline;
}

#footer .content a:hover{
	text-decoration: underline;
}

#footer p.copyright{
color:white;
text-align:center;
font-size:13px;
margin-top:90px;
padding-bottom:5px;
margin-bottom:0px;
}

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

#footer p.copyright+a{
width: 80px;
opacity: 0.7;
display: block;
margin: 0 auto;
padding-bottom: 15px;
}

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


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

.grecaptcha-badge { 
	visibility: hidden; 
}


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

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

#cookieChoiceInfo a{
	display: inline-block;
}

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

.fade_container {
    overflow-x: hidden;
}