/*-----------------*/
/* VARIABLE */
/*-----------------*/
:root
{
	/*COLORS*/
	--primary-bgcolor: #0648a9;
	--secondary-bgcolor: #651c37;
	--tertiary-bgcolor: #a3a9b3;
	--text-color: #333;
	--title-color: #282828;
	--light-color: #83a2e3;
	--white: #FFFFFF;
	--black: #000000;

	/*FONTS*/
	--font-title:GeometricSlab, sans-serif;
	--font-text:Poppins,sans-serif;
	--font-bold:PoppinsBold, sans-serif;
}

/*-----------------*/
/* GLOBAL */
/*-----------------*/

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff'),
        url('../fonts/Poppins-Light.ttf') format('truetype'),
        url('../fonts/Poppins-Light.svg#Poppins-Light') format('svg');
    font-weight: 300;
    font-style: normal;
	font-display: swap;
}

@font-face {
    font-family: 'PoppinsBold';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff'),
        url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
        url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
	font-display: swap;

}

@font-face {
    font-family: 'GeometricSlab';
    src: url('../fonts/GeometricSlab712BT-MediumA.woff2') format('woff2'),
        url('../fonts/GeometricSlab712BT-MediumA.woff') format('woff'),
        url('../fonts/GeometricSlab712BT-MediumA.ttf') format('truetype'),
        url('../fonts/GeometricSlab712BT-MediumA.svg#GeometricSlab712BT-MediumA') format('svg');
    font-weight: 500;
    font-style: normal;
	font-display: swap;

}

@font-face {
    font-family: 'MontserratBold';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff'),
        url('../fonts/Montserrat-Bold.ttf') format('truetype'),
        url('../fonts/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}




body {
  font-size: 16px;
  line-height: 1.8;
  font-family: var(--font-text);
  top:0 !important;
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
}


body.no-scroll, body.is-toggle-open, body.is-form-warning, body.is-menu-open {
    overflow: hidden;
}

body.is-form-warning #header,
body.is-form-warning #header-contact{
	z-index: 1;
}
body.is-form-warning #h1,
body.is-form-warning #mapfooter {
	z-index: 0;
}



.posrel{
  position: relative;
}

a{
	text-decoration: none;
	color: var(--primary-bgcolor);
	cursor: pointer;
	transition: 250ms all ease-in-out;
}

.more-links{
	text-transform: uppercase;
	font-size: 12px;
	position: relative;
	padding-right: 25px;
}

.more-links:hover{
	color: var(--secondary-bgcolor)!important;
	
}
.more-links:after{
	content: "⭢";
	position: absolute;
	right: 0;
	top: -4px;
	line-height: 1;
	font-size: 25px;
}

.more-links.return{
	padding-left: 30px;
	padding-right: 0;
	display: inline-block;
}

.return-top{
	border-bottom: solid 1px rgba(255,255,255,.3);
	/* margin-top: 20px; */
	padding: 15px 0;
}

.return-bottom{
	border-top: solid 1px rgba(255,255,255,.3);
	padding-top: 50px;
	padding-bottom: 30px;
}

.more-links.return:after{
	content: "\2190";
	right: auto;
	left: 0;
}


.show-for-large{
	display: block;
}

.hide-for-large{
	display: none;
}
.show-for-medium {
    display: block;
}

.hide-for-medium{
	display: block;
}


.doc-link .size{
	font-size: 13px;
	font-style: italic;
}
/*------------------------------------------------------------------
[1.5 Preloader ]
*/
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    
    display: flex;
    align-items: center;
    justify-content: center;
background-color: var(--tertiary-bgcolor);
    background-image: url(../images/pattern.png);}


.loaded #loader-wrapper {
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all .3s 1s ease-out;
    transition: all .3s 1s ease-out;
}
.cssloader {
	/*padding-top: calc(45vh - 25px);*/
  }
  
  /** loader **/
  .sh1 {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 50px 50px 0 0;
	border-color: var(--primary-bgcolor) transparent transparent transparent;
	margin: 0 auto;
	animation: shk1 1s ease-in-out infinite normal;
  }
  
  .sh2 {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 50px 50px;
	border-color: transparent  transparent var(--secondary-bgcolor) transparent ;
	margin: -50px auto 0;
	animation: shk2 1s ease-in-out infinite alternate;
  }
  
  /** animation starts here **/
  @keyframes shk1 {
	0% {
	  transform: rotate(-360deg);
	}  
	
	100% {
	}
  }
  
  @keyframes shk2 {
	0% {
	  transform: rotate(360deg);
	}
	100% {
	}
  }
  
  .lt {
	color: var(--white);
	margin: 30px auto;
	text-align: center;
	font-weight: 100;
	letter-spacing: 10px;
  }

/*-----------------*/
/* Title */
/*-----------------*/
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	font-family: var(--font-title);
	font-weight: initial;
	color: var(--title-color);
}

h1, #title p{
	font-size: 46px;
	margin-bottom: 40px;
	margin-top: 0;
	line-height: 1.1;
}

h2{
	font-size: 40px;
	margin-bottom: 30px;
	margin-top: 30px;
}
h2.no-margintop{
	margin-top: 0;
}
h3{
	font-size: 34px;
}
h4{
	font-size: 30px;
}
h5{
	font-size: 25px;
}
h6{
	font-size: 22px;
}

@media(max-width:1024px){
	h1, #title p{font-size: 42px;}
	h2{font-size: 35px;}
	h3{font-size: 30px;}
	h4{font-size: 26px;}
	h5{font-size: 22px;}
	h6{font-size: 20px;}
}

@media(max-width:736px){
	h1, #title p{font-size: 36px;line-height: 1.2;word-break: break-word;margin-bottom: 20px;}
	h2{font-size: 28px;line-height: 1.1;}
	h3{font-size: 24px;}
	h4{font-size: 22px;}
	h5{font-size: 20px;}
	h6{font-size: 18px;}
}


.title small, .section-title small{
	font-family: var(--font-bold);
	color: var(--primary-bgcolor);
	font-size: 14px;
	text-transform: initial;
	letter-spacing: 0;
	display: block;
	line-height: 1;
	
	padding-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.title small:first-letter{
	font-size: inherit;
}



.title{
	position: relative;
	z-index: 2;
	/* padding-bottom: 30px; */
	display: block;
	margin: 0 auto 30px;
}

.title.tac {
	margin-bottom: 60px;
}
#pageTitle.title {
	margin-bottom: 100px;
}
body.is-form-warning .title{
	z-index: 1;
}
.title.no-before{
	padding-bottom: 0;
	margin-bottom: 0;
}
.title p{
	margin-top: 15px;
}

#footerbloc  .title p{
	margin: 0;
	font-size: 14px;
}


.title.no-before:after{
	top: auto;
	bottom: -20px;
}

.title h1,
.title h2, 
.title h3 {
  margin: 0;
}
.white h1,
.white h2,
.white h3
{
	color: var(--white);
}
.white .accroche {
	color: rgba(255,255,255,.8)
}

.title.big h2{
	
font-size: 45px;}

.title:not(.no-before):before {
    position: absolute;
    /* content: ''; */
    left: 0;
    bottom: 0;
    width: 200px;
    background-color: var(--primary-bgcolor);
    background: linear-gradient( 45deg , #ba90326e, var(--primary-bgcolor));
    background: linear-gradient( 45deg , #ba90326e, var(--primary-bgcolor));
    font-weight: 700;
    letter-spacing: 0;
    font-size: 17px;
    color: #000;
    border-radius: 30px;
    height: 13px;
    bottom: 0;
    z-index: -1;
    }

.title:not(.no-before).tac:before {
	left: 50%;
	margin-left: -100px;
}


.with-shape{
	padding-top: 50px;
    padding-left: 50px;
position: relative;}
.left-shape  {
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    height: 100%;
}

.left-shape .square-shape {
    width: 40px;
    height: 40px;
    background: var(--primary-bgcolor);
    transform: rotate(45deg);
}

.left-shape .shape-top {
    position: absolute;
    top: 19px;
    left: 37px;
    display: flex;
    align-items: center;
}

.left-shape .shape-top span {
    margin-right: 5px;
    border-radius: 50%;
    background: var(--primary-bgcolor);
    display: block;
}

.left-shape .shape-top span:nth-child(1) {
    width: 100px;
    height: 2px;
}

.left-shape .shape-top span:nth-child(2) {
    width: 10px;
    height: 10px;
}

.left-shape .shape-top span:nth-child(3) {
    width: 7px;
    height: 7px;
}

.left-shape .shape-top span:nth-child(4) {
    width: 5px;
    height: 5px;
}

.left-shape .shape-left {
    position: absolute;
    left: 19px;
    top: 35px;
    display: block;
    text-align: center;
}

.left-shape .shape-left span {
    border-radius: 50%;
    background: var(--primary-bgcolor);
    display: block;
    margin: 0 auto;
    margin-bottom: 5px;
}

.left-shape .shape-left span:nth-child(1) {
    height: 100px;
    width: 2px;
}

.left-shape .shape-left span:nth-child(2) {
    width: 10px;
    height: 10px;
}

.left-shape .shape-left span:nth-child(3) {
    width: 7px;
    height: 7px;
}

.left-shape .shape-left span:nth-child(4) {
    width: 5px;
    height: 5px;
}


/*-----------------*/
/* Image */
/*-----------------*/
img.cover{
	/* OLD VERSION; position: absolute; top: -9999px; right: -9999px; bottom: -9999px; left: -9999px; margin: auto; min-width: 100%; min-height: 100%; */
	object-fit: cover;
	width: 100%;
	height: 100%;
}

img.fill{
	object-fit: fill;
	max-width: 100%;
}

img.contain{
	object-fit: contain;
	max-width: 100%;
}

img.responsiveimg{
	width: 100%;
	height: 100%;
	height: auto;
}

strong {
  font-family: var(--font-bold);
  /* font-weight: 700; */
}

.tc_content img{
	max-width: 100%;
	height: auto;
}

/*-----------------*/
/* Gallery */
/*-----------------*/

.scroll-down {
	transition: 250ms all ease-in-out;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 100px;
  position: absolute;
  left: 50%;
  width: 40px;
  height: 70px;
  margin-left: -20px;
  z-index: 3;
  bottom: 50px;
}
.scroll-down a {
  display: block;
  opacity: 0;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: 0;
  font-size: 0;
  color: transparent;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
  -moz-background-size: 0 auto;
  -o-background-size: 0 auto;
  -webkit-background-size: 0 auto;
  background-size: 0 auto;
  -webkit-animation: pulse 1.5s 0s infinite normal ease forwards;
  -moz-animation: pulse 1.5s 0s infinite normal ease forwards;
  -o-animation: pulse 1.5s 0s infinite normal ease forwards;
  animation: pulse 1.5s 0s infinite normal ease forwards;
  background-image: url("../images/icon/arrow-down.svg");
  background-repeat: no-repeat;
}
.scroll-down a:before, .scroll-down a:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url("https://jamesmuspratt.com/codepen/img/arrow-down.svg") no-repeat center top;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
}
.scroll-down a:before {
  -webkit-animation: pulse 1.5s 0.25s infinite normal ease forwards;
  -moz-animation: pulse 1.5s 0.25s infinite normal ease forwards;
  -o-animation: pulse 1.5s 0.25s infinite normal ease forwards;
  animation: pulse 1.5s 0.25s infinite normal ease forwards;
}
.scroll-down a:after {
  -webkit-animation: pulse 1.5s 0.5s infinite normal ease forwards;
  -moz-animation: pulse 1.5s 0.5s infinite normal ease forwards;
  -o-animation: pulse 1.5s 0.5s infinite normal ease forwards;
  animation: pulse 1.5s 0.5s infinite normal ease forwards;
}
.scroll-down:hover {
  background-color: rgba(0, 0, 0, 0.6);
}


#galleryHome{
	    position: relative;
	    z-index: 50;
		padding: 50px 0;
	    }


#galleryHome .ckslidercontrols .prev:hover, 
#galleryHome .ckslidercontrols .next:hover{
	opacity: 1;
}

.innerLogo{
	display: block;
	margin-bottom: 10px;
}
.innerLogo img {
    width: 150px;
}


#galleryHome .accroche{
	font-size: 16px;
	color: var(--white);
}

#galleryHome .gallery dl.gallery-item{
   margin-bottom: 0;
   overflow: hidden;
   min-width: calc(100% /5);
   height: 400px;
   padding: 0 1px;
   box-sizing: border-box;
}




.gallery-item:hover .gallery-caption{
	opacity: 1;
	transition: all .3s ease-in-out 0s;
	-webkit-transition: all .3s ease-in-out 0s;
	transform: translateY(0);
}

.gallery .gallery-icon{
	position: relative;
	overflow: hidden;
}

.gallery-item .gallery-icon a:before{
	content: "";
	left: 0;
	top: 0;
	position: absolute;
	background-color: var(--primary-bgcolor);
	opacity: 0;
	transition: 250ms all ease-in-out;
	z-index: 1;
	background-color: var(--primary-bgcolor);
	padding: 20px;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
}

.gallery-item:hover .gallery-icon a:before{opacity: 0.8;}

.gallery .gallery-icon a{
	width: 100%;
	display: inline-block;
	height: 100%;
	cursor: zoom-in;
}

.gallery-item .gallery-caption{
	position: absolute;
	left: 0;
	bottom: 8px;
	text-align: center;
	opacity: 0;
	z-index: 2;
	font-family: var(--font-bold);
	color: var(--white);
	right: 0;
	transform: translateY(150%);
	text-transform: uppercase;
	font-size: 12px;
}



.gallery-item  .icon-gallery span{
	width: 50px;
	text-align: center;
	transform: scale(0);
	height: 50px;
	border-radius: 50%;
	line-height: 50px;
	transition: all .5s ease-in-out 0s;
	-webkit-transition: all .5s ease-in-out 0s;
	-moz-transition: all .5s ease-in-out 0s;
	-ms-transition: all .5s ease-in-out 0s;
	-o-transition: all .5s ease-in-out 0s;
	margin-top: 7px;
	background-color: var(--secondary-bgcolor);
	color: var(--white);
	display: inline-block;
	font-family: var(--font-text);
	font-size: 25px;
}

.gallery-item .icon-gallery{
	
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    transform: translateY(-50%) translateX(-50%);
    z-index: 2;
}

.gallery-item .icon-gallery span:before{
	content: "+";
}

.gallery-item:hover  .icon-gallery span {
	transform: scale(1);
    transition: all .5s ease-in-out 0s;
    -webkit-transition: all .5s ease-in-out 0s;
}

.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption{
  box-sizing: border-box;
}

.gallery-item img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 500ms all ease-in-out;
	transition: transform 1s cubic-bezier(.215,.61,.355,1);
}



.gallery .gallery-item:hover img{
	transform: scale(1.1);
}


.gallery .gallery-icon .gallery_zoom {
    position: absolute;
    z-index: 25;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
.gallery .gallery-icon .gallery_zoom:before, 
.gallery .gallery-icon .gallery_zoom:after {
	content: "";
	position: absolute;
    left: 50%;
    top: 50%;
    transition: background-color 0.2s ease-in-out, transform 0.4s ease-in-out;
    background-color: var(--white);
}

.gallery .gallery-icon .gallery_zoom:before{
	width: 40px;
    height: 2px;
    margin: -1px 0 0 -20px;
    transform: translateX(-50px);

}

.gallery .gallery-icon .gallery_zoom:after{
    width: 2px;
    height: 40px;
    margin: -20px 0 0 -1px;
    transform: translateY(-50px);
}

.gallery .gallery-item:hover .gallery_zoom{
	opacity: 1;
}
.gallery .gallery-item:hover .gallery_zoom:before{
	transform: translateX(0px);
}

.gallery .gallery-item:hover .gallery_zoom:after{
	transform: translateY(0px);
}



/*-----------------*/
/* SECTION REALISATIONS */
/*-----------------*/

#section-realisations{
	padding: 200px 0 10px;
}
#section-realisations .widget_element{
	display: grid;
	width: 100%;
	grid-gap: 10px;
	transition: 0.6s;
	grid-template-columns: repeat(4, 1fr);
	max-width: 100%;
	grid-template-rows: repeat(3, 300px);
}

#section-realisations .widget_element li .wrap-element{
	height: 100%;
	width: 100%;
	position: relative;
}

#section-realisations .widget_element li img{
	max-width: 100%;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

#section-realisations .widget_element li:first-of-type{
	grid-column: span 2;
	grid-row: span 2;
}
#section-realisations .widget_element li:nth-child(2){
	grid-column: span 1;
	grid-row: span 1;
}
#section-realisations .widget_element li:nth-child(3){
	grid-column: span 1;
	grid-row: span 1;
}
#section-realisations .widget_element li:nth-child(4){
	grid-column: span 2;
	grid-row: span 2;
}
#section-realisations .widget_element li:nth-child(5){
	grid-column: span 1;
	grid-row: span 1;
}
#section-realisations .widget_element li:nth-child(6){
	grid-column: span 1;
	grid-row: span 1;
}



.callout-bg {
    background-image: url(../images/footer-bg.jpeg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 450px;
    left: 0;
    top: 0;
    z-index: -1;
    /* transform: translateY(-50%); */
    background-attachment: fixed;
}

#contactform #form-body{
	/* padding: 25px; */
}

#contactform #form-body img{
	margin: auto;
	display: block;
	margin-bottom: 30px;
}

#contactform #contact-body{
	justify-content: center;
	text-align:center;
	position: relative;
	/* padding: 30px; */
	/* border-right: 1px solid #eee; */
}


#contactform .wrap-contact{
	/* padding-bottom: 30px; */
	padding: 50px 30px;
}

#contactform #contact-body h3{
	color: var(--title-color);
	font-size: 30px;
	margin-top: 30px;
	margin-bottom: 20px;
	line-height: 1.1;
}

#contactform .smallImage{
	/* position: absolute; */
	margin: 0;
	/* right: 0; */
	/* width: 100%; */
	height: 250px;
	/* box-shadow: 2.5px 4.3px 62px 0 rgba(0,0,0,.22); */
	/* transform: scale(0); */
	/* transition: .55s cubic-bezier(.4,0,.2,1) .75s; */
	z-index: 4;
}

#contactform .smallImage img{
	object-fit: cover;
	width: 100%;
	display: block;
	/* opacity: 0; */
	/* max-width: 100%; */
	height: 100%;
}

.contentContact #addrcontact{
	/* flex-direction: row; */
	/* justify-content: space-around; */
	/* align-items: center; */
}


.mention {
    font-size: 14px;
    font-style: italic;
    display: block;
    line-height: 1;
    padding: 0 10px 20px;
}
.alert-color {
    color: red;
}

.nohome #contactform{
	padding-top: 250px;
}

.nohome #contactform.contactformpage{
	padding-top: 0;
	background-color: transparent;
	/* flex-direction: row-reverse; */
	padding-bottom: 500px;
}

.nohome #contactform.contactformpage .callout-bg{
	top: auto;
	bottom: 0;
	height: 650px;
}

#form-body{grid-area: formBody;}
#contact-body{grid-area: contactBody;}
#footer .contact-body{
	display: grid;
	grid-row-gap: 0px;
	/* grid-column-gap: 30px; */
	transition: 0.6s;
	grid-template-areas: "contactBody    mapfooter"   "footerlinks    footerlinks";
	grid-template-columns: 40% 60%;
	grid-template-rows: min-content repeat(2, minmax(min-content, auto));
	align-items: center;
	/* justify-content: center; */
	/* width: auto; */
}


/*-----------------*/
/* CONTACT HOME */
/*-----------------*/
.wrap-contact{
    box-sizing: border-box;
    background-color: var(--primary-bgcolor);
    box-shadow: 0 0 30px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateX(100%);
    transition: .55s cubic-bezier(.4,0,.2,1) .95s;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
}



#homeContact #landing_listelement{
	display: flex;
	align-items: center;
	justify-content: center;
}


body.loaded .wrap-contact {
    opacity: 1;
    transform: translateX(0);
}


/*-----------------*/
/* PARTENAIRES */
/*-----------------*/
#partenaires{
	position: relative;
	background-color: var(--tertiary-bgcolor);background-image: url('../images/pattern.png');
	padding: 100px 60px;
	
	z-index: 1;
	box-shadow: 0 0 30px rgb(0 0 0 / 10%);
}
#partenaires .cksliderwrap{
	padding: 0 50px;
}



#partenaires .partenaires-header{
	display: flex;
	position: relative;
	margin-bottom: 100px;
}

.partenaires-header .section-title h2{
	display: block;
	margin-bottom: 30px;
}

.section-title.alt h1:before, .section-title.alt h2:before{
	 position: absolute;
	 content: '';
	 left: -65px;
	 top: 22px;
	 height: 2px;
	 width: 50px;
	 background-color: var(--primary-bgcolor);
	 background-image: none;
}
   

.partenaires-intro.white{
	color: var(--white);
	box-sizing: border-box;
	padding-left: 100px;
	padding-top: 45px;
}


#partenaires .widget_element{
	transition: all 1s cubic-bezier(.25,.8,.25,1);
	position: relative;
}

body.page_beton-cire  #partenaires .widget_element{
	justify-content: center!important;
}
#partenaires .ckctrldiv{
	display: none;
}

/*-----------------*/
/* Text align */
/*-----------------*/
.tar{text-align: right;}
.tal{text-align: left;}
.tac{text-align: center;}
.alignleft{float:left; margin: 0 20px 0 0;}
.alignright{float:right; margin: 0 0 0 20px;}
.aligncenter{text-align: center; margin:0 auto;}


/*-----------------*/
/* Check Browser Compatibility */
/*-----------------*/
#checkBrowserCompatibility{
  display: block;
  text-align: center;
  height: 100vh;
  min-height: 100%;
  width: 100vw;
  min-width: 100%;
  overflow: hidden;
  position: fixed;
  background: #a4a4a4;
  z-index: 9999999999;
  background-image: repeating-linear-gradient(-45deg,#d4d4d4 10px,#d4d4d4 17px,#eeeeee 17px,#eeeeee 18px);
}

.alertBadBrowser{
    width: 85%;
    max-width: 600px;
    margin: 0 auto;
    transform: translateY(-50%);
    top: 50%;
    background: #fff;
    position: relative;
    padding: 20px 20px 20px 150px;
    line-height: 19px;
    font-size: 13px;
    font-family: arial;
    box-sizing: border-box;
    box-shadow: 10px 10px 20px -19px #000;
    border-radius: 2px;
    outline-color: #0360ff;
    outline-offset: -7px;
    outline-style: solid;
    outline-width: 1px;
    background-image: url(../images/base/icon_browserCompatibility.svg);
    background-repeat: no-repeat;
    background-size: 120px;
    background-position: 15px 15px;
}

.titlebadbrowser{
    font-size: 15px;
    margin-bottom: 2px;
    color: #0360ff;
    text-transform: uppercase;
    font-weight: bold;
}
.subtitlebadbrowser{
    font-size: 14px;
    margin-bottom: 10px;
    color: #000;
    letter-spacing: -0.01em;
    line-height: 120%;
}
.textbadbrowser{
    font-size: 11px;
    line-height: 130%;
    color: #333;
}
.listbadbrowser{text-align: right;}
.listbadbrowser li{display: inline-block;margin: 15px 12px 0 0;}
.listbadbrowser li a{font-weight:bold;letter-spacing:-0.03em;color: #333;text-decoration:none;padding: 72px 16px 0;display: block;}
.listbadbrowser li a:hover{color:#0060ff;}
.ico_badbrowser{
    background-size: 70px 70px;
    background-repeat: no-repeat;
    background-position: top center;
}
.bw_firefox{background-image: url(../images/base/bw_firefox.svg);}
.bw_chrome{background-image: url(../images/base/bw_chrome.svg);}
.bw_safari{background-image: url(../images/base/bw_safari.svg);}


/*-----------------*/
/* Modal */
/*-----------------*/
.modal{
  display: grid;
  align-items: center;
  text-align: center;
  justify-items: center;
  width: 100vw;
  overflow: hidden;
  position: fixed;
  background: rgba(2, 2, 2, 0.9);
  z-index: 9999;
  /* background-image: url(../images/icons/clock.svg); */
  /* background-position: -15% 120%; */
  /* background-repeat:no-repeat; */
  /* background-size: 30%; */
  transition:0.5s all ease;
}

.closemodal{position: absolute;top: 20px;right: 20px;cursor: pointer;}
.closemodal svg{fill: var(--primary-bgcolor);width: 30px; transition: all 0.3s ease;transform-origin: center;}
.closemodal:hover svg{  transform: scale(1.2); fill:#555;}

.innermodal{
	padding: 60px 4%;
	background: #fff;
	box-shadow: 0 13px 20px -22px;
	border-radius: 10px;
	position: relative;
	pointer-events: bounding-box;
	/* max-width: 90%; */
	/* overflow: scroll; */
}

.modal.hide{height:0;opacity:0;filter: blur(20px);transform: scale(7);}
.modal.show{height: 100vh;opacity:1;filter: blur(0px);transform: scale(1);}

.horairemodal{pointer-events: none;}

 .jourhoraires{
    color: var(--primary-bgcolor);
    width: 140px;
    font-family: var(--font-bold);
}

.horairemodal .titlehoraires{
	font-size: 28px;
	font-family: var(--font-title);
	/* text-transform: uppercase; */
	margin-bottom: 20px;
	/* text-decoration: underline; */
	text-align: center;
	color: var(--title-color);
	line-height: 1.3;
}

.bthoraire{
	cursor: pointer;
}
.detailhoraires{
	 color: var(--text-color);
}

.infohoraires_other{
	line-height: 1.3;
	margin-top: 30px;
	box-sizing: border-box;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
	font-family: var(--font-bold);
}

/* ------------------------- */
/* GLOBAL BUTTON */
/* ------------------------- */
.underbutton > *, .button, .tc_content .wp-block-button__link{
	padding: 1.2em 51px 1.2em 20px;
	border: none;
	text-decoration: none;
	font-size: 12px;
	font-family: var(--font-bold);
	transition: all 0.5s ease-in-out;
	cursor: pointer;
	display: inline-block;
	
	position: relative;
	text-align: center;
	z-index: 1;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--white);
	background-color: var(--primary-bgcolor);
	border-radius: 0!important;
	box-shadow: none;
text-shadow: none;}

.underbutton > *:hover, .button:hover, .tc_content .wp-block-button__link:hover{
	
background: var(--secondary-bgcolor);}

.underbutton > *:before,
.button:before,
.tc_content .wp-block-button__link:before {
	content: "";
    position: absolute;
    background: transparent;
    border: 1px solid var(--primary-bgcolor);
    height: 100%;
    width: 100%;
    top: 6px;
    right: -6px;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;

z-index: -1;}
.underbutton > *:after,
.button:after,
.tc_content .wp-block-button__link:after {
 color: var(--white);
    content: "→";
    display: block;
    font-style: normal;
    font-weight: 400;
    top: 50%;
    right: 20px;
    position: absolute;
    transform: translateY(-50%);
    font-size: 1.2em;
    text-decoration: none;
}
.underbutton.no-after > *{
	padding: 1.2em 20px 1.2em 20px;
}
.underbutton.no-after > *:after{
	content: none;
}
.underbutton.white > *, .button.white, .tc_content .wp-block-button__link.white {
	background: var(--white);
	color: var(--secondary-bgcolor);
}

.underbutton.white > *:before, .button.white:before, .tc_content .wp-block-button__link.white:before {
	border-color: var(--white);
}

.underbutton.white > *:hover, .button.white:hover, .tc_content .wp-block-button__link.white:hover {
	background: var(--secondary-bgcolor);
	color: var(--white);
}
.underbutton.white > *:hover:before, .button.white:hover:before, .tc_content .wp-block-button__link.white:hover:before{
	/* border-color: var(--black); */
	}
.underbutton.white > *:hover:after, .button.white:hover:after, .tc_content .wp-block-button__link.white:hover:after{
	
color: var(--white);}


.underbutton.white > *:after,
.button.white:after,
.tc_content .wp-block-button__link.white:after  {
	color: var(--secondary-bgcolor);
}

.underbutton > *:hover:before,
.button:hover::before,
.tc_content .wp-block-button__link:hover:before{
    top: -6px;
    right: 6px;
    border-color: var(--secondary-bgcolor);

}


.underbutton.small > *, button.small, .button.small{
	padding: 3px 10px;
	font-size: 10px;
}

.button.hollow{
	background-color: transparent;
	color: var(--primary-bgcolor);
}
.button.hollow.white{
	color: var(--white);
	border-color: var(--white);
}
.button.hollow span{
	position: relative;
    z-index: 2;
    color: inherit;
}


.underbutton.secondary > *, button.secondary, .button.secondary{
	 background-color: var(--secondary-bgcolor);
}

.underbutton.secondary > *:before, button.secondary:before, .button.secondary:before{
	 border-color: var(--secondary-bgcolor);
}
.underbutton.secondary:hover > *:before, button.secondary:hover:before, .button.secondary:hover:before{
	 border-color: var(--primary-bgcolor);
}

.underbutton.secondary > *, button.secondary, .button.secondary:hover{
	 background-color: var(--primary-bgcolor);
}



.underbutton > *.hollow:hover, button.hollow:hover, .button.hollow:hover{
	background-color: var(--black);
}


.underbutton.icon > *, button.icon, .button.icon{
  padding-left:40px;
  background-size:24px;
  background-position:8px center;
  background-repeat:no-repeat;
}

.underbutton.bigicon > *, button.bigicon, .button.bigicon{
  padding-left:80px;
  background-size:48px;
  background-position:16px center;
  background-repeat:no-repeat;
}


.arrowlink{
	position: relative;
	display: inline-block;
	padding-right: 70px;
	/* height: 63px; */
	font-family: var(--font-title);
	color: var(--secondary-bgcolor);
	cursor: pointer;
	transform: translateZ(0);
	transition: transform .5s;
}

.arrowlink.white{
	color: var(--white);
}

.arrowlink svg{
	z-index: 1;
	position: absolute;
	bottom: -35px;
	right: 0;
	width: 256px;
	height: 63px;
	/* left: 0; */
}

.arrowlink svg line, .arrowlink svg polyline, .arrowlink svg circle{
	fill: none;
	stroke: var(--secondary-bgcolor);
}

.arrowlink.white svg line, .arrowlink.white svg polyline, .arrowlink.white svg circle{
	stroke: var(--white);
}
.arrowlink svg line, .arrowlink svg polyline{
	stroke-miterlimit: 10;
}
.arrowlink svg circle{
	display: block;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: .066em;
	stroke-dasharray: 200;
	stroke-dashoffset: 0;
	transition: stroke-dashoffset ease-out .5s;
}
.arrowlink span{
	z-index: 2;
	position: relative;
	display: inline-block;
	text-transform: uppercase;
	font-size: 18px;
	/* border-bottom: solid 1px; */
	padding-bottom: 3px;
	line-height: 1.5;
	transition: .5s all ease-in-out;
	/* vertical-align: sub; */
}



.arrowlink:hover{
	transform: translateZ(0) translateX(.5em);
	color: var(--primary-bgcolor);
}

.arrowlink:hover svg line, .arrowlink:hover svg polyline, .arrowlink:hover svg circle{
	stroke: var(--primary-bgcolor);
}

.arrowlink:hover span{
	transform: translateX(21px);
}

.arrowlink:hover svg circle{
	stroke-dashoffset: 200;
	/* stroke: var(--primary-bgcolor); */
}


#backBTsinglewoo{
	display: flex;
	width: 190px;
	box-sizing:border-box;
	background-size: 18px;
}






#infocontact .titlehoraires{
	font-size: 84px;
	display: block;
	text-align: center;
	position: relative;
	padding-bottom: 45px;
	line-height: 1;
	font-family: var(--font-subtitle);
	color: #675621;
	margin-bottom: 40px;
}
.contentContact .adresseIco{
	color: var(--text-color);
	background-image: url(../images/icons/map.svg);
	margin: 0 15px 25px;
}

.contentContact #infotel{
	margin: 0 15px 0;
}

#infocontact .detailhoraires{
	color: var(--white);
}

#infocontact .titlehoraires span{
	display: block;
	font-family: var(--font-title);
	text-transform: uppercase;
	color: var(--white);
	font-size: 30px;
	position: relative;
	top: -20px;
}

#infocontact .titlehoraires:after{
	content: "";
	position: absolute;
	display: block;
	width: 2px;
	height: 40px;
	background-size: contain;
	left: 50%;
	margin-left: -1px;
	bottom: 0;
	background-color: var(--white);
}


#addrcontact_txt, #infotel_contact{
	margin: 0!important;
	margin-bottom: 20px!important;
	/* color: var(--white); */
}

.note{
	font-size: 13px;
	font-style: italic;
}

.formulaireMail{background-image:url(../images/icons/mail.svg);}
#backBTsinglewoo{background-image: url(../images/icons/arrowleft.svg);}



.button.current-post-page,
.button.current{outline-style: solid;outline-color: var(--secondary-bgcolor);pointer-events: none;}

/* ------------------------- */
/* LABEL EFFECT */
/* ------------------------- */
.labelsection_bloc{position: relative;}
.labelsection {
  display: inline-block;
  color: white;
  font-size: 40px;
  letter-spacing: -0.03em;
  text-shadow: 0.03em 0em 10px #1a3541ab;
  z-index: 2;
  font-weight: bold;
  margin: 20px;
  padding: 20px 40px;
  z-index: 32;
  box-sizing: border-box;
}
.labelsection:after {
	content: attr(data-shadow);
	position: absolute;
	top: 0.07em;
	left: .10em;
	z-index: 1;
	padding: 21px 35px;
	text-shadow: none;
	background-image: linear-gradient(   45deg,   transparent 45%,   hsl(0, 0%, 100%) 45%,   hsl(0, 0%, 100%) 55%,   transparent 0   );
	background-size: .08em 0.08em;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: shad-anim 45s linear infinite;
}

@keyframes shad-anim {
  0% {background-position: 0 0}
  0% {background-position: 100% -100%}
}

/* ------------------------- */
/* GLOBAL TEXT PAO */
/* ------------------------- */


.tc_content > :first-child{
    margin-top: 0;
}
.tc_content h2, .tc_content h3, .tc_content h4, .tc_content h5, .tc_content h6{
	margin-top: 1em;
	margin-bottom: 30px;
}


@-webkit-keyframes backgroundAnimateIn {
  0% {
    background-position: 0 -100%;
  }
  63% {
    background-position: 0 -95%;
  }
  86% {
    background-position: 0 2.5%;
  }
  100% {
    
    background-position: 0 0%;
  }
}

@keyframes backgroundAnimateIn {
  0% {
    background-position: 0 -100%;
  }
  63% {
    background-position: 0 -95%;
  }
  86% {
    background-position: 0 2.5%;
  }
  100% {
   
    background-position: 0 0%;
  }
}

.tc_content a:not([class*="button"]), 
.tc_content a:not([class*="button"]) strong{
   color: var(--primary-bgcolor);
    position: relative;
    line-height: 1;
    border-bottom: 1px solid;
    transition: color 0.3s ease-in-out;
    background-image: linear-gradient(to bottom, transparent 20%, var(--secondary-bgcolor) 21% );
    background-position: 0 100%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    transition: all 0.5s ease-in-out 0.2s;
}

.tc_content a:not([class*="button"]):hover, .tc_content a:not([class*="button"]):hover strong{
	background-size: 100% 2px;
    transition-delay: 0s;
    color: var(--secondary-bgcolor);
}

.tc_content a[rel*="lightbox-gallery"]{
	background: none!important;
	border: none!important;
;}

.tc_content strong, .tc_content b{
    color: var(--primary-bgcolor);
}
.tc_content p{
    margin-bottom: 1em;
}


.has-medium-font-size{
	font-size: 22px;
    color: var(--title-color);
    line-height: 1.4;
}
.tc_content p + ul{
	margin-top: -15px;
}
.tc_content p.has-background{
	margin:0;
background: var(--secondary-bgcolor)!important;color: var(--white)!important;
padding: 30px 40px;}

.tc_content p.has-background a:not([class*="button"]), 
.tc_content p.has-background a:not([class*="button"]) strong{
	
	background-image: linear-gradient(to bottom, transparent 20%, var(--white) 21% );
}

.tc_content p.has-background a:not([class*="button"]):hover, 
.tc_content p.has-background a:not([class*="button"]):hover strong{
	color: var(--white);
}


.blocks-gallery-grid, .wp-block-gallery {
	margin: 0 0 20px !important;
}
.tc_content ol,
.tc_content ul{
    margin: 0 0 16px 30px;
}

.tc_content ul li {
    padding: 2px 0 2px 20px;
    position: relative;
}

.tc_content ul:not(.no-bullet) li:before {
    content: "";
    position: absolute;
    left: 3px;
    background-color: var(--primary-bgcolor);
    top: 15px;
    width: 6px;
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 6px;
    border-radius: 100px;
}

.tc_content hr.is-style-dots:before{
    content: "\00b7 \00b7 \00b7 \00b7 \00b7";
    color: var(--primary-bgcolor);
    font-size: 30px;
    letter-spacing: 18px;
    padding-left: 2em;
    text-shadow: 5px 4px 0px #0000004a;
}
.tc_content hr.is-style-wide{
    height: 5px;
    width: 100%;
}
.tc_content .wp-block-separator {
    max-width: 250px;
    height: 2px;
    margin: 80px auto;
    background: var(--primary-bgcolor)!important;
    border: none;
}

.tc_content pre{
    border: 1px solid rgba(0,0,0,0.2);
    padding: 10px 15px;
    font-size: 0.8em;
    background: rgba(255,255,255,0.2);
    outline-color: #ffffffa1;
    outline-offset: -5px;
    outline-style: dashed;
    outline-width: 1px;
    margin: 2em 10px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: pre-wrap;
}
blockquote, .wp-block-quote{
  
  margin: 2em 0;
  padding: 50px 70px;
  quotes: "\201C""\201D""\201C""\201D";
  
  position: relative;
  box-sizing: border-box;
  
  z-index: 1;
  background-color: transparent;
border: none!important;padding-left: 70px!important;margin: 30px 0 !important;}
blockquote cite{
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-style: normal;
    font-size: 14px;
    color: var(--text-color);
    position: relative;
    padding-top: 11px;
}
blockquote cite:before{
/* 	content: ""; */
	position: absolute;
	height: 50px;
	width: 2px;
	background-color: var(--black);
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

blockquote.is-style-large{
	border-top: 2px solid var(--primary-bgcolor);
	border-bottom: 2px solid var(--primary-bgcolor);
}
blockquote:before, .wp-block-quote:before{
  color: var(--primary-bgcolor);
  content: open-quote;
  font-size: 90px;
  position: absolute;
  font-family: var(--font-title);
  line-height: 1;
  height: 70px;
  display: inline;
  z-index: 2;
}


blockquote:after, .wp-block-quote:after {
	content: "";
	position: absolute;
	left: 50px;
	width: 3px;
	height: 100%;
	top: 0;
	background: var(--primary-bgcolor);
}
blockquote:before, .wp-block-quote:before{
    top: 0;
    left: 0;
}


blockquote p, .wp-block-quote p {
  font-size: 18px!important;
  font-family: var(--font-text);
  line-height: 1.5;
	color: var(--title-color);
	margin: 0;
}
blockquote p strong, .wp-block-quote p strong{
	
color: var(--secondary-bgcolor);}


blockquote.white{
	color: var(--white);
}



blockquote.white cite {
	color: rgba(255,255,255,.8);
}
blockquote.white cite:before{
	background-color: var(--white);
}
blockquote.white:before {
	background-color: var(--primary-bgcolor);
	color: var(--secondary-bgcolor);
}
blockquote.black:before{
	background-color: var(--black);
}
.tc_content table{
	width: 100% !important;
	margin-bottom: 1em;
	background-color: rgba(255,255,255,0.4) !important;
}
.tc_content table th{padding:0.15em 0.4em;border: 1px solid rgba(0,0,0,0.6);background:rgba(0,0,0,0.1);}
.tc_content table td{padding:0.15em 0.4em;border: 1px solid rgba(0,0,0,0.6);}

.tc_content table.is-style-stripes{border-bottom:none !important;}
.tc_content table.is-style-stripes tr td{border-top: 1px solid #0008;}
.tc_content table.is-style-stripes tr:last-child td{border-bottom: 1px solid #0008;}

.tc_content table.is-style-regular td{border:1px solid #0008;}

.tc_content .has-large-font-size{line-height: 120%;}

.tc_content .wp-block-lazyblock-slider-de-galerie{margin-bottom:1em;}


.tc_content iframe{
	width:100%;
	min-height:400px;
	background: #000;
}



/*-----------------*/
/* HEADER */
/*-----------------*/

#header {
	z-index: 30;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}

#header #wrap-info{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#infotelfixe_header .phonea:hover {
    color: var(--primary-bgcolor);
}

#addrheader_txt,
#addrheaderbis_txt,
#infoouverture_header {
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	font-family: var(--font-bold);
	position: relative;
	color: var(--white);
	box-sizing: border-box;
	letter-spacing: 0.5px;
	padding-left: 28px;
}

#addrheader_txt a, #addrheaderbis_txt a {
	font-size: 14px;
	line-height: 1;
	padding: 8px;
	box-sizing: border-box;
	background-color: var(--primary-bgcolor);
	color: var(--white);
}





#addrheader_txt:before,
#addrheaderbis_txt:before, 
#infoouverture_header:before{
	display: inline-block;
	position: relative;
	margin-right: 10px;
	top: 9px;
	left: 0px;
	content: "";
	width: 15px;
	height: 2px;
	background-color: var(--primary-bgcolor);
	position: absolute;
}






	
	@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 0.9;
        transform: translateY(0);
    } 
	}

 #logo a {display: flex;align-items: center;justify-content: center;}
#logodesktop {width: 250px;}
#header-wrap{
	
padding: 30px 50px;}

#navprimary {
    flex: 1 1 auto;
}


 #noshare {
	z-index: 7;
}
#galleryHome #noshare .icones{
	
	width: 70px;
	transform: rotate(-90deg);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	bottom: 0;
}

#noshare .icones{
	display: flex;
	align-items: center;
	justify-content: center;
}

 #noshare a:hover{color: var(--primary-bgcolor);}




#header #noshare .label span,
#header #share .label span,
#header #autotraduction .label span{
	border-bottom: 1px solid var(--secondary-bgcolor);
	color: var(--secondary-bgcolor);
}



.is-toggle-open #infocontact {
	opacity: 1 !important;
	visibility: visible !important;
	transition: 850ms all ease-in-out;
}


#infocontact{
	display: flex;
	
	align-items: stretch;
	
	position: relative;
	box-sizing: border-box;
	line-height: 1.3;
	
flex-direction: column;}

#infocontact #infoimg{
	width: 300px;
	background-image: url('../images/bg-contact.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	/* border-radius: 10px 0 0 10px; */
}

#infocontact #infotel{display: flex;align-items: center;}
#infocontact li:not(:first-of-type){
	margin: 0 30px;
}
#infotelportContact a{
	color: var(--text-color)
}

#infotelportContact a:hover{
	color: var(--primary-bgcolor);
}


#infocontact .grid-slices-container{
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	/* max-width: 1560px; */
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	left: 0;
	z-index: -1;
	top: 0;
}

#infocontact .grid-slices-container div {
    background: rgba(255,255,255,0.075);
    width: 1px;
    height: 100%;
}

#info-toogle {
	margin: 0px auto;
	background-color: var(--primary-bgcolor);
	position: absolute;
	z-index: 300;
	cursor: pointer;
	text-align: center;
	transition: .5s ease-in-out;
	
	display: none;
	top: 24px;
	right: 15px;
	width: 45px;
	height: 45px;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
}
body.is-menu-open #info-toogle{
	z-index:3;
	transition: none;
}

#info-toogle:before{
	content: "";
    background-image: url(../images/icons/mail-white.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    display: block;
    width: 24px;
    height: 24px;
    z-index: 1;
}

.is-toggle-open #header  #info-toogle:before{
	background-image: url(../images/icons/close-white.svg);

}

#header .is-toggle-open #info-toogle:before{
	background-image: url(../images/icons/close.svg);
	top: 30px;
	right: -10px;
}
.is-toggle-open #header #info-toogle{
	box-shadow: 0 0 0 100vw var(--secondary-bgcolor), 0 0 0 100vh var(--secondary-bgcolor);
	background-color: var(--secondary-bgcolor);
	border-radius: 0;
	transition: .5s ease-in-out;
}

#header-share{
	position: absolute;
	width: 80px;
	z-index: 21;
	top: 95px;
	bottom: 0;
	left: 0;
	overflow: hidden;
	height: 100%;
}

#header-share #share{
	position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    border-top: 1px solid #e6eaea;
    padding-top: 30px;
}

.overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--black);
	opacity: 0.6;
	z-index: 1;
}

#h1 .overlay{
	opacity: 0.4;
}

.overlay.light{
	background-color: var(--white);
	opacity: 0.6;
}

.socialContact{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 15px 0;
}

#socialContact .marque-alsace{width: 30px;}
#socialContact .share-buttons a{min-width: auto;margin-right: 60px;}





#header-contact {
  z-index: 1;
  padding: 15px 40px;
  background-color: var(--tertiary-bgcolor);
}



#header-contact #header-contactWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.phone span, 
.address span, 
.hours span,
.mobileIco span{color: var(--white);font-size: 11px;font-family: var(--font-bold);text-transform: uppercase;letter-spacing: 1px;line-height: 1;}
.phone, .address, .hours, .mobileIco{
  
    font-size: 14px;
    line-height: 30px;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 14px;
    padding-left: 24px;
    line-height: 1.5;
}
#infoadresse,
#infoouverture,
#infotelfixe,
#infotelport{
	 margin-right: 30px;
}
#infoadresseContact,
#infoouvertureContact,
#infotelportContact{
	margin: 20px 0;
}

.mobileIco.primary span:not(:first-of-type){
	margin-left: 10px;
	/* color: var(--primary-bgcolor); */
}

#infotelport{
	margin: 0;
}

.phone.white{background-image: url(../images/icons/phone-white.svg);}
.mobileIco.white{background-image: url(../images/icons/mobile-white.svg);}
.hours.white{background-image: url(../images/icons/clock-white.svg);}
.address.white{background-image: url(../images/icons/map-white.svg);}

.mobileIco.primary{/* background-image: url(../images/icons/mobile.svg); */}
.phone.primary{background-image: url(../images/icons/phone.svg);}
.address.primary{/* background-image: url(../images/icons/map.svg); */}
.hours.primary{/* background-image: url(../images/icons/clock.svg); */}

.mobileIco.white a,
.phone.white a,
.hours.white a,
.hours.white,
.address.white{
	color: var(--white);
}

.mobileIco.white a:hover,
.phone.white a:hover,
.hours.white a:hover{
	color: var(--primary-bgcolor);
}




/*-----------------*/
/* MENU PRIMARY */
/*-----------------*/

.callout.alert {
    background-color: #f5e6e6;
}
.callout {
    border: solid #ffbebe 1px;
    padding: 30px 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.callout p:last-of-type {
    margin-bottom: 0;
}
/*-----------------*/
/* SECTION VIDEO ACCUEIL */
/*-----------------*/
#video{
   background: url(../images/bg-video.jpg) no-repeat fixed center;
   background-size: cover;
   padding: 150px 30px;
   min-height: 650px;
   box-sizing: border-box;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   z-index: 1;
}

#video:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	opacity: 0.5;
	z-index: -1;
}

#video .section-title{
	display: inline-block;
	margin-bottom: 20px;
}

#video .button-play{
	position: relative;
	left: 0;
	display: inline-block;
	text-align: center;
	animation: animate 2s linear infinite;
	border-radius: 100%;
	line-height: 1;
	height: 74px;
	margin-bottom: 70px;
}

@keyframes animate{
	0%{
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
	}
	40%{
		box-shadow: 0 0 0 50px rgba(255,193,7,0);
	}
	80%{
		box-shadow: 0 0 0 50px rgba(255,193,7,0);
	}
	100%{
		box-shadow: 0 0 0 rgba(255,193,7,0);
	}
}

#video .button-play svg{
	fill: var(--white);
	width: 74px;
	overflow: visible;
	height: 74px;
}

#video .button-play svg path{
	transform-origin: center;
    transition: .3s;
}

#video .button-play:hover svg path{
	transform: scale(1.1);
}

.video-overlay {
  position: static;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.9);
  opacity: 0;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 9999999;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}

.video-overlay-close:hover {
  color: #fa183d;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* width: 90%; */
  /* height: auto; */
  box-shadow: 0 0 15px rgba(0,0,0,0.75);
  max-width: 90%;
}

#video .wrap-title{
	position: relative;
}

#video .wrap-title .filled-content {
	position: absolute;
	left: 0;
	right: 0;
	font-size: 110px;
	top: -25px;
	line-height: 1;
	font-family: var(--font-title);
	text-transform: uppercase;
}

.filled-content{
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(255, 255, 255, 0.4);
	color: transparent;
	text-shadow: none;
}
/*-----------------*/
/* SECTION MASSAGES ACCUEIL */
/*-----------------*/
.home #massages{
	padding-top: 100px;
}


#massages ul{
	counter-reset: section;
	/* padding: 20px 0; */
	overflow: hidden;
}
#massages .massages-img{
	position: relative;
}

#massages .massages-img .blocthumb{
	height: 500px;
}

#massages .massages-content{
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	width: auto;
	transform-origin: 0 top;
	text-align: left;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.7);
	clip-path: inset(0 100% 0 0);
	-webkit-clip-path: inset(0 100% 0 0);
	transition: .3s;
	bottom: 0;
	left: 0;
	padding: 30px 40px;
	z-index: 20;
}

#massages .massages-content h3{
	margin: 0 0 20px 0;
	font-size: 25px;
	color: var(--white);
}

#massages .massages-content h3 a{
	color: var(--white);
}


#massages .massages-img a{
	display: block;
	position: relative;
}

#massages .massages-img a:before{
	font-size: 335px;
	position: absolute;
	top: 0;
	right: 0;
	content: "0" counter(section);
	counter-increment: section;
	line-height: .79em;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: rgba(255, 255, 255, .5);
	color: transparent;
	-webkit-animation: someanimationz .5s forwards;
	animation: someanimationz .5s forwards;
	z-index: 10;
	font-family: var(--font-bold);
}

#massages .massages-img a:after{
	content: "";
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    transition: .3s;
}

#massages .bloc_inner_wpp:hover .massages-img a:after{
	background-color: rgba(230, 0, 126, 0.5);
}
#massages .bloc_inner_wpp:hover .massages-img a:before{
	-webkit-animation: someanimation .5s cubic-bezier(.35,.86,.56,.81) forwards;
    animation: someanimation .5s cubic-bezier(.35,.86,.56,.81) forwards;
}
#massages .bloc_inner_wpp{
	position: relative;
	box-sizing: border-box;
	z-index: 10;
	overflow: hidden;
}
#massages .bloc_inner_wpp:hover .massages-content{
	z-index: 20;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
}
@-webkit-keyframes someanimation {
    0% {
        opacity: 1;
        top: 0
    }
    40% {
        opacity: 0;
        top: -5%
    }
    41% {
        bottom: -10%;
        top: initial;
        opacity: 0;
        -webkit-text-stroke-color: rgba(0, 0, 0, .3);
    }
    100%,
    80% {
        bottom: 0;
        top: initial;
        opacity: 1;
        -webkit-text-stroke-color: rgba(0, 0, 0, .3);
    }
}

@keyframes someanimation {
    0% {
        opacity: 1;
        top: 0
    }
    40% {
        opacity: 0;
        top: -5%
    }
    41% {
        bottom: -10%;
        top: initial;
        opacity: 0;
        -webkit-text-stroke-color: rgba(0, 0, 0, .3);
    }
    100%,
    80% {
        bottom: 0;
        top: initial;
        opacity: 1;
        -webkit-text-stroke-color: rgba(0, 0, 0, .3);
    }
}
@-webkit-keyframes someanimationz {
    0% {
        bottom: 0;
        top: initial;
        opacity: 1
    }
    50% {
        bottom: -5%;
        top: initial;
        opacity: 0
    }
    51% {
        top: -5%;
        opacity: 0
    }
    100% {
        top: 0;
        opacity: 1
    }
}

@keyframes someanimationz {
    0% {
        bottom: 0;
        top: initial;
        opacity: 1
    }
    50% {
        bottom: -5%;
        top: initial;
        opacity: 0
    }
    51% {
        top: -5%;
        opacity: 0
    }
    100% {
        top: 0;
        opacity: 1
    }
}

/*-----------------*/
/* SHARE */
/*-----------------*/
#share{background-color: var(--title-color);}
#share .sociblock .share-buttons a{
	padding: 70px 70px;
	box-sizing: border-box;
	width: calc(100% / 5);
	text-align: center;
}
#share .sociblock .share-buttons a svg{
	width: 30px;
	height: 30px;
	margin: auto;
}
#share .sociblock .share-buttons span {
    display: none;
}
#share .sociblock .share-buttons a:first-child{background-color: #3b5999;}
#share .sociblock .share-buttons a:nth-child(2){
	background-color: #55acee;
}
#share .sociblock .share-buttons a:nth-child(3){
	background-color: #dd4b39;
}
#share .sociblock .share-buttons a:nth-child(4){
	background-color: #0077B5;
}
#share .sociblock .share-buttons a:nth-child(5){
	background-color: #bd081c;
}

#share .icones{
	flex: 1 1 100%;
}
/*-----------------*/
/* SECTION SPORTS ACCUEIL */
/*-----------------*/
.home #sports{
	 background: rgba(0, 0, 0, 0) url(../images/bg-sports.jpg);
	 background-repeat: no-repeat;
	 background-attachment: fixed;
	 background-position: 50% 0;
	 background-size: cover;
	 padding: 150px 0 200px;
	
}

#sports{
	 position: relative;
}

#sports .prev,
#sports .next,
#sports .play{
	display: none;
}

.rotate-elem{
	position: absolute;
	overflow: hidden;
	left: 0;
	bottom: 0;
	height: 200px;
	width: 100%;
}
.rotate-elem:after{
	content: "";
	background-color: var(--white);
	position: absolute;
	width: 120%;
	left: -10%;
	height: 190px;
	bottom: -100px;
	transform: rotate(-2deg);
}
.home #sports:before{
	background: #000;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.8;
    position: absolute;
    top: 0;
    width: 100%;
}
#sports .bloc_wpp-sports{
    position: relative;
}
#sports .bloc_wpp-sports .bloc_inner_wpp{
position: relative;
    width: 100%;
    display: inline-block;
    transform: scale(1);
    transition: all 0.5s ease 0s;
}
#sports .sports-img a{
	display: block;
	position: relative;
}

#sports .sports-img a:after{
	content: "";
	color: #fff;
	cursor: pointer;
	position: absolute;
	top: 45%;
	left: 45%;
	font-size: 30px;
	transition: all 0.5s ease 0s;
	opacity: 0;
	top: 40%;
	width: 40px;
	height: 40px;
	background-image: url(../images/icons/more.svg);
	background-position: center;
	background-size: contain;
	z-index: 2;
}

#sports .sports-img .sports-icon{
	color: #fff;
	cursor: pointer;
	position: absolute;
	top: 45%;
	left: 45%;
	font-size: 30px;
	transition: all 0.5s ease 0s;
	opacity: 0;
	top: 40%;
	width: 40px;
	height: 40px;
	background-image: url('../images/icons/more.svg');
	background-position: center;
	background-size: contain;
	z-index: 2;
}

#sports .bloc_wpp-sports .bloc_inner_wpp .sports-img a:before{
	background: rgba(230, 0, 126, 0.6);
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all 0.5s ease 0s;
	z-index: 1;
}
#sports .blocthumb{
	height: 450px;
}
#sports .sports-overlay{
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0%;
    opacity: 0;
    transition: all 0.5s ease 0s;
    z-index: 1;
}

#sports .sports-overlay h3 a{
	    color: #fff;
	    
	    
}
#sports .sports-overlay h3 {
	font-size: 25px;
	margin-bottom: 15px;
	    line-height: 1;
}

#sports .bloc_wpp-sports .bloc_inner_wpp:hover .sports-img a:before{
	opacity: 1;
}

#sports .bloc_wpp-sports .bloc_inner_wpp:hover .sports-overlay{
	bottom: 7%;
    opacity: 1;
}
#sports .bloc_wpp-sports .bloc_inner_wpp:hover{
	transform: scale(0.9);
}

#sports .bloc_wpp-sports .bloc_inner_wpp:hover .sports-img a:after{
	opacity: 1;
    top: 45%;
}
#tarifs{
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}
#tarifs .item-tarifs:nth-child(2n){flex-direction: row-reverse;}

#tarifs .item-tarifs .element-img{
	position: relative;
}

#tarifs .item-tarifs .element-content{
    box-sizing: border-box;
    padding: 100px 50px;
}

#tarifs .item-tarifs .element-img img{
	position: absolute;
	left: 0;
	top: 0;
}
#tarifs .item-tarifs tr{
	border: 1px solid #e5e5e5;
}

#tarifs .item-tarifs tr td{
	border-left: 1px solid #e5e5e5;
	padding: 7px 10px;
}
#tarifs .item-tarifs tr td:not(:last-of-type) strong{
	letter-spacing: 1px;
	font-family: var(--font-bold);
	font-size: 18px;
	color: var(--black);
	line-height: 1.4;
	display: inline-block;
}
#tarifs .item-tarifs tr td:last-of-type{
	border-left: none;
}
#tarifs .item-tarifs tr td:last-of-type strong{
	color: var(--primary-bgcolor);
}



#tarifs .item-tarifs em{
	font-size: 14px;
}





/*-----------------*/
/* SLIDER ACTU */
/*-----------------*/
#slideactu{
	position: relative;
}

#slideactu .title small{
	color: var(--white);
}

#backgroundSlideactu {
    width: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  
}

#backgroundSlideactu .background-item:before,
#backgroundSlideactu .default-item:before{
    content: "";
    position: absolute;
    background: var(--black);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: .5;
}
#backgroundSlideactu .default-item{
	 background-image: url('../images/bg-news.jpg');
 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
	  position: absolute;
    width: 100%;
    height: 100%;
}


#backgroundSlideactu .background-item{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transform: scale(.99);
    -ms-transform: scale(.99);
    transform: scale(.99);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transition: opacity 3s cubic-bezier(.19,1,.22,1) 0ms , -webkit-transform 2s cubic-bezier(.19,1,.22,1) 0ms;
    transition: opacity 3s cubic-bezier(.19,1,.22,1) 0ms , -webkit-transform 2s cubic-bezier(.19,1,.22,1) 0ms;
    -o-transition: opacity 3s cubic-bezier(.19,1,.22,1) 0ms , transform 2s cubic-bezier(.19,1,.22,1) 0ms;
    transition: opacity 3s cubic-bezier(.19,1,.22,1) 0ms , transform 2s cubic-bezier(.19,1,.22,1) 0ms;
    transition: opacity 3s cubic-bezier(.19,1,.22,1) 0ms , transform 2s cubic-bezier(.19,1,.22,1) 0ms , -webkit-transform 2s cubic-bezier(.19,1,.22,1) 0ms;
}



#backgroundSlideactu .background-item.active, #backgroundSlideactu .background-item.on {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}



#slideactu .ckslidercontrols .prev,
#slideactu .ckslidercontrols .next{
	
	
	height: 50px;
	width: 50px;
	background-size: 14px;
top: auto;bottom: -25px;transform: none;}
#slideactu .ckslidercontrols .prev{
	left: 40px;}
#slideactu .ckslidercontrols .next{
	right: 40px;
}
.wrapper_slider{	
	animation-fill-mode: forwards;
	width: calc(100% / 3);
	position: relative;
    overflow: hidden;
    min-height: 800px;
	min-width: calc(100% / 3)!important;
}




.wrapper_inner_slider{
   position: relative;
   display: flex;
   align-items: stretch;
height: 100%;}


.thumbnail_slider{width: 40%;}

.thumbnail_slider a{
	display: block;
	height: 100%;
	position: relative;
}





.img_thumbnail_slider{
    width: 100%;
    object-fit: cover;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}


.content_slider{
	padding: 50px 30px;
    box-sizing: border-box;
    position: absolute;
    z-index: 4;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 3px var(--black);
color: var(--white);}






.title_slider h2 {
	font-size: 32px;
}



.title_slider a{
	color: var(--white);
}

.title_slider a:hover{
	color: var(--primary-bgcolor);
}


.body_slider{
	position: relative;
	font-size: 15px;
    line-height: 1.6;
    max-width: 400px;
    margin: 30px auto 0;
    
    
    
}


.body_slider .next_slider{
	margin-top: 30px;
}

/*-----------------*/
/* PRESTATIONS */
/*-----------------*/
.vague {
    position: absolute;
    left: 0;
    bottom: -100px;
    width: 100%;
    z-index: 1;
}

.vague.top{
	 top: -100px;
	 bottom: auto;
	transform: scale(-1);
}

.vague img {
    height: 250px;
    width: 100%;
}

#prestations {
	position: relative;
}
.home #prestations {
	padding: 50px;
	/* background-color: var(--tertiary-bgcolor); */
	/* background-image: url(../images/pattern.png); */
}
.home #prestations > * {
	position: relative;
	z-index: 50;
}





.nohome #prestations{
	padding: 0;
	background: none;
}


#prestations .widget_parentpage > li{
	box-sizing: border-box;
	height: 600px;
	position: relative;
	transition: .3s;
	transition: all 0.4s ease;
pointer-events: initial;}


#prestations .widget_parentpage li:hover .liresuite .arrowright{
	background-image: url(../images/icons/arrowright-white.svg);
}


#prestations .image_content {
    height: 100%;
    display: block;
    cursor: pointer;
    z-index: 0;
    position: relative;
}

#prestations .content-presta{
	box-sizing: border-box;
	position: absolute;
	z-index: 4;
	bottom: 15px;
	left: 0;
	right: 0;
	font-size: 15px;
	line-height: 1.7;
	max-width: 500px;
	padding: 40px;
}

#prestations .blocthumb:before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 0;
	background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

#prestations .wrap-presta{
	position: relative;
    z-index: 7;
}




#prestations .blocthumb{
	 height: 100%;
	 position: relative;
	 transition: 250ms all ease-in-out;
	 z-index: 1;
}




#prestations h3 {
  font-size: 34px;
  margin-bottom: 15px;
  margin-top: 0;
}
.nohome #prestations h3 {
	font-size: 26px;
}

#prestations h3 a {
	color: var(--white);
	text-shadow: 0 0 8px rgb(0 0 0 / 50%);
}
#prestations .content_link{
	display: block;
	margin-bottom: 30px;
	color: var(--white);
	text-shadow: 0 0 8px rgb(0 0 0 / 50%);
}

#prestations .widget_parentpage li .bloc_inner_wpp {
	transition: 250ms all ease-in-out;
	position: relative;
	height: 100%;
}



/*-----------------*/
/* SECTIONS */
/*-----------------*/
#sections{
    position: relative;
overflow: hidden;}


.sectionsbloc{
	position: relative;
	display: flex;
	margin: 150px 0;
}


.sectionsbloc:first-child{
	margin: 0;
}


.sectionsbloc.odd{
    flex-direction: row-reverse;
    
}

.section_thumb{
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
  position: relative;
}

.section_thumb .blocthumb {
    height: 110%;
position: relative;width: 100%;}

.section_thumb .blocthumb img{
	position: absolute;
	left: 0;
	top: 0;
}


.section_txt{
    width: 40%;
}

.section_txt .wrap-text{
	 color: var(--text-color);
	 padding: 100px 60px;
	 max-width: 800px;
	 position: relative;
	 
	 margin: auto;
	 z-index: 1;
}


.buttons-wrap{
	margin-top: 50px;
}

.section_txt .wrap-text .arrowlink{
	margin-top: 20px;
}



.sectionsbloc h2{
	margin-top: 0;
}


.sectionsbloc.section_num0{flex-direction: column;}
.sectionsbloc.section_num0 .section_thumb{
	width: 100%;
	height: 500px;
}

.sectionsbloc.section_num0 .section_thumb .title{
	position: absolute;
	bottom: 40px;
margin: 0 auto;max-width: 1200px;left: 20px;right: 20px;}
.sectionsbloc.section_num0  .section_txt {
	width: 100%;
}
.sectionsbloc.section_num0  .section_txt:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: url(../images/mask.png) no-repeat  center;
	opacity: 0.05;
	z-index: -1;
}
/* .sectionsbloc.section_num1  .section_txt:before,
.sectionsbloc.section_num3  .section_txt:before  {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: url(../images/mask-left.png) no-repeat  left;
	opacity: 0.05;
	z-index: -1;
}

.sectionsbloc.section_num2  .section_txt:before,
.sectionsbloc.section_num4  .section_txt:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: url(../images/mask-right.png) no-repeat  right;
	opacity: 0.05;
	z-index: -1;
} */



.sectionsbloc.section_num0 .section_txt .wrap-text{
	max-width: 1200px;
padding: 100px 40px 150px;}


.sectionsbloc.section_num0 .section_thumb .blocthumb{
	height: 130%;
	
}

.sectionsbloc.section_num0 .section_thumb .blocthumb:before{
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(rgb(0 0 0 / 0%), hsl(0deg 0% 0% / 70%));
    z-index: 1;
}

/*-----------------*/
/* WIDGET ELEMENT */
/*-----------------*/


.widget_element li{
    position: relative;
    padding: 20px!important;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.widget_element li .wrap-element{
	transition: all 1s cubic-bezier(.25,.8,.25,1);
    border: 1px solid #f2f2f2;
    padding: 16px;
    position: relative;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--white);
    border-radius: 5px;

width: 100%;}
.nohome .widget_element li{
	border: none;
}
.widget_element img.contain{
    max-width: 100%;
    height: auto;
    max-height: 80px;
    transition: 250ms all ease-in-out;
    filter: brightness(0) invert(1);
}

.widget_element img {
    max-width: 81%;
    height: auto;
    max-height: 70px;
}

.widget_element a{
    /* display: block; */
    /* width: 100%; */
    /* height: 100%; */
    position: relative;
    background: none!important;
    border: none!important;
}

.widget_element a:hover .element-title{
	opacity: 1;
}

.widget_element h3,
.widget_element h2{
	display: none;
	/* font-size: 25px; */
	/* color: #333; */
	/* background: #fff; */
	/* box-sizing: border-box; */
	/* line-height: 100%; */
	/* text-decoration: none; */
	/* display: block; */
	/* width: 90%; */
	/* margin: auto; */
}

.widget_element .element-title{
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #ffffffe3;
      padding: 10px;
      opacity: 0;
      pointer-events: none;
      transition: 0.5s all ease;
      /* font-size: 14px; */
      /* text-align: center; */
      /* line-height: 160%; */
      display: flex;
      justify-content: center;
      align-items: center;
}


.widget_element li:hover .element_content,
.widget_element li:hover .liresuite a,
.widget_element li:hover .gotolink a{
	opacity:1;
}

.widget_element .liresuite a{
	line-height:120%;
	padding: 10px;
	box-sizing: border-box;
	color: var(--primary-txtcolor);
	opacity:0;
	transition:0.5s all ease;
}

.widget_element .liresuite{
	position: absolute;
	bottom: 20px;
	right: 20px;
}

.widget_element .gotolink {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    align-items: center;
    transition: all .25s cubic-bezier(.3,.3,0,.8);
}


.widget_element .gotolink a{opacity: 0;visibility: hidden;color: var(--black)!important;font-size: 12px;font-weight: 700;text-transform: uppercase;transform: translateY(16px);transition: all .25s cubic-bezier(.3,.3,0,.8);font-family: var(--font-bold);display: block;height: 100%;display: flex;align-items: center;justify-content: center;}
.widget_element li:hover .gotolink {
    background-color: var(--white);
}
.widget_element li:hover .gotolink a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/*-----------------*/
/* CONTENT */
/*-----------------*/


#content{
	position: relative;
}

#contentPage {
   padding: 120px 30px 100px;
   position: relative;
}
#contentPageBis {
    padding: 100px 30px 100px;
}
#contentPage.specialIntro{
	padding: 100px 30px;
}

.col-imgPage .blocthumb{
	left: 10%;
	top: -239px;
	width: 40%;
	height: 900px;
	position: absolute;
	z-index: 10;
}

.float-form{
	width: 400px;
	float: right;
	margin-left: 50px;
	margin-bottom: 30px;
	box-shadow: 0 0 30px rgba(0,0,0,0.21);
	border-radius: 15px;
	overflow: hidden;
}

.float-form .cekome_form textarea{
	height: 150px;
}

.float-form .wrapper_form{
	margin-top: 15px;
}


.float-form .form-wrap .landing_form{padding: 0 20px 30px;}

.float-form .landing_labelBig{
	background-color: var(--secondary-bgcolor);
	color: var(--white);
	padding: 20px 15px;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.message-fb{
	background-color: var(--tertiary-bgcolor);
	padding: 50px;
	box-sizing: border-box;
	margin-top: 50px;
	display: flex;
	align-items: center;
	box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
}

.message-fb .sociblock .share-buttons a{
	min-width: auto;
}
.message-fb a:hover{
	color: var(--secondary-bgcolor);
}
.message-fb .sociblock .share-buttons a svg{
	width: 50px;
}

.message-fb #noshare span{
    display: none;
}

@media(max-width:980px){
	#pageContent #content .wrappercontent{
		grid-template-areas: 
			"contentTitle"
			"contentPage"
			"contentForm"
			;
		grid-template-columns: 1fr;
		grid-template-rows: min-content repeat(2, minmax(min-content, auto));
		grid-column-gap: 0;
		grid-gap: 30px;
	}
}

.macaron{
	float: right;
	width: 260px;
	margin-left: 20px;
	margin-bottom: 10px;
}

.grid-lines{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

/*----to top style----*/
.to-top.fixed {
	opacity: 1;
	bottom: 50px;
}
.to-top {
	background: var(--primary-bgcolor);
	bottom: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	color: #fff;
	display: block;
	font-size: 15px;
	height: 50px;
	line-height: 48px;
	opacity: 0;
	position: fixed;
	right: 20px;
	text-align: center;
	transition: 1s ease-in-out;
	width: 50px;
	z-index: 333;
	-webkit-transition: 1s ease-in-out;
	border-radius:100px;
	overflow:hidden;
	-webkit-animation: pulse 2s infinite;
	-o-animation: pulse 2s infinite;
	animation: pulse 2s infinite;
	display: flex;
	align-items: center;
	justify-content: center;
}

.to-top img{
	width: 20px;
}
.to-top:focus{color:#fff;}
.to-top:hover{color:#fff;}
.to-top::before {
	-webkit-transform: scale(0);
	background: var(--secondary-bgcolor) none repeat scroll 0 0;
	border-radius: 200px;
	content: "";
	display: block;
	height: 200px;
	left: -50%;
	margin-top: -100px;
	position: absolute;
	top: 50%;
	transition-duration: 0.8s;
	transition: all 0.4s ease-out 0s;
	width: 200px;
	z-index: -1;
	-ms-transform: scale(0);
	-webkit-transition-duration: 0.8s;
	-webkit-transition:all 0.4s ease-out 0s;
	opacity:0.3;
	transform: scale(0);
}
.to-top::after {
	-webkit-transform: scale(0);
	background: var(--secondary-bgcolor)  none repeat scroll 0 0;
	border-radius: 200px;
	content: "";
	display: block;
	height: 200px;
	left: -50%;
	margin-top: -100px;
	position: absolute;
	top: 50%;
	transition: all 0.4s ease-in 0s;
	width: 200px;
	z-index: -1;
	-ms-transform: scale(0);
	-webkit-transition:all 0.4s ease-in 0s;
	opacity:0.3;
	transform: scale(0);
	transition-delay:0.3s;
}
.to-top:hover::after,.to-top:hover::before{
	-webkit-transform: scale(4);
	-ms-transform: scale(4);
	opacity:1;
	transform: scale(4);
}


.grid-lines > div{
	display: block;
    float: left;
    height: 100%;
    border-left: 1px solid #f4f5fa;
    box-sizing: border-box;
    width: 16.666%;
}

.grid-lines.light{
	position: absolute;
	z-index: 0;
}
.grid-lines.light > div{
	border-left-color: rgba(105,105,105,.3);
}

.grid-lines > div:last-child{
	border-right: 1px solid #f4f5fa;
}

.nohome #content.alternativeContent{
	padding: 100px 15px;
}


.contentContact #contentPage > .wrappercontent {
    display: grid;
    grid-template-areas: "contentTitle contentTitle"
  "contentCoordonnees contentForm";
    grid-template-columns: 1fr 2fr;
    grid-template-rows: min-content repeat(2, minmax(min-content, auto));
    align-items: center;
    grid-column-gap: 70px;
}

.home #content{
	padding: 100px 30px 150px;
	color: var(--white);
	z-index: 10;
	background-color: var(--tertiary-bgcolor);
	background-image: url(../images/pattern.png);
	overflow: hidden;
}
.home #content:after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: url(../images/mask.png) no-repeat  center;
	/* object-fit: contain; */
	opacity: 0.05;
	z-index: -1;
	height: 2400px;
	/* width: 100%; */
	/* display: block; */
}


.home #content .tc_content a:not([class*="button"]), 
.home #content .tc_content a:not([class*="button"]) strong{
	
background-image: linear-gradient(to bottom, transparent 20%, var(--white) 21% );}
.home #content .tc_content a:not([class*="button"]):hover, 
.home #content .tc_content a:not([class*="button"]):hover strong{
	color: var(--white);
}
.home #content .col-title, .home #content .col-content{
	/* max-width: 800px; */
	}

#blocgridImg-wrapper{
	padding: 100px 20px;
	background-color: var(--tertiary-bgcolor);
	background-image: url(../images/pattern.png);
}
#content-wrapper{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

#content-wrapper .item-img{
	overflow: hidden;

}

#content-wrapper .item-img .blocthumb{
	position: relative;
	width: 100%;
	height: 100%;
}
#content-wrapper .item-img img{
	height: 110%;
position: absolute;
    left: 0;
    top: 0;}

#content-wrapper .item-img.first{
    padding-right: 50px;
    width: 52%;
}
#content-wrapper .item-img.first {height: 630px;}
#content-wrapper .item-img.secondary {
	width: 48%;
}
#content-wrapper .item-img.secondary  {
height: 777px;
}

#content-wrapper .item-content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: #fff;
	padding: 40px 30px;
	box-shadow: 0 15px 25px rgb(0 0 0 / 8%);
	z-index: 10;
	max-width: 400px;
	width: 100%;
	line-height: 1.6;
}

#content-wrapper .item-content .title{
	margin-bottom: 30px;
}
#content-wrapper .item-content .button{
	margin-top: 30px;
}






#contentPage:before{
	top: -2px;
	transform: scale(-1);
}

.home #content .home-content .tc_content{
	box-sizing: border-box;
	padding: 0 0 0 70px;
}


#content .home-img{
	width: 25%;
	position: relative;
}



.home #content .home-content{
	flex: 0 0 53.333333%;
	max-width: 53.333333%;
}




.home #content .blocthumb{
	box-sizing: border-box;
	position: relative;
	height: 100%;
}



#content.hasnocontent{padding:0;}

.alternativeContent .intro{
	max-width: 80%;
	margin: 0 auto 30px;
}




.citationsHome{
	background-color: var(--black);
	box-sizing: border-box;
	padding: 100px 15px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

#citationsHomeBis{
	background-color: var(--primary-bgcolor);
}


.citationsHome blockquote {max-width: 650px;margin: auto;}

/*-----------------*/
/* HOME HEADER */
/*-----------------*/

.line-animated {
    width: 68%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}
.line-animated>span {
    background: rgba(255, 255, 255, 0.09);
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0%;
    top: 0;
}

.line-animated>span:before {
    content: "";
    background: var(--primary-bgcolor);
    width: 4px;
    height: 10px;
    position: absolute;
    top: 0;
    left: -2px;
    z-index: -1;
    -webkit-animation: line-animation 9s linear infinite alternate;
    animation: line-animation 9s linear infinite alternate;
}

.line-animated>span:nth-child(2) {
    left: 25%;
}

.line-animated>span:nth-child(2):before {
    content: "";
    -webkit-animation: line-animation 9s linear 1s infinite alternate;
    animation: line-animation 9s linear 1s infinite alternate;
}

.line-animated>span:nth-child(3) {
    left: 50%;
}

.line-animated>span:nth-child(3):before {
    content: "";
    -webkit-animation: line-animation 9s linear 2s infinite alternate;
    animation: line-animation 9s linear 2s infinite alternate;
}

.line-animated>span:nth-child(4) {
    left: 75%;
}

.line-animated>span:nth-child(5) {
    left: 100%;
}

.line-animated>span:nth-child(5):before {
    content: "";
    -webkit-animation: line-animation 9s linear 1s infinite alternate;
    animation: line-animation 9s linear 1s infinite alternate;
}

@-webkit-keyframes line-animation {
    from {
        top: 0;
    }

    to {
        top: 100%;
    }
}

@keyframes line-animation {
    from {
        top: 0;
    }

    to {
        top: 100%;
    }
}
 #homeHeader{
     position: relative;
     z-index: 0;
	 min-height: 950px;
	
 }

#homeHeader, #h1{
	-webkit-mask: url(../images/bottomCurveFull.svg);
    mask: url(../images/bottomCurveFull.svg);
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 92% 100%;
    -webkit-mask-position: 92% 100%;
z-index: 3;overflow: hidden;}





 #homeHeader .wrap-border{
 	position: absolute;
 	display: block;
 	width: 100%;
 	left: 0;
 	overflow: hidden;
 	color: var(--white);
 	background-position: center;
 	background-repeat: repeat-x;
 	bottom: 0;
 	height: 80px;
 	z-index: 1;
 }
 #homeHeader .border{
 	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    fill: var(--white);
    transition-property: fill;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
 }

  #homeHeader .border .shape {
    fill: currentColor;
    transition-property: fill,opacity;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
}
#homeHeader .innerText, #h1 .innerText{
	position: absolute;
	z-index: 4;
	color: var(--white);
	box-sizing: border-box;
	left: 100px;
	right: 100px;top: 0;
	
	height: 100%;
	display: flex;
	align-items: center;
	
	
}

#homeHeader .innerText .button-wrap {
    opacity: 0;
    transform: translateY(100px);
    transition: .55s cubic-bezier(.4,0,.2,1) .95s;
    transition-delay: 1400ms;
    display: flex;
    align-items: center;
    
margin-top: 50px;}
body.loaded #homeHeader .button-wrap {
    opacity: 1;
    transform: translateY(0);
}
#h1 .innerText{
	/* left: 0; */
	/* bottom: 0; */
	/* text-align: center; */
	/* padding: 0 20px 40px; */
}

#h1 .section-title{
	margin-bottom: 0;
}

#h1 .section-title .no_line {
	border-color: var(--secondary-bgcolor);
	position: absolute;
	left: 50%;
	bottom: -160px;
	transform: translateX(-50%);
	z-index: 1;
}
#homeHeader .innerTitle p, #h1 .innerTitle p{
	font-family: var(--font-title);
	
	line-height: 1.3;
	opacity: 0;
	transform: translateY(30px);
	transition: .55s cubic-bezier(.4,0,.2,1) .95s;
	position: relative;
	font-size: 55px;
	
	
text-shadow: 1px 1px 6px rgb(0 0 0 / 80%);max-width: 1000px;}
#homeHeader .innerTitle p .tac {
	display: block;
}
#homeHeader .innerTitle strong, #h1 .innerTitle strong{
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 20px;
	display: block;
}

#homeHeader .innerTitle  .main_title{
	transition: .55s cubic-bezier(.4,0,.2,1) .95s;
	transition-delay: 500ms;
	margin-bottom: 60px;
	opacity: 0;
	transform: translateY(30px);
}

#homeHeader .innerTitle span.color{
	background: radial-gradient( var(--quaternary-bgcolor), var(--tertiary-bgcolor));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	text-shadow: none;
}



#homeHeader .innerTitle p span.subtitle {
	border-bottom: solid 1px;
	padding-bottom: 2px;
}
#homeHeader .innerTitle p span.full,
#h1 .innerTitle strong:first-letter{
	color: var(--white);
}

#homeHeader .innerTitle p span.space{
	margin: 0 -20px;
}


#homeHeader .innerContent{
	margin: 0 auto 50px;
	width: 710px;
	/* margin: auto; */
	line-height: 1.47;
	font-size: 26px;
	text-shadow: 1px 1px 1px var(--black);
}

#homeHeader .innerImg, #h1 .innerImg{
	position: absolute;
	top: 0;
	right: 0;
}

#homeHeader .innerImg .imageAnimation, #h1 .innerImg .imageAnimation{
	width: 100%;
	height: 100%;
}

#homeHeader .imageOverlay, #h1 .innerImg .imageOverlay{
	background-color: aliceblue;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	top: -5px;
	height: calc(100% + 10px);
	z-index: 4;
	transition: .75s cubic-bezier(.4,0,.2,1) .25s;
	position: absolute;
}

#homeHeader .innerImg .imageDiapo{
	height: 900px!important;
}

#homeHeader .smallImage, #h1 .smallImage{
	position: absolute;
	bottom: -50px;
	right: -75px;
	width: 400px;
	height: 400px;
	box-shadow: 2.5px 4.3px 62px 0 rgba(0,0,0,.22);
	transform: scale(0);
	transition: .55s cubic-bezier(.4,0,.2,1) .75s;
	z-index: 4;
}

#homeHeader .smallImage img, #h1 .smallImage img{
	object-fit: cover;
	width: 100%;
	display: block;
	opacity: 0;
	/* max-width: 100%; */
	height: 100%;
}

body.loaded #homeHeader .innerTitle p, body.loaded #homeHeader .innerTitle .main_title, body.loaded #homeHeader .innerTitle #logo-wrapper{
	opacity: 1;
	transform: translateY(0);
}
body.loaded #homeHeader .innerTitle p:after {
	height: 110px;
	opacity: 1;
}

body.loaded #homeHeader .smallImage, body.loaded #h1 .smallImage{
	transform: scale(1);
}

body.loaded #homeHeader  .imageOverlay, body.loaded #h1 .innerImg .imageOverlay{
	left: 100%;
}

body.loaded #homeHeader .smallImage img, body.loaded #h1 .smallImage img{
	opacity: 1;
}
/*-----------------*/
/* CONTENT HOME */
/*-----------------*/

#banner{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 70vh;
	color: var(--white);
	background-attachment: fixed;
	min-height: 400px;
	z-index: 1;
	position: relative;
	background-image: url('../images/default-bg.jpg');
	max-height: 1000px;
}



body:not(.single) #banner p,  body:not(.single) #banner h1, #h1 p{
	/* margin-top: -10%; */
}

body:not(.single) #h1 .wrap-contentPage h1{
	margin-top: -4%;
}
body:not(.single) #banner .button, 
body:not(.single) #h1 .button{
	margin-top: 20px;
}

#banner p span{
	font-size: 50px;
}



#banner .wrappercontent,
#h1 .wrappercontent{
	/* height: 100%; */
}

.cekome-stars-icon{
	margin-bottom: 15px;
	/* margin-top: 65px; */
}
/*-----------------*/
/* H1 */
/*-----------------*/
#h1{
	position: relative;
	overflow: hidden;
	z-index: 1;
}

#h1 .innerImg{
	position: relative;
	overflow: hidden;
}

#h1 .innerImg:after{
	/* content: ""; */
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
}

#h1 .innerImg .imageAnimation{
	height: 55vh;
	min-height: 400px;
}

#h1 .innerImg .imageAnimation .imageDiapo, #h1 .innerImg .imageAnimation .blocthumb{
	height: 100%;
}

#h1 .innerImg .imageOverlay, #homeHeader .imageOverlay{
	width: 110%;
	background-color: var(--primary-bgcolor);
}


#h1 h1{
	color: var(--white);
	text-shadow: 1px 1px 1px var(--black);
	line-height: 1.1;
}

body.loaded #h1 h1{
	opacity: 1;
    transform: translateY(0);
}

#h1.small-banner{
	height: 400px;
	min-height: 400px;
}
#certifications{
	position: absolute;
	top: -100px;
	z-index: 10;
	left: 0;
	right: 0;
}
#certifications ul{
	display: flex;
	align-items: center;
	justify-content: center;
}
#certifications ul li {
	margin: 0 20px;
}


/*-----------------*/
/* TEMPLATE AGENCE */
/*-----------------*/
.mapmaker{
	text-transform: uppercase;
	color: var(--font-title);
	font-family: var(--font-title);
	font-size: 10px;
}

.mapmaker:hover{
	color: var(--primary-bgcolor);
}
#filterwidgetagence{
    text-align: right;
    padding: 10px;
    background: #f0f0f0;
    color: #666;
    border-bottom: 1px solid var(--quaternary-bgcolor);
    font-size:12px;
}
#filterwidgetagence select{
	border:none;
	background:#fff;
	padding:2px 20px 2px 5px;
	box-sizing:border-box;
	border:1px solid #ccc;
}
#contentwidgetagence{
	box-sizing: border-box;
	max-width: 480px;
	margin-left: auto;
	padding: 0 20px 0  70px;
	width: 100%;
}
#listwidgetagence{
   box-sizing: border-box;
}

#listagence{
	 overflow: hidden;
	 /* overflow-y: scroll; */
	 display: flex;
	 justify-content: center;
	 margin-top: 20px;
}

.itemlistwidgetagence{
    padding: 10px;
    box-sizing: border-box;
    line-height: 0;
    flex: 1 1 50%;
}

.itemlistwidgetagence:first-of-type .list_imgagence{border-color: var(--secondary-bgcolor);}
.itemlistwidgetagence:last-of-type .list_imgagence{border-color: var(--tertiary-bgcolor);}
.itemlistwidgetagence.active{
	outline-color: var(--primary-bgcolor)
}


#mapwidgetagence{height: 600px;box-sizing: border-box;padding: 0 30px;}
.list_imgagence{
    height: 150px;
    border: solid 5px;
    width: 100%;
}
.list_infoagence{
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}
.list_imgagence a {
	display:block;
	height: 100%;
}
.itemlistwidgetagence:hover .list_imgagence{
	transition: all 1000ms ease;
    transform: rotateY(180deg);
}
.list_infoagence .title_list_infoagence{font-family: var(--font-bold);margin-bottom: 5px;}
.list_infoagence .tel_list_infoagence a, .list_infoagence .title_list_infoagence a{font-family: var(--font-title);color: var(--title-color);}
.list_infoagence .more_list_infoagence{
    margin-top: 20px;
}

.list_infoagence .tel_list_infoagence{
	margin-top: 10px;
	position: relative;
}




.list_infoagence .tel_list_infoagence a:hover, .list_infoagence .title_list_infoagence a:hover{
	color: var(--primary-bgcolor);
}

/*-----------------*/
/* PAGE CONTENT */
/*-----------------*/
#pageContent{
	position: relative;
}

#contentPage.specialIntro #contentTitle{
	display: flex;
	align-items: center;
}

#contentPage #partenaires{
	margin: 0 -30px 100px;
}


.specialIntro .col-contentPage {
    padding-left: 8%;
}


#headerPage #title:not(.tac) h1, #headerPage #title:not(.tac) p{
	margin: 0;
}

#headerPage #title:not(.tac) h1, #headerPage #title:not(.tac) p{
	/* float: right; */
	max-width: 720px;
	width: 100%;
	padding-left: 0;
	line-height: 1;
}
#headerPage #title{
	padding-bottom: 30px;
}

#imgContent{
	left: 0;
	position: absolute;
	width: 110%;
	top: -190px;
	margin-bottom: -190px;
	z-index: 1;
}

#imgContent .blocthumb, #imgContent #blocmaps{
	position: relative;
	width: 100%;
	height: 430px;
	/* top: 50%; */
	z-index: 10;
	/* margin-bottom: -200px; */
	box-shadow: 0 0 20px rgba(0,0,0,0.5);
	border-radius: 10px 0 0 10px;
	overflow: hidden;
	/* transform: translateY(-50%); */
}

#imgContent #blocmaps{
	height: 500px;
}



#mainTitle{
	width: 60%;
}

#mainTitle h1{
	padding: 20px 50px 30px 15px;
	max-width: 740px;
	width: 100%;
	float: right;
	margin: 0;
}

/*-----------------*/
/* SECTION CONTACT */
/*-----------------*/
#sectionContact #contact{
	background-image: url('../images/bg-pageContact.jpg');
	padding: 310px 15px 100px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 0;
	background-attachment: fixed;
}

#sectionContact #contact:after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
}

#sectionContact #contact h2{
	color: var(--white);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
}



/*-----------------*/
/* REASSURANCE PAGE */
/*-----------------*/

#reassurances{
	padding: 80px 15px;
	position: relative;
	background-color: var(--tertiary-bgcolor);
	background-image: url(../images/pattern.png);
	overflow: hidden;
}

.nohome #reassurances{
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url('../images/bg-reassurances.jpg');
}


#reassurances .with-shape {
    width: 320px;
}



.nohome #reassurances:before{
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	top: 0;
	left: 0;
	opacity: 0.7;
	background-color: var(--black);
}




#reassurances .picto-bloc{
	position: relative;
	z-index: 1;
}


#reassurances .picto-container li svg, 
#reassurances .picto-container li img{
	height: 40px;
	width: 40px;
	max-width: 40px;
	min-width: 40px;
}


#reassurances .picto-container li p span{
	text-transform: uppercase;
	display: block;
	letter-spacing: 3px;
	font-size: 20px;
}




/*-----------------*/
/* SINGLE AGENCE */
/*-----------------*/
#formagence{
    background: var(--secondary-bgcolor);
    color: var(--secondary-txtcolor);
    padding: 30px;
}
#map_agence{
    background: var(--quaternary-bgcolor);
    align-items: stretch;
    color: var(--quaternary-txtcolor);
    padding: 40px;
    box-sizing: border-box;
    height: 100%;
}
#infoagence{
    background: var(--quaternary-bgcolor);
    color: var(--quaternary-txtcolor);
    text-align: center;
    line-height: 160%;
    padding: 20px;
}
#boxlink_agence{
    background: var(--secondary-bgcolor);
    color: var(--secondary-txtcolor);
    padding: 30px;
}
#boxlink_agence a.blink_agence{
	text-decoration: none;
	padding: 5px 10px;
	margin-top: 7px;
	border-bottom: 1px dashed var(--secondary-txtcolor);
	color: var(--secondary-txtcolor);
}

#boxlink_agence a.blink_agence:hover{
	border-bottom: 1px solid var(--secondary-txtcolor);
}

/*-----------------*/
/* CTA */
/*-----------------*/
#cta{
    text-align: center;
    background: #333 url(../images/icons/write.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


.cta_labelBig{
    font-size: 1.4em;
    color: #fff;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    font-weight: bold;
}
.cta_labelSmall{
    font-size: 1em;
    color: #fff;
    padding-bottom: 1em;
}
.cta_buttons{
    margin: 10px 0;
}
#cta_byhoraires{}
#cta_bymail{}
#cta_bytelfixe{}
#cta_bytelport{}


/*-----------------*/
/* Landing Form */
/*-----------------*/
#landingform{
	text-align: center;
	background: #6f6f6f url(../images/icons/landing_mail.svg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}

#landing_listelement{
    box-sizing: border-box;
    
    
text-align: center;}

.landing_labelBig{
    font-family: var(--font-title);
    line-height: 1.2;
    position: relative;
    z-index: 1;
    margin: 0;
}
.landing_labelBig small{
	font-size: 100px;
	font-weight: 400;
	opacity: 0.4;
	position: absolute;
	left: 0;
	right: 0;
	line-height: 1;
	margin: 0;
	padding: 0;
	top: -50px;
	font-family: var(--font-subtitle);
	color: var(--secondary-bgcolor);
	z-index: -1;
}


#contentForm #landing_listelement{
	padding: 0;
}

#contentForm .landing_labelBig{
	margin-bottom: 40px;
}
/*-----------------*/
/* WRAP FORM */
/*-----------------*/
.form-wrap .wrap-fieldset {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form-wrap .wrap-fieldset .blc_text, 
.form-wrap .wrap-fieldset .blc_email, .form-wrap .wrap-fieldset .blc_select, 
.form-wrap .wrap-fieldset .blc_date, .form-wrap .wrap-fieldset .button.cf_submit,
.form-wrap .wrap-fieldset #cptchk-contactFooter, .form-wrap .wrap-fieldset .button.cf_submit, .form-wrap .wrap-fieldset #cptchk-contact{
    flex: 1 1 45%;
    max-width: 45%;
    width: 100%;
    display: inline-block;
    margin: 4px 2%;
}


.form-wrap .wrap-fieldset .blc_textarea, 
.form-wrap .wrap-fieldset .blc_checkbox, 
.form-wrap .wrap-fieldset #cptchk-agence{
    flex: 1 1 94%;
    max-width: 94%;
    width: 100%;
    display: inline-block;
    margin: 0px 2%;
}

.wrap-fieldset>font font, .wrap-fieldset>font {
    width: 100%;
}
	.wrap-fieldset>font input {
    width: 100%!important;
    flex: 1 1 100%;
    max-width: 100%!important;
}
	





.float-form .form-wrap .wrap-fieldset #cptchk-contact, 
.float-form .form-wrap .wrap-fieldset #cptchk-contactFooter, 
.float-form .form-wrap .wrap-fieldset .blc.blc_captcha, 
.float-form .form-wrap .wrap-fieldset .button.cf_submit {
	 flex: 1 1 94%;
	 max-width: 94%;
	 width: 100%;
	 display: inline-block;
	 margin: 4px 2%;
}


.form-wrap .wrap-fieldset .blc_select{
	/* flex: 1 1 45%; */
	max-width: 48%;
	width: 100%;
	display: inline-block;
	margin: 10px 0;
}
.form-wrap .wrap-fieldset .blc_select:last-of-type{
	float: right;
}


.form-wrap .wrap-fieldset #cptchk-contact .blc.blc_captcha,
.form-wrap .wrap-fieldset #cptchk-contactFooter .blc.blc_captcha, 
.form-wrap .wrap-fieldset #cptchk-agence .blc.blc_captcha{
	max-width: 100%;
	margin: 0;
}


.sidebar_wrapper .form-wrap .wrap-fieldset #cptchk-contact,
.sidebar_wrapper .form-wrap .wrap-fieldset .button.cf_submit{
	flex: 1 1 100%;
	/* max-width: 94%; */
	width: 100%;
}

.sidebar_wrapper {
		z-index: 2;
		/* box-shadow: 0 0 30px rgba(0,0,0,0.1); */
		/* border-radius: 10px; */
		/* overflow: hidden; */
	}

	.sidebar-button{
		display: block;
		box-shadow: 0 0 30px rgba(0,0,0,0.2);
	}

	.sidebar_wrapper .landing_labelBig{
		background-image: url(../images/default-banner.jpg);
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
		padding: 30px;
		color: var(--white);
		text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
		text-align: center;
		position: relative;
		z-index: 1;
		/* filter: blur(8px); */
		margin-bottom: 20px;
	}
	.sidebar_wrapper .landing_labelBig:after{
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,.5);
		/* filter: blur(8px); */
	}

	.sidebar_wrapper .landing_form{
		padding: 0 15px 20px;
	}
/*-----------------*/
/* CATEGORY PAGE */
/*-----------------*/
#listarticles .listedarticle{
    position: relative;
}

#listarticles .listedarticle .image_content {
	display: block;
	overflow: hidden;
}

#listarticles .listedarticle .content_news{
	position: absolute;
	bottom: 0;
	box-sizing: border-box;
	padding: 0 20px 40px;
	z-index: 2;
	left: 0;
	right: 0;
	text-align: center;
	overflow: hidden;
	transition: 300ms all ease-in-out;
}

#listarticles .listedarticle:hover .content_news{
	bottom: 45%;
	-webkit-transform: translate(0,50%);
	transform: translate(0,50%);
	-ms-transform: translate(0,50%);
}

#listarticles .listedarticle .image_content img{
	transition: 500ms all ease-in-out;
}


#listarticles .listedarticle .image_content:hover img{
	/* transform: scale(1.2) rotate(5deg); */
	/* opacity: 0.2; */
}
#listarticles .listedarticle .blocthumb{
	 z-index: 1;
	 position: relative;
	 height: 500px;
}

.listedarticle .blocthumb:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 2;
    left: 0%;
    top: 0;
    transition: .3s;
    opacity: 0.4;
    background-color: var(--black);
}


.listedarticle .blocthumb:after{
	position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: 2;
    left: 0%;
    top: 0;
    transition: .3s;
    top: 100%;
    opacity: 0.4;
}

.listedarticle:hover .blocthumb:after{
	top: 0;
	background-color: var(--secondary-bgcolor);
}
#listarticles .listedarticle h2{
   margin: 0;
   left: 10px;
   right: 10px;
   bottom: 20px;
   box-sizing: border-box;
   z-index: 10;
   text-transform: uppercase;
   font-size: 18px;
   text-shadow: 1px 1px 1px rgb(0 0 0 / 60%);
   text-align: center;
   transition: 300ms all ease-in-out;
font-family: var(--font-bold);margin-bottom: 20px;}

#listarticles .listedarticle h2 a{
	color: var(--white);
}

#listarticles .listedarticle .tc_excerpt{
	/* width: 90%; */
	margin: 0 0 80px;
	padding-left: 20px;
	padding-right: 20px;
}

#listarticles .listedarticle h2 a:hover{
    /* color: var(--primary-bgcolor); */
    /* text-decoration: none; */
    /* width: 100%; */
    /* display: block; */
}
#listarticles .listedarticle .tc_content{
    position: absolute;
    background: #fff;
    padding: 0 10px;
    overflow: hidden;
    transition:0.3s all ease;
    z-index:2;
    font-size: 70%;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top center;
}

#listarticles .listedarticle:hover .tc_content{
	box-sizing: border-box;
	opacity: 1;
	transform: scaleY(1);
}
#listarticles .listedarticle:hover .tc_content p{
	margin:10px 0;
}



#backBTsingle{
	font-family: var(--font-bold);
	text-transform: uppercase;
	position: relative;
	display: inline-block;
	max-width: 230px;
	padding-left: 30px;
	margin-bottom: 20px;
	font-size: 14px;
	color: var(--white);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
}

#backBTsingle:after, 
#backBTsingle:before {
	content: "";
	position: absolute;
	transition: .3s;
	top: 50%;
    transform: translateY(-50%);
    display: block;
}

#backBTsingle:before{
    border-width: 5px 8px;
    border-style: solid;
    left: -10px;
    border-color: transparent var(--white) transparent transparent;
    height: 0;
    width: 0;
}

#backBTsingle:after{
    /* color: var(--primary-bgcolor); */
    background: var(--white);
    height: 3px;
    left: 0;
    width: 20px;
    /* text-align: left; */
    /* line-height: 5px; */
    /* font-size: 12px; */
    /* letter-spacing: -5px; */
}

#backBTsingle:hover{
	color: var(--tertiary-bgcolor);
}

#backBTsingle:hover:before{border-color: transparent var(--tertiary-bgcolor) transparent transparent;}
#backBTsingle:hover:after{
	background: var(--tertiary-bgcolor);
}

/*-----------------*/
/* FOOTER */
/*-----------------*/
#footer{
	font-size: 16px;
	z-index: 29;
	
	position: relative;
	color: var(--white);

background-image: url('../images/bg-footer.jpg');background-position: center;background-repeat: no-repeat;background-size: cover;}

#ctaFooter {
   
    position: relative;
    z-index: 1;
}

#ctaFooter .cta-body {
    
   
   
   
    box-sizing: border-box;
    color: var(--white);
    line-height: 1.5;
	padding: 120px 50px 220px;
}


#ctaFooter .cta-coordonnees {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    color: var(--white);
    border-top: solid 1px rgb(255 255 255 / 50%);
}

#ctaFooter .content-cta{
	 background-color: rgb(0 0 0 / 65%);
	 padding: 70px 50px;
	 max-width: 700px;
	 margin: auto;
}

#ctaFooter .cta-body .accroche {
    margin-bottom: 40px;
}
#ctaFooter  .cekome_form .blc_checkbox label a {
	color: var(--light-color);
}
#ctaFooter  .cekome_form .blc_checkbox label a:hover {
	color: var(--white);
}

#ctaFooter .cekome_form label{font-weight: bold;color: var(--white);}

#ctaFooter .cekome_form .blc.focused label {
    color: var(--primary-bgcolor);
    
}

#ctaFooter .cekome_form input[type="text"], 
#ctaFooter .cekome_form input[type="date"],
#ctaFooter .cekome_form input[type="tel"], 
#ctaFooter .cekome_form input[type="email"], 
#ctaFooter .cekome_form input[type="password"], 
#ctaFooter .cekome_form textarea, 
#ctaFooter .cekome_form select {
	
color: var(--white);background-color: rgb(36 36 36);}

#ctaFooter .cta-body .title{
	
margin-bottom: 50px;}
#infotelfixeFooter,
#infotelportFooter, 
#infoouvertureFooter,
#infoadresseFooter{
    color: var(--white);
    line-height: 1.3;
    padding: 20px 30px;
    font-size: 15px;
}
#infotelfixeFooter .wrapperinner, 
#infotelportFooter .wrapperinner, 
#infoouvertureFooter .wrapperinner,
#infoadresseFooter .wrapperinner{
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 15px;
	padding: 5px 10px 5px 30px;
}
#infotelfixeFooter span:not(.br),
#infotelportFooter span:not(.br), 
#infoouvertureFooter span:not(.br),
#infoadresseFooter span:not(.br),
#infotelfixeContact span:not(.br),
#infotelportContact span:not(.br), 
#infoouvertureContact span:not(.br),
#infoadresseContact span:not(.br){
	display: block;
	color: var(--white);
	font-family: var(--font-bold);
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
}

#infotelfixeContact span,
#infotelportContact span, 
#infoouvertureContact span,
#infoadresseContact span{
	color: var(--primary-bgcolor);
}

#infotelfixeFooter .wrapperinner {background-image: url('../images/icons/phone-white.svg');}
#infotelportFooter .wrapperinner {background-image: url('../images/icons/mobile-white.svg');}
#infoouvertureFooter .wrapperinner{background-image: url('../images/icons/clock-white.svg');}
#infoadresseFooter .wrapperinner{background-image: url('../images/icons/map-white.svg');}


#infoadresseFooter, #infotelportFooter, #infotelfixeFooter{border-right: solid 1px rgb(255 255 255 / 50%);}

#infotelfixeFooter a,
#infotelportFooter a, 
#infoouvertureFooter a {
	color: var(--white);
}
#infotelfixeFooter a:hover,
#infotelportFooter a:hover, 
#infoouvertureFooter a:hover{
	color: var(--light-color);
}

#footer:before{
	content: "";
	position:absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(rgb(0 0 0 / 0%), hsl(0deg 0% 0% / 70%));
	
z-index: -1;}


#footer .section-title{
    margin-bottom: 20px;
}
#footer #footerbloc {
    padding: 30px 15px;
    background: var(--black);
    }





/*LOGO*/

#footer #logofooter a{
	display: inline-block;
	margin: auto;
}
#footer #logofooter img{
    width: 150px;
}

#addrfooterBis_txt div{
	margin-bottom: 15px;
}

/*MAPS*/
#footer #mapfooter{
	width:100%;
	/* height: 100%; */
	box-sizing: border-box;
	margin-top: 15px;
}

#footer #logos-list{
	/* display: flex; */
	background-color: var(--white);
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
	width: 100%;
	/* justify-content: center; */
	padding: 30px 0;
}
#footer #logos-list li:not(:last-of-type){
	margin-right: 60px;
}
#footer .maps_canvas{
    min-height: 280px;
    /* outline-style: dashed; */
    /* outline-width: 2px; */
    /* outline-color: var(--quaternary-txtcolor); */
    /* outline-offset: -4px; */
}
#footer .maps_canvas img{
    transition:0.5s all ease;
    object-fit: cover;
}

#footer .maps_canvas:hover img{
	transform: scale(1);
}

/*ADDR FOOTER*/
#footer #addrfooter{
    max-width: 600px;
    padding: 5px 20px;
    box-sizing: border-box;
    /* text-align: center; */
    flex-direction: column;
    color: var(--tertiary-bgcolor);
}




/*NAVIGATION*/
#footer #navfooter{
  box-sizing: border-box;
    display: flex;
    justify-content: center;
    font-size: 13px;
    text-align: center;
    padding: 10px 15px;
}

#footer .titlefooter{font-weight:bold;color: var(--primary-bgcolor);text-transform: uppercase;margin: 0 5px 5px 0px;display: block;border-bottom: 1px dashed #fff;padding-bottom: 5px;letter-spacing: 1px;width: 100%;box-sizing: border-box;}

#footer #navfooter #menu-footer .menu-item{
		margin-right: 20px;
	}
#footer #navfooter a{
    color: var(--white);
    
}

#footer #navfooter a:hover{
	color: var(--light-color);
}

/*COPYRIGHT*/
#footer #footerlinks{
    background-color: var(--primary-bgcolor);
    font-size: 14px;
    text-align: center;
    padding: 5px 5px 5px 5px;
    position: relative;
    z-index: 2;
}
#footer #footerlinks a{
    color: var(--white);
    font-weight: bold;
}

span.br{
	margin: 0 !important;
}

.marque-alsace{
	max-width: 100px;
	margin-top: 50px;
}
