/*
Theme Name: Ceasy Wordpress
Author: Agence Ceasy
Author URI: http://www.ceasy.fr
*/

html,
button,
input,
select,
textarea {
    color: #222;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

html {
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size:14px;
	font-family:"Raleway", sans-serif;
	color:#303030;
	width:100%;
	min-width:1150px;
}

*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}


body {
    margin: 0;
	min-width:1150px;
	margin:auto;
	width:100%;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
img,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

.hidden {
    display: none !important;
    visibility: hidden;
}

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

.left{
	float: left;
}

.right{
	float: right;
}

.center{
	text-align: center,
}

.clear{
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
	margin: 0;
}

.wrapper{
	position: relative;
	width: 1150px;
	margin: 0 auto;
	padding:20px 0;
}

a {
	color:#303030;
	text-decoration:none;
}

/* ==========================================================================
   Styles generaux
   ========================================================================== */
   body {
		opacity:1;
		
		-webkit-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */

		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
   }
   
   body.not-loaded {
		opacity:0;
   }
	/********************************************* MENU ***********************/
	header {
		height:100px;
		width:100%;
		min-width:1150px;
		-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
		box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
		
		position: relative;
		z-index:2;
		
		background:rgb(255,255,255);
	}
	
	header .wrapper a, header .wrapper nav, header a.phone {
		display:inline-block;
		vertical-align: middle;
	}
	
	header a.phone {
		width:40px;
		height:40px;
		background:url('img/ico-sprite.png') no-repeat 0 -3px rgba(18,65,112,1);
		border:1px solid rgba(18,65,112,1);
		overflow: hidden;
		-webkit-border-radius: 2px 0 0 2px;
		border-radius: 2px 0 0 2px;
		
		position: absolute;
		right: 0;
		top: 30px;
		z-index:10;
		
		-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
		box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
		
		-webkit-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */

		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
	}
	
	header a.phone:hover {
		background:url('img/ico-sprite.png') no-repeat 0px 25px rgba(18,65,112,1);
		/*border:1px solid rgba(18,65,112,1);*/
		width:120px;
	}
	
	header a.phone span {
		color:#fff;
		display:inline-block;
		padding: 0 0 0 40px;
		opacity:0;
		line-height: 35px;
		-webkit-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */

		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
	}
	
	header a.phone:hover span {
		opacity:1;
		padding:0 0 0 10px;
		
	}
	
	
	
	header nav {
		padding:10px 0;
	}
	
	header ul#menu {
		display:table;
		list-style:none;
		padding:0;
		margin:0;
	}
	
	header ul#menu li {
		display:table-cell;
		padding:0 30px;
	}
	
	header ul#menu li a {
		display:block;
		
		
		/*color:#124170;*/
		color:rgba(18,65,112,1);
		text-transform:uppercase;
		font-family:"Raleway", sans-serif;
		font-weight:700;
		border-bottom:3px solid rgba(18,65,112,0);
		position: relative;
		
		-webkit-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */

		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
	}
	
	header ul#menu li a:hover {
		color:rgba(18,65,112,1);
		position: relative;
		border-bottom:3px solid rgba(18,65,112,1);
	}
	
	header ul#menu li:last-child {
		padding:0 0 0 30px;
	}
	
	header ul#menu > li a + ul.sub-menu {
		display:none;
		background:rgba(18,65,112,1);
		position:absolute;
		padding:0;
		-webkit-border-radius: 0 5px 5px 5px;
		border-radius: 0 5px 5px 5px;
		-webkit-box-shadow: 0 0 3px 0 rgba(0,0,0,0.1);
		box-shadow: 0 0 3px 0 rgba(0,0,0,0.1);
	}
	
	header ul#menu > li:hover a + ul.sub-menu, header ul#menu > li:focus  a+ ul.sub-menu, header ul#menu > li a + ul.sub-menu:hover, header ul#menu > li a + ul.sub-menu:focus  {
		display:block;
	}
	
	header ul#menu > li .sub-menu li {
		display:block;
		padding:0;
	}
	
	header ul#menu > li .sub-menu li a {
		padding:10px 15px;
		color:#fff;
		font-size:12px;
		font-weight:400px;
		border-bottom:1px solid rgba(255,255,255,0.3);
	}
	
	header ul#menu > li .sub-menu li:last-child a {
		border-bottom:0px solid #fff;
	}
	
	header ul#menu > li .sub-menu li a:hover {
		padding:10px 15px 10px 20px;
		
		background:rgba(255,255,255,0.1);
	}


	footer {
		width:100%;
		background:#3d3d3d;
	}
	
	footer > .wrapper {
		padding:30px 0;
	}
	
	footer .wrapper div {
		display:inline-block;
		width:50%;
	}
	
	footer div.adresses h4 {
		padding:0 0 0 25px;
		color:#fff;
		text-transform:uppercase;
		font-size:18px;
		font-family:"Signika",sans-serif;
		font-weight:600;
		background:url('img/pin.png') no-repeat left center;
		margin: 20px 0 0;
	}
	
	footer div.adresses a {
		color:#fff;
	}
	
	footer div.adresses a.tel {
		font-style:italic;
	}
	
	div.adresses .col_1_2 {
		display:inline-block;
		width:48%;
		padding:0 20px 0 0;
		color:#fff;
		vertical-align: top;
	}
	
	footer .wrapper div.map {
		float:right;
		text-align:right;
	}
	
	footer #bottom, footer #bottom a {
		width:100%;
		background:#303030;
		color:rgba(255,255,255,0.6);
	}
	
	footer #bottom p {
		font-size:12px;
		display:inline-block;
		margin:0;
	}
	
	footer #bottom #ceasy {
		text-transform:uppercase;
		float:right;
	}
	
	footer #bottom a {
		-webkit-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */

		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
	}
	
	footer #bottom a:hover {
		color:rgba(255,255,255,1);
	}
	
	footer #bottom #ceasy a > * {
		display:inline-block;
	}
	
	footer #bottom #ceasy a img {
		margin:0 5px 0 0;
	}
	
	/********************************************* SHORTCODES ***********************/
	.col_1_2 {
		float:left;
		width:50%;
		margin:0;
		padding:0 10px 0 0;
	}
	
	.col_1_2 + .col_1_2 {
		padding:0 0 0 10px;
	}
	
	.col_1_2 + .col_1_2:after {
		clear:both;
	}
	
	.col_1_2 + .col_1_2 + * {
		clear: both;
	}
	
	/* Page Contact */
	
	.page-id-12 .col_1_2 {
		padding:0 40px 0 0;
	}
	
	.page-id-12 .col_1_2 + .col_1_2 {
		padding:0 0 0 40px;
	}
	
	p.captcha span:first-child {
		width:100% !important;
		display:block !important;
	}
   
/* ==========================================================================
   Accueil
   ========================================================================== */
   
   /********************************************* SLIDER ***********************/
	
	#slider {
		height:400px;
		overflow:hidden;
		width:100%;
		border-bottom: 2px solid #fff;
		
		-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
		box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
	}

	#slider .slides li, .slides, #gammes ul, #content, #partenaires, #carousel {
		width:100%;
	}
	
	#slider .slides img {
		min-width:100%;
		height:auto;
		min-height:400px;
		width:auto !important;
	}
	
	.slides li .wrapper {
		/*left: 50%;*/
		margin: auto;
		/*position: absolute;
		top: 200px;
		width: 1150px;*/
		z-index: 0;
		position:absolute;
		/*margin-top: -500px;*/
		top:0;
		height: 400px;
		width:100%;
	}
	
	.slides li .wrapper .wrap {
		margin: auto;
		width: 1150px;
	}
	
	.slides li .wrapper div div.legend {
		width:520px;
		height:200px;
		background:rgba(255,255,255,0.75);
		padding:30px;
		margin: 75px auto auto;
		display: inline-block;
	}
	
	.slides li h2 {
		font-family:"Signika", sans-serif;
		font-weight:600;
		margin:0;
		line-height:34px;
		font-size:34px;
		color:#124170;
	}
	
	.slides li h3 {
		font-family:"Raleway", sans-serif;
		font-weight:100;
		font-size:24px;
		margin:0;
		line-height:28px;
		color:#124170;
	}
	
	.slides li p {
		line-height:20px;
		font-size:16px;
		font-family:"Raleway", sans-serif;
		font-weight:400;
		color:#303030;
	}
	
	#slider .controls {
		width:100%;
		text-align:center;
		position:absolute;
		z-index:1;
		top: 462px;
	}
	
	
   /********************************************* GAMMES ***********************/
   
   #gammes ul {
		list-style:none;
		/* display:table; */
		margin:0;
		padding:0;
		display: flex;
		flex-wrap: wrap;
   }
   
   
   #gammes ul li {
		/* display:table-cell; */
		padding:40px;
		/* table-layout:fixed; */
   }
   
   .term-21 #gammes ul li {
		width:25%;
   }
   
   #gammes ul li:first-child {
		padding:40px 40px 40px 0;
   }
   
   #gammes ul li:last-child {
		padding:40px 0 40px 40px;
   }
   
   .home #gammes ul li, .page-id-8 #gammes ul li {
		padding:40px 15px;
		width:196px
   }
   
   .home #gammes ul li:first-child, .page-id-8 #gammes ul li:first-child {
		padding:40px 15px 40px 0;
   }
   
   .home #gammes ul li:last-child, .page-id-8 #gammes ul li:last-child {
		padding:40px 0 40px 15px;
   }
   
   
   #gammes ul li > a {
		display:block;
		border:4px solid #fff;
		width:165px;
		height:165px;
		overflow:hidden;
		-webkit-box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
		box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
   }
   
   #gammes ul li img {
		-webkit-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */

		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
   }
   
   #gammes ul li img:hover {
		-moz-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		-o-transform: scale(1.1);
		-ms-transform: scale(1.1);
		transform: scale(1.1);
   }
   
   #gammes ul li h5 {
		margin:20px 0 0 0;
   }
   
   #gammes ul li h5 a, #gammes ul li h5 {
		color:rgba(213,56,39,1);
		font-size:18px;
		font-weight:600;
		font-family:"Signika", sans-serif;
		
		-webkit-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */

		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
   }
   
   #gammes ul li h5 a:hover {
		color:rgba(213,56,39,0.7);
   }
   
   #gammes ul li p {
		font-size:13px;
		text-align:left;
   }
   
   /********************************************* texte + actu ***********************/
   
   .home #content {
		padding:20px 0;
   }
   
   #content {
		background:#fff;
		-webkit-box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
		box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
   }
   
   .home #content, #liste-produits {
		background:#ebebeb;
   }
   
   #content article, #content #recents_posts {
		font-size:16px;
		display:inline-block;
		vertical-align:top;
   }
   
   #content article {
		width:655px;
   }
   
   #content article h1, #recents_posts h2 {
		font-family:"Signika", sans-serif;
		font-size:30px;
		color:#124170;
		font-weight:600;
   }
   
   #content #recents_posts {
		width:411px;
		margin:auto;
		text-align:center;
		float:right;
		height:250px;
		padding:0 20px;
		
   }
   
   #content #recents_posts .slides li {
		text-align:center;
		margin:auto;
   }
   
   #content #recents_posts li a.img {
		display:block;
		width:120px;
		border:3px solid #fff;
		-webkit-box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
		box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
		text-align:center;
		margin:auto;
   }
   
   #content #recents_posts li a.img img {
		width:100%;
   }
   
   #content #recents_posts li a.text {
		margin:20px 0;
		display:block;
		padding: 0 25px;
   }
   
   a.btn, input.btn {
		display:inline-block;
		background:#d53827;
		padding:5px 20px;
		border:0;
		border-bottom:1px solid #951c0f;
		color:#fff;
		font-size:14px;
		margin:0;
		
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		
		-webkit-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */

		-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-moz-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		-o-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); /* easeOutCubic */
   }
   
   input.btn { 
		width:100%;
   }
   
   a.btn.magasin {
		background:url('img/ico-mail.png') no-repeat 10px center #d53827;
		padding: 5px 20px 5px 45px;
	}

	
	a.btn:hover {
		background-color:#951c0f;
		margin:1px 0 0 0;
		border-bottom:0px solid #951c0f;
	}
	input.btn:hover {
		background-color:#951c0f;
		margin:1px 0 0 0;
		border-bottom:0px solid #951c0f;
	}
	#recents_posts .flex-direction-nav a.flex-prev {
		right: 385px;
		top: 40% !important;
		left:auto !important;
	}
	
	#recents_posts .flex-direction-nav a.flex-next {
		top: 40% !important;
	}

	#content #recents_posts .slides li {
		text-align:center;
		margin:auto;
	}
	
	
   
    /********************************************* partenaires ***********************/
	
	#partenaires {
		padding:0 0 45px 0;
	}
	
	.title_onglet h2 {
		color: #124170;
		display: inline-block;
		font-family: "Signika",sans-serif;
		font-size: 28px;
		font-weight: 600;
		margin: auto;
		padding: 10px 35px;
		text-align: center;
		background:#fff;
		
		-webkit-border-radius: 10px 10px 0 0;
		border-radius: 10px 10px 0 0;
	}
	
	#liste-produits .title_onglet h2 {
		background:#ebebeb;
	}
   
	.title_onglet {
		width:100%;
		position:relative;
		top: -65px;
		text-align:center;
	}
	
	#carousel {
		padding:0 80px;
	}
	
	#carousel .slides li {
		text-align: center;
		height:100px;
		display:inline-block !important;
		vertical-align:middle;
		line-height: 95px;
	}
	
	#carousel .flex-direction-nav a {
		background:url('img/ico-sprite.png') no-repeat 0 0;
	}
	
	#carousel .flex-direction-nav a.flex-prev, #recents_posts .flex-direction-nav a.flex-prev {
		background:url('img/ico-sprite.png') no-repeat 0 -87px;
	}
	
	#carousel .flex-direction-nav a.flex-next,#recents_posts .flex-direction-nav a.flex-next {
		background:url('img/ico-sprite.png') no-repeat 0 -41px;
	}

	
	
	
	
/* ==========================================================================
   Pages
   ========================================================================== */   
   
   #breadcrumbs {
		text-align:center;
   }
   
   #breadcrumbs a, #breadcrumbs span {
		color:#124170;
	}
	
	#breadcrumbs span.breadcrumb_last {
		font-style:italic;
	}
	
	#head {
		height:150px;
	}
	
	.int #head {
		background-size:cover;
	}
	
	.int #head h1 {
		color:#fff;
		text-align:center;
		text-transform:uppercase;
		text-shadow: 0 0 3px rgba(0,0,0,0.7);
		font-size:34px;
		font-family:"Signika",sans-serif;
	}
	
	/********************************************* Boutiques***********************/
	
	.page-id-6 #boutiques .col_1_2 {
		padding:0 50px 0 0;
	}
	.page-id-6 #boutiques {
		background: #fff url("img/bg_boutiques.png") repeat-x top center; 
		box-shadow: 0 0 3px 1px rgba(0,0,0,0.2)

	}
	
	.page-id-6 h2{
		color: #fff;
		text-align: center;
		font-weight: lighter;
		text-shadow: 0 0 2px rgba(0,0,0,0.7);
	}
	
	.page-id-6 #boutiques h1{
		color: #003366;
		text-align: center;
		text-size: 30px;
		font-family:"Signika", sans-serif;
		text-transform: uppercase;
	}
	
	.page-id-6 #boutiques p {
		color: #303030;
		font-size: 16px;
		text-align: justify;
	}
	
	.page-id-6 #boutiques img {
		width: 100%;
		height: 70%;
		border: 7px solid #fff;
	}
	.page-id-6 #boutiques .contact{
		text-align: center;
	}
	
	
	
   
/* ==========================================================================
	Nos produits
========================================================================== */  

	/********************************************* Gammes ***********************/
	
	.tax-gamme h1 {
		font-size:34px;
		color:#124170;
		text-align:center;
	}
	
	.tax-gamme .description, .int {
		font-size:16px;
		text-align:justify;
		line-height:25px;
	}
	
	.tax-gamme #gammes, .page-id-8 #gammes {
		margin:-40px 0 0 0;
	}
	
	.tax-gamme section#content, .page-id-8 #content  {
		padding:0 0 60px 0;
	}
	
	/********************************************* SLIDER ***********************/
	
	.tax-gamme #slider {
		height:350px;
	}

	
	.tax-gamme #slider .slides img {
		min-height:350px;
	}
	
	.tax-gamme .slides li .wrapper {
		height: 350px;
	}
	
	.tax-gamme #slider .controls {
		top: 413px;
	}
	
	.tax-gamme #gammes ul li img {
		border: 4px solid #fff;
		-webkit-box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
		box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
		display: block;
		height: 165px;
		width: 165px;
	}
	
/* ==========================================================================
   Notre Actualité
   ========================================================================== */
   .blog .article {
		background: #ebebeb;
		margin: 0 0 30px 0;
		box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
   }
   
   .blog .image {
		text-align: center;
		width: 25%;
   }
    .blog .text {
		padding: 0 0 0 60px;
		width: 75%;
   }
   
   .blog .image img {
		box-sizing: border-box;
		border: 7px solid #fff;
		box-shadow: 0 0 5px rgba(0,0,0,0.25);
		margin: 30px 0 0 0;

   }
   
   .blog .text h2 {
		color: #003366;
		font-size: 24px;
		text-transform: uppercase;
		margin: 25px 0 0 0;
   }
   .blog .date {
		color: #999999;
		font-size: 14px;
   }
   
   .blog .summary p{
		font-size: 14px;
		color: #333333;
		text-align: justify;
		font-weight: 600;
		margin: 10px 0 0 0;
   }
   
   .blog .suite a{
		color: #cc3333;
		font-size: 14px;
		font-weight: 600;
   }

/* ==========================================================================
   Single post
   ========================================================================== */
	.single-post .article {
		background: #ebebeb;
		margin: 0 0 100px 0;
		padding:0 0 45px 0;
		box-shadow: 0 0 3px 1px rgba(0,0,0,0.2)
   }
   
   .single-post .image {
		margin: 20px 0;
		text-align: center;
		width: 25%;
   }
    .single-post .text {
		padding: 0 0 0 60px;
		width: 75%;
   }
   
   .single-post .image img {
		box-sizing: border-box;
		border: 7px solid #fff;
		box-shadow: 0 0 5px rgba(0,0,0,0.25);
		margin: 30px 0 0 0;

   }
   
   .single-post .text h2 {
		color: #003366;
		font-size: 24px;
		text-transform: uppercase;
		margin: 45px 0 5px 0;
   }
   .single-post .date {
		color: #999999;
		font-size: 14px;
   }
   
   .single-post .contenu p {
		font-size: 14px;
		color: #333333;
		text-align: justify;
		font-weight: 600;
		margin: 10px 0 0 0;
   }
   
   .contenu a:hover {
		color:rgba(48,48,48,0.7);
   }
   
/* ==========================================================================
   Page de Contact
   ========================================================================== */   
   
   .page-id-12 h1{
		color: #124170;
		font-size: 34px;
		font-family: "Signika",sans-serif;
		text-transform: uppercase;
		font-weight: 700;
		text-align: center;
		padding: 10px 0;
   }
   
   .page-id-12 #content .wrapper {
		width: 900px;
	}

   .page-id-12 form p {
		font-family: "Raleway", sans-serif;
		font-size: 14px;
		color: #666;
		margin: 0 0 20px 0;
   }
  
   .page-id-12 form span:nth-child(1) {
		display: inline-block;
		width: 30%;
   }
   
   input[type=text], input[type=tel], input[type=number], input[type=email], select {
		color: #666;
		font-size: 14px;
		width: 70%;
		height: 25px;
		box-shadow:inset 0 1px 4px 0px rgba(0,0,0,0.25);
		border: 1px solid #ccc;
		line-height: 25px;
   }
   
   .page-id-12 textarea {
		width: 100%;
		height: 180px;
		box-shadow:inset 0 1px 4px 0px rgba(0,0,0,0.25);
		border: 1px solid #ccc;
		margin:  10px 0 0 0;
   }
	.page-id-12 #envoyer {
		font-size: 16px;
		padding: 10px 0;
	    margin: 8px 0 0 0;
	}
	
	/* Google map */
	
	.page-id-12 #map {
		height: 400px;
		box-shadow: 0 0 3px 1px rgba(0,0,0,0.2);
	}
	
	p.select span {
		width:50% !important;
		display: inline-block;
	}
	
	p.select span select {
		width:100% !important;
	}
   
	.wpcf7-captchac{
		width: 20%;
	}
	
	.wpcf7-captchar{
		width: 79% !important;
	}
   
/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}