/*-----------------*/
/* VARIABLE */
/*-----------------*/
:root
{
	/*COLORS*/
	--primary-bgcolor: #cdd13a;
	--secondary-bgcolor: #686152;
	--tertiary-bgcolor: #332f27;
	--text-color: #646a75;
	--title-color: #282828;
	--light-color: #ececb7;
	--white: #FFFFFF;
	--black: #000000;

	/*FONTS*/
	--font-alt:AirConditioner, sans-serif;
	--font-title:Capsuula, sans-serif;
	--font-text:Montserrat,sans-serif;
	--font-bold:MontserratBold, sans-serif;
}

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

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

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat-Light.woff') format('woff'),
        url('../fonts/Montserrat-Light.ttf') format('truetype'),
        url('../fonts/Montserrat-Light.svg#Montserrat-Light') format('svg');
    font-weight: 300;
    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;
	font-display: swap;
}




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;
	justify-content: center;
}

.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;
	background: var(--tertiary-bgcolor);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loaded #loader-wrapper {
	visibility: hidden;
	-webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform: translateY(-100%);  /* IE 9 */
	transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */
	-webkit-transition: all 0.3s 1s ease-out;
	transition: all 0.3s 1s ease-out;
}
.loader-grid {
  display: flex;
  flex-direction: column;
  width: 10rem;
  height: 10rem;
  transform: rotate(45deg) scale3D(0.5, 0.5, 0.5);
}

.loader-row {
  display : flex;
  flex: 1;
}

.loader-row .loader-col {
  background-color: var(--primary-bgcolor);
  flex: 1;
  animation: colCubeDelay 1s infinite ease-in-out, colorWheel 4s infinite ease-in-out;
}

.loader-col.pos1 {
  animation-delay: 0.2s; 
  border-radius : 10px 0 0 0;
}

.loader-col.pos2 {
  animation-delay: 0.3s; 
}

.loader-col.pos3 {
  animation-delay: 0.4s;
  border-radius : 0 10px 0 0;
}

.loader-col.pos4 {
  animation-delay: 0.1s; 
}

.loader-col.pos5 {
  animation-delay: 0.2s; 
}

.loader-col.pos6 {
  animation-delay: 0.3s;
}

.loader-col.pos7 {
  animation-delay: 0s; 
  border-radius : 0 0 0 10px;
}

.loader-col.pos8 {
  animation-delay: 0.1s; 
}

.loader-col.pos9 {
  animation-delay: 0.2s; 
  border-radius : 0 0 10px 0;
}


@keyframes colCubeDelay {
  0%, 70%, 100% {
    transform: scale3D(1, 1, 1);
  } 35% {
    transform: scale3D(0, 0, 1);
  } 
}

@keyframes colorWheel {
  0%,8.74% {
    background-color : #cdd13a;
  }
  8.75%,33.74% {
    background-color : #686152;
  }
  33.75%,58.74% {
    background-color : #ececb7;
  }
  58.75%,83.74% {
    background-color : #686152;
  }
  83.75%, 100% {
    background-color : #cdd13a;
  }
}
/*-----------------*/
/* Title */
/*-----------------*/
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	font-family: var(--font-title);
	font-weight: initial;
	color: var(--title-color);
	-webkit-font-smoothing: initial;
}

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

h2{
	font-size: 48px;
	margin-bottom: 30px;
	margin-top: 30px;
}
h2.no-margintop{
	margin-top: 0;
}
h3{
	font-size: 36px;
	margin-bottom: 20px;
	margin-top: 30px;
}
h4{
	margin-bottom: 15px;
	margin-top: 20px;
	font-size: 30px;
}
h5{
	font-size: 26px;
	margin-bottom: 10px;
	margin-top: 15px;
}
h6{
	font-size: 24px;
	margin-bottom: 10px;
	margin-top: 15px;
}

@media(max-width:1024px){
	h1, #title p{font-size: 48px;}
	h2{font-size: 40px;}
	h3{font-size: 32px;}
	h4{font-size: 26px;}
	h5{font-size: 23px;}
	h6{font-size: 21px;}
}

@media(max-width:736px){
	h1, #title p{font-size: 40px;}
	h2{font-size: 32px;line-height: 1.1;}
	h3{font-size: 26px;}
	h4{font-size: 22px;}
	h5{font-size: 20px;}
	h6{font-size: 18px;}
}


.title small, .section-title small{
	font-family: var(--font-alt);
	color: var(--primary-bgcolor);
	font-size: 25px;
	text-transform: initial;
	letter-spacing: 0;
	display: inline-block;
	line-height: 1;
	text-shadow: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	-webkit-font-smoothing: initial;
	font-weight: bold;
}

.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: 60px;
}
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 h2,
.white h3
{
	color: var(--white);
}
.white .accroche {
	color: rgba(255,255,255,.8)
}


.title:not(.no-before):before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background-color: var(--primary-bgcolor);
}

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



/*-----------------*/
/* 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);
  
}

.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: 1;
	    height: 34.625em;
	    font-size: 1.25vw;
	    overflow: hidden;
}

#galleryHome .gallery {
	transition: 0.6s;
}
#galleryHome .gallery dl.gallery-item{
	margin-bottom: 0;
	position: absolute;
}

#galleryHome .gallery dl.gallery-item:first-of-type{
	width: 17.9375em;
	height: 25.25em;
	top: 3.625em;
	left: 0;
	z-index: 1;
}
#galleryHome .gallery dl.gallery-item:nth-child(2){
	width: 11.5625em;
	height: 16.25em;
	top: 7.0625em;
	left: 16.4375em;
	z-index: 6;
}
#galleryHome .gallery dl.gallery-item:nth-child(3){
	width: 9.8125em;
	height: 13.75em;
	top: 13.875em;
	left: 26.625em;
	z-index: 4;
}
#galleryHome .gallery dl.gallery-item:nth-child(4){
	width: 24.5625em;
	height: 34.625em;
	top: 0;
	left: 33.875em;
	z-index: 2;
}
#galleryHome .gallery dl.gallery-item:nth-child(5){
	width: 15.4375em;
	height: 21.75em;
	top: 8em;
	left: 55.375em;
	z-index: 5;
}

#galleryHome .gallery dl.gallery-item:last-of-type{
	width: 12.4375em;
	height: 17.5em;
	top: 5.125em;
	left: 69.4375em;
	z-index: 3;
}



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





.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;
    text-align: center;
}
.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: var(--tertiary-bgcolor);
	padding: 40px 60px;
	z-index: 1;
}

#partenaires .title{
	margin: 0;
	padding: 0;
	min-width: 500px;
}

#partenaires .partenaires-header{
	display: flex;
	position: relative;
	align-items: center;
}

.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;
}


#partenaires .widget_element{
	position: relative;
	z-index: 2;
}
/*-----------------*/
/* 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(--secondary-bgcolor);width: 30px;transition: all 0.3s ease;transform-origin: center;}
.closemodal:hover svg{transform: scale(1.2);fill: var(--primary-bgcolor);}

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

.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: 38px;
	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: 12px 50px 12px 25px;
	background: var(--primary-bgcolor);
	text-decoration: none;
	font-size: 12px;
	font-family: var(--font-bold);
	transition: 0.5s all ease;
	cursor: pointer;
	display: inline-block;
	overflow: hidden;
	position: relative;
	text-align: center;
	z-index: 1;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--title-color);
	border-radius: 0!important;
	box-shadow: none!important;
}

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


.underbutton > *:after,
.button:after,
.tc_content .wp-block-button__link:after {
 color: currentColor;
 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 {
	color: var(--white);
}
.underbutton.white > *:hover, .button.white:hover, .tc_content .wp-block-button__link.white:hover{
	border-color: var(--secondary-bgcolor);
}
.underbutton.white > *:after, .button.white:after, .tc_content .wp-block-button__link.white:after {
	color: var(--wite);
}

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


.underbutton > *:hover:before,
.button:hover::before,
.tc_content .wp-block-button__link:hover:before {
  width: 40px;
}



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

.button.hollow{
	background-color: transparent;
	color: var(--primary-bgcolor);
	border: solid;
}
.button.hollow.white{
	color: var(--white);
	border-color: var(--white);
}
.button.hollow span{
	position: relative;
    z-index: 2;
    color: inherit;
}
.underbutton.small > *:after, button.small:after, .button.small:after{
	right: 10px
}


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




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



.underbutton.secondary:hover > *:hover, button.secondary:hover, .button.secondary: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;
}


@-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;
}
.wp-block-cover__inner-container a:not([class*="button"]){
	 background-image: linear-gradient(to bottom, transparent 20%, var(--primary-bgcolor) 21% );
}
.wp-block-cover__inner-container a:not([class*="button"]):hover{
	 color: var(--primary-bgcolor)!important;
}

.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;
}

.tc_content p + ul{
	margin-top: -15px;
}
.has-background{
	color: var(--white)!important;
	padding: 30px 40px!important;
	background: linear-gradient(to left,var(--tertiary-bgcolor), var(--secondary-bgcolor))!important;
	}
.has-background h2,
.has-background h3,
.has-background h4,
.has-background h5,
.has-background h6 {
	color: var(--white);
}
.has-background a:not([class*="button"]), .has-background a:not([class*="button"]) strong {
	background-image: linear-gradient(to bottom, transparent 20%, var(--white) 21% );
}
.has-background a:not([class*="button"]):hover, .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;
}
.wp-block-gallery .blocks-gallery-item:before {
    content: none!important;
}

.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: 50px auto;
    background: var(--light-color)!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{
  border: 1px solid  var(--secondary-bgcolor);
  margin: 2em 0 2em 40px;
  padding: 50px 70px;
  quotes: "\201C""\201D""\201C""\201D";
  color: var(--black);
  position: relative;
  box-sizing: border-box;
  text-align: center;
  z-index: 1;
}
blockquote cite, .wp-block-quote cite{
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-style: normal;
    font-size: 14px;
    color: var(--tertiary-bgcolor);
    position: relative;
    padding-top: 11px;
    font-family: var(--font-bold);
    font-size: 13px;
    text-align: center;
}
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);
}

.wp-block-quote{
	background: var(--light-color);
	border: none;
	padding: 40px 40px !important;
}



.wp-block-quote p {
	color: var(--title-color);
	text-align: center;
	margin: 0;
}
.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
    font-size: 40px;
    letter-spacing: 1px;
    line-height: 1.3;
}

blockquote:before, blockquote:after {
  color: var(--primary-bgcolor)!important;
  font-size: 170px!important;
  position: absolute;
  font-family: var(--font-alt);
  line-height: 1;
  height: 0;
  display: inline;
  z-index: 2;
}
blockquote:before{
	content: open-quote;
	top: -50px!important;
	left: 10px!important;
}
blockquote:after{
	content: close-quote;
	bottom: 65px;
	right: -10px;
}



blockquote p {
  font-size: 30px;
  font-family: var(--font-title);
  line-height: 1.3;
}


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;
}


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

 #logo a {display: flex;align-items: center;}
#logodesktop {width: 250px;}



 #noshare {
	z-index: 7;
	margin-left: 15px;
}
#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 #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;
}




#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: 0;
	right: 0;
	width: 64px;
	height: 64px;
	align-items: center;
	justify-content: center;
}
body.is-menu-open #info-toogle{
	z-index:3;
	transition: none;
}

#info-toogle:before{
	content: "";
	background-image: url(../images/icons/mail.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.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(--white), 0 0 0 100vh var(--white);
	background-color: var(--white);
	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 {
  background: var(--white);
  padding: 13px 30px;
}



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

.phone span, .address span, .hours span, .portable span{font-size: 11px;font-family: var(--font-bold);text-transform: uppercase;letter-spacing: 1px;line-height: 1;color: var(--tertiary-bgcolor);}
.phone, .address, .hours, .portable{
  font-size: 14px;
  line-height: 30px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 14px;
  padding-left: 24px;
  line-height: 1.5;
  font-weight: bold;
}


#infoadresse{
		min-width: 457px;
	}


#infoadresseContact, #infoadresseBisContact, #infotelContact, #infoouvertureContact, #noshareContact, #infotelportContact, #infotelfixeContact {
    margin: 40px 0;
    font-size: 15px;
    padding-left: 30px;
    background-size: 18px;
    }


.phone a,
.hours a,
.portable a,
.address{
	color: var(--title-color);
}

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

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

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


/*-----------------*/
/* 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;
	padding: 300px 30px 150px;
	background-image: url(../images/bg-news.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

#slideactu:after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background: var(--title-color);
    opacity: 0.8;
}


#slideactu .ckctrldiv{
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	right: auto;
}
#slideactu .ckslider {
    margin: 0 40px;
    box-shadow: 0 0 30px rgb(0 0 0 / 30%);
}
#slideactu .ckslidercontrols .prev,
#slideactu .ckslidercontrols .next{
	left: auto;
	top: auto;
	bottom: 0;
	height: 50px;
	width: 50px;
	background-size: 14px;
	transform: none;
}
#slideactu .ckslidercontrols .prev{
	right: 92px;
}
#slideactu .ckslidercontrols .next{
	right: 40px;
}
.wrapper_slider{
	position: relative;
	z-index: 8;
	transition: 250ms all ease-in-out;
	box-sizing: border-box;
	display: flex;
	align-items: stretch;
	overflow: hidden;
	animation-fill-mode: forwards;
}


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


.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: 100px 80px;box-sizing: border-box;background-color: var(--white);transition: 250ms all ease-in-out;width: 60%;display: flex;flex-direction: column;justify-content: center;}
.wrapper_slider:hover .content_slider {
    /* bottom: 50%; */
    /* -webkit-transform: translate(0,50%); */
    /* transform: translate(0,50%); */
    -ms-transform: translate(0,50%);
}

.title_link_slider section-title{
    color: var(--white);
    font-size: 25px;
    line-height: 1.3;
    display: inline-block;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
    /* text-transform: uppercase; */
    font-family: var(--font-title);
}



.title_link_slider span{
	  font-family: var(--font-title);
	  font-size: 40px;
	  display: block;
	  margin-bottom: 20px;
	  text-transform: initial;
	  letter-spacing: 2px;
	  /* display: none; */
}

.title_link_slider:first-letter{
	text-transform: uppercase;
}


.title_slider{
	transition: 300ms all ease-in-out;
	transition-delay: 150ms;
	padding: 0;
	position: relative;
	margin: 0 0 20px 0!important;
}

.title .dateckslider{
	font-size: 16px;
}


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

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


.body_slider{
	position: relative;
	font-size: 15px;
}


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

/*-----------------*/
/* PRESTATIONS */
/*-----------------*/
#prestations{
	position: relative;
	box-sizing: border-box;
	z-index: 1;
	
}
.home #prestations{
	padding-top: 200px;
}
#prestations .prestations-title{
	width: 25%;
	padding-left: 0;
	padding-right: 40px;
	box-sizing: border-box;
	color: var(--white);
}

#prestations .prestations-title .accroche{
	margin-bottom: 30px;
}


#prestations .prestations-body{
	padding: 72px 30px 93px;
	background-color: var(--title-color);
	text-align: center;
	width: 100%;
}

#prestations .prestations-body h3 {

}



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

#backgroundPrestations .background-item:before{
	content: "";
	position: absolute;
	background: var(--black);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
	opacity: 0.5;
}


#backgroundPrestations .background-item.active, #backgroundPrestations .background-item.on{
	opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}
#prestations .widget_parentpage li:not(.active){
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}





#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{
	background: #181818;
	overflow: hidden;
}
#backgroundPrestations {
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
}
#foregroundPrestations {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: flex;
    flex-direction: row;
}

#foregroundPrestations .foreground-item {
    position: relative;
    overflow: hidden;
    min-height: 800px;
}
#prestations .content-presta{
	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;
	
}

#prestations .wrap-presta{
	position: relative;
    z-index: 7;
}
#prestations .wrap-presta{
	    font-size: 15px;
	    line-height: 1.7;
	    max-width: 400px;
	    margin:  0 auto;
	    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
	    max-height: 0;
	    opacity: 0;
}
#prestations .foreground-item.active .wrap-presta {
	max-height: 400px;
    opacity: 1;
    -webkit-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    -o-transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}



#prestations .liresuite .arrowright  {
	width: 20px;
	height: 20px;
}
#prestations .wrap-presta .content_link {color: var(--white);display: inline-block;margin-bottom: 40px;line-height: 1.6;padding: 0 15px;text-shadow: 0 0 3px var(--black);}





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




#prestations h3 {
  font-size: 46px;
  margin-bottom: 20px;
  margin-top: 0;
  color: var(--white);
  text-shadow: 0 0 3px var(--black);
}

#prestations h3 a {
	color: var(--white);
	position: relative;
	display: inline-block;
	box-sizing: border-box;
}
#prestations h3 a:hover{
	color: var(--primary-bgcolor);
}

#prestations .widget_parentpage li .bloc_inner_wpp {
	transition: 250ms all ease-in-out;
	position: relative;
	height: 100%;
	overflow: hidden;
	/* display: none; */
}



/*-----------------*/
/* SECTIONS */
/*-----------------*/
#sections{
    position: relative;
}
.sectionsbloc{
	position: relative;
}

.section_wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    flex-direction: row;
}
.sectionsbloc.even .section_wrapper {
    flex-direction: row-reverse;
}
.section_thumb{
    width: 50%;
    position: relative;
    }
.section_thumb .blocthumb{
    height: 110%;
    box-sizing: border-box;
    /* box-shadow: 0px 0px 20px #b3b2b2; */
    overflow: hidden;
    position: relative;
    width: 100%;
}

.section_thumb .blocthumb img{
	height: 115%;
}

.section_txt{
    
    width: 50%;
}

.section_txt .wrap-text {
    padding: 150px 150px;
    position: relative;
    box-sizing: border-box;
    max-width: 950px;
    margin-left: auto;
    z-index: 2;
}
.sectionsbloc.odd .section_txt .wrap-text {
	margin-left: 0;
}
.sectionsbloc .section_txt .wrap-content {
    position: relative;
    box-sizing: border-box;
}

.sectionsbloc .buttons-wrap {
    padding-top: 50px;
display: flex;
    align-items: stretch;
}

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


.widget_element li{
    position: relative;
    padding: 10px!important;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
 
}
.widget_element li:before{
	content: none!important;
}

.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 {
    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, #contentPageBis {
   padding: 120px 30px;
   position: relative;
}

#contentPage.specialIntro{
	padding: 100px 30px;
}


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

.col-img .specialthumb {
    height: 750px;
    position: relative;
    width: 75%;
    z-index: -1;
    left: 25%;
    top: -370px;
    margin-bottom: -130px;
}
.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: -2;
	pointer-events: none;
}

/*----to top style----*/
.to-top.fixed {
	opacity: 1;
	bottom: 60px;
}
.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: -1;
}

.grid-lines > div:first-child{
	border: none;
}

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



.home #content{
	padding: 150px 30px;
}

.col-img .blocthumb {
    height: 500px;
    width: 160%;
}

#blocgridImg-wrapper{
	padding: 200px 20px;
}
#content-wrapper{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

#content-wrapper .item-img{
	overflow: hidden;
	clip-path: inset(0);
	-webkit-clip-path: inset(0);
}

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

#content-wrapper .item-content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 110px 30px;
	z-index: 10;
	height: 400px;
	width: 400px;
	line-height: 1.6;
	color: var(--white);
}

#content-wrapper .item-content:before{
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	box-shadow: 0 0 15px rgb(0 0 0 / 30%);
	background-color: var(--tertiary-bgcolor);
	width: 100%;
	height: 100%;
	transform: rotate(45deg);
	z-index: -1;
	outline: solid  1px var(--white);
	outline-offset: -15px;
	border-radius: 20px;
}

#content-wrapper .item-content h2{
	font-size: 42px;
}

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





.home #content:before{
	content: "";
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 100%;
	height: 350px;
	background-image: url('../images/pattern-1.png');
	z-index: -1;
}



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





#content.hasnocontent{padding:0;}

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

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



 #homeHeader{
     position: relative;
     z-index: 1;
 }
.label{
	position: absolute;
	right: 30px;
	bottom: 120px;
	z-index: 3;
}
.label img{
	width: 80px;
}
.label .marque-alsace{
	margin-right: 20px;
	width: 60px;
	height: 48px;
}
#homeHeader-bottom{
	position: absolute;
	bottom: 0;
	left:0;
	z-index: 1;
	background: var(--tertiary-bgcolor);
	right: 0;
	padding: 15px 30px;
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.nohome #homeHeader-bottom{
	position: relative;
}
#homeHeader-bottom #homeHeader-bottom_text{
	display: flex;
	font-family: var(--font-title);
	font-size: 24px;
	line-height: 1.1;
	align-items: center;
}
#infotelfixeHeader{
	font-size: 14px;
	text-transform: uppercase;
	font-family: var(--font-bold);
	position: relative;
	color: var(--white);
	padding-left: 22px;
	background-image: url('../images/icons/phone.svg');
	background-position: left 6px;
	background-repeat: no-repeat;
	background-size: 14px;
	margin-right: 20px;
	letter-spacing: 1px;
}
#infotelfixeHeader a{
	color: var(--white);
}
#infotelfixeHeader a:hover {
    color: var(--primary-bgcolor);
}

#homeHeader-bottom #homeHeader-bottom_text span{
	text-transform: uppercase;
	display: block;
	font-weight: bold;
	font-size: 35px;
	margin-right: 30px;
	line-height: 1;
	position: relative;
	padding-right: 30px;
}
#homeHeader-bottom span:after{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 2px;
	height: 100%;
	background: rgb(255 255 255 / 20%);
}

.elementor-shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    z-index: 10;
}
.elementor-shape svg {
    display: block;
    width: calc(250% + 1.3px);
    height: 221px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.elementor-shape .elementor-shape-fill {
    fill: #fff;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
.elementor-shape-bottom {
    bottom: -1px;
}
.elementor-shape-top {
    top: -1px;
}
.elementor-shape[data-negative=false].elementor-shape-bottom, .elementor-shape[data-negative=true].elementor-shape-top {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.elementor-shape.dark .elementor-shape-fill{
	fill:var(--title-color)
}


 #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: 2;
	box-sizing: border-box;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.overlay:before{
	--size: 800px;
	content: "";
	background-image: url('../images/losange.png');
	width: var(--size);
	height: var(--size);
	background-size: contain;
	position: absolute;
	left: -200px;
	bottom: -50px;
	opacity: 0.4;
	z-index: -1;
}
#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;
    justify-content: 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;
}
.titleBanner{
	display: inline-block;
	line-height: 1.3;
	opacity: 0;
	transform: translateY(30px);
	transition: .55s cubic-bezier(.4,0,.2,1) .95s;
	position: relative;
	font-size: 45px;
	background: var(--primary-bgcolor);
	color: var(--black);
	padding: 5px 10px;
}
.titleBanner:before,
.titleBanner:after{
	content: "";
	width: 50px;
	height: 100%;
	position: absolute;
	top: 0;
	background: var(--primary-bgcolor);
	z-index: -1;
	transform: skewX(-20deg);
}
.titleBanner:before{
	left: -24px;
	
}
.titleBanner:after{
	right: -24px;
	
}
.titleBanner span{
	color: var(--white);
}

.font-weight {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 26px;
	display: block;
	color: var(--white);
	font-family: var(--font-alt);
	margin-bottom: 20px;
}

.ml12 {text-transform: uppercase;letter-spacing: 2px;font-size: 36px;display: block;color: var(--white);font-family: var(--font-title);margin-bottom: 10px;}

.ml12 .letter {
  display: inline-block;
  line-height: 1em;
}

#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 .titleBanner{
	opacity: 1;
	transform: translateY(0);
}

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

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


/*-----------------*/
/* 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: 45vh;
	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 50px  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{
	  position: relative;
	  z-index: 1;
}

#reassurances:before{
	content: "";
	--size: 400px;
	background-image: url(../images/losange.png);
	width: var(--size);
	height: var(--size);
	background-size: contain;
	position: absolute;
	left: -200px;
	bottom: -50px;
	opacity: 0.1;
	z-index: -1;
	filter: invert(1);
}

.nohome #reassurances:after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	 background: var(--title-color);
    opacity: 0.8;
}

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



#reassurances .title{
	margin-bottom: 80px;
}







/*-----------------*/
/* 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;
  padding: 0 30px;
}

.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 {
    max-width: none;
    padding: 40px;
    right: 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 10px 5px;
	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.5;
    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(--tertiary-bgcolor);
	opacity: 0.7;
}
#listarticles .listedarticle h2{
   margin: 0;
   left: 10px;
   right: 10px;
   bottom: 20px;
   box-sizing: border-box;
   z-index: 10;
   font-size: 28px;
   text-shadow: 1px 1px 1px rgb(0 0 0 / 60%);
   text-align: center;
   transition: 300ms all ease-in-out;
}

#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: 15px;
	position: relative;
	z-index: 28;
	color: var(--white);
	background-image: url(../images/bg-footer.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
#footer #footerbloc{
	padding: 0;
}
#footer_form{
	padding: 100px 20px 100px 70px;
}
#coordonneesFooter{
	box-sizing: border-box;
	margin-left: auto;
	padding: 100px 20px 100px 70px;
	width: 100%;
	height: 100%;
	align-items: center;
}
#coordonneesFooter:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--secondary-bgcolor);
	opacity: 0.75;
	z-index: -1;
}
#coordonneesFooter h3{
	color: var(--white);
}
#coordonneesFooter .button{
    margin-top: 20px;
}
#coordonneesFooter .button.bitzberger{
	background: #c01b66;
	color: var(--white);
}
#coordonneesFooter .button.bitzberger:hover{
	background: var(--primary-bgcolor);
	color: var(--black);
}

#footer #logofooter {
    margin-bottom: 20px;
}
#infotelportFooter, #infoadresseFooter, #infoouvertureFooter, #infotelfixeFooter{
	margin: 15px 0;
}
#infotelportFooter span, #infoadresseFooter span, #infoouvertureFooter span, #infotelportContact span, #infoouvertureContact span, #infoadresseContact span, #infocontact .titlehoraires, #infotelfixeFooter span, #infotelfixeContact span {
    display: block;
    color: var(--primary-bgcolor);
}
#coordonneesFooter h2 {
	margin-top: 0;
}
#footer:before{
	  position: absolute;
	  content: '';
	  background: var(--title-color);
	  width: 100%;
	  height: 100%;
	  left: 0px;
	  top: 0px;
	  z-index: -1;
	  opacity: 0.9;
}




#footer .cekome_form .blc_checkbox label {
    color: var(--white);
}


/*LOGO*/

#footer #logofooter a{
	display: inline-flex;
    
    
align-items: center;justify-content: center;}
#footer #logofooter img{
    width: 260px;
}

.marque-alsace {
    width: 30px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    max-width: 100%;
    height: 25px;
}

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

/*MAPS*/


#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 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{
   display: flex;
    justify-content: center;
}

#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: 15px;
	}


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

/*COPYRIGHT*/
#footer #footerlinks{
 font-size: 14px;
 text-align: center;
 background-color: var(--secondary-bgcolor);
 display: flex;
 align-items: center;
 justify-content: center;
 padding: 15px 10px;
}
#footer #footerlinks a{
    color: var(--white);
}

#tarteaucitronRoot *  {
	color: var(--white)!important;
}

#tarteaucitronAlertBig #tarteaucitronCloseAlert *{
color:  #333!important;
}
