/*
Theme Name: Clai
Theme URI: 
Version: 1.0.0
Author: Vaadigm/Kaudiz
Author URI: 
*/
/*styles génériques*/
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.screen-reader-text{
	display: none;
}
*{
	margin:0;
	padding:0;
	outline:none;
}
html, body{
	width:100%;
	height:100%;
}
object, embed, iframe{
	position:relative;
	z-index:1;
	max-width:100%;
	/*height:auto;*/
}

a, a:hover, a:focus{
	color:inherit;
}
.relative{
	position:relative;
	z-index:1;
}
img{
	max-width:100%;
	height:auto;
}
.poz_static{
	position:static;
}
.nopadding{
	padding:0 !important;
	margin:0 !important;
}
html{
	font-size:62.5%;
}
body{
	font-family: "proxima-nova", Arial, Helvetica, sans-serif;
	font-size: 1.4rem;
	background-color: #eee;
	color: #31303a;
	overflow-x: hidden;
}
body.stop_scroll{
	overflow: hidden;
}
#main{
	width: 100%;
	max-width: 1366px;
	margin: auto;
	/*height: 100%;*/
	position: relative;
	z-index: 2;
	background-color: #f5f5f5;
	
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;
	animation-duration: 0.25s;
    transition-timing-function: ease-in;
    animation-fill-mode: both;
	min-height: 100%;
}
@media (max-width: 1024px) {
	.container{
		width: 100%;
	}
}
#main.out{
	animation-name: fadeOut;
	-webkit-animation-name: fadeOut;
	animation-duration: 0.5s;
    transition-timing-function: ease-in;
    animation-fill-mode: both;
}
#main.in article{
	opacity: 0;
}
.ghost{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 333;
	width: 100%;
	height: 100%;
	background-color: #39b2c3;
	opacity: 0;
	-moz-transition: all 450ms ease-in-out;
	-webkit-transition: all 450ms ease-in-out;
	-o-transition: all 450ms ease-in-out;
	transition: all 450ms ease-in-out;
	-webkit-transform:translateX(-100%);
	-ms-transform:translateX(-100%);
	transform:translateX(-100%);
}
body.push_load .ghost{
	opacity: 1;
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0);
}
body.pull_load .ghost{
	opacity: 0;
	-webkit-transform:translateX(100%);
	-ms-transform:translateX(100%);
	transform:translateX(100%);
}
.ghost svg{
	width: 400px;
	height: 400px;
	fill: transparent;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	margin: auto;
	-moz-transition: fill 2000ms ease-in-out;
	-webkit-transition: fill 2000ms ease-in-out;
	-o-transition: fill 2000ms ease-in-out;
	transition: fill 2000ms ease-in-out;
}
.ghost .gif{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	max-width: 100%;
	height: auto;
	margin: auto;
}
/*body.push_load .ghost .gif, body.pull_load .ghost .gif {
	background: url(img/A2.gif) center center no-repeat;
}*/
body.push_load .ghost svg path, body.pull_load .ghost svg path {
	stroke-dasharray: 1130;
	stroke-dashoffset: 1130;
	animation: dash 1.5s linear forwards;
}
body.push_load .ghost svg, body.pull_load .ghost svg {
		fill: #ffffff;
}
@keyframes dash {
	to {
		stroke-dashoffset: 0;
	}
}
.load{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 30;
	width: 0;
	height: 8px;
	background-color: #ff0000;
}
.load_overlay{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 29;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.8);
	display: none;
}
.singlay{
	position: fixed;
	top: 150%;
	left: 0;
	z-index: 9;
	width: 100%;
	/*-moz-transition: all 850ms ease-in-out;
	-webkit-transition: all 850ms ease-in-out;
	-o-transition: all 850ms ease-in-out;
	transition: all 850ms ease-in-out;*/
	opacity: 0;
	height: 100%;
	overflow: auto;
}
.singlay.open{
	top: 0;
	opacity: 1;
}
/*FIN styles génériques*/

.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.cta{
	color: #fff !important;
	text-decoration: none !important;
	display: inline-block;
	background-color: #39b2c3;
	border: solid 1px #54a8b3;
	border-radius: 5px;
	text-align: center;
	font-weight: 700;
	font-size: 1.2rem;
	text-transform: uppercase;
	line-height: 1;
	padding: 15px 45px;
	-moz-transition: all 250ms ease-in-out;
	-webkit-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
	cursor: pointer;
}
.cta.ocre, .cta:hover{
	background-color: #d3c392;
	border: solid 1px #c8b065;
}
.titre_page, .titre_only{
	text-align: center;
	font-size: 3.8rem;
	color: #31303a;
	font-weight: 800;
	margin: 115px auto;
}
.titre_only{
	margin:0;
}
.titre_page:after{
	content:'.';
	display: inline;
	color: #39b2c3;
}
.titre_page.wt span{
	color: #39b2c3;
}
.titre_page.wt:after{
	display: none;
}
/*/
defaut : #
/*/
header{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: auto;
	padding: 40px 0;
	background-color: #242C59;
	-moz-transition: all 250ms ease-in-out;
	-webkit-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}
/*#simili_body.home header{
	top: -120px;
	opacity: 0;
}
#simili_body.home header.affix{
	top: 0;
	opacity: 1;
}*/
.h100{
	height: 100%;
}
header .mainh{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

body.home .main_header,
#simili_body.home .main_header{
	top: -300px;
}
body.on_scroll .main_header{
	top: -300px;
}
body.on_scroll .main_header.on_change{
	position: fixed;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
body.on_scroll .main_header.on_up{
	top: 0;
}
/*header .custom-logo-link{
	position: absolute;
	top: 50%;
	left: 15px;
	z-index: 1;
	-webkit-transform:translateX(0) translateY(-50%);
	-ms-transform:translateX(0) translateY(-50%);
	transform:translateX(0) translateY(-50%);
}
header .tools{
	position: absolute;
	top: 50%;
	right: 15px;
	z-index: 1;
	-webkit-transform:translateX(0) translateY(-50%);
	-ms-transform:translateX(0) translateY(-50%);
	transform:translateX(0) translateY(-50%);
	text-align: right;
}*/
.wid_search{
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 25px;
	height: 25px;
	margin-right: 22px;
	cursor: pointer;
}
.wid_search:before{
	content: '';
	display: block;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	border: solid 3px #fff;
	position: absolute;
	top: 2px;
	left: 0;
}
.wid_search:after{
	position: absolute;
	bottom: 2px;
	left: 14px;
	content: '';
	display:block;
	width: 10px;
	height: 3px;
	background-color:#fff;
	border-radius: 8px;
	-webkit-transform:rotate(45deg);
	-ms-transform:rotate(45deg);
	transform:rotate(45deg)
}
aside .wid_search:before{
	border-color: #fff;
	box-shadow: 1px 1px 2px -1px #515151;
}
aside .wid_search:after{
	background-color:#fff;
	box-shadow: 1px 1px 2px -1px #515151;
}
.side_lang{
	display: inline-block;
	margin-right: 20px;
	/*display: none;*/
	vertical-align: middle;
}
.side_lang ul{
	margin-bottom: 0;
}
.side_lang li{
	border: solid 1px #eeeeee;
	border-left: none;
	border-radius: 0 15px 15px 0;
	float: left;
	background-color: #fff;
	width: 28px;
	height: 23px;
	list-style: none;
}
.side_lang li:first-child{
	border-left: solid 1px #eeeeee;
	border-right: none;
	border-radius: 15px 0 0 15px;
}
.side_lang ul li:only-child{
	display: none;
}
.side_lang li a{
	display: block;
	width: 100%;
	height: 100%;
	line-height: 20px;
	text-transform: uppercase;
	text-decoration: none !important;
	font-size: 1rem;
	text-align: center;
	color: #a1a7a8;
}
.side_lang li.current-lang{
	background-color: #39b2c3;
}
.side_lang li.current-lang a{
	color: #fff;
}
/*.side_lang li{
	display: block;
	width: 56px;
	height: 21px;
	background-color: #fff;
	position: relative;
	list-style: none;
	border-radius: 12px;
}
.side_lang li a{
	display: block;
	width: 100%;
	height: 100%;
	color: #a1a7a8;
	text-decoration: none !important;
	text-align: right;
	font-size: 1rem;
	padding: 0 12px;
	line-height: 20px;
	position: relative;
}
.side_lang li a:before{
	position: absolute;
	top: 2px;
	left: 2px;
	content: '';
	width: 16px;
	height: 16px;
	display: block;
	background-color: #39b2c3;
	border-radius: 50%;
}*/
.navbar-toggle {
	float: none;
	margin: 0;
	padding: 0;
	display:inline-block!important;
	vertical-align: middle;
	background-color:transparent;
	background-image:none;
	height:35px;
	width:35px;
	text-transform:uppercase;
	text-align:left;
	/*position: absolute;
	top: 0;
	right: 15px;
	z-index: 12;*/
}
.navbar-toggle:focus {
	outline:0
}
.navbar-toggle span {
	position:absolute;
	top:50%;
	right:0;
	display:block;
	width:35px;
	height:3px;
	border-radius:5px;
	background-color:#fff;
	-webkit-transform:translateX(0) translateY(-50%);
	-ms-transform:translateX(0) translateY(-50%);
	transform:translateX(0) translateY(-50%);
	-webkit-transition:background .2s;
	transition:background .2s
}
.navbar-toggle span:after,.navbar-toggle span:before {
	content:'';
	position:absolute;
	top:0;
	left:0;
	display:block;
	width:35px;
	height:100%;
	border-radius:5px;
	background-color:#fff;
	-webkit-transition:-webkit-transform .3s;
	transition:transform .3s
}
aside .navbar-toggle span, aside .navbar-toggle span:after, aside .navbar-toggle span:before{
	background-color: #fff;
	box-shadow: 1px 1px 2px -1px #515151;
}
.navbar-toggle span:after {
	-webkit-transform:translateY(9px);
	-ms-transform:translateY(9px);
	transform:translateY(9px);
}
.navbar-toggle span:before {
	-webkit-transform:translateY(-9px);
	-ms-transform:translateY(-9px);
	transform:translateY(-9px);
}
.nav{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background: url(img/bg_nav.jpg) right top repeat-y #fff;
	-webkit-transform:translateX(-100%);
	-ms-transform:translateX(-100%);
	transform:translateX(-100%);
	-moz-transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
.nav .gauche{
	padding: 0;
	background: url(img/forme_nav.png) right bottom no-repeat;
	background-size:100% auto;
	position: relative;
}
.nav .close{
	display: block;
	text-transform: uppercase;
	color: #b8b8b8;
	font-size: 1.2rem;
	font-weight: 700;
	position: absolute;
	top: 35px;
	right: 30px;
	padding-right: 45px;
	opacity: 1;
}
.nav .close:before, .nav .close:after{
	content:'';
	position:absolute;
	top:3px;
	right:0;
	display:block;
	width:30px;
	height:2px;
	border-radius:5px;
	background-color:#515151;
	-webkit-transition:-webkit-transform .3s;
	transition:transform .3s
}
.nav .close:before {
	background-color:#515151;
	-webkit-transform:translateY(0) rotate(45deg);
	-ms-transform:translateY(0) rotate(45deg);
	transform:translateY(0) rotate(45deg)
}
.nav .close:after {
	background-color:#515151;
	-webkit-transform:translateY(0) rotate(-45deg);
	-ms-transform:translateY(0) rotate(-45deg);
	transform:translateY(0) rotate(-45deg)
}
.nav .sidebar{
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 1.4rem;
	-webkit-transform:translateX(0) translateY(-50%);
	-ms-transform:translateX(0) translateY(-50%);
	transform:translateX(0) translateY(-50%);
	color: #6e6e71;
	width: 100%;
}
.nav .sidebar strong{
	font-size: 1.4rem;
	color: #31303a;
	font-weight: 600;
}
.nav .sidebar a{
	text-decoration: underline;
}
.nav .sidebar strong a{
	color: #16acb7;
}
.nav .sidebar .widget_text{
	margin-bottom: 60px;
}
.nav .sidebar .widget_text p{
	margin-bottom: 30px;
}
.nav .sidebar .widget_media_image{
	margin-bottom: 50px;
}
.nav nav{
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 3rem;
	color: #abaaaa;
	-webkit-transform:translateX(0) translateY(-50%);
	-ms-transform:translateX(0) translateY(-50%);
	transform:translateX(0) translateY(-50%);
}
.nav nav li{
	list-style: none;
	margin: 12px 0;
}
.nav nav li a:hover{
	color: #31303a;
}
.nav .droite{
	padding: 0;
	background: url(img/bg_nav.jpg) left top repeat;
}
#main{
	-moz-transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}
body.push_menu, body.push_load{
	overflow-x: hidden;
	overflow-y: scroll;
}
body.push_menu .nav{
	-webkit-transform:translateX(0);
	-ms-transform:translateX(0);
	transform:translateX(0);
}
body.push_menu #main{
	-webkit-transform:translateX(50%);
	-ms-transform:translateX(50%);
	transform:translateX(50%);
}
footer{
	position: relative;
	z-index: 1;
	min-height: 195px;
	background-color: #222427;
	padding-top: 45px;
	font-size: 1.4rem;
	color: #979797;
}
footer .textwidget strong{
	color: #fff;
	font-size: 1.6rem;
	display: inline-block;
	margin-bottom: 4px;
}
footer .textwidget a{
	text-decoration: underline;
	color: #16acb7;
}
footer .bas3 .textwidget{
	padding-top: 20px;
	border-top: solid 1px #2f3236;
}
footer .bas3 .textwidget a{
	text-decoration: none;
	color: #fff;
}
.menu-link-rs-container{
	margin-bottom: 25px;
}
.menu-link-rs-container li{
	list-style: none;
	display: inline-block;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	margin-right: 12px;
	background-color: #313438;
}
.menu-link-rs-container li a{
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -9999px;
	overflow: hidden;
	background-size: cover;
}
li.picto_l a{
	background: url(img/picto_l.png) center center no-repeat;
}
li.picto_i a{
	background: url(img/picto_i.png) center center no-repeat;
}
li.picto_t a{
	background: url(img/picto_t.png) center center no-repeat;
}
li.picto_f a{
	background: url(img/picto_f.png) center center no-repeat;
}
li.picto_m a{
	background: url(img/picto_mail.png) center center no-repeat;
}
/**/
/*body #main{
	transition: transform 0.5s;
}*/
body.search_open #main{
	transform: scale3d(0.7,0.7,1);
}
#content_search_form{
	pointer-events:none;
	opacity:0;
	position: fixed;
	width: 100%;
	height: 100%;
	/*top: -200%;*/
	top: 0;
	right: 0;
	z-index: 19;
	/*background-color: #39b2c3;*/
	background-color: rgba(57,178,195,0.95);
	margin:auto;
	border: solid 0 #fff;
	-moz-transition: all 500ms ease-out;
	-webkit-transition: all 500ms ease-out;
	-o-transition: all 500ms ease-out;
	transition: all 500ms ease-out;
}
#content_search_form.open{
	opacity:1;
	pointer-events:auto;
}
#content_search_form fieldset{
	opacity: 0;
	transform: scale3d(0.8, 0.8, 1);
	transition: opacity 0.5s, transform 0.5s;
}
#content_search_form.open fieldset{
	opacity: 1;
	transform: scale3d(1, 1, 1);
}
#content_search_form form{
	display: block;
	width: 100%;
	height: 100%;
}
#content_search_form form .container, #content_search_form form .row, #content_search_form form .row>div{
	display: block;
	height: 100%;
}
#content_search_form form .row>div{
	padding-top: 25%;
}
#search_field{
	position: relative;
}
#search_field .bt_wid_search{
	background: none;
	border: none;
	position: absolute;
	margin-top: -13px;
	top: 50%;
	right: 15px;
	cursor: pointer;
	z-index: 2;
	display: block;
	width: 25px;
	height: 25px;
}
#search_field .bt_wid_search .wid_search{
	margin-right: 0;
	pointer-events: none;
}
#search_field input{
	border: none;
	background: none;
	width: 100%;
	border-bottom:solid 2px #fff;
	color: #000;
	padding: 20px 15px;
	font-size: 7rem;
	line-height: 1;
	font-weight: 600;
}
#search_field input::-webkit-input-placeholder {
	color: #2e8e9c;
	opacity: 1;
}
#search_field input::-moz-placeholder {
	color: #2e8e9c;
	opacity: 1;
}
#search_field input:-ms-input-placeholder {
	color: #2e8e9c;
	opacity: 1;
}
#search_field input:-moz-placeholder {
	color: #2e8e9c;
	opacity: 1;
}
#searchform .mention{
	display: block;
	margin-top: 15px;
	color: #fff;
	text-align: right;
	font-style: normal;
	font-size: 1.6rem;
}
#searchform .close_search{
	position: absolute;
	top: 25px;
	right: 20px;
	z-index: 1;
	display: block;
	width: auto;
	padding-right: 30px;
	height: 26px;
	cursor: pointer;
	color: #a4dfe7;
	text-transform: uppercase;
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 29px;
}
#searchform .close_search:before,#searchform .close_search:after{
	position: absolute;
	right: 0;
	content: ' ';
	height: 30px;
	width: 3px;
	background-color: #515151;
	border-radius: 2px;
}
#searchform .close_search:before {
	transform: rotate(45deg);
}
#searchform .close_search:after {
	transform: rotate(-45deg);
}
/**/
#simili_body.home #main section{
	position: relative;
}
section.ac1 .titre_page,
section.ac2 .titre_page,
section.ac3 .titre_page,
section.ac4 .titre_page,
section.ac5 .titre_page{
	font-size: 3.2rem;
}
section .embed-responsive video {
	z-index: 2;
}
.embed-responsive .wp-video {
	position: absolute;
	top: -999px;
	bottom: -999px;
	left: -999px;
	right: -999px;
	margin: auto;
	width: 110% !important;
	height: 100% !important;
	max-width: none;
	border: 0;
	z-index: 10;
}
.embed-responsive .wp-video video{
	min-height: 100%;
	height: auto !important;
}
.embed-responsive .image_mobile {
	position: absolute;
	top: -999px;
	bottom: -999px;
	left: -999px;
	right: -999px;
	margin: auto;
	z-index: 1;
	height: auto;
	max-width: 1000%;
	min-height: 100%;
	min-width: 100%;
	/*min-width: 100vw;*/
	width: auto;	
}
.mejs-container {
	width: 100% !important;
	height: 100% !important;
}
.ac1 .ct:not(.no){
	background-color: rgba(0,0,0,0.35);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 11;
	width: 100%;
	height: 100%;
	color: #fff;
	padding-top: 55px;
}
.ac1 .ct .texte{
	padding-top: 75px;
	margin-bottom: 50px;
	font-size: 1.9rem;
	line-height: 30px;
}
.ac1 .ct .embed_video{
	width: 100%;
	max-width: 640px;
	margin-bottom: 50px;
}
.ac1 .ct .embed_video>div{
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
}
.ac1 .ct .embed_video>div video{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: block;
}
.ac1 aside .pull-right{
	padding-top: 40px;
}
.ac1 .ct.no{
	padding-top: 55px;
	padding-bottom: 105px;
	background-color: #242C59;
	color: #fff;
	background-image:url("data:image/svg+xml,%3Csvg width='1366' height='926' viewBox='0 0 1366 926' fill='none' xmlns='http://www.w3.org/2000/svg'%3E %3Cpath d='M1132.74 -231C297.174 -231 -286 345.527 -286 1169.58C-286 1993.64 295.607 2625 1066.9 2625C1269.13 2625 1421.2 2584.27 1549.75 2524.73V1832.28C1438.44 1924.71 1294.21 2001.47 1115.5 2001.47C684.39 2001.47 358.314 1659.94 358.314 1207.18C358.314 802.988 620.116 392.526 1120.2 392.526C1494.88 392.526 1871.12 591.491 1871.12 1036.42V2601.5H2517V1078.72C2517 282.86 1973.02 -231 1131.18 -231' fill='url(%23paint0_linear_81_12)'/%3E %3Cdefs%3E %3ClinearGradient id='paint0_linear_81_12' x1='175' y1='215' x2='1463.47' y2='431.195' gradientUnits='userSpaceOnUse'%3E %3Cstop stop-color='%23101532'/%3E %3Cstop offset='1' stop-color='%23242C59'/%3E %3C/linearGradient%3E %3C/defs%3E %3C/svg%3E");
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
}
.ac1 .ct.no h1{
	margin-top: 0;
	margin-bottom: 55px;
}
.ac1 .ct.no .texte{
	font-size: 1.6rem;
}
.ac2{
	background: url(img/fond_bruit.jpg) top right repeat #e7e7e7;
}
.ac2 .equipe{
	float: left;
	width: 68%;
}
.ac2 .equipe .item{
	float: left;
	/*width: 33%;*/
	width: 25%;
	position: relative;
	z-index: 0;
	overflow: hidden;
}
.ac2 .equipe .item .details{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	background-color: rgba(41,167,178,0.78);
	padding: 36px 18px;
	font-size: 1.3rem;
	opacity: 0;
	-moz-transition: all 250ms ease-in-out;
	-webkit-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}
.ac2 .equipe .item:hover .details{
	opacity: 1;
}
.ac2 .equipe .item img{
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.ac2 .equipe .item:hover img{
	-ms-transform:scale(1.5);
	-moz-transform:scale(1.5);
	-webkit-transform:scale(1.5);
	-o-transform:scale(1.5);
	transform:scale(1.5);
}
.ac2 .equipe .item .details .name{
	padding-bottom: 15px;
	min-width: 145px;
	display: inline-block;
	text-transform: uppercase;
	margin-bottom: 12px;
	border-bottom: solid 1px #98d7dd;
}
.ac2 .descriptif{
	position: absolute;
	top: 50%;
	left: 74%;
	/*text-align: center;*/
	-webkit-transform:translateY(-50%);
	-ms-transform:translateY(-50%);
	transform:translateY(-50%)
}
.ac2 .titre_page{
	margin: 20px 0;
	text-align: left;
}
.ac2 .texte{
	font-size: 1.4rem;
	margin-bottom: 35px;
	color: #6e6e71;
}
.ac3{
	text-align: center;
	padding: 50px 0;
	overflow: hidden;
}
.ac3>img{
	position: absolute;
	top: 0;
	left: -999px;
	right: -999px;
	bottom: 0;
	width: auto;
	height: 100%;
	margin: auto;
	z-index: -1;
	max-width: none;
}
.ac3 .titre_page{
	margin: 0;
	margin-top: 30px;
}
.ac3 .client_carousel{
	padding: 60px 0;
}
.owl-nav>div{
	width: 45px;
	height: 45px;
	text-indent: -9999px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	margin-top: -23px;
}
.owl-nav>div.owl-prev{
	left: -40px;
}
.owl-nav>div.owl-next{
	right: -40px;
}
.owl-nav>div:before{
	content: '';
	border-style: solid;
	border-width: 2px 2px 0 0;
	border-color: #a9a9a9;
	display: inline-block;
	height: 10px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right:0;
	margin: auto;
	vertical-align: middle;
	width: 10px;
	transform: rotate(-135deg);
	border-radius: 1px;
}
.owl-nav>div.owl-next:before{
	transform: rotate(45deg);
}
.item_clients{
	position: relative;
	padding-bottom: 100%;
}
.item_clients>*{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	border: solid 1px #ececec;
	margin: 0;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	padding: 30px;
}
.single_page .item_clients>a:hover, .single_page .item_clients>.a:hover{
	box-shadow: 6.5px 11.258px 38px 0px rgba(58, 43, 47, 0.24);
}
.item_clients>a:after{
	content: '+';
	display: block;
	border-radius: 50%;
	border: solid 2px #ececec;
	width: 34px;
	height: 34px;
	color: #e0e0e0;
	text-align: center;
	position: absolute;
	right: 20px;
	bottom: 20px;
	font-size: 2rem;
	line-height: 30px;
}
.owl-carousel .item_clients>a>div, .owl-carousel .item_clients>.a>div{
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	width: 100%;
	height: 100%;
	padding: 30px;
}
.owl-carousel .item_clients>a>div:hover, .owl-carousel .item_clients>.a>div:hover{
	box-shadow: 6.5px 11.258px 38px 0px rgba(58, 43, 47, 0.24);
}
.owl-carousel .item_clients>a, .owl-carousel .item_clients>.a{
	opacity: 0;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	-ms-transform:scale(0);
	-moz-transform:scale(0);
	-webkit-transform:scale(0);
	-o-transform:scale(0);
	transform:scale(0);
	padding: 0;
}
.delay_1{
	-webkit-transition-delay: 0.5s !important;
    transition-delay: 0.5s !important;
}
.delay_2{
	-webkit-transition-delay: 0.65s !important;
    transition-delay: 0.65s !important;
}
.delay_3{
	-webkit-transition-delay: 0.80s !important;
    transition-delay: 0.80s !important;
}
.delay_4{
	-webkit-transition-delay: 0.95s !important;
    transition-delay: 0.95s !important;
}
.owl-carousel .owl-stage-outer{
	padding: 50px;
	margin: 0 -50px;
}

.item_clients>*>div{
	position: relative;
	width: 100%;
	height: 100%;
}
.owl-carousel .item_clients>*>div>div{
	position: relative;
	width: 100%;
	height: 100%;
}
.item_clients>* img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: auto !important;
}
.active .item_clients>a, .active .item_clients>.a{
	-ms-transform:scale(1);
	-moz-transform:scale(1);
	-webkit-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
	opacity:1;
}
.ac4{
	background: url(img/fond_bruit.jpg) top right repeat #e7e7e7;
	text-align: center;
	padding: 50px 0;
}
.ac4 .titre_page{
	margin: 0;
	margin-top: 30px;
}
.ac4 .texte, .ac3 .texte{
	margin: 30px 0;
	color: #6e6e71;
	line-height: 23px;
}
.last_real{
	font-size: 0;
	margin-bottom: 50px;
}
.item_work{
	width: 290px;
	height: 485px;
	display: inline-block;
	margin: 10px;
	vertical-align: top;
}
.item_work>div{
	background-color: #fff;
	font-size: 1.3rem;
	color: #6e6e71;
	text-align: left;
	height: 100%;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	position: relative;
}
.item_work figure{
	height: 216px;
	overflow: hidden;
	margin-bottom: 28px;
	border: solid 1px #ececec;
	position: relative;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.item_work figure:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #2f94a5;
	z-index: 1;
	opacity: 0;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.item_work figure img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.item_work a{
	display: block;
	height: 345px;
	margin-bottom: 15px;
	border-bottom: solid 1px #ececec;
	text-decoration: none !important;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.item_work .ct{
	padding: 0 22px;
	color: #6e6e71;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.item_work .titre{
	text-transform: uppercase;
	color: #31303a;
	font-weight: 700;
	margin-bottom: 12px;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.item_work .label, .ct_over .tags .label{
	color: #6e6e71 !important;
	display: inline-block;
	border-radius: 25px;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 1rem;
	font-weight: normal;
	border: solid 1px #ececec;
	padding: 8px 18px;
	margin-left: 22px;
	margin-bottom: 8px;
	height: auto;
}
.ct_over .tags .label{
	background-color: #fff;
	border-color: #fff;
}
.item_work .lmore{
	padding: 8px 12px;
	margin-left: 5px;
	cursor: pointer;
}
.item_work .more{
	display: none;
	opacity: 0;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.item_work .close{
	display: none;
	text-transform: uppercase;
	color: #b8b8b8;
	font-size: 1rem;
	font-weight: 700;
	position: absolute;
	top: 27px;
	right: 27px;
	padding-right: 20px;
	opacity: 0;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.item_work .close:before, .item_work .close:after{
	content:'';
	position:absolute;
	top:3px;
	right:0;
	display:block;
	width:16px;
	height:100%;
	border-radius:5px;
	background-color:#515151;
	-webkit-transition:-webkit-transform .3s;
	transition:transform .3s
}
.item_work .close:before {
	width:16px;
	height:1px;
	background-color:#515151;
	-webkit-transform:translateY(0) rotate(45deg);
	-ms-transform:translateY(0) rotate(45deg);
	transform:translateY(0) rotate(45deg)
}
.item_work .close:after {
	background-color:#515151;
	height:1px;
	-webkit-transform:translateY(0) rotate(-45deg);
	-ms-transform:translateY(0) rotate(-45deg);
	transform:translateY(0) rotate(-45deg)
}
.item_work:hover>div{
	box-shadow: 6.5px 11.258px 38px 0px rgba(58, 43, 47, 0.24);
}
.item_work:hover img{
	-ms-transform:scale(1.1);
	-moz-transform:scale(1.1);
	-webkit-transform:scale(1.1);
	-o-transform:scale(1.1);
	transform:scale(1.1);
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.item_work:hover a .ct, .item_work:hover a .titre{
	color: #2f94a5 !important;
}
.item_work:hover figure:before{
	opacity: 0.65;
}
.item_work.active figure{
	height: 0;
}
.item_work.active a{
	height: auto;
}
.item_work.active a .ct{
	padding-top: 47px;
}
.item_work.active .more, .item_work.active .close{
	display: block;
	opacity: 1 !important;
}
.item_work.active .lmore{
	display: none;
}

.ac5{
	text-align: center;
	overflow: hidden;
}
.ac5>img{
	position: absolute;
	top: 0;
	left: -999px;
	right: -999px;
	z-index: 0;
	margin: auto;
	width: auto;
	height: 100%;
	max-width: none;
}
.ac5 .ct_over{
	position: relative;
	width: 100%;
	padding: 70px 0;
	top: 0;
	color: #fff;
}
.ac5 .titre_page{
	margin: 20px 0;
	text-align: center;
	color: #fff;
}
.ac5 .last_actus{
	margin: 50px 0;
	font-size: 0;
}
.item_actu{
	width: 429px;
	height: 239px;
	display: inline-block;
	margin: 10px;
	vertical-align: top;
}
.search_actu{
	margin: 40px 0;
}
.sticky .item_actu{
	width: 882px;
	height: 373px;
	display: block;
	margin: 50px auto;
	margin-top: 0;
	vertical-align: top;
}
.item_actu>div{
	background-color: #fff;
	font-size: 1.3rem;
	color: #31303a;
	text-align: left;
	height: 100%;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
	position: relative;
}
.item_actu a{
	text-decoration: none !important;
}
.item_actu figure{
	float: left;
	width: 154px;
	height: 239px;
	overflow: hidden;
	margin-right: 18px;
	position: relative;
}
.sticky .item_actu figure{
	width: 514px;
	height: 373px;
	margin-right: 28px;
}
.item_actu figure img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.item_actu .ct{
	padding-top: 65px;
}
.sticky .item_actu .ct{
	padding-top: 90px;
}
.item_actu .meta{
	font-size: 1rem;
	margin-bottom: 16px;
	color: #b0b0b0;
	font-weight: 600;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.sticky .item_actu .meta{
	font-size: 1.3rem;
}
.item_actu .titre{
	text-transform: uppercase;
	padding-right: 45px;
	font-weight: 700;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.sticky .item_actu .titre{
	font-size: 2.2rem;
	padding-right: 25px;
}
.cartouche{
	display: inline-block;
	background-color: #f6f6f6;
	text-transform: uppercase;
	text-decoration: none;
	color: #39b2c3;
	font-weight: 700;
	font-size: 1.4rem;
	padding: 13px 26px;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.cartouche.linked{
	padding: 0;
}
.cartouche.linked a{
	display: inline-block;
	text-decoration: none !important;
	padding: 13px 26px;
}
.item_actu .cartouche{
	position:absolute;
	top: 0;
	right: 0;
	font-size: 1.1rem;
}
.sticky .item_actu .cartouche{
	font-size: 1.2rem;
}
.item_actu .time{
	position: absolute;
	bottom: 20px;
	right: 180px;
	width: 100px;
	text-align: left;
	color: #d3c392;
	font-size: 1.2rem;
	padding-left: 20px;
	font-family: "Droid Sans", "Times New Roman", "serif";
	/*background: url(img/picto_time.png) left center no-repeat;*/
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
	.item_actu .time span:before{
		content: '';
		background: url(img/picto_time.png) center center no-repeat;
		display: inline-block;
		position: relative;
		top: 3px;
		width: 15px;
		height: 15px;
		margin-right: 8px;
		-moz-transition: all 400ms ease-out;
		-webkit-transition: all 400ms ease-out;
		-o-transition: all 400ms ease-out;
		transition: all 400ms ease-out;
	}
.sticky .item_actu .time{
	right: 260px;
}
.item_actu:hover .cartouche{
	color: #39b2c3;
	background-color: #fff;
}
.item_actu:hover>div{
	background-color: #39b2c3;
	color: #fff !important;
	box-shadow: 6.5px 11.258px 38px 0px rgba(58, 43, 47, 0.24);
}
.item_actu:hover .meta{
	color: #fff !important;
}
.item_actu:hover .time{
	color: #fff;
}
.item_actu:hover .time span:before{
	background: url(img/picto_time_open.png) left center no-repeat;
}
.ac6{
	padding-bottom: 35px;
}
.ac6 .titre_page{
	margin: 25px 0;
}

/**/
.bttf{
	width: 142px;
	border-bottom: solid 1px #5a5961;
	padding-bottom: 15px;
	color: #31303a;
	text-decoration: none !important;
	cursor: pointer;
	display: inline-block;
	text-align: left;
}
.tools_post, .s_post{
	margin-top: 20px;
	padding-left: 15px;
}
.tools_post.affix, .s_post.affix{
	top: 122px;
}
.bttf:before{
	content: '';
	margin-right: 10px;
		
	border-style: solid;
	border-width: 2px 2px 0 0;
	border-color: #31303a;
	display: inline-block;
	height: 10px;
	left: 2px;
	position: relative;
	vertical-align: middle;
	width: 10px;
	top: -1px;
	transform: rotate(-135deg);
	border-radius: 1px;
}
.white .bttf{
	border-bottom: solid 1px #fff;
	color: #fff;
}
.white .bttf:before{
	border-color: #fff;
}
article .content_page>*{
	margin-bottom: 25px;
}
article .content_page>*:last-child{
	margin-bottom: 0;
}
.article .content_page{
	font-size: 1.4rem;
	color: #6e6e71;
}
.article .content_page strong{
	color: #31303a;
}
.article .content_page h1{
	color: #31303a;
	font-size: 1.9rem;
}
.article .content_page h2{
	color: #39b2c3;
	font-size: 1.9rem;
}
.article .content_page h3{
	color: #377c85;
	font-size: 1.9rem;
}
.article .content_page h4{
	color: #d3c392;
	font-size: 1.8rem;
}
article .chapo{
	font-size: 2.2rem;
	font-weight: 600;
	color: #31303a;
}
.wp-caption{
	max-width:100%;
}
.wp-caption img{
	min-width: 100%;
	margin-bottom: 10px;
}
.wp-caption-text{
	font-size: 1.4rem;
	font-style: italic;
	display: block;
	padding: 8px 0;
	border-bottom:solid 1px #cfcfcf;
}
.cms_encart{
	background: url(img/bg_encart.jpg) center center no-repeat;
	background-size: cover;
	text-align: center;
	padding: 30px 25px;
	color: #fff;
}
.single_actu .cms_encart{
	margin-left: -35px;
	margin-right: -35px;
}
.cms_encart blockquote{
	border: none !important;
	font-size: 2.2rem;
	font-weight: 700;
	font-style: italic;
}
.cms_encart blockquote:after{
	content: '"';
	display: block;
	margin-top: 15px;
	font-family: Verdana;
	font-size: 7rem;
	line-height: 1;
	font-weight: normal;
	font-style: italic;
	height: 33px;
	overflow: hidden;
}
.article .content_page .cms_encart strong{
	color: #fff;
	font-size: 1.6rem;
}
.cms_encart>*:last-child{
	margin-bottom: 0;
}
.single_page{
	position: relative;
	padding-top: 158px;
	background-color: inherit;
}
.single_page>.entete{
	position: fixed;
	top: 0;
	/*left: 0;
	right: 0;*/
	margin: auto;
	background-color: inherit;
	z-index: 0;
}
@media (max-width: 768px) {
	.single_page{
		padding-top: 99px;
	}
}
.single_page.article>.entete{
	/*position: relative;*/
}
.single_page.article>.entete>img{
	position: fixed;
}
.single_page>.entete span.js{
	background-color: inherit;
	display: block;
	position: absolute;
	top: 100%;
	width: 100%;
	height: 150%;
}
.article .entete .ct_over{
	color: #fff;
	width: 100%;
	text-align: center;
	/*position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform:translateX(0) translateY(-50%);
	-ms-transform:translateX(0) translateY(-50%);
	transform:translateX(0) translateY(-50%);*/
}
.article .entete .ct_over p{
	font-size: 1.9rem;
	line-height: 33px;
}
.article .entete .ct_over .tags{
	margin-top: 40px;
}
.titre_work{
	text-transform: uppercase;
	font-weight: 700;
	font-size: 3.8rem;
	margin-bottom: 25px;
}
.single_page .content_page, #listing_actus.content_page, #listing_work.content_page{
	padding-bottom: 50px;
}
.page_equipe .titre_page{
	margin-top: 110px;
	margin-bottom: 90px;
}
.item_equipe{
	/*width: 33.33333%;*/
	width: 315px;
	height: 552px;
	padding: 10px 9px;
	/*float: left;*/
	display: inline-block;
	vertical-align: top;
}
.item_equipe>div{
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	border: solid 1px #ececec;
}
.item_equipe>div>img{
	width: 100%;
}
.item_equipe .identity{
	border-bottom: solid 1px #ececec;
	padding-top: 30px;
	font-size: 1.3rem;
	height: 105px;
}
.item_equipe .identity .name,
.ct_equipe .identity .name{
	text-transform: uppercase;
	font-weight: 700;
}
.more_infos ul{
	margin: 20px 0;
	height: 27px;
}
.more_infos ul li{
	display: inline-block;
	vertical-align: middle;
	list-style: none;
	width: 27px;
	height: 27px;
	background-color: #313438;
	border-radius: 50%;
	margin: 0 2px;
}
.more_infos ul li a{
	display: block;
	width: 100%;
	height: 100%;
	background-size: cover;
}
.single_equipe{
	/*background-color: #fff;*/
	background:-moz-linear-gradient(left, #fff, #fff) no-repeat 0px 250px;
	background:-webkit-linear-gradient(left, #fff, #fff) no-repeat 0px 250px;
	background:linear-gradient(to right, #fff, #fff) no-repeat 0px 250px;
	padding-top: 150px;
	pointer-events: none;
	min-height: 100%;
	overflow: auto;
}
.single_equipe .nopadding{
	pointer-events: all;
}
.single_equipe .visuel img{
	max-width: 290px;
	width: 100%;
}
.single_equipe .visuel{
	max-width: 377px;
	margin: auto;
	margin-bottom: 35px;
	border-bottom: solid 1px #ececec;
}
.single_equipe .texte{
	font-size: 1.3rem;
	text-align: justify;
	padding-bottom: 40px;
}
.single_equipe .bttf{
	margin-top: 230px;
}
.singlay .tools_post.affix .bttf{
	margin-top: 0;
}
.page_clients .hgroup{
	margin-top: 110px;
	margin-bottom: 175px;
}
.page_clients .hgroup div{
	text-align: center;
	max-width: 90%;
	margin: auto;
	margin-top: 15px;
	font-size: 1.8rem;
}
.page_clients .titre_page{
	margin-top: 0;
	margin-bottom: 0;
}
.page_clients .content_page{
	font-size: 0;
	text-align: center;
}
.page_clients .item_clients,
.single_client .item_clients{
	padding-bottom: 0;
	margin: 10px;
	display: inline-block;
	width: 250px;
	height: 290px;
}
.to_fix>div{
	left: 0;
	right: 0;
}
.single_client .entete{
	position: relative;
	height: 300px;
	overflow: hidden;
}
.single_client .entete img{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.single_client .item_clients{
	margin-top: -230px;
	margin-bottom: 40px;
}
.single_client .content_page{
	font-size: 2.5rem;
}
section.real{
	background: url(img/fond_bruit.jpg) top right repeat #e7e7e7;
	padding-bottom: 50px;
}
section.real .titre_page{
	margin-top: 70px;
	margin-bottom: 40px;
}
.custom_search input{
	border: none;
	background: none;
}
.custom_search .field{
	position: relative;
	background-color: #fff;
	border-radius: 5px;
	border:solid 1px #e2dfdf;
	width: 100%;
	max-width: 360px;
	margin: auto;
	height: 40px;
	overflow: hidden;
}
.custom_search .submit{
	position: absolute;
	top: 0;
	right:0;
	z-index: 1;
	display: block;
	width: 40px;
	height: 40px;
	background: url(img/picto_search.png) center center no-repeat #fff;
}
.custom_search .txt{
	display: block;
	width: 100%;
	font-size: 1.3rem;
	padding: 10px 15px;
	padding-right: 60px;
}
.page_work .titre_page{
	margin-bottom: 50px;
}
.search_real{
	margin-bottom: 40px;
}
.search_real .filter_cat{
	padding-top: 18px;
}
.filter_cat .listing{
	display: none;
	padding-top: 25px;
}
.filter_cat label{
	display: inline-block;
	margin: 6px 4px;
}
.filter_cat .show_listing{
	display: inline-block;
	background-color: #31303a;
	border-radius: 25px;
	line-height: 1;
	text-transform: uppercase;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 8px 18px;
	color: #fff;
	cursor: pointer;
}
.filter_cat .show_listing:after{
	border-style: solid;
	border-width: 2px 2px 0 0;
	border-color: #39b2c3;
	content: '';
	display: inline-block;
	height: 10px;
	left: 0;
	position: relative;
	vertical-align: top;
	width: 10px;
	top: -1px;
	transform: rotate(135deg);
	margin-left: 9px;
	border-radius: 1px;
}
.filter_cat .show_listing.open{
	background: none;
	color: #31303a;
	border: solid 1px #31303a;
}
.filter_cat .show_listing.open:after{
	border-color: #31303a;
	transform: rotate(-45deg);
	top: 3px;
}
.filter_cat span{
	display: inline-block;
	background-color: #31303a;
	border-radius: 25px;
	line-height: 1;
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: 600;
	padding: 8px 18px;
	color: #fff;
	cursor: pointer;
}
.filter_cat [type="checkbox"]:not(:checked),
.filter_cat [type="checkbox"]:checked {
	position: absolute;
	left: -9999px;
}
.filter_cat [type="checkbox"]:checked + span {
	background-color: #39b2c3;
	color: #fff;
}
.page_actus .mea{
	z-index: 0;
	width: 100%;
	left: 0;
	right: 0;
}
.page_actus .mea .mask{
	text-align: center;
}
.page_actus .titre_page{
	margin-top: 70px;
	margin-bottom: 50px;
}
.page_actus .content_page{
	background-color: #150d0c;
}
.page_actus .filter_cat{
	margin-bottom: 50px;
}
.page_actus .filter_cat .show_listing, .page_actus .filter_cat span{
	background-color: #fff;
	color: #31303a;
}
#listing_actus{
	position: relative;
}
.mask{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#listing_actus .mask.affix, .single_actu .content>img.affix{
	position: fixed;
	top: 0;
	left: auto;
	right: auto;
}
#listing_actus .to_fast{
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
}
#listing_actus>img{
	position: absolute;
	top: 0;
}
.load_more{
	margin: 30px 0;
	text-align: center;
}
.load_more span{
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	width: 105px;
	display: inline-block;
	color: #898989;
	cursor: pointer;
}
.load_more span:before{
	content: '+';
	display: block;
	border-radius: 50%;
	border: solid 2px #222427;
	width: 34px;
	height: 34px;
	color: #222427;
	text-align: center;
	font-size: 2rem;
	line-height: 30px;
	margin: auto;
	margin-bottom: 10px;
}
#listing_actus .load_more span{
	color: #fff;
}
#listing_actus .load_more span:before{
	color: #fff;
	border-color: #fff;
}
.single_actu .entete_post{
	background-color: #fff;
}
.single_actu .entete_post figure{
	width: 274px;
	margin-right: 30px;
}
.single_actu .entete_post .details{
	padding-top: 20px;
}
.single_actu .entete_post .cartouche{
	margin-bottom: 35px;
}
.single_actu .entete_post .meta{
	margin-bottom: 30px;
	font-size: 1.7rem;
	font-weight: 500;
	color: #b0b0b0;
}
.single_actu .titre_post{
	text-transform: uppercase;
	font-size: 3rem;
	font-weight: 700;
}
.single_actu section.content{
	width: 100%;
	overflow: hidden;
}
.single_actu section.content>img{
	position: absolute;
	z-index: -1;
}
.single_actu section.content .content_page{
	background-color: #f6f6f6;
	padding: 50px 35px;
}
.single_work.single_page > .entete{
	height: 470px;
}
.single_work.single_page .entete_over{
	color: #fff;
	position: relative;
	width: 100%;
	height: 310px;
	font-size: 1.9rem;
	text-align: center;
}
.single_work.single_page .entete_over>div{
	position: absolute;
	top: 50%;
	width: 100%;
	-webkit-transform:translateX(0) translateY(-50%);
	-ms-transform:translateX(0) translateY(-50%);
	transform:translateX(0) translateY(-50%);
}
.single_work .tags{
	margin-top: 40px;
}
.single_work .tags .label{
	color: #31303a;
	display: inline-block;
	border-radius: 25px;
	line-height: 1;
	text-transform: uppercase;
	font-size: 1rem;
	font-weight: normal;
	border: solid 1px #fff;
	background-color: #fff;
	padding: 8px 18px;
	margin-left: 22px;
	margin-bottom: 8px;
}
.content_work{
	background-color: #fff;
	padding-top: 60px;
}
.addtoany_shortcode{
	margin-top: 15px;
	white-space: nowrap;
}
.s_post .a2a_kit a{
	display: block;
}
.a2a_kit a span{
	border-radius: 50% !important;
}
.a2a_kit a span svg{
	-webkit-transform:scale(0.7);
	-ms-transform:scale(0.7);
	transform:scale(0.7);
}
.single_actu .a2a_kit a span{
	background-color: #fff !important;
}
.single_actu .a2a_kit a span svg path{
	fill:#31303a;
}
.cta_inout{
	position: relative;
	z-index: 1;
	background: url(img/bg_cta.jpg) center center no-repeat;
	background-size: cover;
	text-align: center;
	padding: 70px 0;
}
.time_read{
	position: fixed;
	width: 100%;
	top: 158px;
	left: 0;
	z-index: 10;
	height: 9px;
	background-color: #fff;
}
@media (max-width: 768px) {
	.time_read{
		top: 99px;
	}
}
.time_read>div{
	width: 0;
	height: 100%;
	background-color: #d3c392;
	-moz-transition: all 400ms ease-out;
	-webkit-transition: all 400ms ease-out;
	-o-transition: all 400ms ease-out;
	transition: all 400ms ease-out;
}
.search_result .entete{
	margin-top: 158px;
	/*padding-top: 100px;*/
	position: relative;
	background: url(img/entete_search.jpg) center center no-repeat;
	height: 306px;
	background-size: auto 100%;
	margin-bottom: 20px;
}
@media (max-width: 768px) {
	.search_result .entete{
		margin-top: 99px;
	}
}
.search_result .entete strong{
	font-weight: 800;
	color: #39b2c3;
}
.search_result .entete em{
	font-weight: 300;
}
.search_result .entete .titre_only{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	-webkit-transform:translateX(0) translateY(-50%);
	-ms-transform:translateX(0) translateY(-50%);
	transform:translateX(0) translateY(-50%);
	margin: 0 !important;
}
.item_search{
	border: solid 1px #d1d3d4;
	background-color: #fff;
	margin: 5px 0 !important;
	padding: 20px;
	padding-left: 120px;
	font-size: 1.3rem;
	color: #6e6e71;
	position: relative;
}
.item_search .get_date{
	position: absolute;
	top: 20px;
	left: 20px;
	font-size: 1.3rem;
	color: #d1d3d4;
}
.item_search>a{
	text-decoration: none !important;
}
.item_search>a>strong{
	display: block;
	text-transform: uppercase;
	color: #31303a;
	line-height: 1;
}
.item_search>a>p{
	display: block;
	margin-left: 20px;
	margin-top: 5px;
}
.item_search .meta{
	display: block;
	color: #39b2c3;
	font-weight: 700;
	font-size: 1.1rem;
	margin-bottom: 8px;
}
nav.pagination{
	display: block;
	width: 100%;
	text-align: center;
}
.bottom{
	padding: 25px 0 !important;
}
/**/
.page_qui .titre_page{
	color: #fff;
	margin: 100px auto;
}
.page_qui .entete{
	top: 0;
}
.page_qui section{
	position: relative;
}
.page_qui section .titre{
	font-size: 3.2rem;
	font-weight: 800;
	color: #31303a;
}
.page_qui section .titre strong{
	color: #167e85;
}
.page_qui section .titre span{
	color: #2ba4ba;
	font-size: 5rem;
}
.page_qui .qui1{
	background: url(img/qui/bg_credo.jpg) center center no-repeat;
	background-size: cover;
	padding: 90px 0;
	font-size: 1.8rem;
	color: #737376;
}
.page_qui .qui1 .titre{
	margin-bottom: 20px;
}
.page_qui .qui1 p>strong{
	font-weight: 700;
	color: #31303a;
	font-size: 2.4rem;
	line-height: 1.1;
}
.page_qui .separation{
	margin-top: 20px;
}
.page_qui .separation:before{
	display: block;
	content: '';
	width: 90px;
	height: 3px;
	border-radius: 3px;
	background-color: #167e85;
	margin: auto;
	margin-bottom: 20px;
}
.page_qui .qui2{
	background: rgb(55,170,187); /* Old browsers */
	background: -moz-linear-gradient(left, rgba(55,170,187,1) 0%, rgba(20,122,129,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(55,170,187,1) 0%,rgba(20,122,129,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(55,170,187,1) 0%,rgba(20,122,129,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#37aabb', endColorstr='#147a81',GradientType=1 ); /* IE6-9 */
	padding-top: 70px;
	padding-bottom: 90px;
}
.page_qui .qui2 .titre{
	color: #fff;
	margin-bottom: 55px;
	text-align: center;
	line-height: 28px;
}
.panel-default > .panel-heading{
	border: none;
	background: none;
	padding: 0;
}
.panel-default > .panel-heading a{
	text-align: center;
	font-weight: 700;
	text-decoration: none;
	color: #515151;
	text-transform: uppercase;
	font-size: 2.4rem;
	background-color: #f6f6f6;
	height: 96px;
	position: relative;
	display: block;
}
.panel-default > .panel-heading a:after{
	content: '-';
	border: solid 2px #cdcdcd;
	color: #cdcdcd;
	display: block;
	border-radius: 50%;
	width: 34px;
	height: 34px;
	text-align: center;
	position: absolute;
	right: 35px;
	top: 0;
	bottom: 0;
	margin: auto;
	font-size: 2rem;
	line-height: 30px;
}
.panel-default > .panel-heading a.collapsed:after{
	content: '+';
	border: solid 2px #222427;
	color: #222427;
}
.panel-default > .panel-heading a font{
	display: block;
	width: 100%;
	position: absolute;
	top: 50%;
	-webkit-transform:translateX(0) translateY(-50%);
	-ms-transform:translateX(0) translateY(-50%);
	transform:translateX(0) translateY(-50%);
}
.panel-default > .panel-heading a em{
	font-style: normal;
	color: #2695a0;
}
.panel-default > .panel-heading a.collapsed em span{
	display: none;
}
.panel-default > .panel-heading a img{
	display: block;
	margin: auto;
}
.panel-default .panel-body{
	border: none !important;
	background-color: #f6f6f6;
	font-size: 1.8rem;
	color: #6e6e71;
}
.panel-default .panel-body p{
	margin: 15px 130px;
	text-align: center;
}
.panel-default .panel-body p>strong{
	text-transform: uppercase;
	color: #515151;
}

.page_qui .qui3{
	padding: 90px;
	background: url(img/qui/bg_cible.jpg) center center no-repeat;
	background-size: cover;
}
.page_qui .qui3 .titre{
	color: #fff;
	text-align: center;
	margin-bottom: 70px;
}
.page_qui .qui3 .pave{
	background-color: #f6f6f6;
	border-radius: 5px;
	overflow: hidden;
	max-width: 720px;
	margin: auto;
}
.page_qui .qui3 .pave>*{
	float: left;
	width: 50%;
}
.page_qui .qui3 .pave .logo{
	text-align: center;
	background-color: #fff;
	position: relative;
	padding: 70px 0;
}
.page_qui .qui3 .pave .logo:after{
	content: '';
	position: absolute;
	top: 50%;
	right: -10px;
	width: 30px;
	height: 30px;
	margin-top: -20px;
	background-color: #fff;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.page_qui .qui3 .pave .listing{
	padding: 35px 60px;
	font-size: 1.8rem;
	font-weight: 600;
	padding-right: 0;
}
.page_qui .qui3 .pave .listing li{
	list-style: none;
	display: block;
	margin: 7px 0;
}
.page_qui .qui3 .pave .listing li:before{
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	border: solid 3px #1f838c;
	vertical-align: middle;
	margin-right: 20px;
	border-radius: 50%;
}
.page_qui .qui4{
	background: url(img/qui/bg_credo.jpg) center center no-repeat;
	background-size: cover;
	font-size: 1.8rem;
	color: #299ba8;
	padding: 60px 20px;
}
.page_qui .qui4 .titre{
	margin-bottom: 35px;
	text-align: center;
}
.page_qui .qui4 aside{
	display: none;
}
.page_qui .qui5{
	background: rgb(55,170,187); /* Old browsers */
	background: -moz-linear-gradient(left, rgba(55,170,187,1) 0%, rgba(20,122,129,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(55,170,187,1) 0%,rgba(20,122,129,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(55,170,187,1) 0%,rgba(20,122,129,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#37aabb', endColorstr='#147a81',GradientType=1 ); /* IE6-9 */
	padding-top: 70px;
	padding-bottom: 90px;
	color: #fff;
	font-size: 1.8rem;
}
.page_qui .qui5 p>strong{
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.1;
}
/**/
.p404{
	margin-top: 158px;
	background: url(img/fd.jpg) right center no-repeat;
	background-size: cover;
}
@media (max-width: 768px) {
	.p404{
		margin-top: 99px;
	}
}
.p404 .ct{
	padding: 110px 0;
	font-size: 3.8rem;
	font-weight: 800;
}
.p404 .ct p{
	line-height: 1.2;
	margin-bottom: 45px;
}
.p404 .ct p span{
	color: #39b2c3;
}
/**/
@media (max-width: 1365px) {
	.single_page.article > .entete > img{
		height: 100%;
		max-height: 470px;
		width: auto;
		max-width: none;
		left: -999px;
		right: -999px;
		margin: auto;
	}
	.single_page.page_clients > .entete{
		width: 100%;
		min-height: 400px;
	}
	.single_page.page_equipe > .entete{
		width: 100%;
		min-height: 560px;
	}
	.single_page.page_clients > .entete img, .single_client .entete img, .single_page.page_equipe > .entete img{
		width: auto;
		max-width: none;
		height: 100%;
		position: absolute;
		margin: auto;
		top: 0;
		left: -999px;
		right: -999px;
	}
	.page_clients>.container{
		width: 100%;
	}
}
@media (max-width: 1024px) {
	.nav{
		background: #fff;
	}
	/**/
	.page_actus .mea>.mask>img{
		width: auto;
		max-width: none;
		height: 100%;
	}
	/*.owl-nav > div.owl-prev{
		left: 0;
	}
	.owl-nav > div.owl-next{
		right: 0;
	}*/
	.ac3 .client_carousel{
		padding: 60px;
	}
}
@media (max-width: 992px) {
	.sticky .item_actu{
		max-width: 100%;
	}
	.sticky .item_actu figure{
		max-width: 50%;
	}
	.sticky .item_actu figure img{
		top:-999px;
		right:-999px;
		left:-999px;
		bottom:-999px;
		max-width: none;
		width: auto;
		height: 100%;
	}
	.sticky .item_actu .time, .item_actu .time{
		right: auto;
		position: relative;
		bottom: auto;
		margin-top: 20px;
		width: auto;
		/*left: 50%;
		margin-left: 28px;*/
	}
	.content_work{
		padding-top: 40px;
	}
	.single_work .tools_post{
		position: relative !important;
		top: 0 !important;
		padding-bottom: 40px;
		text-align: left;
	}
	.single_client .tools_post{
		margin-top: 0;
		margin-bottom: 20px;
	}
	#simili_body.home header{
		top: 0;
		opacity: 1;
	}
	.ac1{
		padding-top: 158px;
	}
@media (max-width: 768px) {
	.ac1{
		padding-top: 99px;
	}
}
	.ac1 .ct{
		position: relative;
		height: auto;
		padding: 100px 50px;
	}
	.ac1 .ct aside{
		display: none;
	}
	#simili_body.home section .embed-responsive video{
		display: none;
	}
	.ac1 .embed-responsive{
		position: absolute;
		z-index: -1;
		width: 100%;
		height: 100%;
		padding-bottom: 0;
	}
	.ac1 .ct .texte{
		padding-top: 0;
	}
	.page_qui .qui3 .pave .listing{
		padding-left: 30px;
	}
}
@media (max-width: 800px) {
	
	#content_search_form form .row > div{
		padding-top:25%;
	}
	#search_field input{
		font-size:4rem;
	}
	.single_actu .titre_post{
		font-size: 2.5rem;
	}
}
@media (max-width: 768px) {
	header{
		padding: 20px 15px;
	}
	header .custom-logo-link img{
		width: auto;
		max-height: 60px;
	}
	.nav .gauche{
		padding: 0 50px;
		background-size: auto;
	}
	.nav nav{
		position: relative;
		top: 100px;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	footer{
		text-align: center;
		padding-bottom: 25px;
	}
	footer .bas3 .textwidget{
		display: none;
	}
	.titre_page, .titre_only{
		margin: 80px auto;
	}
	.single_actu .tools_post{
		background-color: #f6f6f6;
		margin-top: 0;
		padding-top: 20px;
	}
	.single_actu .tools_post .bttf{
		border-bottom: solid 1px #5a5961;
		color: #31303a;
	}
	.single_actu .tools_post .bttf:before{
		border-color: #31303a;
	}
	.single_actu section.content .content_page{
		margin: 0 15px;
	}
	.single_equipe .ct_equipe{
		float: none;
		margin: auto !important;
	}
	.single_equipe .tools_post .bttf{
		margin-top: 130px;
		margin-bottom: 30px;
	}
	.ac3 .client_carousel{
		padding: 60px;
	}
	.ac2 .equipe{
		display: none;
	}
	.ac2 .descriptif{
		position: relative;
		top: 0;
		left: 0;
		-webkit-transform:none;
		-ms-transform:none;
		transform:none;
		text-align: center;
		padding: 100px 0;
	}
	.ac2 .titre_page{
		text-align: center;
	}
	/**/
	.page_qui .qui3 .pave > *{
		float: none;
		width: 100%;
	}
	.page_qui .qui3 .pave .logo::after{
		top: auto;
		bottom: -10px;
		left: 0;
		right: 0;
		margin: auto;
	}
	.page_qui .qui4 figure{
		display: none;
	}
	.page_qui .qui4 aside{
		display: block;
	}
	.page_qui .qui4 aside li{
		list-style: none;
		text-align: center;
		position: relative;
		width: 100%;
		height: 125px;
		border-radius: 60px;
		font-size: 2.5rem;
		font-weight: 700;
		background-color: #fff;
		margin: 15px 0;
	}
	.page_qui .qui4 aside li span{
		display: block;
		width: 100%;
		position: absolute;
		top: 50%;
		padding: 0 10px;
		-webkit-transform:translateX(0) translateY(-50%);
		-ms-transform:translateX(0) translateY(-50%);
		transform:translateX(0) translateY(-50%);
	}
}
@media (max-width: 720px) {
	.item_actu{
		width: 90%;
		max-width: 580px;
		height: 375px;
		padding-top: 50px;
	}
	.item_actu figure{
		max-width: 210px;
		width: 40%;
		height: 100%;
	}
	.item_actu figure img{
		top:-999px;
		right:-999px;
		left:-999px;
		bottom:-999px;
		max-width: none;
		width: auto;
		height: 100%;
	}
	.item_actu .cartouche{
		top: -50px;
		width: 100%;
		height: 50px;
		text-align: center;
		left: 0;
		right: 0;
		font-size: 1.6rem;
		padding: 15px;
	}
	.sticky .item_actu .cartouche{
		font-size: 1.6rem;
	}
	/*.item_actu .time, .item_actu:hover .time{
		bottom: -50px;
		width: 100%;
		height: 50px;
		text-align: center;
		left: 0;
		right: 0;
		background: #d3c392;
		color: #fff;
		line-height: 45px;
	}
	.sticky .item_actu .time{
		left: 0;
		margin-left: 0;
	}
	.item_actu .time span:before{
		content: '';
		background: url(img/picto_time_open.png) center center no-repeat;
		display: inline-block;
		position: relative;
		top: 3px;
		width: 15px;
		height: 15px;
		margin-right: 8px;
	}*/
	.item_actu .meta{
		font-size: 1.4rem;
	}
	.item_actu .titre{
		font-size: 1.7rem;
	}
	.sticky .item_actu{
		height: 355px;
	}
	.sticky .item_actu figure{
		width: 60%;
		max-width: 360px;
		height: 100%;
	}
	.sticky .item_actu .ct{
		padding-top: 25px;
	}
	.sticky .item_actu .titre{
		font-size: 1.7rem;
	}
	.single_actu .entete_post figure{
		max-width: 38%;
	}
	.single_actu .titre_post{
		font-size: 1.8rem;
	}
	.single_actu section.content > img{
		width: auto;
		max-width: none;
		height: 100%;
	}
}
@media (max-width: 600px) {
	.item_actu{
		height: 320px;
	}
	.item_actu .ct{
		padding-top: 40px;
	}
	.item_actu .titre{
		font-size: 1.5rem;
	}
	.item_actu .cartouche, .sticky .item_actu .cartouche{
		font-size: 1.4rem;
	}
	.sticky .item_actu{
		height: 320px;
	}
	.sticky .item_actu figure{
		width: 50%;
	}
	.item_actu figure img{
		max-width: 100%;
		min-width: 100%;
		height: auto;
		min-height: 100%;
	}
	.ac2 .descriptif{
		padding: 70px 0;
	}
	/**/
	.page_qui .qui3{
		padding: 90px 30px;
	}
	.page_qui .qui3 .pave .logo{
		padding: 70px 45px;
	}
	.page_qui .qui4 aside li{
		height: 100px;
		line-height: 1.2;
		font-size: 2rem;
	}
}
@media (max-width: 500px) {
	.single_actu .entete_post figure{
		display: none;
	}
	.single_actu .titre_post{
		margin-bottom: 30px;
	}
	.ac1 .ct{
		padding: 80px 30px;
	}
	.ac1 .ct .texte{
		font-size: 1.5rem;
	}
	/**/
	.panel-default > .panel-heading a{
		text-align: left;
		padding-left: 10px;
		font-size: 2rem;
	}
	.panel-default > .panel-heading a img{
		margin: 0;
	}
	.panel-default > .panel-heading a em span{
		display: none !important;
	}
	.panel-default > .panel-heading a::after{
		right: 10px;
	}
	.panel-default .panel-body p{
		margin: 15px;
		text-align: left;
	}
}
@media (max-width: 480px) {
	article .chapo{
		font-size: 1.8rem;
	}
	.cms_encart blockquote{
		font-size: 1.6rem;
	}
	.titre_page, .titre_only{
		margin: 50px 0 !important;
		font-size: 3rem;
	}
	#content_search_form form .row > div{
		padding-top:35%;
		width:100%;
		margin-left:0;
	}
	#search_field input{
		font-size:2rem;
	}
	.item_actu{
		width: 100%;
		margin: 10px 0;
		height: auto;
		padding-top: 25px;
	}
	.sticky .item_actu{
		height: auto;
	}
	.item_actu figure{
		display: none;
	}
	.item_actu .cartouche{
		font-size: 1.1rem !important;
		height: 25px;
		padding: 0;
		line-height: 25px;
		top: -25px;
	}
	.item_actu .meta{
		font-size: 1rem;
	}
	.item_actu .titre{
		font-size: 1.4rem;
		padding-right: 0;
	}
	.item_actu .ct{
		padding: 15px 10px;
	}
	.sticky .item_actu .titre{
		font-size: 1.4rem;
	}
	.sticky .item_actu .time, .item_actu .time{
		padding-left: 0;
	}
	.search_result .entete{
		height: 150px;
	}
	.search_result .entete .titre_only{
		font-size: 2.2rem;
	}
	.item_search{
		padding-left: 20px;
	}
	.item_search .get_date{
		position: relative;
		top: 0;
		left: 0;
		margin-bottom: 8px;
	}
	.item_search .meta{
		font-size: 1.3rem;
	}
	.item_work{
		margin: 10px 0;
	}
	.ac5 .titre_page{
		margin: 20px 0 !important;
	}
	/*.owl-nav > div.owl-prev{
		left: 0;
	}
	.owl-nav > div.owl-next{
		right: 0;
	}*/
	.ac3 .client_carousel{
		padding: 0 30px;
	}
	.ac3 .titre_page{
		margin-bottom: 0 !important;
	}
	.ac1 .ct{
		padding: 75px 15px;
	}
	.ac1 .ct .texte{
		line-height: normal;
	}
}
@media (max-width: 380px) {
	.item_work{
		margin: 10px -15px;
	}
	.single_work.single_page .entete_over{
		font-size: 1.7rem;
	}
	.titre_work{
		font-size: 3rem;
	}
	.item_equipe{
		max-width: 290px;
		width: 90%;
		padding: 0;
	}
}
@media print {
}