* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}
body {
	font-family: 'Alegreya Sans', serif;
	font-weight: 300;
	display: flex;
	flex-direction:column;
	min-height: 100vh;
	
}

/*******************************/
/** commun *********************/
/*******************************/

.justifier {
	text-align: justify;
}
.centrer {
	text-align: center;
}
figure {
	text-align: center;
	margin:40px auto 60px auto;
}
figure img {
	max-width:800px;
	text-align: center;
}
figure figcaption{
	font-style: italic;
}

.content figure img {
	border:1px solid #FFF;
	box-shadow: 0px 2px 15px 2px rgba(0,0,0,0.75);
	-webkit-box-shadow: 0px 2px 15px 2px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 2px 15px 2px rgba(0,0,0,0.75);
}

p.image_ronde img {
	margin: 30px 0;
	padding: 20px;
	border:1px solid black;
}
p.image_ronde {
	text-align: center;
}
p.image_ronde a:hover img {
	background-color: #CCC;
}
h1 {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Alegreya Sans', serif;
  margin:40px 0 20px 0;
  padding: 30px 0;
  font-size: 1.8em;
}

h1 img {
	vertical-align: middle;
	max-width: 128px;
	max-height: 96px;
	margin-right: 10px;
	-webkit-box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.44);  
	-moz-box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.44);
	box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.44);
}
h1 span {
  background: #fff;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

/*h1:before {
  background: #aaa;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
    top: 50%;
  width: 100%;
  left:0;
}*/

@media handheld, only screen and (max-width: 600px) {
	h1 {
		font-size: 1.1em;
	}
	h1 img {
		display: none;
	}
}

h4 {
	margin:0;
	padding: 10px 0;
}

iframe.agenda {
	display:block;
	margin: 40px auto;
	padding-top:10px;
	text-align:center;
	border-top:2px solid black;
	border-bottom:2px solid black;
	background-color:#EEE;
	-webkit-box-shadow: 0px 0px 16px 6px rgba(87,87,87,0.4);
	-moz-box-shadow: 0px 0px 16px 6px rgba(87,87,87,0.4);
	box-shadow: 0px 0px 16px 6px rgba(87,87,87,0.4);
}

div.test {
	z-index: -10;
	text-align: center;
	border-bottom: 1px solid #BBB;
	/* animation-duration:1s;
	animation-fill-mode: both;
	animation-name: fadeInTop; */
	background-image: radial-gradient(circle at 50% 50%, #FFF, #CCC);
}
/* div.test img {
	height:60px;
	vertical-align: middle;
	animation-delay: 3s;
	animation-duration:2s;
	animation-fill-mode: both;
	animation-name: fadeIn;
} */
div.test h2 {
	text-align:center;
	margin:60px auto;
	padding:20px 40px;
	border:1px solid black;
	display: inline-block;
	font-family: 'Alegreya Sans', sans-serif;
	font-weight: 200;
	animation-duration:2s;
	animation-fill-mode: both;
	animation-name: fadeInLeft;
}

a.lien {
	position: relative;
	 -webkit-transition : border 300ms ease-out;
  -moz-transition : border 300ms ease-out;
  -o-transition : border 300ms ease-out;
	transition: border 300ms ease-out;
}

a.lien:before { 
	content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    height: 1px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
a.lien:hover:before { 
	left:25%;
	right:25%;
}

a.shopping {
	background:#942607;
	color:#FFF;
	width:100%;
	margin-top:5px;
	text-align:center;
	display:inline-block;
	padding: 10px;
	font-family: 'Alegreya Sans', sans-serif;
    font-weight: 300;
    transition: all 0.5s ease-out;
    border-radius: 0px;
}
a.shopping i {
	margin-right: 10px;
}
a.shopping:hover {
	background:#CF411A;
    border-radius: 8px;
}

.main-menu {
	background:#052525;
	margin: 0;
	padding: 0;
}
.gris {
	background-color: #CCC;
}
.sous-menu-container {
	background:#777;
	background:#CF411A;
	background:#9b2707;
	background:#942607; /* rouge foncÃ© */
	margin: 0;
	/* padding: 6px 0; */
}
.strong {
	font-weight:700;
}

a.btn {
	text-align: center;
	display: block;
	/* height:40px; */
	background-color: #efefef;
	/* border-radius: 5px; */
	border:1px solid #dedede;
	padding: 10px;
	margin: 10px auto 30px auto;
	font-family: 'Raleway', serif;
	background-color: #FFF;
	border:2px solid #3B5998;
	text-transform: uppercase;
	color: #3B5998;
	font-weight: 700;
	cursor: pointer;
	width: 50%;
}
a.btn:hover {
	background-color: #3B5998;
	color:#FFF;
}

h3 i {
	margin-right: 10px;
}

/********************************************/
/* Sous-menu */
/********************************************/
.sous-menu {
	max-width: 1024px;
	/* height:50px; */
	margin:0px auto;
}

.sous-menu ul {
	margin:0;
	padding:0;
	list-style:none;
	position: relative;
	display: flex;
	flex-direction: row;
    justify-content: space-around;
}
.sous-menu ul li a {
	color:#000;
	color:#FFF;
}
.sous-menu ul li {
	/* line-height: 50px; */
	padding:4px 15px;
	padding:20px 15px;
	border:1px solid #942607;
	transition: all 0.5s ease-out;
}
.sous-menu ul li:hover{
	background:#999;
	background:#9b2707;
	background:#CF411A; /* rouge clair */ 
	border:1px solid #7a2008;
}
.sous-menu i {padding-right: 10px;}
.sous-menu img {
	vertical-align: middle;
	height: 24px;
	padding-right:5px;
	padding-bottom: 3px;
}

@media screen and (min-width:767px) and (max-width: 960px) {
	.sous-menu img {
		display: none;
	}
	.sous-menu ul li a {
		font-size: .9em;
	}
}
@media handheld, only screen and (max-width: 767px) {
	.sous-menu ul {
	display: flex;
	flex-direction: column;
    justify-content: space-around;
	}
	.sous-menu ul li {
    padding-left: 30px;
		
	}
}

/********************************************/
/* Menu pages spÃ©ciale */
/********************************************/

div.menu-asset {
	display: flex;
	flex-direction : row;
	justify-content: space-between;
	justify-content: space-around;
	text-align: center;
	/* font-family: 'Raleway', serif; */
	font-family: 'Alegreya Sans', serif;
}

div.menu-asset a {
	flex:1;
	padding:20px;
	background-color: #EEE;
}

div.menu-asset a:hover {
	font-weight: bold;
	background-color: #CCC;
}
div.menu-asset #active {
	font-weight: bold;
	background-color: #CCC;
}

a#go-top {
	padding: 15px;
	background: rgba(255,255,255,.3);
	position: fixed;
	bottom: 20px;
	right: 20px;
	border-radius: 6px;
	color:rgba(0,0,0,0.7);
	-webkit-box-shadow: 1px 1px 5px 1px #777;  
	-moz-box-shadow: 1px 1px 5px 1px #777;
	box-shadow: 1px 1px 5px 1px #777; 
}
a#go-top img {
	width:24px;
}
a#go-top:hover {
	background: rgba(0,0,0,.5);
}
.colonne-100 {
	width:100%;
	padding-bottom: 40px;
}
/* .colonne-100:nth-child(even) {
	background-color: #BBB;
}
.colonne-100:nth-child(odd) {
	background-color: #FFF;
} */
.content {
	font-family: 'Alegreya Sans', sans-serif;
	font-weight: 300;
}
.content img.icone {
	height:24px;
	margin-right:10px;
	vertical-align: middle;
}

.texte-accueil {
	/* clear: both; */
}
.actu {
	background:#DDD;
}
.actu .content {
	/* border: 1px solid black; */
	text-align: center;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.75em;
}
.actu img {
	max-width:96%;
	max-height:160px;
	/*border-radius: 5px;*/
	background-color: #FFF;
	padding:2px;
	border: 1px solid black;
}
.actu .date {
	margin:0;
	text-align: left;
}
.actu span {
	font-size: 0.9em;
	font-style: italic;
	display: block;
	margin: 0;
}
.actu h3 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 1.2em;
}
.actu .texte {
	text-align: left;
}
.actu p.lien {
	/* display: block; */
	text-align: right;
	font-size: 0.9em;
}
.actu p.lien a {
	background-color: #EEE;
	padding: 7px;
	border-radius: 5px;
}
.actu p.lien a:hover {
	background-color: #333;
	color:#EEE;
}

/********************************************************
Page newsletter
**********************************************************/
.inscription-newsletter .email-capture {
	width:100%;
	text-align: left;
	display: block;
	margin:40px auto;
}
.inscription-newsletter .email-capture h3 {
	text-align: center;
}
.inscription-newsletter form {
	margin-top:10px;
	border-bottom: 1px solid #b1aca1;
	width:100%;
}
.inscription-newsletter form .input-group-btn {
	width:25%;
	text-align: right;
	display: inline-block;
	padding-bottom: 16px;
}
.inscription-newsletter form input {
	border: 0;
	background-color: transparent;
	outline: 0;
	display: inline-block;
	vertical-align: bottom;
}
.inscription-newsletter form input[type="email"]{
	font-family: 'Heebo', sans-serif;
	font-weight: 300;
	width:70%;
	color:#b1aca1;
	padding: 10px 10px 10px 0;
	font-size: 1.3rem;
}
.inscription-newsletter form .input-group-btn input[type="submit"]{
	font-family: 'Heebo', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	font-size: 0.7rem;
	text-align: right;
	width:auto;
	padding: 0;
	cursor: pointer;
	color:#b1aca1;
	margin:0 auto;
}

/********************************************************
Page revendeur
CrÃ©ation     : 07 06 2016
Modification : 08 06 2016
**********************************************************/
.logo {
	z-index: -2;
	display: flex;
		animation-duration:4s;
	animation-fill-mode: both;
	animation-name: fadeInTop;
}
.logo p {
	text-align:center;
	margin:60px auto;
	padding:20px 40px;
	border:1px solid black;
}
.logo p img {
	max-width: 400px;
	max-height:50px;
	/* object-fit:cover; */
}
.header-revendeur {
	border-top: 1px solid #777;
	border-bottom: 1px solid #777;
	background-color: #F9F9F9;
}
.revendeur {
	display: flex;
	padding: 0;
	margin: 0;
	font-size: 18px;
	/* font-family: 'Lora', serif; */
	/* border-top:1px solid black;
	border-bottom:1px solid black; */
}
.revendeur img {
	object-fit:cover;
	width:100%;
}
.revendeur > div {
	width:50%;
	height:350px;
	display: flex;
	padding: 0;
	margin: 0 auto;
	/* background-color: hsla(0,0%,0%,0.15); */
}
.revendeur .adresse {
	margin: auto;
	padding:20px 50px;
	/* background-color: hsla(0,0%,100%,1); */
	/* border-left: 1px solid black;
	border-right: 1px solid black; */
}
.revendeur p.web-email {
	display: flex;
	justify-content:space-between;
}
.revendeur p.web-email a  {
	width: 50%;
	text-align: center;
	background-color: hsla(0,0%,80%,1);
	transition: all 0.5s ease-out;
	padding: 10px 0;
}
.revendeur p.web-email a:first-child {
	margin-right:1px;
}
.revendeur p.web-email a:hover {
	background-color: hsla(0,0%,90%,1);
}
#googleMap {
	background: transparent url(../images/ajax-loader.gif) no-repeat center center;
}
@media handheld, only screen and (max-width: 767px) {
	.revendeur {
		flex-direction:column;
	}
	.revendeur > div {
		width: 100%;
	}
	/*
	.revendeur img {
		display: none;
		height: 0px;
	}
	.revendeur > div + div {
		height: 0px;
	} */
}

/********************************************************
Page sav
*********************************************************/
.adresse {
	margin-left:50px;
	border-left: 2px solid black;
	padding-left: 30px;
}
.adresse p {
	margin:0 0 5px 0;
}


/********************************************************
Page contact
CrÃ©ation     : 17 06 2016
Modification : 17 06 2016
**********************************************************/
h1.titre-contact, h2.titre-contact {
  position: relative;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Raleway', serif;
  font-family: 'Open Sans', serif;
  font-family: 'Lora', serif;
  font-family: 'Alegreya Sans', serif;
  margin:40px 0 20px 0;
  padding: 30px 0;
}

h1.titre-contact img, h2.titre-contact img {
	vertical-align: middle;
	max-width: 128px;
	max-height: 96px;
	margin-right: 10px;
	-webkit-box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.44);  
	-moz-box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.44);
	box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.44);
}
h1.titre-contact span, h2.titre-contact span {
  background: #fff;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

h1.titre-contact:before, h2.titre-contact:before {
  background: #aaa;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
    top: 50%;
  width: 100%;
}
h1.titre-contact:before, h2.titre-contact:before {
  left: 0;
}
/* h2.titre-contact {
	text-align: center;
	font-family: 'Raleway', serif;
	text-transform: uppercase;
} */

@media screen and (max-width:767px){
	h1.titre-contact img {
		display: none;
	}
}


div.contact {
	display: flex;
	flex-direction : row;
	justify-content: space-between;
	justify-content: space-around;
	text-align: center;
	/* font-family: 'Raleway', serif; */
	font-family: 'Alegreya Sans', serif;
	margin-top: 60px;
}
div.contact > a {
	background-color: #fff;
	flex: 1;
	margin: 5px;
	padding: 30px 10px 20px 10px;
	
	border-radius: 10px;
}
div.contact > a img {
	scale: 0.9;
	transition: all 0.5s ease-out;
}
div.contact > a:hover img {
	scale: 1;
}

div.contact .fa-circle {
	color:#3B5998;
}
#message {
	text-align: center;
	background-color: #efefef;
	background-color: #3B5998;
	color:#efefef;
	border:1px solid #dedede;
}

.blocrma {
	animation: blinker 4s ease-in-out;
}

@keyframes blinker {
  5% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }

}

.blink {
	display: inline-block;
  border-radius: 2px;
  background-color: #e92e3a;
  padding: 5px 10px;
  animation: colorblink 2s infinite;
  color: #fff;
  margin-left: 5px;
}

@keyframes colorblink {
	0% {background-color: #FFF; color: #F00;}
	80% {background-color: #F00; color: #FFF;}
	100% {background-color: #F00; color: #FFF;}
}

form.contact {
	width:70%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin:30px auto 60px auto;
	font-family: 'Raleway', serif;
	font-family: 'Alegreya Sans', serif;
}
form.contact > div {
	display: flex;
}
form.contact > div > * {
	width:100%;
	margin-right: 10px;
	margin-bottom: 10px;
}
form.contact > div > *:last-child {
	margin-right: 0;
}
form.enregistrement-produit {
	width:75%;
}
form.enregistrement-produit textarea {
	height:100px !important;
}
form.enregistrement-produit input, form.enregistrement-produit select, form.enregistrement-produit label, form.enregistrement-produit textarea {
	font-family: 'Roboto', sans-serif !important;
}
form.enregistrement-produit ::-webkit-input-placeholder, form.enregistrement-produit ::-webkit-select-placeholder, form.enregistrement-produit ::-webkit-textarea-placeholder {
  color: #000 !important;
}
form.enregistrement-produit ::-moz-input-placeholder {
  color: #000 !important;
}
form.enregistrement-produit ::-ms-input-placeholder {
  color: #000 !important;
}
form.enregistrement-produit input[type="checkbox"] {
	width:20px;
}
form.enregistrement-produit #marque, form.enregistrement-produit #numero_serie, form.enregistrement-produit label#file01, form.enregistrement-produit #description_panne, form.enregistrement-produit #email, form.enregistrement-produit #telephone {
	font-weight:bold;
}
/* form.contact > * {
	border:1px solid black;
	border-radius: 3px;
	margin:5px 0;
	background-color: #EEE;
} */
/* form.contact input[type="file"] {
	position: absolute;
    filter: alpha(opacity=0);
    opacity: 0;
} */

form.contact input, form.contact select, form.contact textarea, form.contact input[type="file"], form.contact input[type="Button"], form.contact input[type="file"] + label, form.contact textarea {
	height:40px;
	background-color: #efefef;
	/* border-radius: 5px; */
	border:1px solid #dedede;
	padding: 10px;
	margin-top: 10px;
	/*font-family: 'Raleway', serif;*/
	font-family: 'Alegreya Sans', serif;
}

form textarea, form textarea::placeholder {
font-family: 'Alegreya Sans', serif;
}

#zsWebToCase_134831000000198120 {
	font-family: 'Raleway', serif;
	font-size: 16px;
}

form.contact input:hover, form.contact textarea:hover, form.contact select:hover, form.contact input[type="file"] + label:hover {
	border:1px solid #3B5998;
}
form.contact input:focus, form.contact textarea:focus, form.contact select:hover, form.contact input[type="file"] + label:hover {
	border:1px solid #3B5998;
}
form.contact input[type="date"]::before {
	content: attr(placeholder);
}
form.contact input[type="date"] {
	width:100%;
}
form.contact textarea {
	height:200px;
}
form.contact input[type="submit"], form.contact input[type="Button"] {
	background-color: #FFF;
	border:2px solid #3B5998;
	text-transform: uppercase;
	color: #3B5998;
	font-weight: 700;
	width:45%;
	margin: 40px auto;
}
form.contact input[type="file"] {
	position: absolute;
	filter: alpha(opacity=0);
    opacity: 0;
    z-index:-200;
}
form.contact input[type="file"] + label {
	position: relative;
	font-size: 80%;
}
form.contact input[type="submit"]:hover, form.contact input[type="Button"]:hover {
	background-color: #3B5998;
	color:#FFF;
}

@media screen and (max-width:767px){
	div.contact {
		flex-direction : column;
	}
	form.contact {
	width:100%;
}

}

/* form.contact .g-recaptcha {
	transform:scale(1.5);
	-webkit-transform:scale(1.5);
	transform-origin:0 0;
	-webkit-transform-origin:0 0;
} */
/********************************************************
Page de la marque (dÃ©tail - en savoir plus)
CrÃ©ation     : 12 01 2015
Modification : 12 01 2015
**********************************************************/
.fabricant .header-fabricant{
	display: flex;
	/* background-color: #555; */
	border-bottom: 1px solid #333;
	padding:10px;
	animation-duration:4s;
	animation-fill-mode: both;
	animation-name: fadeInTop;
}
.fabricant > div:last-child {
	margin: 60px 0;
	display: flex;
	border-top: 1px solid #333;
	padding-top: 20px;
}
.fabricant .social {
	text-align: right;
}
.fabricant .social img {
	margin-left:1px;
	}
.fabricant > div:last-child > * {
	width:50%;
	height:300px;
	padding-right: 5px;
}
.fabricant > div:last-child > *:last-child {
	padding-right: 0px;
}
/* .fabricant > div:last-child > object {
	width:50%;
	margin-right:10px;
	width:100%;
	margin:0 auto;
	text-align:center;
	display:block;
}
.fabricant > div:last-child > iframe {
	width:50%;
} */
.fabricant div {
	text-align: justify;
}
.fabricant h2 {
	flex:1;
	text-align: center;
	margin:0;
	padding: 0;
	margin:auto;
}
.fabricant > div:last-child > * {
	/* padding-top:20px; */
}

.fabricant .header-fabricant img {
	max-height: 150px;
	max-width:300px;
	/* border:2px solid black; */	
	object-fit: scale-down;
}

@media handheld, only screen and (max-width: 767px) {
	.fabricant .header-fabricant{
		display: flex;
		flex-direction:column;
		justify-content:center;
	}
	.fabricant .header-fabricant img {
		margin:0 auto;
		max-height: 100px;
		max-width:200px;
	}
	.fabricant .header-fabricant h2 {
		margin:20px auto;
	}
	.fabricant > div:last-child {
	margin: 60px 0;
	display: flex;
	flex-direction:column;
	border-top: 1px solid #333;
	padding-top: 20px;
	}
	.fabricant > div:last-child > * {
		margin-top:20px;
		width:100%;
		height:300px;
	}
	/* .fabricant > div:last-child > object {
		margin-top:15px;
		width:100%;
	}
	.fabricant > div:last-child > iframe {
		margin-top:15px;
		width:100%;
	} */
}
/********************************************************
Page de la marque
CrÃ©ation     : 12 01 2015
Modification : 12 01 2015
**********************************************************/
/* TEST V2 */
.marque-v2 {
	margin: 0;
	padding: 0 0 20px 0;
	min-height:350px;
	z-index: 10;
	display: flex;
	flex-direction:column;
}

div.titre {
	text-align: center;
	margin:0 auto;
	background-color: none;
} 
div.titre h2 {
	animation-duration:3s;
	animation-fill-mode: both;
	animation-name: fadeInTop;
	text-align:center;
	padding:20px 40px;
	border:1px solid black;
	display: inline-block;
	margin:60px auto;
	background-color: hsla(0,0%,100%,1);
}
div h2.ml2 {
	text-align: center;
	margin:0 auto;
	background-color: none;
	font-weight: 900;
  font-size: 3.5em;
  padding:20px 40px;
  margin:60px auto;
}

div h2.ml2 .letter {
	 display: inline-block;
  line-height: 1em;
}

.container-album {
	display: flex;
	margin-bottom: 40px;
}

.container-album img {
	margin-right: 20px;
	max-height:250px;
	object-fit:scale-down;
	box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.5);
}

.container-album > div {
	/* border-left : 1px solid black */
	padding-left: 20px;
	flex-grow:2;
	overflow:hidden;
}

.container-album h3 {
	margin-top:0px;padding-top:0px;font-family:Roboto;
}

.container-album span {
	margin-left:10px;
	padding:5px;
	padding-left: 10px;
	border-left: 1px solid black;
	display:inline-block;
}

.header-resumer-marque {
	display: flex;
	margin-bottom: 40px;
	align-items:flex-start;
}
.header-resumer-marque img {
	/* max-height:80px; */
	max-width: 200px;
	object-fit:scale-down;

}
.header-resumer-marque p {
	margin-top:0;
	margin-bottom:15px;
	text-align: justify;
}
.header-resumer-marque p.lien {
	text-align: right;
}
.header-resumer-marque p.lien a { 
	position: relative;
    padding: 0.5em;
    cursor: pointer;
    text-decoration: none;
    font-size:0.8em;
    color: #000;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.header-resumer-marque p.lien a:before { 
	    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: #2098d1;
    background: #CF421A;
    height: 3px;
    height: 2px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.header-resumer-marque p.lien a:hover:before { 
	left:0;
	right:0;
}
.header-resumer-marque p.lien a:hover, .header-resumer-marque p.lien a:focus, .header-resumer-marque p.lien a:active {
    /* color: white; */
}
.header-resumer-marque > div {
	border-left: 1px solid black;
	padding-left: 20px;
	margin-left: 20px;
}
div.container-lifestyle-actu {
	background-size:cover;
	display:flex;
	flex-direction:column;
	align-items:flex-end;
	min-height: 600px;
	max-height: 600px;
	overflow: auto;
	justify-content:center;
}

div.actu-marque {
	margin-right: 10px;
	color:#FFF;
	display: flex;
	flex-direction:column;
	border: 1px solid white;
	/* background-color: hsla(0,0%,0%,0.7); */
	max-width:25%;
	font-size: 0.8em;
}
div.actu-marque a {
	padding: 10px;
	width: 100%;
	align-self:flex-end;
}
div.actu-marque a:nth-child(odd) {
	background-color: hsla(0,0%,0%,0.6);
}
div.actu-marque a:nth-child(even) {
	background-color: hsla(0,0%,0%,0.8);
}
div.actu-marque a:hover {
	background-color: hsla(0,0%,100%,1);
	cursor: pointer;
}
div.actu-marque span {
	color:#FFF;
	display: block;
}
div.actu-marque a:hover span {
	color:#000;
}

div.actu-marque img {
	max-width:200px;
	max-height: 120px;
	overflow: none;
	padding: 15px 0;
	display: block;
	margin: 0 auto;
}

div.classement_article {
	display:flex;width:100%;flex-wrap:wrap;justify-content:center;
}
div.classement_article a {
	padding:10px;margin:1px;
	transition:all 0.5s;
}
div.classement_article a img {
	transition:all 0.7s;
}
div.classement_article a:hover {
	/* opacity: 0.7; */
	/* font-weight: bold; */
	/* background-color: #F6F6F6; */
	/* transform:scale(1.1); */
	/* box-shadow: 0px 5px 10px #777; */
	letter-spacing: 1px;
}
div.classement_article a:hover img {
	transform:scale(1.1);
	/* background: linear-gradient(transparent 20%, #999 50%, transparent 60%); */
}


@media handheld, only screen and (max-width: 767px) {
	.header-resumer-marque {
	display: flex;
	flex-direction:column;
	margin-bottom: 40px;
	align-items:center;
	}
	.header-resumer-marque > div {
	border-left: none;
	padding-left: 00px;
	margin: 10px;
	}
	.header-resumer-marque img {
	/* max-height:80px; */
	max-width: 150px;
	max-height: 70px;
	margin-bottom: 20px;
	object-fit:scale-down;

}
	div.container-lifestyle-actu {
		align-items:flex-start;
	}
	div.actu-marque {
		max-width:100%;
	}

}
/* FIN TEST V2 */
/* .marque {
	margin: 0;
	padding: 0 0 20px 0;
	min-height:350px;
	z-index: 10;
}
.marque h2, .marque h3 {
	margin: 0;
	padding: 15px 0;
	width:100%;
	text-align: center;
	background: rgba(255,255,255,0.85);
}
div.marque {
	background-size: cover !important;
}
.resume_marque {
	color:#FFF;
	border: 1px solid black;
	background: rgba(51,51,51,0.65);
	background: hsla(0,0%,0%,.5);
} */




/* .lien-video {
	transition: all 1s ease-out;
}
.lien-video a {
	color:#F40;
	background: url(../images/icones/5.png) left 50% no-repeat rgba(255,255,255,0.8);
	padding: 15px 0 15px 40px;
	display: block;
	width:100%;
}
.lien-video:hover {
	background-color:rgba(255,255,255,1);
	transition: all 1s ease-out;
}
.info_ponctuel_marque {
	

	background: rgba(255,255,255,0.85); 
}
.info_ponctuel_marque img {
	vertical-align: middle;
	margin-right: 15px;
}
@media handheld, only screen and (max-width: 767px) {
	.marque {
		background: #CCC !important ;
		height:auto;
	}

}

.box {
  text-align: right;
}
.button {
  color: #fff;
  border: 2px solid rgba(49,51,53,1);
  background: rgba(150,150,150,1);
  width:150px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.8s ease;
  padding:5px 10px;
  font-size: 14px;
  box-shadow: inset 0 0 0 0 #31302B;
height: 45px;
  width: 150px;
  padding: 5px 5px;
border: 1px #FFF solid;
}
.button:hover {
	box-shadow: inset 150px 0 0 0 #e0e0e0;
  color:#000;
	
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.90);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  border-radius: 20px;
  display: flex;
}

.overlay p {
	margin-top:0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
  margin:70px auto;
  z-index: 100;
  padding: 20px 40px 20px 10px;
  width: 70%;
  transition: all 1s ease-out;
  height: 600px;
  overflow: auto;
}
.overlay div:nth-child(2) {
	flex:3;
	padding-left:20px;
	padding-right:20px;
	border-left: 1px solid white;
}
.overlay div:first-child {
	flex:1;
	text-align: center;
	align-self:center;
}
.overlay div:first-child img{
	max-width: 250px;
}
.overlay div:last-child {
	margin-left:15px;
	padding-left: 15px;
}

.overlay .close {
  transition: all 0.5s;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #FFF;
  padding: 10px;
}
.overlay .close:hover {
	background-color: #777;
	transition: all 0.5s;
} */

/* FOOTER PAGE MARQUE */
div.footer-marque {
	text-align: center;
	padding:80px 0 0 0;
	margin-bottom: 80px;

	/*display: flex;
	justify-content :space-between;*/

	/* border-bottom: 1px solid black; */
	/* background: linear-gradient(to bottom, rgba(255,255,255,1) 99%,rgba(160,160,160,1) 100%
		); */
}
div.footer-marque > * {
	width:33%;
}
div.footer-marque img {
	margin:0 10px;
	max-height:250px;
	max-width: 300px;
	object-fit:scale-down;
	transition: all 0.5s ease;
}
div.footer-marque img:hover {
	transform: scale(1.2);
}

/****************************************************************
Page du produit
CrÃ©ation     : 14 01 2015
Modification : 24 02 2015
****************************************************************/
.main_container {
	border: 1px solid black;
}
ul.test {
	list-style: none;
	padding: 0;
	margin: 0;
}
ul.test li:nth-child(even) {
	background-color: #BBB;
	background: rgba(255,255,255,1);
background: -moz-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(209,209,209,1) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(255,255,255,1)), color-stop(100%, rgba(209,209,209,1)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(209,209,209,1) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(209,209,209,1) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255,255,255,1) 0%, rgba(209,209,209,1) 100%);
background: radial-gradient(ellipse at center, rgba(255,255,255,1) 0%, rgba(209,209,209,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d1d1d1', GradientType=1 );
}
ul.test li:nth-child(odd) {
	background-color: #FFF;

}
/* .main_container > div:nth-child(even) {
	background-color: #BBB;
}
.main_container > div:nth-child(odd) {
	background-color: #FFF;
} */
.miniature-produit {
	text-align: center;
	padding: 2px 0;
	/* height:70px; */
	/* line-height: 70px; */
}
.miniature-produit a {
	display: inline-block;
	height:80px;
	width: 80px;
	line-height:76px;
	padding: 2px;
	border:1px solid #555;
	vertical-align: top;
	margin-right: 5px;
	transition: all ease 0.5s;
	/* background-color: #BBB; */
	background: linear-gradient(to bottom, #e2e2e2 0%,#dbdbdb 50%,#d1d1d1 51%,#fefefe 100%);
}
.miniature-produit a img {
	vertical-align: middle;
	max-height: 70px;
	max-width: 70px;
}
.miniature-produit a:hover {
	background: linear-gradient(to bottom, #FFF 0%,#E8E8E8 50%,#B1B1B1 51%,#fefefe 100%);
	/* background-color: #FFF; */
}
.miniature-produit p {
	margin:2px 0;
	font-size: 0.7em;
}
ul.test li ul {
	list-style-type: disc;
	font-size: 0.8em;
}
ul.test li ul li {
	margin-bottom: 5px;
	padding: 5px;
}
ul.test li ul li:nth-child(odd) {
	background-color: #EEE;
}
ul.test li ul li:nth-child(even) {
	background-color: #FFF;
}
/* Retirer cause bug description produit */
/* li.description p {
	display: flex;
} */
li.description div.content img {
	min-height: 0;
	min-width:0;
	max-width:100%;
	max-height:700px;
	object-fit:contain;
}
.quote {
	
  padding: 0.5em 10px;
  font-size: 1.4em;
  line-height: 1.4em;
  width:100%;
  margin:60px auto 40px auto;
}

blockquote {
  /* background: #f9f9f9; */
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
  width:50%;
  margin:-20px auto 40px auto;
  /* -webkit-box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.35);
  -moz-box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.35);
  box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.35); */
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}
/* .detail_produit  h2 {
	text-align:center;
	margin:20px 0;
}
.detail_produit h2 span {
	margin-left:10px;
	background-color: #CCC;
	padding: 20px 10px;
}
.detail_produit h2 img {
	margin:0 15px;
	vertical-align: top;
	height: 32px;
} */

.caracteristique-technique table {
	width: 700px !important;
	border:1px solid #000;
	padding: 1px 2px;
	border-collapse: separate;
	border-spacing: 0px 2px;
	font-size: 16px;
	background-color: #FFF;
	font-family: 'Cousine', sans-serif;
	font-family: 'Alegreya Sans', sans-serif;
}
.caracteristique-technique table td {
	padding: 7px 5px;
}
.caracteristique-technique table tr td:first-child {
	width:40%;
	font-weight: 600;
	}
.caracteristique-technique table tr:nth-child(odd) {
	background-color: #eee;	
}
.caracteristique-technique table tr:nth-child(even) {
	background-color: #ddd;	
}
.caracteristique-technique table tr:hover {
	background-color: #bbb;
	}
.liste-revendeur a {
	display: flex;
	flex-direction: row;
    justify-content: space-between;
}
.liste-revendeur p {
	padding:10px 5px;
	margin: 0;
}
.liste-revendeur p:hover {
	background: rgba(255,255,255,0.7);
}
.liste-revendeur a span {
	flex:1;
	margin-right: 5px;
}
.liste-revendeur a span:first-child {
	flex:1;
}
.liste-revendeur a span.raison_sociale{
	flex:3;
}
/* .liste-revendeur a span.raison_sociale, .liste-revendeur a span.code_postal_ville {
	flex:2;
} */


/*********************************/
/* BLOC BANC ESSAI ET RECOMPENSE */
/*********************************/


.banc-essai-container, .recompense-container {
	display: flex;
	flex-direction: row;
    justify-content: center;
    flex-wrap:wrap;
}

.banc-essai {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
    margin-right: 10px;
    margin-bottom: 10px;
	width:200px;
	border: 1px solid black;
	text-align: center;
	/* padding: 5px; */
	border-radius: 5px;
	-webkit-box-shadow: 2px 2px 6px 0px rgba(87,87,87,1);
-moz-box-shadow: 2px 2px 6px 0px rgba(87,87,87,1);
box-shadow: 2px 2px 6px 0px rgba(87,87,87,1);
}
.banc-essai > div {
	margin: 0;
	padding: 5px;
	border-radius: 5px 5px 0 0;
	background: #CCC;
	overflow: hidden;
}
.banc-essai p {
	margin:0;
	padding: 0;
}
.banc-essai a {
	padding: 5px;
	/* border: 1px sol.banc-essai {id black; */
	display: block;
	
	overflow: hidden;
	margin-top:auto;
	/* background-color: #DDD; */
	
}
.banc-essai img {
	height:96px;
	width: 100%;
	object-fit:contain;
}

.banc-essai a:hover img {
	/* opacity: 0.6; */
	animation-duration:1s;
	animation-fill-mode: both;
	animation-name: bounceIn;
}

.recompense-container {
	flex-wrap:wrap;
	padding-bottom: 40px;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
}
.recompense-container > div {
	/*width:30%;*/
}
.recompense {
	display: flex;
	flex-direction:column;
	height: 140px;
	/* width: 100px; */
	overflow: hidden;
	padding: 5px;
	margin: 5px;
	font-size: 0.85em;
	background: #EEE;
	background: #FFF;
	text-align: center;
	border: 1px solid black;
}

.recompense img {
	object-fit:contain;
	width:100%;
	max-height: 70px;
	
	margin: auto;
}

.recompense p {
	margin:0;
	margin-top:auto;
	text-align: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}


/* Royal Slider */
.tranquility {
background-image: linear-gradient(to bottom, #A3A29E 0%, #B1B0AC 27%, #BCBBB7 49%, #E5E4E0 76%, #F3F2F0 100%) !important;
}

/* RESPONSIVE SECTION */

@media screen and (min-width:960px) and (min-height:660px) {
  .detail_produit .heroSlider .rsOverflow,
  .detail_produit  .royalSlider.heroSlider {
      /* height: 520px !important; */
      height: 600px !important; /* Taille verticale de RoyalSlider !!! */
  }
}

@media handheld, only screen and (max-width: 767px) {
	.detail_produit h2 span {
		display: block;
		margin-left:0px;
	}
	.liste-revendeur a {
	display: flex;
	flex-direction: row;
    justify-content: space-around;
    text-align: left;
    font-size: .9em;
	}
	.liste-revendeur a span {
	flex:2;
	}
	.liste-revendeur a span.CodePostal {
		flex:1;
	}
	.liste-revendeur a span.telephone{
		display: none;
	}
	.banc-essai-container, .recompense-container {
	display: flex;
	flex-direction: column;
    justify-content: center;
	}
	.banc-essai-container div, .recompense-container div, .recompense-container a {
		margin: 5px auto;
	}
}

/* FIN RESPONSIVE SECTION */


/****************************************************************
TouchCarousel
****************************************************************/
.panel {
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}
.panel { border: 1px solid #e0e0e0;
	background: #fff;
	margin: 0 0 20px 0;
	float: left; 
}
.panel{ margin: 0 !important; padding: 0; }
.group {
	margin-bottom: 30px;
}
.group:before, .group:after { content:""; display:table; }
.group:after { clear:both; }

.touchcarousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 205px;
	margin: 0 10px 40px;
}
.touchcarousel .touchcarousel-container {
	position: relative;
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
	/* left: 0; */ 
}
.touchcarousel .touchcarousel-wrapper {
		position: relative;
		overflow:hidden;
		width: 100%;
		height: 100%;
		background-color: #000;
		/* Background Anthony */
-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;

background: rgba(209,209,209,1);
background: -moz-linear-gradient(top, rgba(209,209,209,1) 0%, rgba(240,240,240,1) 79%, rgba(254,254,254,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(209,209,209,1)), color-stop(79%, rgba(240,240,240,1)), color-stop(100%, rgba(254,254,254,1)));
background: -webkit-linear-gradient(top, rgba(209,209,209,1) 0%, rgba(240,240,240,1) 79%, rgba(254,254,254,1) 100%);
background: -o-linear-gradient(top, rgba(209,209,209,1) 0%, rgba(240,240,240,1) 79%, rgba(254,254,254,1) 100%);
background: -ms-linear-gradient(top, rgba(209,209,209,1) 0%, rgba(240,240,240,1) 79%, rgba(254,254,254,1) 100%);
background: linear-gradient(to bottom, rgba(209,209,209,1) 0%, rgba(240,240,240,1) 79%, rgba(254,254,254,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1d1d1', endColorstr='#fefefe', GradientType=0 );

	}
.touchcarousel .arrow-holder { height: 17px; width: 11px; position: absolute; top: 93px; display: block; cursor: pointer; 
	z-index: 25; 
	z-index: 16; /* Anthony - Permet Ã  l'image agrandie de ne pas avoir les fleches au-dessus */
	background: transparent url(../images/ressources/home-slider-arrows.png) no-repeat -11px 0; border: none; }
.touchcarousel .arrow-holder:hover { background-position: -22px 0; }
.touchcarousel .arrow-holder.left { left: -14px; }
.touchcarousel .arrow-holder.right { right: -14px; background-position: -11px -17px; }
.touchcarousel .arrow-holder.right:hover { background-position: -22px -17px; }
.touchcarousel .arrow-icon { width: 11px; height: 17px; position: absolute; top: 0; left: 0; }
.touchcarousel .arrow-holder.disabled { cursor: default; background-position: 0 0; }
.touchcarousel .arrow-holder.disabled .arrow-icon { cursor: default; }
.touchcarousel .arrow-holder.right.disabled { background-position: 0 -17px; }
.touchcarousel .touchcarousel-item { margin: 10px 20px 10px; padding: 0; float: left; width: 200px; height: 160px; }
.touchcarousel .image { width: 150px; }
.touchcarousel .r1 { width: 142px; }
.touchcarousel .r2i { width: 152px; }
.touchcarousel .r4i { width: 197px; }
.touchcarousel .r7 { width: 433px; }
.touchcarousel .mr1 { margin-left: 40px !important; }
.touchcarousel .touchcarousel-item.last { margin-right: 40px !important; }
.touchcarousel .item-block {
   	width: 100%;
   	height: 170px;
   	display: block;
   	text-decoration: none;
   	color: inherit; 
   	border: none; 
   	/* border:1px solid black; */
   	color:#858586;
   	
}
/* Taille de l'image des produits dans chaque page des marques */
.touchcarousel .item-block .block-image {
	width: 100%;
   	height: 120px;
	/* display: table-cell; */
  	vertical-align: middle;
  	margin: 0 auto;
  	/* text-align: center; */
	  	/* border: 1px solid black; */
	display: flex;
}
.touchcarousel .item-block img { 
	/* float: left; */ 
	/* position: relative; */ 
	/* display: block; */ 
	max-width: 150px;
   	max-height: 120px;
	margin: 0; 
	vertical-align: middle;
	display: table-cell;
  vertical-align: middle;
  display: block;
  margin: 0 auto;
  margin: auto;
}
.touchcarousel .item-block h2 {
	clear: both;
	font-family: "Open Sans", Verdana, sans-serif;
	font-family: 'Alegreya Sans', sans-serif;
	font-size-adjust: 0.5; 
	font-weight: 200;
	font-style: normal;
	font-size: 18px;
	line-height: 18px; letter-spacing: 0; padding: 7px 0 0; margin: 0; text-align: center; text-shadow: none; }
.touchcarousel .item-block .new { background-color: #6b8b9a; color: #fff; padding: 1px 6px 4px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; display: inline-block; margin: -1px 6px 0 0; }
.touchcarousel .item-block:hover h2 { color: #3f5f6f; }
.touchcarousel .item-block p { font: normal 13px/20px Helvetica, Arial, sans-serif; color: #555; width: 158px; padding: 0 0 0 6px; }
.touchcarousel .scrollbar-holder { 
	position: absolute; 
	z-index: 30; 
	z-index: 15; /* Anthony - Permet Ã  l'image agrandie de ne pas avoir la ligne au-dessus */
	overflow: hidden; background: #e0e0e0; bottom: 5px; height: 1px; left: 5px; right: 5px; }
.touchcarousel .scrollbar { position: absolute; left:0; height:1px; bottom: 0px; background-color: #6b8b9a !important; bottom: 0; }


/******************************************/
/***** ACTUALITE **************************/
/******************************************/
.wrap
{
  margin:50px auto 50px auto;
  width:100%;
  display:flex;
  /* align-items:space-around; */
  justify-content: space-around;
  max-width:2200px;
  /* border:1px solid black; */
}
.tile
{
  width:400px;
  width:294px;
  height:500px;
  height:420px;
  margin:10px;
  background-color:#000;
  display:inline-block;
  
  position:relative;
  cursor:pointer;
  transition: all 0.4s ease-out;
  box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.44);
  overflow:hidden;
  color:white;
  font-family:'Roboto';
transform:scale(0.95);

  
}
.tile img
{
  background-size:auto;
  height:100%;
  position:absolute;
  top:0px;
  left:0;
  z-index:0;
  transition: all 0.4s ease-out;
}
.tile .text
{
/*   z-index:99; */
  position:absolute;
  padding:20px;
  padding:0px;
  /* height:calc(100% - 150px);
  height:calc(100% - 150px); */
}
.tile h1
{
 font-size:1.5em;
  font-weight:100;
  margin:0;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  background-color: rgba(0,0,0,0.8);
  padding: 10px;
}
.tile h2
{
  font-weight:100;
  margin:20px 0 0 0;
  font-style:italic;
   transform: translateX(200px);
   padding: 10px;
}
.tile p
{
  font-size:0.6em;
  font-weight:300;
  margin:20px 0 0 0;
  line-height: 25px;
/*   opacity:0; */
  transform: translateX(-200px);
  transition-delay: 0.2s;
  -webkit-transform-style: preserve-3d;
 padding: 10px;
}
.animate-text
{
  opacity:0;
  transition: all 0.6s ease-in-out;
}
.tile:hover
{
/*   background-color:#99aeff; */
box-shadow: 0px 35px 77px -17px rgba(0,0,0,0.64);
  transform:scale(1.05);
  transform:scale(1);
}
.tile:hover img
{
  opacity: 0.5;
  opacity: 0.2;
}
.tile:hover .animate-text
{
  transform:translateX(0);
  opacity:1;
  -webkit-transform-style: preserve-3d;
    
}
.dots
{
  position:absolute;
  bottom:20px;
  right:30px;
  margin: 0 auto;
  width:30px;
  height:30px;
  color:currentColor;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-around;
  
}

.dots span
{
    width: 5px;
    height:5px;
    background-color: currentColor;
    border-radius: 50%;
    display:block;
  opacity:0;
  transition: transform 0.4s ease-out, opacity 0.5s ease;
  transform: translateY(30px);
 
}

.tile:hover span
{
  opacity:1;
  transform:translateY(0px);
}

.dots span:nth-child(1)
{
   transition-delay: 0.05s;
}
.dots span:nth-child(2)
{
   transition-delay: 0.1s;
}
.dots span:nth-child(3)
{
   transition-delay: 0.15s;
}


@media (max-width: 1000px) {
  .wrap {
   flex-direction: column;
    width:400px;
  }
}

/******************************/
/* ACTU TEST - PAGE ACCUEIL */
/******************************/
.row-blog, .row-banc-essai {
	display: flex;
	flex-direction: row;
	padding: 0 20px 30px 20px;
	flex-wrap:wrap;
}
.row-blog > div {
	padding: 10px;
	flex-grow:1;
	width: 25%;
}
.row-banc-essai > div {
	padding: 10px;
	flex-grow:1;
	width: 16%;	
}

.blog-image {
	display: flex;
}

@media (max-width: 1800px) {
	.row-banc-essai > div {
  		width: 25%;
  }
}
@media (max-width: 1300px) {
	 .row-banc-essai > div {
  		width: 33%;
  }
}
@media (max-width: 1024px) {
  
  .row-blog > div {
  	width: 50%;
  }
   .row-banc-essai > div {
  		width: 50%;
  }
}

@media (max-width: 640px) {
  .row-blog, .row-banc-essai {
   flex-direction: column;
  }
  .row-blog > div, .row-banc-essai > div {
  	width: 100%;
  }
}
.row-blog .blog-image, .row-banc-essai .blog-image {
	overflow: hidden;
	padding: 10px;
	/* background: #a1a1a1; */
}

.blog-image {
	display: block;
}

.row-blog .blog-image img, .row-banc-essai .blog-image img {
	width: 100%;
	height:auto;
	/* height:230px; */
	height:290px;
	height:250px;
	/* height:350px; */
	vertical-align: middle;
	border: 0;
	
	object-fit:scale-down;
	/*border:1px solid #777;*/
	/*-webkit-box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.44);  
	-moz-box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.44);
	box-shadow: 0px 5px 5px -2px rgba(0,0,0,0.44); */
	opacity:1;
	-webkit-transition: all 0.2s ease;
}

.row-banc-essai .blog-image img.logo {
	 float:  right;
  width:auto;
  height: 40px;
	/*max-height: 30px;
	max-width: 60px;*/
	margin-top: -40px;
	background: #FFF;
	padding: 2px;
	/*object-fit:cover;*/
	border: 1px solid black;
	background-color: #DDD;
}


.row-banc-essai .blog-image img {
	background-color: #CCC;
	background: rgb(141,137,208);
	background: radial-gradient(circle, rgba(141,137,208,1) 0%, rgba(95,95,194,1) 47%, rgba(62,58,135,1) 100%);
	background: rgb(238,247,255);
background: radial-gradient(circle, rgba(238,247,255,0.01) 0%, rgba(135,135,135,1) 100%);
background: rgb(238,247,255);
background: radial-gradient(circle, rgba(238,247,255,0.01) 10%, rgba(116,116,116,1) 100%);
}
.row-blog .blog-image img:hover, .row-banc-essai .blog-image img:hover {
	/*-webkit-box-shadow: 0px 8px 11px -4px rgba(0,0,0,0.6);  
	-moz-box-shadow: 0px 8px 11px -4px rgba(0,0,0,0.6);
	box-shadow: 0px 8px 11px -4px rgba(0,0,0,0.6); */
	opacity: 0.6;
}
@media (max-width: 800px) {
  .row-blog .blog-image img{
   height:120px;
   width: 100%;
  }
}
.row-blog .blog-description {
	width: 95%;
	width: 100%;
	text-align: justify;
	font-size: 14px;
}
.separator-line {
	height:2px;
	width: 30px;
	margin:15px auto;
	background: #000;
	text-align: left;
	    margin-left: 0 !important;
    margin-right: 0 !important;
}
.row-blog .blog-date, .row-banc-essai .blog-date {
	text-transform: uppercase;
	padding-top: 30px;
	color:#898989;
	font-size: 11px;
	letter-spacing: 1px;
}

.row-banc-essai .blog-date {
	padding-top: 10px;
	font-size: 13px;
}

.row-blog .blog-title, .row-banc-essai .blog-title {
	padding-top: 20px;
	font-size: 14px;
	letter-spacing: 2px;
	margin: 5px 0 20px;
	text-transform: uppercase;
}

p.lien-media {
	text-align:right;
	margin-right:5%;
	margin-top:0;
	margin:0 5% 30px 0;
}
p.lien-media a {
	border:1px solid black;
	padding:15px;
	border-radius:5px;
	font-variant: small-caps;
	background-color: #F2001E;
	background-color: rgba(242,0,30,0.7);
	color:#FFF;
	-moz-box-shadow: 1px 1px 7px 2px #656565;
-webkit-box-shadow: 1px 1px 7px 2px #656565;
-o-box-shadow: 1px 1px 7px 2px #656565;
box-shadow: 1px 1px 7px 2px #656565;
filter:progid:DXImageTransform.Microsoft.Shadow(color=#656565, Direction=134, Strength=7);
}


/******************************************/
/***** FOOTER INDEX************************/
/******************************************/
.footer-index {
	display: flex;
	flex-direction:row;
}

.footer-index > * {
	width:50%;
	margin: 10px;
}
.footer-index h2 {
	text-align: center;
}
.footer-index h2 img {
	max-height:96px;
	max-width:96px;
	display: block;
	margin:auto;
}
.footer-index > div div.container-recompense:nth-child(odd) {
	background-color:#DDD;
}
.footer-index > div div.container-recompense:nth-child(even) {
	background-color:#EEE;
}
.footer-index .container-recompense {
	display:flex;
	flex-direction:row;
}

.footer-index .container-recompense > * {
	min-height:128px;
	padding: 20px 5px;
}
.footer-index .container-recompense h2 {
	width:25%;
	border-right:1px solid #AAA;
}
.footer-index .container-recompense div { 
	display: flex;
	margin:auto;
	width:75%;
	align-items: center;
   -webkit-justify-content: center;
   justify-content: center;
}
.footer-index .container-recompense div a {
	height: 160px;
	width: 160px;
	/* border: 1px solid black; */
	/* overflow: hidden; */
	margin: 5px 20px;
	text-align: center;
	display: flex;
	flex-direction:column;
	font-size: 0.9em;
	/* background-color: #BBB; */
}
.footer-index .container-recompense div a:hover {
	background-color: #FFF;
	}
.footer-index .container-recompense div a span {
	display: block;
	}
.footer-index .container-recompense div a img {
	margin: 5px;
	padding: 5px;
	max-height: 80%;
	max-width:100%;
	object-fit:scale-down;
	margin: auto;
	/* border: 1px solid black; */
}

/******************************************/
/***** FOOTER PRODUIT IMAGE ***************/
/******************************************/

.footer_produit_image {
	/*margin-top:100px;*/
	display: flex;
	max-height: 700px;
	padding:4px;
    border-top:2px solid black;
    overflow: hidden;
}
.footer_produit_image img {
	transition: transform 2s, filter 3s ease-in-out;
	filter: brightness(100%);
}
.footer_produit_image:hover img {
	transform: scale(1.4) rotate(-3deg);
	filter: brightness(130%);
}
.footer_produit_image > img {
	max-height:690px;
    width: 100%;
    margin: auto;
    object-fit: cover;
    z-index:-10;
}

@media handheld, only screen and (max-width: 1280px) {
	.footer-index {
		flex-direction:column;
	}
	.footer-index > * {
		width:100%;
		margin: 0;
	}
}
@media handheld, only screen and (max-width: 767px) {
	.footer-index .container-recompense {
		flex-direction:column;
	}
	.footer-index .container-recompense h2 {
		width:100%;
	}
	.footer-index .container-recompense div {
		width:100%;
		flex-wrap:wrap;
	}
}

/*************************************/
/* Gallery lifestyle */
/*********************/

section.lifestyle {
	 padding: .5vw;
  font-size: 0;
  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
  -ms-flex-direction: column;
  -webkit-flex-flow: row wrap; 
  flex-flow: row wrap; 
  display: -webkit-box;
  display: flex;
}
section.lifestyle div { 
    -webkit-box-flex: auto;
  -ms-flex: auto;
  flex: auto; 
  width: 200px; 
  margin: .5vw; 
}
section.lifestyle div img { 
    width: 100%; 
  height: auto; 
  object-fit:cover;
}

.content {
	padding: 10px;
	text-align: justify;
}
.align-droit .content {
	text-align: right;
}

/******************************************/
/***** TIME LINE HISTORIQUE PPL **************************/
/******************************************/




/******************************************/
/***** ANIMATION **************************/
/******************************************/

@keyframes fadeInTop {
	0% {
		opacity: 0;
		transform:translate3d(0,-100%,0);
	}
	100% {
		opacity: 1;
		transform:none;
	}
}
@keyframes fadeOutBottom {
	0% {
		opacity: 1;
		transform:translate3d(0,100%,0);
	}
	100% {
		opacity: 0;
		transform:none;
	}
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform:translate3d(0,-100%,0);
	}
	100% {
		opacity: 1;
		transform:none;
	}
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
