@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');

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

html{
width:100%;
}

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


body{
font-family: 'Saira', sans-serif;
font-weight:400;
background-repeat:no-repeat;
width:100%;
}


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

p{
color:#231f20; /* noir */
line-height:27px;
font-size:18px;
margin-bottom:17px;
}


h1{
color:#e83d62;
text-transform: uppercase;
font-size: 46px;
font-weight: 600;
line-height: 48px;
padding:31px 0px 91px 0px;
font-family: 'Saira', sans-serif;
font-weight: 400;

}

h1 span{
color:#231f20; /* rose */
}

h2{
color:#231f20;
text-transform: uppercase;
font-size: 34px;
font-weight: 600;
line-height: 48px;
padding:100px 0px 70px 0px;
font-family: 'Saira', sans-serif;
font-weight: 400;
}

h2 span{
color:#e83d62; /* rose */
}

h3{

}

h4{

}



a.button{
display: inline-block;
background-color: #e83d62;
text-transform: uppercase;
color: white;
padding: 14px 27px;
margin:0px 10px;
font-weight: 600;
transition: all 0.3s ease-in-out;
font-size: 16px;
text-decoration:none;
transition:all 0.3s;

}

a.button:hover{
padding: 14px 37px;
margin:0px 0px;
}

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

#wrapper p a:hover{
background-color:#e83d62;
color:white;
}

#wrapper li{
list-style-type:none;
font-size:13px;
line-height:19px;
padding-left:30px;
padding-bottom:8px;
background-image: url('images/bg_li.png');
background-repeat: no-repeat;
background-position: 9px 8px;

}

.clear{
width:100%;
clear:both;
}

.microdata{ /* toutes les champs sémantiques schema.org*/
display:none;
}


p::selection,
h1::selection,
h2::selection,
h3::selection,
h4::selection,
h1 span::selection,
h2 span::selection,
h3 span::selection,
p span::selection,
a::selection,
u::selection,
i::selection,
li::selection,
b::selection,
div::selection{
color:white;	
background-color:#e83d62;
}



/* *********************** HEADING MSG*********************** */
#heading{
width:100%;
min-height:30px;
text-align:center;
background-color:#e83d62;
}

#heading p{
color: white;
padding:20px;
margin-bottom:0px;
font-size:20px;
}



/* *********************** BANNER / MENU *********************** */
#banner{
width:100%;
}

#banner .infos{
width:100%;
background-color:#e83d62;
color:white;
border-bottom:2px solid #83bf6b;
}

#banner .adresse{
display:inline-block;
vertical-align:top;
font-size:14px;
text-transform:uppercase;
color:white;
margin-bottom:0px;
line-height:40px;
padding-left:13px; 
}

#banner .adresse a{
text-decoration:none;	
}

#banner .tel,
#banner .mail{
display:inline-block;
vertical-align:top;
font-size:14px;
text-transform:uppercase;
color:white;
margin-bottom:0px;
line-height:40px;
text-decoration:none;	
float:right;
margin-left:30px;
transition:all 0.3s;
padding-right:13px;
}

#banner .tel:hover,
#banner .mail:hover,
#banner .adresse a:hover{
text-decoration: underline;
}

#banner .content{
width:100%;
background-color:white;
font-size:0px;
height: 87px;
}

#banner .content .main_width{
width:95%;
}

#banner .content .logo img{
height:40px;
position: relative;
top: -15px;
}

#banner .social{
display:inline-block;
vertical-align:top;
float:right;
margin-top:25px;
margin-right:0;
}
/*
@media only screen and (max-width: 1150px) and (min-width: 1000px) {
  #banner .social{
    display: none
  }
}
*/
#banner .social a img{
height:30px;
transform:scale(0.8);
margin-left:10px;
transition:all 0.3s;
}

#banner .social a:hover img{
transform:scale(1);	
}



/* *********************** MENU *********************** */
#menu{
text-align:center;
height:78px;
background-color:white;
display: inline-block;
}

#menu ul{
	padding-top:34px;
}

#menu li{
display:inline-block;
vertical-align:top;
list-style-type:none;
padding:0px 16px;
}

#menu li a{
font-size:16px;
text-transform:uppercase;
text-decoration:none;
transition:all 0.3s;
}

#menu li:hover a{
text-decoration:underline;
color:#e83d62;
font-weight:400;
}
 
.content>.main_width>a{
	position: relative;
}

/* *********************** BANNER ON SCROLL *********************** */


html:not([data-scroll='0']) .header{
	position: fixed;
	z-index: 200;
	animation: smoothScroll 0.4s 1 forwards;
	width: 100%;
	height: 120px;
	box-shadow: 0 -5px 10px #343a40;
	background-color: white;
}

html:not([data-scroll='0']) .header.has_message{
	animation: bigSmoothScroll 0.4s 1 forwards;
}

html:not([data-scroll='0']) #banner .content{
	height: auto;
}

html:not([data-scroll='0']) .navigation{
	background-color: transparent;
}

html:not([data-scroll='0']) #menu .nav-menu>li>a {
	margin-bottom: 26px;
	background-color: transparent;
}

html:not([data-scroll='0']) #wrapper {
	margin-top: 150px;
}

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

html:not([data-scroll='0']) #menu ul{
	animation: menuOnScroll 0.4s 1 forwards;
}

html:not([data-scroll='0']) #menu li.megamenu-list-title {
	padding: 0px 16px 0px 8px;
}


@keyframes smoothScroll{
	0% {
		top: 0;
	}
	100% {
		top: -42px;
	}
}

@keyframes bigSmoothScroll{
	0% {
		top: 0;
	}
	100% {
		top: -110px;
	}
}

@keyframes menuOnScroll{
	0% {
		padding-top:60px;
	}
	100% {
		padding-top:34px;
	}
}


/* *********************** MEGAMENU *********************** */

#menu #navigation1{
position: static;
}

#menu .megamenu-panel{
left: 5vw !important;
width: 88vw !important;
}
#menu .megamenu-panel a{
	color: black!important;
}

#menu .nav-menu>li>a{
	margin-bottom: 25px;
	display: inline-block;
}

#menu .megamenu-panel .list-col-4 li{
	display: block;
}

#menu .megamenu-panel li a{
	text-decoration: none;
}

#menu .megamenu-panel li:nth-child(n+2) a{
	text-transform: none;
}

#menu .megamenu-panel li:nth-child(n+2) a:hover{
	color: white!important;
}

#menu .megamenu-panel li:nth-child(1) a:hover{
	text-decoration:underline;
	color:#e83d62!important;
	font-weight:400;
}

#menu .megamenu-list{
	padding-top: 0;
	border: none;
}

#menu li.megamenu-list-title{
	padding: 15px 16px 0px 8px;
	font-size: 20px;
}

#menu .megamenu-list li:nth-child(n+2) a{
	font-size: 14px;
	padding: 5px 15px;
}

#menu .megamenu-list > li:nth-child(n+2) > a:hover {
	color: #e83d62!important;
	text-decoration: underline;
}

#menu #megamenu-catalogues a{
	font-size: 14px;
	padding: 5px 15px;	
	text-transform: none;
}

#menu #megamenu-catalogues li:first-of-type a{
	margin-top: 20px;
}

#menu #megamenu-catalogues{
	display: none;
    width: 350px !important;
    left: -70px !important;
}

#menu #megamenu-catalogues li{
	width: 100%;
}

#menu li.catalogue-li{
position: relative;
}



/* *********************** WRAPPER *********************** */
#wrapper{

}

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


/* ***** SLIDER -> HOME***** */
.slider_container{
width:100%;
height:525px;
position:relative;
}

.slider_container .fixed{
width: 450px;
transform: translate(-225px);
position: absolute;
left: 50%;
z-index: 60;
top: 134px;
text-align: center;
font-size: 0px;
}

.slider_container .fixed h1{
background-color: #231f20;
color: white;
line-height: 45px;
display: block;
font-size: 18px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 400;
padding: 0px;
margin: 0px;
}

#slider{
width:100%;
height:453px;
background-color:#e1e1e1;
position:absolute;
z-index:50;
text-align:center;
}

#slider .item{
width:100%;
height:453px;
background-repeat:no-repeat;
background-size:cover;	
}

#slider .item a.button{
margin-top:300px;
}

#slider .item a:hover{
}

#slider .owl-nav .owl-prev,
#slider .owl-nav .owl-next{
display:inline-block;
vertical-align:top;
padding:6px 13px!important;
font-size:14px;
background-color:#231f20;
color:white;
border-radius:20px;
margin:5px 10px;
position:relative;
top:-20px;
transition:all 0.3s;
}

#slider .owl-nav .owl-prev:hover,
#slider .owl-nav .owl-next:hover{
background-color:#e83d62;	
}


 /* *** Produits liés (communs à plusieurs pages) *** */

.related{
text-align: center;
margin-bottom: 63px;
}

.related .item{
display:inline-block;
vertical-align:top;
background-color:#231f20;
color:white;
text-decoration:none;
margin:0px 52px 34px;
width:250px;
}

.related .item:hover{
background-color:#e83d62;	
}

.related .item .photo{
width:250px;
height:190px;
overflow:hidden;
min-width: 100%;
}

.related .item .photo img{
max-width:100%;	
transform: scale(1.1);
transition:all 0.3s;
filter: grayscale(0.4);
object-fit: cover;
min-height: 100%;
}

.related .item:hover .photo img{
transform: scale(1);	
filter: grayscale(0);
}

.related .item .titre{
width: 90%;
margin: auto;
height: 44px;
display: flex;
}

.related .item .titre span{
font-weight: 600;
font-size: 17px;
text-transform: uppercase;
transform: scale(0.9);
transition: all 0.3s;
line-height: 22px;
margin:auto;
}

.related .item:hover .titre span{
transform: scale(1);
transition:all 0.3s;	
}

.related .more_infos {
margin-top: 10px;
}

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


#home .c1{
display: inline-block;
vertical-align: top;
width: 49%;
margin-right: 9%;
text-align: left;
}

#home .c1 h1{
font-size: 38px;
padding-bottom: 30px;
}

#home .c2{
display:inline-block;
vertical-align:top;
width:25%;
padding-left:4%;
text-align:left;
border-left:1px solid #e1e1e1;
}

#home .c2 p.titre{
font-weight:600;
font-size:20px;
}

#home .c2 p.adresse{
font-size:15px;
line-height:20px;
}

#home .c2 p.adresse a{
text-decoration:none;
}

#home .c2 p.tel{
font-size:15px;
line-height:20px;
margin-bottom:0px;
}

#home .c2 p.tel a{
text-decoration:none;
}

#home .c2 p.heures{
font-size:14px;
line-height:20px;
}

#home .c2 p.heures span{
font-size:18px;
line-height:20px;
}

#home .related{
margin-top:60px;
}

#home iframe.youtube{
width:701px;
height:398px;
display:block;
margin:auto;
margin-top:79px;
}

#home .c4{
display:inline-block;
vertical-align:top;
width:42%;
margin-right:8%;
text-align:left;
}

#home .c4 img{
width:360px;
margin-bottom:30px;
}

#home .c4 .right{
text-align:right;
}

#home .c5{
display:inline-block;
vertical-align:top;
width:35%;
padding-left:8%;
text-align:left;
border-left:1px solid #e1e1e1;
}

/* ***** SERVICES ***** */
#services{
text-align:center;
margin-bottom:100px;
padding-bottom:30px;

}

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


#services .c1{
display:inline-block;
vertical-align:top;
width:49%;
margin-right:6%;
text-align:left;
}

#services .c2{
display:inline-block;
vertical-align:top;
width:33%;
text-align:left;
}



/* ***** SHOP ***** */

#shop{
text-align:center;
margin-bottom:60px;
}


#shop .c1{ /* affichage des types + cat + produits */
width: 90%;
display: inline-block;
vertical-align: top;
background-color: white;
padding: 0px 4%;
min-height:408px;
text-align:center;

}

#shop .c1 h1{
background-position:bottom center;
}

#shop .c1 p.fil_rouge{
font-size:13px;
margin-bottom:0px;
opacity:0.45;
}

#shop .c1 .item{
width:180px;
height:180px;
display:inline-block;
position:relative;
margin:20px;
transition:all 0.3s;
border:1px solid #c0c0c0;
}

#shop .c1 .item span.text1{
position:absolute;
bottom:10px;
left:0px;
width:100%;
z-index:80;
color:white;
font-size:16px;
text-align:center;
}

#shop .c1 .item .img{
position:absolute;
top:0px;
left:0px;
width:180px;
height:180px;
background-color:#eaeaea;
z-index:50;
overflow:hidden;
}

#shop .c1 .item .img img{
transition:all 0.3s;
width:265px;
position:relative;
top:-10px;
left:-10px;
border-radius:3px;
width: 200px;
height: 200px;
object-fit: cover;
}

#shop .c1 .item:hover .img img{
transition:all 0.3s;
width:180px;
height:180px;
top:0px;
left:0px;

}

#shop .c1 .item .shadow{
width:180px;
height:180px;
z-index:70;
position:absolute;
background-image:url('images/common/bg_degrade.png');
background-repeat:repeat-x;
background-position:bottom;
opacity:0.50;
transition:all 0.3s;
}

#shop .c1 .item:hover .shadow{
opacity:0.80;
}

#shop .c1 .item .arrow{
width:180px;
height:180px;
position:absolute;
z-index:75;
background-image:url('images/common/arrow-white-right.png');
background-repeat:no-repeat;
background-position:center;
transition:all 0.3s;
transform: scale(0);
}

#shop .c1 .item:hover .arrow{
transform: scale(1);
}

/* affichage de la liste des produits */

#shop .c2{
width: 100%;
display: inline-block;
vertical-align: top;
background-color: white;
min-height:408px;
text-align:center;
}

#shop .nav{
display:inline-block;
vertical-align:top;
width:100%;
}


#shop .c2 .nav h1{
}

#shop .c2 .nav h2{

}

#shop .c2 .nav .filter a{
padding: 10px 35px;
display: block;
vertical-align: top;
line-height: 19px;
color:#000;
transition: all 0.3s;
font-size:13px;
text-align:left;
text-decoration:none;
background-image:url('images/common/arrow-right-black-small.png');
background-repeat:no-repeat;
background-position:-25px 9px;
}

#shop .c2 .nav .filter a:hover{
background-color:#ddd;
}

#shop .c2 .nav .filter a.active{
background-image:url('images/common/arrow-right-black-small.png');
background-repeat:no-repeat;
background-position:4px 9px;
}

#shop .product_list{
display:inline-block;
vertical-align:top;
width:100%;
}

#shop .c2 .product_list .item{
display:inline-block;
vertical-align:top;
width:260px;
border:1px solid #e1e1e1;
text-align:center;
transition:all 0.3s;
font-size:0px;
margin:10px 20px;
}

#shop .c2 .product_list .item:hover{
background-color:#e1e1e1;
}

#shop .c2 .product_list .item .img{
position:relative;
width:260px;
height:260px;
background-color:#eaeaea;
overflow:hidden;
position:relative;
display:inline-block;
}


#shop .c2 .product_list .item .img img{
position:absolute;
top:0px;
left:0px;
z-index:100;
border-radius:3px;
width:100%;
height:100%;
object-fit:cover;
max-width:100%;	
transform: scale(1.1);
transition:all 0.3s;
filter: grayscale(0.4);
}

#shop .c2 .product_list .item:hover .img img{
transition:all 0.3s;
width:110%;
transform: scale(1);	
filter: grayscale(0);
}


#shop .c2 .product_list .item .img .arrow{
position:absolute;
z-index:120;
width:233px;
height:233px;
background-image:url('images/arrow-right.png');
background-repeat:no-repeat;
background-position:center;
transition:all 0.3s;
transform: scale(0);
}

#shop .c2 .product_list .item:hover .img .arrow{
transform: scale(1);
}

#shop .c2 .product_list .content{
display:inline-block;
vertical-align:top;
width:100%;
background-color:#f2f2f2;
transition:all 0.3s;
}

#shop .c2 .product_list .item:hover .content{
background-color:#e83d62;	
}

#shop .c2 .product_list .content p.filtre{
font-size: 12px;
color:#9f9f9f;
margin: 0px;
line-height: 20px;
}

#shop .c2 .product_list .item span.prix_barre{
font-size: 14px;
display: inline-block;
color: black;
text-decoration: none;
font-weight: 900;
text-decoration:line-through;
padding: 2px 7px;
}

#shop .c2 .product_list .item span.prix{
font-size: 20px;
display: inline-block;
color: white;
text-decoration: none;
font-weight: 900;
margin-right: 30px;
background-color: #000;
padding: 2px 7px;
}

#shop .c2 .product_list .item span.titre{
font-size: 18px;
padding-top: 5px;
display: inline-block;
color: #231f20;
text-decoration:none;
}

#shop .c2 .product_list .item span.description{
font-size: 14px;
padding-top: 6px;
padding-bottom:9px;
color: #231f20;
text-decoration:none;
display:block;
max-height:86px;
overflow:hidden;
}

#shop .c2 .product_list .item:hover span.titre,
#shop .c2 .product_list .item:hover span.description{
color:white	
}

.is-animated {
animation: .9s zoom-in;
}

@keyframes zoom-in {
0% {
transform: scale(.1);
} 
100% {
transform: none;
}
}

/* affichage d'un produit suivant son ID */
#shop .c3{ 
width: 90%;
display: inline-block;
vertical-align: top;
background-color: white;
padding: 0px 4%;
min-height:408px;
text-align:center;
padding-top:55px;
}

#shop .c3 p.fil_rouge{
font-size:13px;
margin-bottom:0px;
opacity:0.45;
text-align:left;
}

#shop .c3 h1{
text-align:left;
margin-top:0px;
margin-bottom:0px;
padding-bottom:60px;

}

#shop .c3 h2{	
margin-bottom:10px;
}



#shop .c3 .demo_gallery{
font-size:0px;
text-align:left;
display: inline-block;
width: 44%;
}

#shop .c3 .video{
display:block;
width:100%;	
}

#shop .c3 .video iframe{
width:100%;	
}


#shop .c3 .demo_gallery a.item.main_pic{ /*principale*/
width: 100%;
height:256px;
display:block;
position:relative;
}

#shop .c3 .demo_gallery a.item.main_pic img{
width:100%;
height:100%;
object-fit:cover;
}

#shop .c3 .demo_gallery a.item.main_pic .arrow{
opacity:0;
transition:all 0.3s;
width:100%;
height:100%;
position:absolute;
top:0px;
left:0px;
background-image:url('images/common/arrow-white-right.png');
background-repeat:no-repeat;
background-position:center;
}

#shop .c3 .demo_gallery a.item.main_pic:hover .arrow{
opacity:1;
background-color: rgba(0, 0, 0, 0.3);
}

#shop .c3 .demo_gallery a.item.other_pics{ /*miniatures*/
width: 49.45%;
height: 141px;
display:inline-block;
position:relative;
border:0.25px solid white;
}

#shop .c3 .demo_gallery a.item.other_pics img{
width:100%;
height:100%;
object-fit:cover;
}

#shop .c3 .demo_gallery a.item.other_pics .arrow{
opacity:0;
transition:all 0.3s;
width:100%;
height:100%;
position:absolute;
top:0px;
left:0px;
background-image:url('images/common/arrow-white-right.png');
background-repeat:no-repeat;
background-position:center;
}

#shop .c3 .demo_gallery a.item.other_pics:hover .arrow{
opacity:1;
background-color: rgba(0, 0, 0, 0.3);
}

#shop .c3 .demo_gallery a.item.other_pics.last{
background-color:#e83d62;
background-image:url('images/voir_plus.svg');
background-repeat:no-repeat;
background-size:80%;
background-position:center;
transition:all 0.15s;
}

#shop .c3 .demo_gallery a.item.other_pics.last img,
#shop .c3 .demo_gallery a.item.other_pics.last .arrow{
display:none;
}

#shop .c3 .demo_gallery a.item.other_pics.last:hover{
background-size:90%;	
}

#shop .c3 .demo_gallery a.item.other_pics.hidden{
display:none;	
}


#shop .c3 .content{
width:43%;
padding:0px;
display:inline-block;
vertical-align:top;
text-align:left;
margin-left: 70px;
}

#shop .c3 h1{
color: #e83d62;
text-transform: uppercase;
font-size: 35px;
font-weight: 600;
line-height: 40px;
padding: 31px 0px 50px 0px;
}

#shop .c3 .content p.prix_barre{
font-size: 23px;
display: inline-block;
vertical-align:middle;
padding: 4px 11px;
font-weight: 700;
color:black;
text-decoration: line-through;
margin-right: 3px;
margin-bottom: 0px;
}

#shop .c3 .content p.prix{
font-size: 23px;
background-color:#27a257;
display: inline-block;
vertical-align:middle;
padding: 4px 11px;
font-weight: 700;
color:white;
margin-right: 16px;
margin-bottom: 0px;
}

#shop .c3 .content p.prix span.promo{
display: inline-block;
vertical-align: middle;
font-size: 14px;
font-weight: 900;
color:white;
padding: 0px 5px;
margin-right: 10px;

}

#shop .c3 .content p.info_prix{
font-size: 14px;
font-weight: 900;
padding: 4px 11px;
text-transform: uppercase;
color:#27a257;
margin-bottom: 20px;
}

#shop .c3 .content p.marque{
color:#404040;
font-size:13px;
display: inline-block;
vertical-align:middle;
margin-right:15px;
}

#shop .c3 .content p.reference{
font-size: 13px;
display: inline-block;
vertical-align: middle;
background-color: #231f20;
color: white;
padding: 0px 17px;
}

#shop .c3 .content p.dispo{
font-size: 14px;
display: inline-block;
vertical-align: middle;
font-weight: 700;
text-decoration: underline;
margin-bottom: 0px;
}

#shop .c3 .content p.dispo.color1{/* dispo */
color:#000;
}

#shop .c3 .content p.dispo.color2{/* sur cmd */
color:#000;
}

#shop .c3 .content p.dispo.color3{/* rupt de stock */
color:#000;
}

#shop .c3 .content p.dispo.color4{/* vendu */
color:#000;
}

#shop .c3 .content .description{
color: #231f20;
line-height: 27px;
font-size: 18px;
margin-bottom: 17px;
}

#shop .c3 .content .description ul{
margin-top: 30px;
}

#shop .c3 .content .description ul li{
color: #231f20;
font-size: 16px;
margin-bottom: 10px;
padding-left: 25px;
background-image: url(images/arrow-right-pink.svg);
background-size: 15px;
background-repeat: no-repeat;
background-position: 0 5px;
transition: all .3s;
}

#shop .c3 .content .description ul li:hover{
background-position: 5px 5px;
}

#shop .c3 .content p.interesse{
margin-top:50px;
font-size:21px;
line-height:29px;
}

#shop .c3 a.button{
margin-bottom:20px;
}


#shop .c3 .pdfs{
margin-top:30px;	
}

#shop .c3 .pdfs a.item{
width:200px;
display:inline-block;
vertical-align:top;
border:1px solid #000;
margin:5px 10px;
color:#000;
border-radius:4px;
font-size:13px;
text-transform:uppercase;
transition:all 0.3s;
text-decoration:none;
}

#shop .c3 .pdfs a.item .image{
position:relative;
width:200px;
height:150px;
overflow:hidden;
}

#shop .c3 .pdfs a.item .image img{
width:220px;
position:absolute;
top:-10px;
left:-10px;
transition:all 0.3s;
z-index:30;
}

#shop .c3 .pdfs a.item:hover .image img{
width:200px;
top:0px;
left:0px;
filter: grayscale(0.20);
}

#shop .c3 .pdfs a.item .image .pdf_icon{
position:absolute;
top:0px;
left:0px;
z-index:70;
transition:all 0.3s;
width:0px;
height:0px;
background-image:url('images/common/download-pdf.png');
background-repeat:no-repeat;
background-position: center center;
width:200px;
height:150px;
transform: scale(0);
}

#shop .c3 .pdfs a.item:hover .image .pdf_icon{
transform: scale(1);
}

#shop .c3 .pdfs a.item span.description{
line-height: 33px;
padding:0px 8px;
display: block;
width:184px;
height: 33px;
overflow: hidden;
font-size: 12px;
letter-spacing: 0px;
text-transform: lowercase;
background-color:#e83d62;
color:white;
}

#shop .c3 .pdfs a.item:hover{
text-decoration:none;
background-color:white;
color:white;
}




/* ***** GRAPHISME ***** */

#works{
text-align:center;
margin-bottom: 60px
}

#works .main_width{
}


#works .c1{
width: 90%;
margin:auto;
padding: 2%;
text-align:center;
}


#works .filter{
width:100%;
}

#works .filter{
margin-top:45px;
}

#works .filter a{
display: inline-block;
vertical-align: top;
font-size: 13px;
font-weight: 400;
margin: 10px 15px;
border: 1px solid #150c13;
border-radius: 40px;
padding: 8px 18px;
transition:all 0.3s;
text-decoration:none;
}

#works .filter a:hover{
background-color:#eae7e7;
}

#works .filter a.active{
text-decoration:underline;
}


#works .c2{
margin-top:35px;	
}

#works .c2 .item{
display:inline-block;
vertical-align:top;
width:280px;
margin:23px 22px;
border-radius:5px;
background-color:white;
box-shadow: 10px 10px 47px -13px rgba(94,94,94,0.31);
padding-bottom:17px;
text-align:center;
text-decoration:none;
}
#works .c2 .item:hover{
text-decoration:none;	
}


#works .c2 .item .img{
position:relative;
width:270px;
height:210px;
background-color:#f9f9f9;
overflow:hidden;
position:relative;
display:inline-block;
border-top-left-radius:3px;
border-top-right-radius:3px;
border:5px solid white;
}

#works .c2 .item .img img{
position:absolute;
z-index:100;
transition:all 0.3s;
border-radius:3px;
width:110%;
height:110%;
top:-5%;
left:-5%;
object-fit:cover;
}

#works .c2 .item:hover .img img{
transition:all 0.3s;
width:100%;
height:100%;
top:0%;
left:0%;
}


#works .c2 .item .img .arrow{
position:absolute;
z-index:120;
width:280px;
height:210px;
background-image:url('images/arrow-right.png');
background-repeat:no-repeat;
background-position:center;
transition:all 0.3s;
transform: scale(0);
}

#works .c2 .item:hover .img .arrow{
transform: scale(1);
}

#works .c2 .item p.filtre{
font-size: 12px;
opacity: 0.35;
font-weight: 400;
margin-bottom: 1px;
}

#works .c2 .item p.description{
font-size: 12px;
line-height: 16px;
font-weight: 400;
text-decoration: none;
padding: 0px 10px;
margin-bottom: 0px;
color: #535050;
transition: all 0.3s;
}

#works .c2 .item:hover p{
color:inherit;	
text-decoration:none;
}

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

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

#contact{
text-align:center;
}



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

#contact .c1 a{
margin-top: 3em;
margin-left: 0;
}

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

#contact .c1 p.logo img{
display:none;
}


#contact .c2{
display:inline-block;
vertical-align:top;
width:45%;
text-align:left;
}

#contact .c2 .streetview{
width:100%;
height:357px;
}

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




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


#legal{
text-align:center;


}

#legal .main_width{
}


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

#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-top:10px;
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;
}


/* ***** REGISTER ***** */

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

#register .c1{
text-align:left;
width:86%;
margin:auto;

}

#register h1{
padding-bottom:0px;
}

#register h2{
font-size:21px;	
padding:65px 0px 30px 0px;
text-align:left;
}

#register p{
font-size:15px;	
}

#register p.label_input{
display:inline-block;
vertical-align:top;
width:420px;
padding:7px;
text-align:left;
}

#register input[type="text"].adresse_societe{
display:inline-block;
vertical-align:top;
width:275px;
}

#register input[type="text"].numero_societe{
display:inline-block;
vertical-align:top;
width:40px;
margin-left:10px;
}

#register input[type="email"],
#register input[type="text"]{
border:1px solid #bdc3c7;
padding:10px;
font-size:16px;
color:#2c3e50;
transition: all 0.2s ease-in-out;
margin-bottom:20px;
width:350px;
border-radius:4px;
}

#register .factures_par_mail{
display:inline-block;
position:relative;
top:12px;
}

#register .radio{
display:inline-block;
vertical-align:top;
position:relative;
top:11px;	
}

#register span.space{
display:inline-block;
width:13px;	
}

#register p.details{
color:#a2a2a2;
margin-top:38px;
}

#register .cgdv{
margin-top:11px;
}

#register .opt_in{
margin-top:13px;
margin-bottom:30px;
}

#register input[type="submit"]{
display: inline-block;
background-color: #e83d62;
text-transform: uppercase;
color: white;
padding: 14px 27px;
margin:0px 10px;
font-weight: 600;
transition: all 0.3s ease-in-out;
font-size: 16px;
text-decoration:none;
transition:all 0.3s;
font-family: 'Rubik', sans-serif;
cursor:pointer;

}

#register input[type="submit"]:hover{
padding: 14px 37px;
margin:0px 0px;
}


/* ***** CATALOGUES PDF ***** */

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

#catalogues-pdf .c1{
text-align:left;
width:70%;
margin:auto;
}

#catalogues-pdf h1{
padding-bottom:30px;
text-align: center;
}

#catalogues-pdf #adobe-dc-view{
height: 750px;
width: 100%;
}

#catalogues-pdf .c1_c1{
margin-top: 25px;
text-align: center;
}

#catalogues-pdf .c1_c1 a{
margin-top: 100px;
}

#catalogues-pdf #adobe-dc-view .loader{
width: 100%;
height: 100%;
background-image: url("images/loader.gif");
background-color: white;
background-repeat: no-repeat;
background-size: 250px;
background-position: center;
}

#catalogues-pdf-liste{
margin-bottom: 60px;
}

#catalogues-pdf-liste .c1{ /* affichage des types + cat + produits */
width: 90%;
display: inline-block;
vertical-align: top;
background-color: white;
padding: 0px 4%;
min-height:408px;
text-align:center;

}

#catalogues-pdf-liste .c1 h1{
background-position:bottom center;
}

#catalogues-pdf-liste .c1 p.fil_rouge{
font-size:13px;
margin-bottom:0px;
opacity:0.45;
}

#catalogues-pdf-liste .c1 .item{
width:180px;
height:180px;
display:inline-block;
position:relative;
margin:20px;
transition:all 0.3s;
border:1px solid #c0c0c0;
}

#catalogues-pdf-liste .c1 .item span.text1{
position:absolute;
bottom:10px;
left:0px;
width:100%;
z-index:80;
color:white;
font-size:16px;
text-align:center;
}

#catalogues-pdf-liste .c1 .item .img{
position:absolute;
top:0px;
left:0px;
width:180px;
height:180px;
background-color:#eaeaea;
z-index:50;
overflow:hidden;
}

#catalogues-pdf-liste .c1 .item .img img{
transition:all 0.3s;
width:265px;
position:relative;
top:-10px;
left:-10px;
border-radius:3px;
width: 200px;
height: 200px;
object-fit: cover;
}

#catalogues-pdf-liste .c1 .item:hover .img img{
transition:all 0.3s;
width:180px;
height:180px;
top:0px;
left:0px;
}

#catalogues-pdf-liste .c1 .item .shadow{
width:180px;
height:180px;
z-index:70;
position:absolute;
background-image:url('images/common/bg_degrade.png');
background-repeat:repeat-x;
background-position:bottom;
opacity:0.50;
transition:all 0.3s;
}

#catalogues-pdf-liste .c1 .item:hover .shadow{
opacity:0.80;
}

#catalogues-pdf-liste .c1 .item .arrow{
width:180px;
height:180px;
position:absolute;
z-index:75;
background-image:url('images/common/arrow-white-right.png');
background-repeat:no-repeat;
background-position:center;
transition:all 0.3s;
transform: scale(0);
}

#catalogues-pdf-liste .c1 .item:hover .arrow{
transform: scale(1);
}

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


#footer{
width:100%;
background-color:#231f20;
text-align:center;
}

#footer .benefit{
background-color:#f2f2f2;
padding:80px 0px;
}

#footer .benefit img.logo{
width:488px;
padding-bottom:69px;
display:block;
margin:auto;
}

#footer .benefit p{
display:inline-block;
vertical-align:top;
width:180px;
margin:0px 30px;
background-size:100px;
background-position:top center;
background-repeat:no-repeat;
padding-top:105px;
font-weight:600;
line-height:20px;
text-transform:uppercase;
}

#footer .benefit p span{
display:block;
color:#e83d62;	
}

#footer .benefit p.item1{
background-image:url('images/common/print-icon.svg')
}

#footer .benefit p.item2{
background-image:url('images/common/handshake-icon.svg')
}

#footer .benefit p.item3{
background-image:url('images/common/time-icon.svg')
}

#footer .benefit p.item4{
background-image:url('images/common/phone-icon.svg')
}

#footer .c1{
padding-top:75px;
display:inline-block;
vertical-align:top;
width:30%;
margin-right:3%;
text-align:left;
}

#footer .c1 img.logo{
max-width:216px;
margin-bottom:30px;
}

#footer .c1 p{
color: white;
font-size: 16px;
line-height: 23px;
margin-bottom: 12px;
font-weight: 300;
}

#footer .c1 a.button{
margin-top:31px;
}

#footer .c2{
padding-top:75px;
display:inline-block;
vertical-align:top;
width:65%;
text-align:left;
columns: 3;
}

#footer .c2 .item{
  break-inside: avoid-column;
  page-break-inside: avoid;

}

#footer .c2 a.categorie{
display:block;
font-weight:300;
font-size:16px;
color:white;
text-transform:uppercase;
text-decoration:none;
margin-bottom:3px;
padding-top:20px;
}

#footer .c2 a.produit{
display:block;
font-weight:300;
font-size:15px;
color:#808080;
text-decoration:none;
padding-left:8px;
line-height:20px;
}

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

#footer .baby-banner{
	margin-top: 50px;
    display: block;
    width: 180px;
    max-width: 100%;
}

#footer .baby-banner img{
	width: 100%;
    height: auto;
}

#footer p.copyright{
color:white;
text-align:center;
font-size:14px;
margin-top:100px;
padding-bottom:50px;
margin-bottom:0px;
}

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





/* *********************** FORM JQUERY *********************** */
#fadeandscale{
background-color:white;
padding:20px 50px;
text-align:center;
max-width:800px;
background-image:url('images/lenaerts-print-logo-2021.svg');
background-size:222px;
background-repeat:no-repeat;
background-position:top 42px right 30px;
border-radius: 13px;
}

#fadeandscale h1{
font-size: 40px;
font-weight: 300;
margin:14px 0px 40px 0px;
color: #a5a5a5;
padding: 0;
}

#fadeandscale p{
font-size: 16px;
color: #2c3e50;
margin: 17px 0px 14px 10px;
}

#fadeandscale p.optin{
font-size:12px;
line-height:21px;	
}

#fadeandscale #optin{
margin-right: 5px;
margin-left: 10px;
position: relative;
top: 2px;
}

#fadeandscale input[type="text"]{
border: 1px solid #bdc3c7;
padding: 10px 20px;
font-size: 16px;
color: #2c3e50;
transition: all 0.2s ease-in-out;
margin-bottom: 15px;
margin-right: 15px;
width:90%;
max-width: 513px;
border-radius: 2px;
color: #424e5a;
display: inline-block;
}

#fadeandscale input[type="text"]:hover{
box-shadow:         1px 1px 10px 0px rgba(50, 50, 50, 0.20);
}

#fadeandscale select{
border: 1px solid #bdc3c7;
padding: 10px 20px;
font-size: 16px;
color: #2c3e50;
transition: all 0.2s ease-in-out;
margin-bottom: 15px;
margin-right: 15px;
width:90%;
max-width: 556px;
border-radius: 2px;
color: #424e5a;
display: inline-block;
}

#fadeandscale textarea{
border: 1px solid #bdc3c7;
padding: 10px 20px;
font-size: 14px;
color: #2c3e50;
transition: all 0.2s ease-in-out;
margin-bottom: 15px;
margin-right: 15px;
width:90%;
max-width: 513px;
height:200px;
border-radius: 2px;
color: #424e5a;
display: inline-block;
}


#fadeandscale .boutons{
margin:20px 0px;
}

#fadeandscale .boutons .button{
display: inline-block;
border-radius: 30px;
background-color: #e83d62;
text-transform: uppercase;
color: white;
padding: 7px 23px;
margin:0px 10px;
font-weight: 700;
transition: all 0.5s ease-in-out;
font-size: 14px;
text-decoration:none;
transition:all 0.3s;
cursor:pointer;

}

#fadeandscale .boutons .button:hover{
padding: 7px 33px;
margin:0px 0px;
}


#fadeandscale input[type="submit"]{
background-color:#e83d62!important;
color:white!important;	
border-radius:22px;
cursor:pointer;
}


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

.grecaptcha-badge { 
	visibility: hidden; 
}

/* ***** NEWS ***** */

#news{
text-align:center;
margin-bottom: 60px;
}

#news .c1{
width:100%;
}

#news .c1 h1{
padding:60px;
}

#news .c1 .item{ /* <a href="... */
width:98%;
padding:15px 1%;
background-color:white;
display:block;
color:#000;
text-decoration:none;
margin-bottom:30px;
text-align:left;
}

#news .c1 .item:hover{
text-decoration:none;
background-color:#f4f4f4;
}

#news .c1 .item .image {
    width: 350px;
    height: 350px;
    display: inline-block;
    vertical-align: top;
    background: black;
    overflow: hidden;
    margin-right: 30px;
    float: left;
    position: relative;
}

#news .c1 .item .image img{
display: block;
width: 100%;
height: 100%;
object-fit: cover;
transform: scale(1);
transition:all 0.5s;
position:absolute;
top:0px;
left:0px;
z-index:50;
}

#news .c1 .item:hover .image img{
transform: scale(1.1);
opacity:0.65;
}

#news .c1 .item .image .arrow{
width:350px;
height:350px;
position:absolute;
z-index:75;
background-image:url('images/common/arrow-white-right.png');
background-repeat:no-repeat;
background-position:center;
transition:all 0.3s;
transform: scale(0);
}

#news .c1 .item:hover .image .arrow{
transform: scale(1);
}

#news .c1 .item .image .video{
width:350px;
height:350px;
position:absolute;
z-index:80;
background-image:url('images/play_youtube_logo.svg');
background-repeat:no-repeat;
background-position:center;
transition:all 0.3s;
transform: scale(0.2);
}

#news .c1 .item:hover .image .video{
transform: scale(0.4);
}

#news .c1 .type{
float:right;
font-size:14px;
text-transform:uppercase;
background-color:#ff7533;
color:white;
padding: 1px 15px;
position: relative;
top: -23px;
right: -25px;
}

#news .c1 .item h2{
margin-top:12px;
margin-bottom:0px;
padding: 0;
line-height:37px;
margin-bottom: 34px;
margin-top: 39px;
}

#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 .c2{ /* affichage d'un article */
width: 100%;
text-align:left;
padding-top:60px;

}

#news .c2 .photo_responsive{
display:none;
}

#news .c2 .left{ /* colonne gauche */
display:inline-block;
vertical-align:top;
width: 100%;
box-sizing: border-box;
padding:40px 2%;
text-align:left;
background-color:white;
}

#news .c2 .right{ /* colonne droite */
display:inline-block;
vertical-align:top;
width:44.5%;
text-align:left;
}

#news .c2 .type{
float:right;
font-size:14px;
text-transform:uppercase;
background-color:#ff7533;
color:white;
padding: 1px 15px;
position: relative;
top: -49px;
right: -39px;
}

#news .c2 .date p{
font-size:14px;
opacity:0.65;	
}

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

#news .c2 .content img{
	max-width:100%;
}


#news .c2 .nav{
margin-bottom:20px;
text-align:right;
} 

#news .c2 .nav a.prev, 
#news .c2 .nav a.next,
#news .c2 .nav a.liste{
display:inline-block;
vertical-align:top;
text-decoration:none;
font-size:13px;
text-transform:uppercase;
background-color:white;
transition:all 0.3s;
background-repeat:no-repeat;
}

#news .c2 .nav a.liste{
padding: 5px 13px;
margin:0px 5px;
}

#news .c2 .nav a.liste:hover{
color:#ff7533;
}

#news .c2 .nav a.prev{
background-position: 9px center;
padding: 5px 13px 5px 22px;
margin:0px 5px;
background-image: url('images/common/prev.png');
}

#news .c2 .nav a.prev:hover{
padding: 5px 13px 5px 27px;
margin:0px 5px 0px 0px;
color:#ff7533;
}

#news .c2 .nav a.next{
background-position: right 9px center;
padding: 5px 22px 5px 13px;
margin:0px 5px 0px 0px;
background-image: url('images/common/next.png');
}

#news .c2 .nav a.next:hover{
background-position: right 9px center;
padding: 5px 22px 5px 18px;
margin:0px 0px 0px 0px;
background-image: url('images/common/next.png');
}


#news .c2 .photo_large_screen{
width: 100%;
height:415px;
overflow: hidden;
background-color: #e1e1e1;
position:relative;
}

#news .c2 .photo_large_screen img{
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}

#news .c2 .photo_large_screen .description{
position:absolute;
bottom:10px;
right:10px;
display:inline-block;
background:white;
padding:3px 10px;	
color:#404040;
font-size:14px;
}


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

#news .c2 .pdfs a.item{
width:30.5%;
display:inline-block;
vertical-align:top;
margin:5px 1%;
color:#000;
font-size:13px;
text-transform:uppercase;
transition:all 0.3s;
text-decoration:none;
background-color:white;
}

#news .c2 .pdfs a.item .image{
position:relative;
width:100%;
height:150px;
overflow:hidden;
}

#news .c2 .pdfs a.item .image img{
width:100%;
position:absolute;
transition:all 0.3s;
z-index:30;

}

#news .c2 .pdfs a.item:hover .image img{
filter: grayscale(0.20);
}

#news .c2 .pdfs a.item .image .pdf_icon{
position:absolute;
top:0px;
left:0px;
z-index:70;
transition:all 0.3s;
width:0px;
height:0px;
background-image:url('images/common/download-pdf.png');
background-repeat:no-repeat;
background-position: center center;
width:200px;
height:150px;
transform: scale(0);
}

#news .c2 .pdfs a.item:hover .image .pdf_icon{
transform: scale(1);
}

#news .c2 .pdfs a.item span.description{
line-height: 33px;
padding:0px 2.5%;
display: block;
width:95%;
height: 33px;
overflow: hidden;
font-size: 12px;
letter-spacing: 0px;
text-transform: lowercase;
}

#news .c2 .pdfs a.item:hover{
text-decoration:none;
color:#ff7533;
}


#news .c2 .photos_secondaires{
width:100%;
font-size:0px;
padding-top:20px;
margin-top:20px;
}

#news .c2 .photos_secondaires a.item{
display:inline-block;
vertical-align:top;
width:100px;
height:100px;
overflow:hidden;
position:relative;
}

#news .c2 .photos_secondaires a.item img{
display: block;
width: 100%;
height: 100%;
object-fit: cover;
transform: scale(1);
transition:all 0.5s;
position:absolute;
top:0px;
left:0px;
z-index:50;
}


#news .c2 .photos_secondaires a.item:hover img{
transform: scale(1.1);
opacity:0.65;
}

#news .c2 .photos_secondaires a.item .arrow{
width:100%;
height:100%;
position:absolute;
z-index:75;
background-image:url('images/common/arrow-right-black-small.png');
background-repeat:no-repeat;
background-position:center;
transition:all 0.3s;
transform: scale(0);
}

#news .c2 .photos_secondaires a.item:hover .arrow{
transform: scale(1);
}



#news .c2 .related{
margin-top:30px;
padding-top:30px;
text-align:center;
}


#news .c2 .related h3{
margin-bottom:18px;	
}

#news .c2 .related .item{
display:block;
line-height:40px;
padding-left:22px;
transition:all 0.3s;
background-image:url('images/common/next.png');
background-repeat:no-repeat;
background-position:left 0px center;
text-decoration:none;
opacity:0.70;
}

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


#news .c3{
text-align: left;
padding-top: 55px;
}


#news .c3 .demo_gallery{
font-size:0px;
text-align:left;
display: inline-block;
width: 43%;
}

#news .c3 .video{
display:block;
width:100%;	
}

#news .c3 .video iframe{
width:100%;	
}


#news .c3 .demo_gallery a.item.main_pic{ /*principale*/
width: 100%;
height:336px;
display:block;
position:relative;
}

#news .c3 .demo_gallery a.item.main_pic img{
width:100%;
height:100%;
object-fit:cover;
}

#news .c3 .demo_gallery a.item.main_pic .arrow{
opacity:0;
transition:all 0.3s;
width:100%;
height:100%;
position:absolute;
top:0px;
left:0px;
background-image:url('images/common/arrow-white-right.png');
background-repeat:no-repeat;
background-position:center;
}

#news .c3 .demo_gallery a.item.main_pic:hover .arrow{
opacity:1;
background-color: rgba(0, 0, 0, 0.3);
}



#news .c3 .demo_gallery a.item.other_pics{ /*miniatures*/
width: 24.5%;
height:120px;
display:inline-block;
position:relative;
border:0.25px solid white;
}

#news .c3 .demo_gallery a.item.other_pics img{
width:100%;
height:100%;
object-fit:cover;
}

#news .c3 .demo_gallery a.item.other_pics .arrow{
opacity:0;
transition:all 0.3s;
width:100%;
height:100%;
position:absolute;
top:0px;
left:0px;
background-image:url('images/common/arrow-white-right.png');
background-repeat:no-repeat;
background-position:center;
}

#news .c3 .demo_gallery a.item.other_pics:hover .arrow{
opacity:1;
background-color: rgba(0, 0, 0, 0.3);
}

#news .c3 .demo_gallery a.item.other_pics.last{
background-color:#e83d62;
background-image:url('images/voir_plus.svg');
background-repeat:no-repeat;
background-size:80%;
background-position:center;
transition:all 0.15s;
}

#news .c3 .demo_gallery a.item.other_pics.last img,
#news .c3 .demo_gallery a.item.other_pics.last .arrow{
display:none;
}

#news .c3 .demo_gallery a.item.other_pics.last:hover{
background-size:90%;	
}

#news .c3 .demo_gallery a.item.other_pics.hidden{
display:none;	
}





#news .c3 .content {
    width: 45%;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    margin-left: 110px
}

#news .c3 h1.title{
	color: #e83d62;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
    padding: 31px 0px 50px 0px;
}

#news .c3 .content a.button{
margin-bottom:20px;
}


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

#news .c3 .pdfs a.item{
width:200px;
display:inline-block;
vertical-align:top;
border:1px solid #000;
margin:5px 10px;
color:#000;
font-size:13px;
text-transform:uppercase;
transition:all 0.3s;
text-decoration:none;
}

#news .c3 .pdfs a.item .image{
position:relative;
width:200px;
height:150px;
overflow:hidden;
}

#news .c3 .pdfs a.item .image img{
width:220px;
position:absolute;
top:-10px;
left:-10px;
transition:all 0.3s;
z-index:30;
}

#news .c3 .pdfs a.item:hover .image img{
width:200px;
top:0px;
left:0px;
filter: grayscale(0.20);
}

#news .c3 .pdfs a.item .image .pdf_icon{
position:absolute;
top:0px;
left:0px;
z-index:70;
transition:all 0.3s;
width:0px;
height:0px;
background-image:url('images/common/download-pdf.png');
background-repeat:no-repeat;
background-position: center center;
width:200px;
height:150px;
transform: scale(0);
}

#news .c3 .pdfs a.item:hover .image .pdf_icon{
transform: scale(1);
}

#news .c3 .pdfs a.item span.description{
line-height: 33px;
padding:0px 8px;
display: block;
width:184px;
height: 33px;
overflow: hidden;
font-size: 12px;
letter-spacing: 0px;
text-transform: lowercase;
}

#news .c3 .pdfs a.item:hover{
text-decoration:none;
background-color:#003c72;
color:white;
}

#news h1{
	padding-bottom: 51px;
}

#news h1+p{
	margin-bottom: 51px;
}

#news .btn{
	margin: 25px 0;
}

#news .c3 .content p.interesse {
    margin-top: 50px;
    font-size: 21px;
    line-height: 29px;
}

.fade_container {
    overflow-x: hidden;
}