/* ------
SOMMAIRE
---------*/
/*
@AUTHOR : Justine

00 - COULEURS
01 - sprite-deuxieme-adresse
03 - TITRES
04 - LIENS
05 - BOUTONS
06 - CONTENU WYSIWYG
07 - PADDING ET LARGEURS
08 - MENU SCROLL UP
09 - POPUP ACTUALITE
10 - MENU HAMBURGERS
11 - ICONES SOCIALES
12 - CLASS GENERIQUES
13 - PAGE TEXTE EN BLOC
14 - SLICK
15 - ANIMATION SCROLL
16 - MODULE ET PAGE RECHERCHE
17 - BOXES
*/


/* ----------
00 - COULEURS
-------------*/
:root{
	--color00: #fff;    /*Blanc*/
	--color01: #000;    /*Noir*/
	--color02: #003A74; /*Bleu*/
	--color03: #FFCC00; /*Jaune*/
	--color04: #1F3E3A; /*Vert*/
	--color05: #EAEAEA; /*Gris clair*/
	--color-primary: #092040; /*Bleu foncé*/
	--color-secondary: #FEF8F6; /*rose pale*/
	--color-tertiary:#FCE4DF; /*saumon*/
}
/*
Utilisation :
background: var(--color1);
border-bottom: 3px solid var(--color1);
color: var(--color1);
*/
/* color00 : Blanc */
.color00 *,
.color00{
	color: #fff;
	color: var(--color00) !important;
}
.bg-color00{
	background-color: #fff;
	background-color: var(--color00) !important;
}

/* color01 : Noir */
.color01 *,
.color01{ 	
	color: #000;
	color: var(--color01) !important;
}
.bg-color01{
	background-color: #000;
	background-color: var(--color01) !important;
}
/* color02 : Bleu*/
.color02, .color02 *{
	color: #0069A5;
	color: var(--color02) !important;
}
.bg-color02{
	background-color: #0069A5;
	background-color: var(--color02) !important;
}
/* color03 : Jaune */
.color03, .color03 *{
	color: #FFCC00;
	color: var(--color03) !important;
}
.bg-color03{
	background-color: #FFCC00;
	background-color: var(--color03) !important;
}
/* color04 : Gris */
.color04, .color04 *{
	color: #1F3E3A;
	color: var(--color04) !important;
}
.bg-color04{
	background-color: #1F3E3A;
	background-color: var(--color04) !important;
}
/* color05 : Gris */
.color05, .color05 *{
	color: #EAEAEA;
	color: var(--color05) !important;
}
.bg-color05{
	background-color: #EAEAEA;
	background-color: var(--color05) !important;
}
/*color primary : bleu foncé*/
.color-primary {
	color: #092040;
	color: var(--color-primary)!important;
}
/*color secondary : rose pale*/
.color-secondary {
	color: #FEF8F6;
	color: var(--color-secondary)!important;
}
.bg-secondary {
	background-color: #FEF8F6;
	background-color: var(--color-secondary)!important;
}
/*color secondary : rose saumon*/
.color-tertiary {
	color: #FCE4DF;
	color: var(--color-tertiary)!important;
}
.bg-tertiary {
	background-color: #FCE4DF;
	background-color: var(--color-tertiary)!important;
}




/* ----------
01 - sprite-deuxieme-adresse
-------------*/
.ico,
[class*="ico-"]{
	background-image: url('../img/charte/sprite-deuxieme-adresse.svg');
	background-repeat: no-repeat;
	background-size: 400px auto;
    width: 40px;
	min-width: 40px;
	height: 40px;
	display: block;
}
.ico-proprietaire{
	background-position: -8px -195px;
    width: 50px;
	min-width: 50px;
    height: 50px;
}
.ico-responsable{
	background-position: -75px -190px;
    width: 50px;
    height: 50px;
}
.ico-securise{
	background-position: -140px -190px;
    width: 50px;
    height: 50px;
}
.headertopBar ul .ico:hover{
	-webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
	    transform: translateY(-2px);
}
span.ico.file {
    background-color: #000;
    border-radius: 50%;
}
span.ico.file.download {
    background-position: -300px -8px;
}
span.ico.file.view {
    background-position: -262px -7px;
}
span.ico.facebook {
    background-position: -17px -12px;
    background-size: 400px auto;
    width: 30px;
    height: 31px;
}
span.ico.facebook.black {
    background-position: -17px -55px;
}
span.ico.instagram {
    background-position: -62px -12px;
    background-size: 400px auto;
    width: 30px;
    height: 31px;
}
span.ico.instagram.black {
    background-position: -62px -55px;
}

span.ico.youtube {
    background-position: -16px -99px;
    background-size: 400px auto;
    width: 30px;
    height: 31px;
}
span.ico.youtube.black {
    background-position: -16px -140px;
}
span.ico.linkedin {
    background-position: -62px -99px;
    background-size: 400px auto;
    width: 30px;
    height: 31px;
}
span.ico.linkedin.black {
    background-position: -62px -140px;
}
.ico-top {
    display: block;
    width: 60px;
    height: 60px;
    top: auto!important;
    bottom: 20px;
    right: 20px;
    background-position: -200px -42px;
    z-index: 100;
    position: fixed!important;
    opacity: 0;
	background-color: var(--color02);
	border: 1px solid var(--color02);
	-webkit-transition: background .1s;
	-o-transition: background .1s;
	transition: background .1s;
}
.ico-top:hover {
	background-color: var(--color00);
	background-position: -250px -42px;
}
.ico-top.is_stuck {
    opacity: 1;
}
.ico-more{
	background-position: -231px -147px;
    background-size: 600px auto;
}


/* ------
03 - TITRES
---------*/
h1, h2, h3, h4, h5, h6, .like-h1, .like-h2, .like-h3, .like-h4, .like-h5, .like-h6{
	line-height:1;
	margin:0 0 10px 0;
	color: var(--color01);
	/* font-family: 'Ledger', serif; */
	font-family: 'Montserrat', serif;
	font-weight: 600;
	text-transform: uppercase;
}
h1, .like-h1{
	font-size: 3.5rem;
	color: var(--color00);
	line-height: 40px;
}
h2, .like-h2{
	font-size: 2rem;
	letter-spacing: 1px;
	line-height: 3rem;
	font-family: 'Ledger', serif;
	font-weight: 500;
}
h3, .like-h3{
	font-size: 1.7rem;
	font-weight: 500;
	letter-spacing: 5px;
	line-height: 2.3rem;
}
h4, .like-h4{
	font-size: 1.6rem;
	line-height: 3.6rem;
	letter-spacing: 1px;
	font-family: 'Ledger', serif;
}
h5, .like-h5{
	font-size: 1.5rem;
}
h6, .like-h6{
	font-size: 1.4rem;
}
@media screen and (max-width: 680px), (max-device-width: 680px){
	h1, .like-h1{
		font-size: 2.2rem;
    line-height: 3rem;
	}
	h2, .like-h2{
		font-size: 1.3rem;
		line-height: 2rem;
	}
}


/* ------------
04 - LIENS
--------------*/
a, a:link, a:visited{
	color: #4d4d4d;
	text-decoration: none;
}
a:hover, a:active{
	color: var(--color03);
}
#wrapperInner p a:hover, #wrapperInner ul li a:hover{
    color: var(--color03);
}


/* ------------
05 - BOUTONS
--------------*/

.btn, a.bouton1, .bouton1 a, a.bouton2, .bouton2 a, a.bouton3, .bouton3 a, a.bouton4, .bouton4 a,
.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit] {
    font-family: "mb", sans-serif;
    display: inline-block;
    padding: 12px 22px 12px 22px;
    color: #fff !important;
    margin: 10px 0;
	text-decoration: none !important;
	text-transform: uppercase;
	font-size: 1.3rem;
	letter-spacing: 1px;
	cursor: pointer;
}

a.bouton1, .bouton1 a{
	background-color: var(--color02);
	border: 1px solid var(--color02);
	-webkit-transition: background 0.5s, color 0.5s;
	-o-transition: background 0.5s, color 0.5s;
	transition: background 0.5s, color 0.5s;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}
a.bouton1:hover, .bouton1 a:hover {
	background-color: var(--color00);
	color: var(--color02) !important;
}
a.bouton2, .bouton2 a,
.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_page_footer input[type=submit] {
	background-color: var(--color03);
	-webkit-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
	color: var(--color01) !important;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	border: none;
	height: 45px;
}
a.bouton2:hover, .bouton2 a:hover,
.gform_wrapper .gform_footer input.button:hover, .gform_wrapper .gform_footer input[type=submit]:hover, .gform_wrapper .gform_page_footer input.button:hover, .gform_wrapper .gform_page_footer input[type=submit]:hover {
	background-color: var(--color02);
	color: var(--color00) !important;
}
.btn-call{
	padding: 0 20px;
	font-size: 1.4rem;
}
.btn-call::before,
.btn-more::after,
.back::before,
.btn-download::before{
	content: '';
	background-image: url(../img/charte/sprite-deuxieme-adresse.svg);
	background-repeat: no-repeat;
	background-size: 400px auto;
	display: inline-block;
}

.btn-call::before{
    width: 25px;
    height: 25px;
    background-position: -118px -15px;
	display: inline-block;
}
.btn-more{
	color: var(--color01) !important;
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
	position: relative;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-family: 'Montserrat', serif;
    letter-spacing: 1px;
	text-decoration: none !important;
	text-transform: uppercase;
}
.btn-more:hover:after{
	-webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
	    transform: translateX(4px);
}
.btn-more::after{
    width: 25px;
    height: 25px;
	background-position: -270px -100px;
	margin-left: 5px;
	-webkit-transition: -webkit-transform 500ms ease;
    transition: -webkit-transform 500ms ease;
    -o-transition: transform 500ms ease;
    transition: transform 500ms ease;
    transition: transform 500ms ease, -webkit-transform 500ms ease;
}
.btn-more::before{
	content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 1px;
    background: var(--color01);
    -webkit-transition: width 500ms ease;
    -o-transition: width 500ms ease;
    transition: width 500ms ease;
}
.btn-more.yellow::before{
	background: var(--color03);
}
.btn-more.blue::before{
	background: var(--color02);
}
.btn-more:hover:before {
    width: 100%;
    text-align: center;
}
.back::before{
    width: 25px;
    height: 15px;
    background-position: -310px -104px;
    margin-right: 5px;
}
.back:hover:before{
    background-position: -270px -108px;
	-webkit-transform: rotate(
		180deg
		);
	    -ms-transform: rotate(
		180deg
		);
	        transform: rotate(
		180deg
		);
}
.btn-download{
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.btn-download::before{
	width: 30px;
    min-width: 30px;
    height: 30px;
    background-position: -305px -10px;
}
.bouton-h2{
	font-family: 'Montserrat', sans-serif !important;
    font-weight: 300 !important;
    font-size: 14px;
}
.bouton-h2::after{
	content: '';
    display: block;
    width: 57px;
    height: 1px;
    background-color: var(--color03);
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 20px;
	transition: all 0.8s;
}
.bouton-h2:hover::after {
	width: 100%;
	transition: all 0.8s;
}

/*btn sous-domaine*/
.btn-primary {
	background-color: #EF836A;
	color:var(--color00)!important;
	padding: 16px;
	font-size: 18px;
	font-weight: 700;
	transition: 0.8s all;
}
.btn-primary:hover {
	background-color: #EA5E3E;
	transition: 0.8s all;
}

/* ------------
06 - CONTENU WYSIWYG
--------------*/
p{
	margin: 0 0 10px 0;
}
/* strong{
	font-weight: normal;
} */
em{
	font-style:italic;
}
	em strong, strong em{

		font-style: italic;
		font-weight: normal;
	}
u{
	text-decoration:underline;
}
strike{
	text-decoration: line-through;
}
address{
	color: #007AAA;
}
pre{
	background:#ccc;
	border:1px solid #007aaa;
	font-family:Courier, MS Courier New, Prestige, Everson Mono;
	font-size:1.1em;
	margin:20px auto;
	overflow:auto;
	padding:5%;
	width:80%;
}
code{
	background:#007aaa;
	color:#fff;
	font-family:Courier, MS Courier New, Prestige, Everson Mono;
	font-size:1.1em;
	padding:2px;
}
cite{
	color:#000;
	font-family: Arial, sans-serif;
	font-size:1.1em;
	padding:0 3px 0 3px;
}
p.text-intro {
    font-family: "rb", sans-serif;
    color: var(--color02);
}
acronym{
	border-bottom:1px dashed #007aaa;
	cursor:help;
}
q{
	color:#007aaa;
	font-style:italic;
}
	q:after{
		content: " ' Source: "attr(cite)" ";
		font-size:1em;
	}

ul{
	margin: 5px 0 5px 15px;
}
ul.noMargin {
	margin: 0;
}
	ul li{
		list-style: none;
		padding: 0 0 0 15px;
		position: relative;
	}
	ul li.noPadding {
		padding: 0;
	}
	#wrapperInner ul li::before {
		content: '>';
		width: 7px;
		height: 7px;
		color: var(--color01);
		font-weight: 600;
		margin-right: 5px;
	}
	ul li.noBefore::before {
		display: none;
	}

ol {
    counter-reset: numList;
    margin: 5px 0 5px 15px;
}
	#wrapperInner ol li {
		list-style-type: none;
	}
	#wrapperInner ol li::before {
		counter-increment: numList;
		content: counter(numList) "-";
		margin: 0 5px 0 0;
		font-weight: 600;
	}

.separator{
	clear:both;
	visibility:hidden;
	margin: 5px 0 5px 0;
}
dl{
	margin:10px 5px;
}
	dt{
		color:#000;
		font-size:1.1em;
		font-weight:bold;
	}
	dd{
		font-style:normal;
		margin:0;
		padding:0;
		text-indent:10px;
	}

table{
	border-collapse:collapse;
	border-spacing:0;
	border: none;
	margin:auto;
	width:100%;
	margin-bottom:15px;
}
	table caption{
		color: #ccc;
		font-size: 14px;
		font-weight:bold;
		margin:5px 0;
		text-align:left;
	}
th{
	border: none;
	font-size:14px;
	font-weight:bold;
}
td, tr{
	border: none;
}
td img{
	padding:3px;
}


#wrapperInner p a,
#wrapperInner ul li a {
	color: var(--color02);
	text-decoration: underline;
}

/* ------------------------
07 - PADDING ET LARGEURS
--------------------------*/

.padding-large {
	padding: 72px 0;
}
.margin-large {
	margin: 72px 0;
}

/* ------------------------
08 - MENU SCROLL UP
--------------------------*/
.scrollUp{
	position: fixed;
	top: 0;
	width: 100%;
	z-index : 10000;
	-webkit-transition: top 0.2s ease-in-out;
	-o-transition: top 0.2s ease-in-out;
	transition: top 0.2s ease-in-out;
}
.scrollUp.nav-up{
	-webkit-transition: top 0.2s ease-in-out;
	-o-transition: top 0.2s ease-in-out;
	transition: top 0.2s ease-in-out;
}



/* ------------------------
09 - POPUP ACTUALITE
--------------------------*/
.popup-wrap{
	background: rgba(0, 0, 0, 0.7);
	bottom: 0;
	left: 0;
	padding: 15% 30%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 99;
}
	.box-simple-popup{
		background: #fff;
		position: relative;
	}
		.box-simple-popup .box-titre{
			background: #46a1bf;
			color: #fff;
			padding: 15px 30px;
		}

		.box-simple-popup .popup-btn-close{
			background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAMAAAC5zwKfAAAAkFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADDIYgjAAAAL3RSTlMAFS3T6/HlN8nbDhskQvb6Cga+smmlA1tOAZeSi3jtuM/Eg10pHhBiVD443alvI7Ki/2AAAAHWSURBVFjDpdfZbuJAEEbhH0JM2GKzZAJjsy9ZZun3f7vpJGJKiJJKOZzLrvZ3YbXUtnLj0bLZ7Qe6ofasaWZtfTUq0kdlMxZsMEmfbY/KzdO5dSXUsDgLxTHrj+l/k4p657ZSkywkHrJnjdRLt4ntzgVQq0xYNM9aZxCL5llT3SUsmmc12iUsmme969RxROxNJb2VV8vbPvR6J+Xmj1eDhz7zBvps5InQC0TgQbG7cj0sdu8DLxJj764lATHwgBh4QAy8WDwhz0RnM/CsN2878IIHwjEW3/0hEINXjET/EOQBFINjCkTu+WLP924QoWci87hoHr3EuWci8KBoHhdjj4uTSrj2yvV48zIFFzDwQpF7JnLPrxhSD4jAM5F7t4vPrsfF50AzEXvrwhO5Nx0PXZF7ki9yLxCB54sH7vlip8293N+eIwLPGnxP3PseFmeBF4qx9zt7TPS9px8SEAMPibEXi8CLRO75Ypd7vnjfBZ7VunPEwIPi3veQuBpKx9L1oLhZqL5a/Jk9LM7168pbSFys5XpcXKv0PC5OtfE8Lu609DwutlUV0DNxY8LTxZd+vRCq/3D5BzOcpI+KF9Gquky5sq701eFl+Wc01g21XpfL15Zy/wAQgcwfcwB9iQAAAABJRU5ErkJggg==') no-repeat 0 0 / 40px 40px;
			cursor: pointer;
			height: 40px;
			position: absolute;
			right: -20px;
			top: -20px;
			width: 40px;
		}
		.box-simple-popup .popup-btn-close span{
			display: none;
		}




/* ----------
10 - MENU HAMBURGERS
-------------*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger{
	background-color: transparent;
	color: inherit;
	border: 0;
	cursor: pointer;
	display: inline-block;
	font: inherit;
	margin: 0;
	overflow: visible;
	padding: 5px 15px 0;
	text-transform: none;
	
	-webkit-transition-property: opacity, -webkit-filter;
	
	transition-property: opacity, -webkit-filter;
	
	-o-transition-property: opacity, filter;
	
	transition-property: opacity, filter;
	
	transition-property: opacity, filter, -webkit-filter;
	-webkit-transition-duration: 0.15s;
	     -o-transition-duration: 0.15s;
	        transition-duration: 0.15s;
	-webkit-transition-timing-function: linear;
	     -o-transition-timing-function: linear;
	        transition-timing-function: linear;
}
	.hamburger:hover, .hamburger:focus{
		opacity: 0.7;
	}

.hamburger-box{
	display: inline-block;
	height: 24px;
	position: relative;
	width: 40px;
}

.hamburger-inner{
	display: block;
	margin-top: -2px;
	top: 50%;
}
	.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after{
		background-color: #00b4cd;
		border-radius: 4px;
		height: 4px;
		position: absolute;
		width: 40px;
		-webkit-transition-property: -webkit-transform;
		transition-property: -webkit-transform;
		-o-transition-property: transform;
		transition-property: transform;
		transition-property: transform, -webkit-transform;
		-webkit-transition-duration: 0.15s;
		     -o-transition-duration: 0.15s;
		        transition-duration: 0.15s;
		-webkit-transition-timing-function: ease;
		     -o-transition-timing-function: ease;
		        transition-timing-function: ease;
	}
	.hamburger-inner::before, .hamburger-inner::after{
		content: "";
		display: block;
	}
	.hamburger-inner::before{
		top: -10px;
	}
	.hamburger-inner::after{
		bottom: -10px;
	}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner{
	-webkit-transition-duration: 0.3s;
	     -o-transition-duration: 0.3s;
	        transition-duration: 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	     -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	        transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
	.hamburger--spin .hamburger-inner::before{
		-webkit-transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
		-o-transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
		transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
	}
	.hamburger--spin .hamburger-inner::after{
		-webkit-transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
		transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
		-o-transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
		transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
		transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

.hamburger--spin.is-active .hamburger-inner{
	-webkit-transform: rotate(225deg);
	    -ms-transform: rotate(225deg);
	        transform: rotate(225deg);
	-webkit-transition-delay: 0.14s;
	     -o-transition-delay: 0.14s;
	        transition-delay: 0.14s;
	-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	     -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
	.hamburger--spin.is-active .hamburger-inner::before{
		top: 0;
		opacity: 0;
		-webkit-transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
		-o-transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
		transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
	}
	.hamburger--spin.is-active .hamburger-inner::after{
		bottom: 0;
		-webkit-transform: rotate(-90deg);
		    -ms-transform: rotate(-90deg);
		        transform: rotate(-90deg);
		-webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
		transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
		-o-transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
		transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
		transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
	}



/* ----------
11 - ICONES SOCIALES
-------------*/
.jssocials-share{

}
.jssocials-share-email{

}
.jssocials-share-twitter{

}
.jssocials-share-facebook{

}
.jssocials-share-googleplus{

}
	.jssocials-share a{
		
	}
		.jssocials-share .jssocials-share-logo{
			background-image: url(../img/charte/sprite-deuxieme-adresse.svg);
			background-repeat: no-repeat;
			background-size: 400px auto;
			display: block;
			height: 20px;
			width: 20px;
		}
		.jssocials-share .jssocials-share-label{
			display: none;
		}

		.fa-facebook:before,
		.fa-linkedin:before{
			display: none !important;
		}

		.jssocials-share-link{
			border-radius: 50% !important;
			border: none !important;
		}

		.jssocials-share-email .jssocials-share-logo{ background-position: 0 0 }
		.jssocials-share-email:hover .jssocials-share-logo, .jssocials-share-email:focus .jssocials-share-logo{ /*background-position: 0 -34px*/ opacity: 0.7; }

		.jssocials-share-link:hover, .jssocials-share-link:focus, .jssocials-share-link:active{
			border: none !important;
		}
		.jssocials-share-twitter .jssocials-share-logo{ background-position: -32px 0 }
		.jssocials-share-twitter:hover .jssocials-share-logo, .jssocials-share-twitter:focus .jssocials-share-logo{ /*background-position: -32px -34px*/ opacity: 0.7; }


		.jssocials-share-linkedin .jssocials-share-logo{ background-position: -67px -105px }
		.jssocials-share-linkedin:hover .jssocials-share-logo, .jssocials-share-linkedin:focus .jssocials-share-logo{ /*background-position: -32px -34px*/ opacity: 0.7; }

		.jssocials-share-facebook .jssocials-share-logo{ background-position: -22px -16px }
		.jssocials-share-facebook:hover .jssocials-share-logo, .jssocials-share-facebook:focus .jssocials-share-logo{ /*background-position: -64px -34px*/ opacity: 0.7; }

		.jssocials-share-googleplus .jssocials-share-logo{ background-position: -97px 0 }
		.jssocials-share-googleplus:hover .jssocials-share-logo, .jssocials-share-googleplus:focus .jssocials-share-logo{ /*background-position: -97px -34px*/ opacity: 0.7; }

		.st-custom-button[data-network] {   background-color: #0adeff;   display: inline-block;   padding: 5px 10px;   cursor: pointer;   font-weight: bold;   color: #fff;}


/**
* alert
*/
.alert
{
	background: green;
	color:#FFF;
	padding:10px;

	width:100%;
	text-align: center;
}

.alert.alert-error
{
	background: rgb(194, 24, 12);
}

/* 12 - CLASS GENERIQUES */

/* Position */

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

/* Border radius */

.br10 {
	border-radius: 10px;
}



/* Box shadow */

.box-shadow {
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.47);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.47);
}

.border-top{
	border-top: 1px solid var(--color05);
}

.border-bottom{
	border-bottom: 1px solid var(--color05);
}

/* MEDIA // Cover */

.cover {
	overflow: hidden;
}
	.cover img{
		-o-object-fit: cover;
		   object-fit: cover;
		font-family: 'object-fit: cover';
		height: 100%;
		width: 100%;
	}

/* 13 - PAGE TEXTE EN BLOC */

.templatePageTextBloc{
	margin-top: -100px;
}
.templatePageTextBloc > div:not(:last-child) {
    /* margin-bottom:50px; */
	margin-bottom: 130px;
}
.templatePageTextBloc .slider-domaine img {
	object-fit: cover;
}
.bloc-texte-image-inte h2::after{
	content: '';
    display: block;
    width: 57px;
    height: 1px;
    background-color: var(--color03);
    margin-top: 20px;
    margin-bottom: 20px;
}

.bloc-texte-inte .col-md-4 .text-intro{
	color: var(--color02);
}
.bloc-texte-inte .col-lg-3 .text-intro{
	color: var(--color03);
}
.bloc-texte-inte h3,
.bloc-texte-inte h4{
	margin-bottom: 0;
}
.bloc-texte-inte .col-md-4 a,
.bloc-texte-inte .col-lg-3 a{
	text-align: center;
	margin: 0 auto;
}
.item-text .btn-more::before{
	margin: 0 auto;
	right: 0;
}
.subtitle-intro{
	background-color: #FFCC00;
    background-color: var(--color03) !important;
	color: var(--color01);
	font-size: 1.5rem;
	padding: 0 5px;
}
.accrocheGreySection h2::after,
.domaines-main h2::after,
.box-plaquette .like-h2::after,
.main-domaine-focus h2::after{
	content: '';
    display: block;
    width: 57px;
    height: 1px;
    background-color: var(--color02);
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
h2.main-domaine-focus-title::after{
    background-color: var(--color03);
}
/* pagination */
.tool-pagination ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
.tool-pagination ul li::before{
	display: none;
}
.tool-pagination ul li span.current{
	padding: 10px;
	width: 20px;
	height: 20px;
	background-color: var(--color03);
	line-height: 0;
	text-align: center;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.tool-pagination ul li:not(:last-of-type){
	margin-right: 5px;
}
#wrapperInner .tool-pagination ul li a{
	color: var(--color01) !important;
	text-decoration: none;
}


/* Bloc introduction */

.bloc-introduction-inner,
.bloc-introduction-inner-border {
    padding: 0 15%;
    text-align: center;
	border: 1px solid var(--color03);
	position: relative;
}
.bloc-introduction-inner h2::after{
	content: '';

}
	.bloc-introduction-inner p {
		font-size: 1.5rem;
	}
	.bloc-introduction-inner a:last-of-type{
		position: absolute;
		bottom: -20px;
		margin: 0 auto;
    left: 0;
    right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
	}

/* Bloc texte et image */

.bloc-texte-image .slider-page .item {
    height: 500px;
}
.bloc-texte-image .slider-page.w100 .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.bloc-texte-image .slider-page.w100.high {
    margin: 0 0 30px 0;
}
.bloc-texte-image .slider-page.w100.low {
    margin: 30px 0 0 0;
}

/* Bloc texte + image + lien */

.bloc-texte-img-lien .item {
	max-height: 270px;
}

/* Bloc accroche */
.accrocheSection{
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	padding:60px 0;
	margin-bottom: 30px;
}
/* .accrocheSection .image{
	max-height: 500px;
	width: 100%;
	position: relative;
	z-index: 1;
} */
.accrocheSection::after{
	content: "";
	display: block;
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
}
.accrocheSection .contentSection{
	/* position: absolute;
	top: 50%; */
	z-index: 3;
	/* -webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		    transform: translateY(-50%); */
	margin: 0 auto;
	width: 75%;
} 
.accrocheSection .contentSection h2{
	color: var(--color00);
}
.accrocheSection .contentSection .text{
	color: var(--color00);
}


/* Galerie image */


		.galerie-image .item img {
			-webkit-transition: opacity .3s;
			-o-transition: opacity .3s;
			transition: opacity .3s;
			z-index: 1;
    		position: relative;
		}
		.galerie-image .item .item-inner > a > img{
			
			width: 100%;
		}
		/* .galerie-image .item:hover img {
			transform: scale(1.05);
		} */
		.galerie-image h4,
		.like-h4{
			text-transform: initial;
			font-family: 'Ledger', serif;
			font-size: 1.6rem;
			letter-spacing: 1px;
			line-height: 3.6rem;
			position: relative;
		}
		.galerie-image h4::before,
		.like-h4::before{
			content: '';
			display: block;
			position: absolute;
			height: 2px;
			top: 9px;
    		left: calc(50% - 10px);
			width: 20px;
			background-color: var(--color03);
			-webkit-transform: rotate(
		90deg
		);
			    -ms-transform: rotate(
		90deg
		);
			        transform: rotate(
		90deg
		);
		}

/* Diaporama */

.slider-page .image-diapo {
    height: 500px;
}

/* Glissière */
.glissiere-item {
    padding: 5px 10px 5px 10px;
    margin: 0 0 15px 0;
    position: relative;
}
.glissiere-item::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	background-image: url(../img/charte/sprite-deuxieme-adresse.svg);
	background-repeat: no-repeat;
	background-size: 400px auto;
	background-position: -225px -4px;
	-webkit-transition: -webkit-transform .2s;
	transition: -webkit-transform .2s;
	-o-transition: transform .2s;
	transition: transform .2s;
	transition: transform .2s, -webkit-transform .2s;
}
.glissiere-item.active::after {
	-webkit-transform: rotate(90deg);
	    -ms-transform: rotate(90deg);
	        transform: rotate(90deg);
}
	.glissiere-item .contenu {
		display: none;
	}
	.glissiere-item .titre {
		text-transform: uppercase;
		font-family: "rb", sans-serif;
		font-size: 2rem;
		cursor: pointer;
		padding: 0 40px 0 0;
	}

/* Téléchargement fichier */

.fileDownload-item .title {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-family: "rb", sans-serif;
    font-size: 1.6rem;
    color: var(--color02);
    margin: 0;
}
.fileDownload-item .vignette {
    width: 180px;
    margin: 0 10px 0 0;
}
.fileDownload-item .link a {
    margin: 0 0 0 5px;
}

/* Vignette page */

.blocVignettesCarrefours-itemContent {
	overflow: hidden;
}

/* .blocVignettesCarrefours-item:nth-child(3n+2) {
    margin: 0 40px 30px 40px;
} */
	.blocVignettesCarrefours-item .image {
		background-color: #000;
		padding-top: 100%;
	}
		.blocVignettesCarrefours-item .image img {
			-webkit-transition: opacity .3s, -webkit-transform .3s;
			transition: opacity .3s, -webkit-transform .3s;
			-o-transition: opacity .3s, transform .3s;
			transition: opacity .3s, transform .3s;
			transition: opacity .3s, transform .3s, -webkit-transform .3s;
			opacity: 0.5;
			position: absolute;
    top: 0;
		}
		.blocVignettesCarrefours-item .image:hover img {
			-webkit-transform: scale(1.05);
			    -ms-transform: scale(1.05);
			        transform: scale(1.05);
		}
		.blocVignettesCarrefours-itemContent .like-h2::after{
			content: '';
			width: 50px;
			height: 50px;
			margin: 0 auto;
			margin-top: 20px;
			background-image: url(../img/charte/sprite-deuxieme-adresse.svg);
			background-repeat: no-repeat;
			background-size: 400px auto;
			display: block;
			background-position: -255px -132px;
		}

/* 14 - SLICK */
.slider-page{
	margin-top: 100px;
}
button.slick-arrow {
    background-color: var(--color00);
	border-radius: 50%;
    border: transparent;
    position: absolute;
    top: -80px;
    text-indent: -5000px;
    overflow: hidden;
    width: 40px;
    height: 40px;
    background-image: url(../img/charte/sprite-deuxieme-adresse.svg);
    background-repeat: no-repeat;
    background-size: 400px auto;
    outline: transparent;
    cursor: pointer;
    background-position: -345px -93px;
	box-shadow: 0 0 24px 0 rgb(169 169 169 / 75%);
    -webkit-box-shadow: 0 0 24px 0 rgb(169 169 169 / 75%);
    -moz-box-shadow: 0 0 24px 0 rgba(169,169,169,.75);
}
button.slick-arrow.slick-next{
	left: calc(50% + 10px);
}
body.home button.slick-arrow{
	top: -25px;
}
button.slick-arrow.slick-prev {
	left: calc(50% - 50px);
    z-index: 1;
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
}


/* ------
15 - ANIMATION SCROLL
---------*/
/*
Opacité seule : classSectionToAnimate
Opacité + top : classSectionToAnimate animateTop
Opacité + bottom : classSectionToAnimate animateBottom
Opacité + top Left : classSectionToAnimate animateTopLeft
Opacité + top Right : classSectionToAnimate animateTopRight
Opacité + bottom Left : classSectionToAnimate animateBottomLeft
Opacité + bottom Right : classSectionToAnimate animateBottomRight
*/
.animate-elem{
	opacity: 0.1;
	position: relative;
}
.animate-elem-25{
	opacity: 1;

	-o-transition-duration: 2s;

	   transition-duration: 2s;
	-webkit-transition-duration: 2s;
}

.animate-elem.animateTop{ top: -30px; }
.animate-elem-25.animateTop{ top: 0; }

.animate-elem.animateBottom{ bottom: -30px; }
.animate-elem-25.animateBottom{ bottom: 0; }

.animate-elem.animateTopLeft{ left: -30px; top: -30px; }
.animate-elem-25.animateTopLeft{ left: 0; top: 0; }

.animate-elem.animateTopRight{ right: -30px; top: -30px; }
.animate-elem-25.animateTopRight{ right: 0; top: 0; }

.animate-elem.animateBottomLeft{ left: -30px; bottom: -30px; }
.animate-elem-25.animateBottomLeft{ left: 0; bottom: 0; }

.animate-elem.animateBottomRight{ right: -30px; bottom: -30px; }
.animate-elem-25.animateBottomRight{ right: 0; bottom: 0; }
	


/* 16 - MODULE ET PAGE RECHERCHE */
span.ico.loupe{
	width: 40px;
	height: 40px;
	background-position: -157px -95px;
	position: relative;
}
span.ico.loupe::before, span.ico.loupe::after{
	content: "";
	position: absolute;
	top: 0;
	width: 1px;
	height: 100%;
	background-color: var(--color00);
	left: -5px;
}
span.ico.loupe::before{
}
span.ico.loupe::after{
	left: inherit;
	right: -5px;
}
.box-search{
	padding-right: 50px;
}	
	.box-search .loupe{
		cursor: pointer;
	}
	.box-search .loupe:hover, .box-search.active .loupe{
		background-position: -207px -95px;
	}
	.box-search .loupe:hover::after, .box-search .loupe:hover::before, .box-search.active .loupe::after{
		background-color: var(--color01);
	}
	.box-search.active .loupe::before{
		display: none;
	}
	.box-search #search-2{
		display: none;
	}
	.box-search.active #search-2{
		display: block;
	}
	.box-search #search-2 .screen-reader-text{
		display: none;
	}
	.box-search #search-2 .screen-reader-text, .box-search #search-2 input#s {
		opacity: 0;
		-webkit-transition: opacity 0.5s ease-in-out;
		-o-transition: opacity 0.5s ease-in-out;
		transition: opacity 0.5s ease-in-out;
	}
	.box-search input#searchsubmit {
		background-color: transparent;
		border: transparent!important;
		text-indent: -5000px;
		width: 0;
		height: 0;
		padding: 0;
		margin: 0;
	}
	.box-search.active div.widget_search input#s {
		opacity: 1!important;
		padding: 6px 10px;
		border: 2px solid var(--color01);
		border-radius: 5px;
		outline: none;
		margin-right: 10px;
	}
/* page résultats */
#resultats-recherche .resultatItem{
	background-color: var(--color00);
	padding: 25px 30px;
    -webkit-box-shadow: -5px 5px 36px -18px rgba(0,0,0,0.5);
	box-shadow: -5px 5px 36px -18px rgba(0,0,0,0.5);
	margin-bottom: 30px;
	border-left: 4px solid var(--color02);
}
#resultats-recherche .resultatItem::before{
	display: none;
}
	#resultats-recherche .resultatItem h2{
		margin-bottom: 20px;
	}
body.search-results .titreRecherche{
	margin-bottom: 30px;
}


/* 17- BOXES */

.no-title .widgettitle{
	display: none;
}

aside .box-contact{
	position: fixed;
    right: -2px;
    top: 340px;
	-webkit-transform: translate(31%, 0) rotate( 
		270deg
		 );
	    -ms-transform: translate(31%, 0) rotate( 
		270deg
		 );
	        transform: translate(31%, 0) rotate( 
		270deg
		 );
		 z-index: 100;
}

	
/*RESPONSIVE
01 - DESKTOP */


@media screen and (max-width: 1400px), (max-device-width: 1400px){
}
@media screen and (max-width: 768px), (max-device-width: 768px){
	aside .box-contact{
		top: initial;
		bottom: 0;
		-webkit-transform: initial;
		    -ms-transform: initial;
		        transform: initial;
		left: 0;
		right: 0;
		text-align: center;
	}
	.bloc-texte-image-inte .slider-page{
		margin-bottom: 30px;
	}
	.bloc-texte-image .slider-page .item {
		height: auto;
	}
	.fileDownload .fileDownload-item{
		margin-bottom: 20px;
	}
	.btn-call::before{
		display: none;
	}
	.btn-call{padding: 5px;
		margin: 0;}
		tr{
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			    -ms-flex-direction: column;
			        flex-direction: column;
		}
		.table-container.engagements .table-item:nth-child(even):not(:last-of-type), 
		.table-container.securite .table-item:nth-child(even):not(:last-of-type), 
		.table-container.engagements .table-item:nth-child(odd):not(:last-of-type), 
		.table-container.securite .table-item:nth-child(odd):not(:last-of-type),
		.table-container .table-item:nth-child(odd){
			border-bottom: none !important;
			border-right: none !important;
		}
		.table-item > div{
			-webkit-box-align: center !important;
			    -ms-flex-align: center !important;
			        align-items: center !important;
		}
}


/* ------------------------
09 - POPUP ACTUALITE
--------------------------*/
.popup-wrap p{
	margin-bottom: 0;
  }
.popup-wrap {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.801);
	z-index: 10000;
}



#mp_popu{
	max-width: 955px;
	background-color: #fff;
	position: relative;
}
#mp_popu .popup-btn-close{
	position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
	background-image: url('../img/charte/sprite-deuxieme-adresse.svg');
	background-repeat: no-repeat;
	background-size: 400px auto;
	background-position: -265px -195px;
	cursor: pointer;
}
#mp_popu .popup-btn-close span{
	display: none;
}

@media (min-width: 1200px) {
	.popup-wrap {
		padding: 15% 30%;
	}	
}
@media (max-width: 1019px) {
	.popup-wrap {
		padding: 8% 23%;
	}	
}
@media (max-width: 780px){
	.popup-wrap {
		padding: 8%;
	}	
}

.headertopBar .widgettitle,
#right .widgettitle{
display: none !important;
}

#custom_html-11,
#custom_html-12{
	background-color: #FFCC00;
    background-color: var(--color03) !important;
	margin-left: 10px;
}