/* CODE SLIDE DES SPECIALITES*/
.customer-produit {
    max-width: 1170px;
    margin: auto;
}
.customer-service {
    max-width: 1170px;
    margin: auto;
}
.slick-slide {
    margin: 0px 5px;
}
.slick-slide img {
    width: 100%;
}
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box; 
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}
.slick-slide {
    display: none;
    float: left;
    height: 50%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}
button.slick-prev, .slick-next, #nosspe > section > button.slick-next.slick-arrow,  button.slick-next:hover {
	position: absolute;
	top: 50%;
	right: -25px;
	width: 20px;
	height: 40px;
	background-color: transparent;
	background: url("https://ouestconseils.bzh/wp-content/themes/Ouest-Conseils/img/fleche-droite.png") no-repeat;
	cursor:pointer;
	color:transparent;
	border:none;
}
button.slick-prev, #nosspe > section > button.slick-prev.slick-arrow, button.slick-prev:hover {
	position: absolute;
	top: 50%;
	left: -25px;
	z-index: 1;
	width: 20px;
	height: 40px;
	background-color: transparent;
	background: url("https://ouestconseils.bzh/wp-content/themes/Ouest-Conseils/img/fleche-gauche.png") no-repeat;
	cursor:pointer;
	background-position-x: right;
	color:transparent;
	border:none;
}
.slick-prev:before, .slick-next:before {
  font-size: 70px;
  color: #FC555C;
  line-height: inherit;
  font-weight: bold;
}
.caption-container h3 {
	font-size:18px;
	margin-top:20px;
	font-weight: 600;
	color:#fff;
	text-transform:uppercase;
	letter-spacing:1px;
	height:205px;
	margin-top:-205px;
	text-align:center;
	padding-top:100px;
}	
/* GESTION DU SURVOL */
.centered {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 600;
    transform: translate(-50%, -50%);
    padding-top: 46%;
    color: #fff;
    text-transform: uppercase;
    background: rgba(112,112,112, 0.55);
    width: 218px;
    height: 218px;
}
#nosspe > section > div > div > div > div > div > div > a > img:hover {
    color: transparent;
    background: rgba(112,112,112, 0);
}
.text-anic {
    position: relative;
    margin-top: -100%;
    padding-top: 41%;
    z-index: 16;
    font-weight: 600;
	opacity: 0;
    transform: translateY(40px);
    text-transform: uppercase;
    color: #fff;
    width: 218px;
    height: 218px;
    text-align: center;
    background: rgba(252,85,92,0.65);
}
.text-anic > h3 {
    font-size: 100%;
    color:#fff;
}
.img-wrapper {
  width:100%;
  height:218px;
  background:rgba(252,85,92, 0.85);
  /* la position relative du parent va nous permettre de contrôler correctement la position des éléments enfants */
  position:relative;
  z-index:1;
  /* ici on cache les parties des éléments enfants qui vont sortir du parent (wrapper) */
  overflow:hidden;
  cursor:pointer;
}
/* le voile qu'on va faire venir sur l'image */
.cover {
  position:absolute;
  top:0;
  left:0;
  height:218px;
  width:218px;
  z-index:4;
  background:darkSlateGrey;
  /* on le cache ici grâce à l'opacité */
  opacity:0;
  /* on applique une transition pour la douceur */
  transition: all .4s ease;
  /* et on le sort du cadre du wrapper en le décalant à droite */
  transform:translateX(300px);
}
/* Maintenant on indique la propriété à appliquer au voile au survol du wrapper */
.img-wrapper:hover .cover{
  /* on le fait réapparaître en renforçant l'opacité */
  opacity:.8;
  /* puis en annulant son décalage de position */
  transform:translateX(0);
}
.img-wrapper:hover .text-anic{
  opacity:1; 
  transform:translateY(0);
}
.img-wrapper:hover .text-anic{
  opacity:1; 
  transform:translateY(0);
}
/* edit -- on rajoute ici un effet de zoom sur les images. Amis de la surrenchère, soyez les bienvenus :) */
.img-wrapper img{
	transition:all .4s ease;
	width: 100%;
}
.img-wrapper:hover img{
  transform-origin:50% 50%;
  transform:scale(1.40);
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
@media only screen and (min-width:432px) {

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:600px) {

}
@media only screen and (min-width:720px) {

}
@media only screen and (min-width:768px) {

}
@media screen and (min-width: 481px) and (max-width: 991px) {
	
}
@media only screen and (min-width: 1025px){ 
	
}	
@media screen and (min-width: 1024px) and (max-width:1040px) {
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
}
@media screen and (min-width: 1200px) and (max-width: 1279px) {
}
@media only screen and (min-width:1200px) {

}
@media only screen and (min-width:1366px) {
}
@media only screen and (min-width:1440px) {
}
@media only screen and (min-width:1500px) {
}
@media only screen and (min-width:1680px) {
}
@media only screen and (min-width:1920px) {
}
@media only screen and (min-width:2560px) {
}
@media only screen and (max-width:1680px) {
}
@media only screen and (max-width:1500px) {
}
@media only screen and (max-width:1440px) {
}
@media only screen and (max-width:1366px) {
}
@media only screen and (max-width:1280px) {
}
@media only screen and (max-width:1280px) {
}
@media only screen and (max-width:1200px) {
.img-wrapper, .text-anic, .centered {
    width: 100%;
    height: 183px;
}
}
@media only screen and (max-width: 1140px) {
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width:992px) {
.img-wrapper, .text-anic, .centered {
    height: 170px;
}
}
@media only screen and (max-width:800px) {
}
@media only screen and (max-width:768px) {

}
@media only screen and (max-width:720px) {
}
@media only screen and (max-width:600px) {
}
@media only screen and (max-width:480px) {
.img-wrapper, .text-anic, .centered {
    height: 195px;
}
}
@media only screen and (max-width:432px) {
.img-wrapper, .text-anic, .centered {
    height:170px;
}
}
@media only screen and (max-width:414px) {
.img-wrapper, .text-anic, .centered{
	height: 165px;
}
}
@media only screen and (max-width:411px) {
}
@media only screen and (max-width:384px) {
.img-wrapper, .text-anic, .centered {
    height: 150px;
}
}
@media only screen and (max-width:376px) {
.img-wrapper, .text-anic, .centered{
	height: 140px;
}
}
@media only screen and (max-width:360px) {
}
@media only screen and (max-width:320px) {
.img-wrapper, .text-anic, .centered{
	height: 118px;
}
}
@media only screen and (min-width:1800px) {
}
@media only screen and (min-width:2000px) {
}


