/*-----------------*/
/* VARIABLE */
/*-----------------*/
:root
{
	/*COLORS*/
	--primary-bgcolor: #d30062;
	--secondary-bgcolor: #003783;
	--tertiary-bgcolor: #f5d000;
	--text-color: #808291;
	--title-color: #2B2B39;
	--light-color: #f3f3f3;
	--white: #FFFFFF;
	--black: #000000;
	--sanitaire-color: #8ccbec;
	--cvc-color: #f39200;
	--electricite-color: #f0c902;
	--relamping-color: #2ca737;
	--maintenance-color: #e32013;
	--base-color: #d30062;

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

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

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

@font-face {
    font-family: 'Varela';
    src: url('../fonts/Varela.woff2') format('woff2'),
        url('../fonts/Varela.woff') format('woff'),
        url('../fonts/Varela.ttf') format('truetype'),
        url('../fonts/Varela.svg#Varela') format('svg');
    font-weight: normal;
    font-style: normal;
}
body {
  font-size: 16px;
  line-height: 1.8;
  font-family: var(--font-text);
  top:0 !important;
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
}

@media(max-width:736px){
	body{
		line-height: 1.6;
	}
}

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

body.is-form-warning #header{
	z-index: 3;
}

.posrel{
  position: relative;
}

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

.more-links{
	text-transform: uppercase;
	font-size: .85rem;
	padding: 15px 0;
	text-decoration: none;
	display: inline-block;
	position: relative;
	font-family: var(--font-bold);
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 1;
	z-index: 0;
	color: var(--title-color);
}

.more-links.return{
	background:none;
	display: inline-block;
	padding: 0 0 0 20px;
}
.more-links.return:before{
	content: none;
}
.more-links.return:after{
	background:none;
	right: auto;
	left: 0;
	transform: translateY(-50%) scale(-1);
	margin-top: -2px;
	border-left-color: var(--title-color);
}

.more-links:before{position: absolute;bottom: 0;left: 0;width: 100%;height: 100%;background: var(--secondary-color);/* content: ''; */opacity: 0;transition: transform .15s ease-out,opacity .15s ease-out;z-index: -1;transform: scaleX(0);}

.more-links:hover:before{
	opacity: 1;
	transition: transform .2s ease-in,opacity .2s ease-in;
	transform: scaleX(1);
}

.more-links:after{
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-left-color: var(--primary-color);
	border-width: 4px;
	margin-top: -4px;
}

.more-links.return span{
	padding-right: 0;
	padding-left: 15px;
}

.more-links:hover{
	/* background-color: var(--secondary-color); */
	color: var(--primary-bgcolor);
}

.more-links:hover:after{
	border-left-color: var(--primary-color);
}


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

.return-bottom{
	border-top: solid 1px rgba(0,0,0,0.1);
	padding-top: 50px;
	padding-bottom: 0;
	margin-top: 80px;
	clear: both;
}


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

.hide-for-large, .hide-for-large.flex{
	display: none;
}

.show-for-medium {
    display: block;
}
.show-for-medium.flex {
    display: flex;
}

.hide-for-medium, .hide-for-medium.flex{
	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(--white);
	display: flex;
	align-items: center;
	justify-content: center;
}
.loader p{
	font-family: var(--font-bold);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 12px;
	margin-top: 10px;
	color: var(--secondary-bgcolor);
}
.loader-content {
  width: 100px;
  height: 100px;
  box-sizing: border-box;
  position: relative;
  background-color: white;
}
div.loader-content::before, div.loader-content::after {
  z-index: 1;
  box-sizing: border-box;
  content: "";
  position: absolute;
  border: 4px solid transparent;
  width: 0;
  height: 0;
  animation-direction: alternate;
  animation-timing-function: linear;
}
div.loader-content::before {
  top: 0;
  left: 0;
  animation: border-before 1.5s infinite;
  animation-direction: alternate;
}
div.loader-content::after {
  bottom: 0;
  right: 0;
  animation: border-after 1.5s infinite;
  animation-direction: alternate;
}
div.loader-content > div {
  position: absolute;
  opacity: 0;
}
div.loader-content div.secondary {
  border-left: 4px solid var(--secondary-bgcolor);
  top: 0;
  bottom: 0;
  right: 0;
  width: 0;
   background-color: var(--secondary-bgcolor);
  animation: secondary 1.5s infinite;
  animation-direction: alternate;
}
div.loader-content div.tertiary {
  border-top: 4px solid var(--secondary-bgcolor);
  left: 0;
  bottom: 0;
  right: 0;
  height: 0;

  background-color: var(--tertiary-bgcolor);
  animation: tertiary 1.5s infinite;
  animation-direction: alternate;
}
div.loader-content div.primary {
  border-right: 4px solid var(--secondary-bgcolor);
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--primary-bgcolor);
  animation: primary 1.5s infinite;
  animation-direction: alternate;
}

@keyframes border-before {
  0% {
    width: 0;
    height: 0;
    border-top-color: var(--secondary-bgcolor);
    border-right-color: transparent;
  }
  12.49% {
    border-right-color: transparent;
  }
  12.5% {
    height: 0;
    width: 100%;
    border-top-color: var(--secondary-bgcolor);
    border-right-color: var(--secondary-bgcolor);
  }
  25%, 100% {
    width: 100%;
    height: 100%;
    border-top-color: var(--secondary-bgcolor);
    border-right-color: var(--secondary-bgcolor);
  }
}
@keyframes border-after {
  0%, 24.99% {
    width: 0;
    height: 0;
    border-left-color: transparent;
    border-bottom-color: transparent;
  }
  25% {
    width: 0;
    height: 0;
    border-left-color: transparent;
    border-bottom-color: var(--secondary-bgcolor);
  }
  37.49% {
    border-left-color: transparent;
    border-bottom-color: var(--secondary-bgcolor);
  }
  37.5% {
    height: 0;
    width: 100%;
    border-left-color: var(--secondary-bgcolor);
    border-bottom-color: var(--secondary-bgcolor);
  }
  50%, 100% {
    width: 100%;
    height: 100%;
    border-left-color: var(--secondary-bgcolor);
    border-bottom-color: var(--secondary-bgcolor);
  }
}
@keyframes primary {
  0%, 50% {
    width: 0;
    opacity: 0;
  }
  50.01% {
    opacity: 1;
  }
  65%, 100% {
    opacity: 1;
    width: 27%;
  }
}
@keyframes tertiary {
  0%, 65% {
    height: 0;
    opacity: 0;
  }
  65.01% {
    opacity: 1;
  }
  80%, 100% {
    opacity: 1;
    height: 50%;
  }
}
@keyframes secondary {
  0%, 75% {
    width: 0;
    opacity: 0;
  }
  75.01% {
    opacity: 1;
  }
  90%, 100% {
    opacity: 1;
    width: 23%;
  }
}

.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;
}
/*-----------------*/
/* Title */
/*-----------------*/
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
	font-family: var(--font-title);
	font-weight: normal;
	color: var(--title-color);
}


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

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

@media(max-width:1024px){
	h1, #title p{font-size: 34px;}
	h2{font-size: 28px;}
	h3{font-size: 22px;}
	h4{font-size: 20px;}
	h5{font-size: 19px;}
	h6{font-size: 17px;}
}

@media(max-width:736px){
	h1, #title p{font-size: 30px;line-height: 1.2;}
	h2{font-size: 25px;line-height: 1.2;}
	h3{font-size: 20px;}
	h4{font-size: 18px;}
	h5{font-size: 17px;}
	h6{font-size: 16px;}
}


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

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



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

.title h2 {
	font-size: 36px;
}
.title.tac {
	margin-bottom: 100px;
}
body.is-form-warning .title{
	z-index: 1;
}
.title.no-before{
	padding-top: 0;
	/* margin-bottom: 30px; */
}
.title p{
	margin-top: 15px;
}


.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);
  /* font-weight: 700; */
}

.tc_content img{
	max-width: 100%;
}
.wp-block-image {
    margin-bottom: 2em;
}
/*-----------------*/
/* Gallery */
/*-----------------*/
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.scroll-down {
	transition: 250ms all ease-in-out;
  border: 2px solid rgba(255, 255, 255, 0.6);
  -moz-border-radius:100px;
  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);
}



.innerLogo img {
    width: 400px;
}
.nohome .innerLogo img {
    width: 300px;
}

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


#galleryHome .gallery dl.gallery-item{
	padding: 0 10px;
	min-width: calc(100% / 3);
	position: relative;
	overflow: hidden;
	height: 280px;
	box-sizing: border-box;
	animation-fill-mode: forwards;
	cursor: zoom-in;
}


.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;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
	cursor: pointer;
	border-radius: 5px;
}

.gallery-icon a:before{
	content: "";
	left: 50%;
	top: 50%;
	position: absolute;
	transform: translateY(-50%) translateX(-50%);
	background-color: var(--primary-bgcolor);
	opacity: 0;
	transition: 250ms all ease-in-out;
	z-index: 1;
}

.gallery-item:hover a:not(.button):before{width: 100%;height: 100%;opacity: 0.75;}
.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 a{
	display: inline-block;
	height: 100%;
	position: relative;
	cursor: pointer;
}
.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 img{
	/* opacity: 0.5; */
}

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

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


.gallery-item .gallery-caption{
	position: absolute;
	left: 0;
	bottom: 0;
	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(--primary-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-icon: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:not(.footergallery) .gallery-item:hover img{
	transform: scale(1.1);
}






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


#wrapContact{
	margin-left: 80px;
}
#wrapContact .grid{
	transition: 0.6s;
	grid-template-areas: 
		"alsalavage 		jswagner";
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(1, minmax(min-content, auto));
	grid-column-gap: 1px;
	/* align-items: center; */
	align-items: initial;
}
	
#alsalavage{
	background-image: url(../images/contact-img.jpg);
}

#jswagner{
	background-image: url(../images/wagner-img.jpg);
}

#alsalavage, #jswagner{
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 100px 0;
	height: auto;
}

.wrap-alsalavage, .wrap-jswagner{
	text-align: center;
	max-width: 450px;
	background-color: rgba(255,255,255,.8);
	box-shadow: 0 0 30px rgba(0,0,0,0.3);
	padding: 50px 30px;
	margin: auto;
	width: 80%;
}

.wrap-alsalavage h3, .wrap-jswagner h3{
	font-size: 30px;
	/* margin-top: 30px; */
	/* margin-bottom: 20px; */
	font-family: var(--font-bold);
	color: var(--title-color);
	letter-spacing: 1px;
	/* text-transform: uppercase; */
	max-width: 360px;
	margin: 30px auto 20px;
}

.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 img{
	margin: auto;
	display: block;
	margin-bottom: 30px;
}

#contactform #contact-body{
	justify-content: center;
	text-align:center;
	position: relative;
}


#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{
	margin: 0;
	height: 250px;
	z-index: 4;
}

#contactform .smallImage img{
	object-fit: cover;
	width: 100%;
	display: block;
	height: 100%;
}

#landing_listelement {
    /* padding: 50px 80px 80px; */
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: auto;
}

.mention {
    font-size: 14px;
    font-style: italic;
    text-align: center;
    display: block;
    padding: 20px 0 20px 0;
    line-height: 1.2;
    color: var(--title-color);
}
.alert-color {
    color: red;
}



.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 */
/*-----------------*/
#homeContact{padding: 150px 15px;position: relative;background-image: url(../images/bg-contact.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;background-attachment: fixed;}

#homeContact .note {
	color: var(--white);
	text-align: center;
	font-style: initial;
	font-size: 14px;
	line-height: 1.5;
	margin-bottom: 10px;
}


#homeContact #phoneBT-infotelfixe,
#homeContact #phoneBT-infotelport {
	color: var(--title-color);
}

#homeContact #phoneBT-infotelfixe:hover,
#homeContact #phoneBT-infotelport:hover {
	color: var(--primary-bgcolor);
}

#homeContact .wrap-contact{
	background-color: rgba(35, 31, 32, 0.6);
	box-shadow: 0 0 30px rgba(0,0,0,0.3);
	max-width: 600px;
	margin: auto;
	flex-direction: row-reverse;
	position: relative;
	z-index: 2;
}


#homeContact .wrap-contact:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--white);
	transform: rotate(4deg);
	z-index: -1;
}



/*-----------------*/
/* PARTENAIRES */
/*-----------------*/
#partenaires{
	padding: 150px 30px 200px;
	position: relative;
	box-sizing: border-box;
	background: url(../images/pattern.jpg);
}

#partenaires .cksliderwrap{
	padding-bottom: 30px;
}


#partenaires .prev,
#partenaires .next{
	top: 50%;

}

/*-----------------*/
/* 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(--tertiary-bgcolor);width: 30px;transition: all 0.3s ease;transform-origin: center;}
.closemodal:hover svg{  transform: scale(1.2); fill:#555;}

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

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

.horairemodal{pointer-events: none;}

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

.horairemodal .titlehoraires{
	font-size: 37px;
	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: #666;
}

.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);
	margin-left: 0!important;
}

/* ------------------------- */
/* GLOBAL BUTTON */
/* ------------------------- */
.underbutton > *, .button, .tc_content .wp-block-button__link{
  background-color: var(--primary-bgcolor);
  padding: 18px 30px;
  font-size: 12px;
  font-family: var(--font-bold);
  color: var(--white);
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  line-height: 1;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-shadow: none;
  border-radius: 0;
}

.underbutton > *:before, .button:before, .tc_content .wp-block-button__link:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background-color: var(--secondary-bgcolor);
	transition: 250ms all ease-in-out;
	z-index: -1;
}
.underbutton > *:hover, .button:hover, .tc_content .wp-block-button__link:hover{
	color: var(--white);
}

.underbutton.small > *, button.small, .button.small{
	padding: 5px 10px;
}

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

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

.button.hollow{
    background-color: transparent;
    color: #333;
    padding: 0 0 0 30px;
    /* margin-left: 30px; */
}

.button.hollow:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	height: 1px;
	width: 3em;
	background-color: var(--secondary-bgcolor);
	-webkit-transition: all .25s ease;
	transition: all .25s ease;
}

.button.hollow .btn__text{
	position: relative;
    padding: 14px 32px;
    line-height: 1.5;
    display: inline-block;
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease,-webkit-transform .5s ease;
}

.button.hollow .btn__text:before{
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    background-color: var(--secondary-bgcolor);
    top: 0;
    left: 0;
    -webkit-transition: width .15s .45s cubic-bezier(.4,0,.2,1);
    transition: width .15s .45s cubic-bezier(.4,0,.2,1);
}

.button.hollow .btn__text:after{
	bottom: 0;
	right: 0;
	-webkit-transition: width .15s .15s cubic-bezier(.4,0,.2,1);
	transition: width .15s .15s cubic-bezier(.4,0,.2,1);
	content: '';
	position: absolute;
	height: 2px;
	width: 0;
	background-color: var(--secondary-bgcolor);
}
.button.hollow .btn__text span:before,
.button.hollow .btn__text span:after{
    content: '';
    position: absolute;
    height: 0;
    width: 2px;
    background-color: var(--secondary-bgcolor);
    -webkit-transition: all .2s cubic-bezier(.2,.3,.25,.9);
    transition: all .2s cubic-bezier(.2,.3,.25,.9);
}

.button.hollow .btn__text span:before{
	left: 0;
    bottom: 0;
    -webkit-transition: height .15s 0 cubic-bezier(.4,0,.2,1);
    transition: height .15s 0 cubic-bezier(.4,0,.2,1);
}

.button.hollow .btn__text span:after{
	right: 0;
    top: 0;
    -webkit-transition: height .15s .3s cubic-bezier(.4,0,.2,1);
transition: height .15s .3s cubic-bezier(.4,0,.2,1);


}



.button.hollow.white{
	color: var(--white);
	/* border-color: var(--white); */
}
.button.hollow:hover{
	color: var(--secondary-bgcolor);
	background-color: transparent;
}

.button.hollow.white:hover{
	color: var(--white);
}

.button.hollow.white:hover .btn__text:before,
.button.hollow.white:hover .btn__text:after,
.button.hollow.white:hover .btn__text span:before,
.button.hollow.white:hover .btn__text span:after{
	background-color: var(--white);
}

.button.hollow:hover:before,
.button.hollow:hover:after{
width: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.button.hollow:hover .btn__text {
	    -webkit-transform: translateX(-2.2em);
    transform: translateX(-2.2em);
    -webkit-transition: width 1s ease,-webkit-transform .5s ease;
    transition: width 1s ease,-webkit-transform .5s ease;
    transition: transform .5s ease,width 1s ease;
    transition: transform .5s ease,width 1s ease,-webkit-transform .5s ease;
}

.button.hollow:hover .btn__text:before{
width: 100%;
    max-width: 100%;
    -webkit-transition: width .15s cubic-bezier(.4,0,.2,1);
    transition: width .15s cubic-bezier(.4,0,.2,1);
}

.button.hollow:hover .btn__text:after{
	width: 100%;
    -webkit-transition: width .15s .3s cubic-bezier(.4,0,.2,1);
    transition: width .15s .3s cubic-bezier(.4,0,.2,1);


}

.button.hollow:hover .btn__text span:before{
left: 0;
    height: 100%;
    -webkit-transition: height .15s .45s cubic-bezier(.4,0,.2,1);
    transition: height .15s .45s cubic-bezier(.4,0,.2,1);


}

.button.hollow:hover .btn__text span:after{
	right: 0;
    height: 100%;
    -webkit-transition: height .15s .15s cubic-bezier(.4,0,.2,1);
    transition: height .15s .15s cubic-bezier(.4,0,.2,1);
}










.button.hollow.black{
	color: var(--black);
	border-color: var(--black);
}
.button.hollow.black:hover{
	background-color: var(--black);
	color: var(--primary-bgcolor);
}



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

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

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


.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: 54px;
  background-size: 18px;
  background-position: 26px 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{margin-bottom: 30px;margin-top: 30px;}

#infoadresse,
#infotelfixe,
#infoadresseFooter, 
#infoouvertureFooter .titlehoraires, 
#infotelfixeFooter, .titlehoraires{
	line-height: 1.4;
	position: relative;
	padding-left: 25px;
}

#infoadresseFooter{
	margin-bottom: 15px;
}


#footer #noshare{
	background-image: url('../images/icons/share-white.svg');
}

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


#infocontact .titlehoraires{
	display: none;
}



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



#infoadresseContact,
#infoadresseBisContact {
	background-image: url(../images/icons/map.svg);
}

#infotelfixeContact {
	background-image: url(../images/icons/phone.svg);
}

#infoouvertureContact {
	background-image: url(../images/icons/clock.svg);
}

#noshareContact{
	background-image: url(../images/icons/share.svg);
}

#infotelportContact {
	background-image: url(../images/icons/mobile.svg);
}

#infoadresseContact, 
#infoadresseBisContact, 
#infotelContact, 
#infoouvertureContact, 
#noshareContact, 
#infotelfixeContact{
	background-position: left center;
	background-repeat: no-repeat;
	padding: 14px 0 14px 30px;
	background-size: 15px;
	line-height: 1.5;
}

#infoouvertureContact a,
#infotelfixeContact a{
	color: var(--text-color);
}

#noshareContact .sociblock .share-buttons a svg{
	fill: var(--text-color);
}

#noshareContact .sociblock .share-buttons a:hover svg{
	fill: var(--white);
}

#infotelContact a {
	color: var(--text-color);
}

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


#infotelport_contact #phoneBT-infotelport, #infoouverture_contact a, #infotelfixe_contact a {
	color: var(--text-color);
}
#infotelport_contact #phoneBT-infotelport:hover, #infoouverture_contact a:hover, #infotelfixe_contact a:hover {
	color: var(--primary-bgcolor);
}

#infoadresse_contact, #infotelport_contact, #infoouverture_contact  {
	background-repeat: no-repeat;
	text-align: center;
	padding: 5px 0 4px 40px;
	background-size: 25px;
	background-position: 0;
	text-align: left;
	margin: 20px 0;
}

#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-white.svg);}
.bigicon#phoneBT-infotelfixe{background-image:url(../images/icons/phone-white.svg);}
}

#infoouverture span, #infoadresse span, #infotelport span, #infotel2 span, #infoouvertureFooter span, #infoadresseFooter span, #infotelFooter span, #infofaxFooter span, #infotelportContact span, #infoouvertureContact span, #infoadresseContact span, #infotelfixeContact span {
	display: block;
	color: var(--white);
	font-size: 10px;
	font-family: var(--font-bold);
	padding-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1;
}

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

/* ------------------------- */
/* 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 var(--primary-bgcolor);
    transition: color 0.3s ease-in-out;
    background-size: 100% 200%;
    background-image: linear-gradient(to top, transparent 0%, transparent 50%, var(--secondary-bgcolor) 50%, var(--secondary-bgcolor) 100%);
    background-position: 0 100%;
    will-change: background-position;
}

.tc_content a:not([class*="button"]):hover, .tc_content a:not([class*="button"]):hover strong{
	-webkit-animation: backgroundAnimateIn 0.3s;
	animation: backgroundAnimateIn 0.3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	color: var(--white);
	border-bottom-color: var(--secondary-bgcolor);
}

.tc_content a[rel*="lightbox-gallery"]{
	border: none!important;
	background: 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;
}
.tc_content p.has-background{
	margin: 0 0 30px 0;
	padding: 30px 40px;
	box-sizing: border-box;
}
.tc_content p.has-background{
	background-color: var(--secondary-bgcolor);
	color: var(--white);
}
.tc_content p.has-background a,
.tc_content p.has-background strong{
	color: var(--primary-bgcolor);
}
.tc_content p.has-background.has-drop-cap:first-letter{
	font-size: 80px;
	font-family: var(--font-title);
	line-height: 18px;
	position: relative;
	top: -10px;
}
.tc_content .valeur p.has-background {
    padding: 30px 20px;
    margin-bottom: 0px;
}


.tc_content ol,
.tc_content ul{
    margin: 0 0 16px 30px;
}

.wp-block-column > h3:first-child,
.wp-block-column > h2:first-child {
	margin-top: 0;
}

.widget_element li{
    /* list-style: none; */
    position: relative;
    padding: 10px 10px!important;
    text-align: center;
    box-sizing: border-box;
}


.widget_element img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
}
#partenaires .widget_element img{
   transition: 250ms all ease-in-out;
}
#partenaires .widget_element img:hover {
    filter: grayscale(0) brightness(1);
}

.widget_element a{
   background: none!important;
   border: none!important;
}

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

.widget_element h3,
.widget_element h2{
	display: none;
}

.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(--title-color)!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);
}
.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;
}
.tc_content ol{
    list-style-type: decimal;
}

.tc_content ol li{
    padding: 2px 0;
    position: relative;
}
.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: 13px;
	width: 6px;
	display: block;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	height: 6px;
	border-radius: 100px;
}

.tc_content hr.is-style-dots:before{
    content: "\00b7 \00b7 \00b7 \00b7 \00b7";
    color: var(--primary-bgcolor);
    font-size: 30px;
    letter-spacing: 18px;
    padding-left: 2em;
    text-shadow: 5px 4px 0px #0000004a;
}
.tc_content hr.is-style-wide{
    height: 5px;
    width: 100%;
}
.tc_content hr.is-style-default{
    max-width: 250px;
    height: 2px;
    margin: 50px auto;
}
.tc_content hr.is-style-default{
	background: var(--primary-bgcolor)!important;
	border: none;
}
.tc_content pre{
    border: 1px solid rgba(0,0,0,0.2);
    padding: 10px 15px;
    font-size: 0.8em;
    background: rgba(255,255,255,0.2);
    outline-color: #ffffffa1;
    outline-offset: -5px;
    outline-style: dashed;
    outline-width: 1px;
    margin: 2em 10px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: pre-wrap;
}
blockquote{
  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{
   display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-style: normal;
    font-size: 14px;
    color: var(--tertiary-bgcolor);
    position: relative;
    padding-top: 11px;
}
blockquote cite:before{
/* 	content: ""; */
	position: absolute;
	height: 50px;
	width: 2px;
	background-color: var(--black);
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

blockquote.is-style-large{
	border-top: 2px solid var(--primary-bgcolor);
	border-bottom: 2px solid var(--primary-bgcolor);
}

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

.wp-block-quote cite,  .wp-block-quote.is-style-large cite{
	text-align: center;
	font-size: 10px;
}

.wp-block-quote p {
	/* color: var(--white); */
	text-align: center;
	margin: 0;
}

blockquote:before {
  color: var(--tertiary-bgcolor)!important;
  content: open-quote;
  font-size: 90px;
  position: absolute;
  top: 10px!important;
  left: 15px!important;
  font-family: var(--font-title);
  line-height: 1;
  height: 0;
  display: inline;
  z-index: 2;
}

blockquote:after{
	color: var(--tertiary-bgcolor);
	content: close-quote;
	font-size: 90px;
	position: absolute;
	bottom: 50px;
	right: 19px;
	font-family: var(--font-title);
	line-height: 1;
	display: inline;
	z-index: 2;
	height: 0;
	font-size: 90px;
}



blockquote p {
  font-size: 20px;
  font-family: var(--font-text);
  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: 6em;position: relative;}


.tc_content .wp-block-lazyblock-slider-de-galerie .cksliderwrap{
	padding-bottom: 15px;
}
.tc_content iframe{
	width:100%;
	min-height:400px;
	background: #000;
}

p.big-p, .woocommerce-product-details__short-description p{
	font-size: 22px;
	color: var(--title-color);
	line-height: 1.4;
}

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

.callout.alert {
	background-color: #f5e6e6;
}

.callout:after{
	content: "";
	position: absolute;
	background-image: url('../images/logotype.png');
	background-position: center;
	background-size: contain;
	width: 120px;
	height: 120px;
	right: 0;
	bottom: -30px;
	opacity: 0.15;
	transform: rotate(21deg);
	background-repeat: no-repeat;
}
.callout.mot-chef h3{
    margin-top: 0;
    text-transform: uppercase;
    font-size: 20px;
    text-decoration: underline;
    font-style: initial;
    margin-bottom: 15px;
}
.callout.mot-chef {
	background-color: #f5e9e1;
	font-style: italic;
}

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



/*-----------------*/
/* HEADER */
/*-----------------*/
#header{
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 30;
	background-color: var(--white);
	box-shadow: 0 0 30px rgba(0,0,0,.2);
}
#header-top{background-color: var(--light-color);padding: 0 15px;}
#header-bottom{
	padding: 15px 10px;
}

#header-prestations{display: flex;align-items: center;margin-left: 20px;}
#header-prestations li {
	position: relative;
	width: 40px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	margin: 0 3px;
}

#header-top .right{
	margin-left: auto;
}
#recrutement{
	position: relative;
	margin-left: auto;
	width: 160px;
	z-index: 1;
}
.espacerecrutement{
	display: block;
	background-color: var(--secondary-bgcolor);
	color: var(--white);
	position: absolute;
	top: -131px;
	left: 0;
	padding: 69px 15px;
	text-align: center;
	font-family: var(--font-title);
	line-height: 1.3;
	font-size: 16px;
}
.espacerecrutement:before{
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	left: 20px;
	bottom: 30px;
	border-style: solid;
	border-width: 0 7.5px 15px 4.5px;
	border-color: transparent transparent var(--base-color) transparent;
	transform: rotate(38deg);
}

.espacerecrutement:after{
	content: "";
	position:absolute;
	left: 10px;
	height: 100%;
	width: calc(100% - 6px);
	background-color: var(--tertiary-bgcolor);
	z-index: -1;
	top: 0;
	transform: rotate(4deg);
}

.espacerecrutement span{
	text-transform: uppercase;
	font-family: var(--font-bold);
	font-size: 20px;
	letter-spacing: 2px;
	display: block;
	padding-top: 5px;
}

.espacepro{
	color: var(--secondary-bgcolor);
	position: relative;
	padding-left: 17px;
	text-transform: uppercase;
	font-size: 12px;
	font-family: var(--font-bold);
}

.espacepro:hover{
	color: var(--primary-bgcolor);
}
.espacepro:before{
	content: "";
	background-image: url('../images/icons/briefcase.svg');
	position: absolute;
	left: 0;
	top: 4px;
	width: 12px;
	height: 12px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.recrutement{
	margin-left: 15px;
	background-color: var(--secondary-bgcolor);
	padding: 15px 10px 15px 40px;
	font-size: 12px;
	letter-spacing: 0;
}
.recrutement:before{
	background-color: var(--primary-bgcolor);
}
.recrutement:after{
	content: "";
	background-image: url('../images/icons/recruitment.svg');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
	width: 30px;
	height: 31px;
	position: absolute;
	left: 5px;
	top: calc(50% + 3px);
	transform: translateY(-50%);
}

#header-top .contactButton{
	margin-right: 5px;
}

.contactButton{
	padding: 16px 10px 16px 40px;
	letter-spacing: 0;
	font-size: 12px;
}
.contactButton:after{
	content: "";
	background-image: url(../images/icons/mail-white.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.sav, .infohoraires_other{position: relative;padding-left: 21px;text-transform: uppercase;font-size: 12px;color: var(--secondary-bgcolor);font-family: var(--font-bold);margin-left: auto;}
.sav svg, .infohoraires_other svg{
	fill: var(--primary-bgcolor);
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
	top: 2px;
}
.sav a {
	color: var(--secondary-bgcolor);
}
.sav strong{
	color: var(--primary-bgcolor);
	transition: 250ms all ease-in-out;
}

.sav a:hover,
.sav a:hover strong,
.infohoraires_other a:hover {
	color: var(--secondary-bgcolor);
}


.sav small{
	font-family: var(--font-text);
	font-size: 10px;
}

#header-contact {
   position: absolute;
   left: 0;
   right: 0;
   top: 0;
   background: var(--light-color);
   padding: 160px 0;
   display: flex;
   align-items: flex-start;
   overflow: hidden;
   transform: translateY(-100%);
   transition: all 0.3s ease;
   height: 100vh;
   box-sizing: border-box;
   z-index: 6;
   opacity: 0;
   overflow: scroll;
   justify-content: center;
}


#header-contact .contact-left{
	padding-right: 30px;
}
#header-contact .contact-right{
	padding-left: 30px;
}

#header-contact .contact-middle img{
	width: 200px;
}



body.is-toggle-open #header #header-contact {
    transform: translateY(0);
    opacity: 1;
}

#infoadresse, #infotelfixe, #noshare, #contactButton-wrapper, #header-contact .contact-middle{
	line-height: 1.5;
	margin-bottom: 20px;
	width: 260px;
	text-align: left;
	margin-left: auto;
}
#infoadresse strong, .titlehoraires {
	color: var(--title-color)
}


#infotelfixe svg, #infoadresse svg,
#infotelfixeFooter svg, #infoadresseFooter svg,
.titlehoraires svg{
	width: 15px;
	fill: var(--primary-bgcolor);
	position: relative;
	top: 50%;
	padding-right: 5px;
	position: absolute;
	left: 0;
	transform: translateY(-50%);
}

#infoadresse strong, .titlehoraires {
	text-transform: uppercase;
	font-size: 14px;
	font-family: var(--font-bold);
	margin-bottom: 10px;
}

#infotelfixe a, .sociblock .share-buttons a {
	color: var(--text-color);
}
#infotelfixe a:hover, .sociblock .share-buttons a:hover {
	color: var(--primary-bgcolor);
}



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

 #logo a {display: inline-block;}
#logodesktop {width: 180px;}
#header .fixed-logo {
	display: none;
}

#autotraduction{
    margin-left: 5px;
    /* position: relative; */
    /* top: -7px; */
}
#logo-wrapper{
	text-align: center;
	display: flex;
	align-items: center;
}


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




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

#infotelfixe_footer {
	background-image: url(../images/icons/phone-white.svg);
}




#header #infoadresse #infoadresse_inner div {margin: 0 3px;}


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



#infocontact #infotelport{
	font-size: 25px;
	font-family: var(--font-title);
}

#infocontact #infoouverture{
	border-top: 1px solid rgba(117, 17, 12, 0.2);
	padding-top: 30px;
	margin-top: 20px;
}

#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, #hide-toogle {
	margin-left: 20px;
	background-color: var(--secondary-bgcolor);
	position: relative;
	z-index: 30;
	cursor: pointer;
	text-align: center;
	transition: .5s ease-in-out;
	display: flex;
	width: 45px;
	height: 44px;
	align-items: center;
	justify-content: center;
}

#info-toogle:hover,
#hide-toogle:hover{
	background-color: var(--base-color);
}

#hide-toogle {
    transform: translateX(-50%) translateY(0);
    transition-delay: 0.3s;
    top: 0;
    left: 50%;
    position: absolute;
}

#hide-toogle:before {
    content: "";
    background-image: url(../images/icons/close-white.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    /* bottom: -30px; */
    left: 50%;
    transform: translateX(-50%) rotate(-180deg);
    transition: all 0.3s ease;
    width: 17px;
    height: 17px;
}

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

.is-toggle-open #header #info-toogle{
    transform: translateY(-100px);

}

#h1{
	position: relative;
	z-index: 1;
}
#h1 .innerImg {
    position: relative;
    overflow: hidden;
}

#h1 .innerImg .imageAnimation {
    width: 100%;
    height: 100%;
}
#h1 .innerImg .imageAnimation {
    height: 40vh;
    min-height: 450px;
}
#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;
}
#h1 .innerImg .imageOverlay, #homeHeader .imageOverlay {
    width: 110%;
    background-color: var(--primary-bgcolor);
}
body.loaded #homeHeader .imageOverlay, body.loaded #h1 .innerImg .imageOverlay {
    left: 100%;
}
#h1 .innerImg .imageAnimation .imageDiapo {
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}
#h1 .innerImg .imageAnimation .imageDiapo, #h1 .innerImg .imageAnimation .blocthumb {
    height: 100%;
}
/*-----------------*/
/* CONTENT */
/*-----------------*/

#video{
 position: relative;
 background: transparent;
 overflow: hidden;
 background-position: center;
 background-repeat: no-repeat;
}
#video:after{
	content: "";
	position: absolute;
	 background-image: url('../video/homeVideo.jpg');
	 background-position: center;
	 background-repeat: no-repeat;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height:100%;
	    z-index: -1;
}
.flexible {
    position:absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}

.home #content{
	position: relative;
	overflow: hidden;
}
#content .content-vonthron{
	height: calc(100vh - 105px);
	min-height: 650px;
	position: relative;
	z-index: 10;
}

#content .content-vonthron li{
    position: absolute;
    transition: 0.3s all ease-out;
    height: 100%;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 50%);
}
#content .content-vonthron li:nth-child(1){
	clip-path: polygon(100% 0, 0 0, 0 100%);
}
#content .content-vonthron li:nth-child(2){
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

#content .content-vonthron li:before{
	content: "";
    position: absolute;
    transition: 0.3s all ease-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#content .content-vonthron li:nth-child(1):before{
	background-color: hsl(0 0% 0% / 0.6);
}
#content .content-vonthron li:nth-child(2):before{
	background-color: hsl(0 0% 0% / 0.8);
}

#content .content-vonthron li:nth-child(1):hover:before{
	background-color: rgb(0 55 131 / 90%);
}

#content .content-vonthron li:nth-child(2):hover:before{
	background: rgb(211 0 98 / 80%);
}

#content .content-vonthron li a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

#content .content-vonthron .content-img{
	position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#content .content-vonthron .content-img img{
	display: block;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: 250ms all ease-in-out;
}

#content .content-vonthron li:hover .content-img img {
	opacity: 1;
}

#content .content-vonthron .content-body{
	position: absolute;
}
#content .content-vonthron .content-body p, #content .content-vonthron .content-body h2 {
	color: var(--white);
}
#content .content-vonthron .content-body p{
	margin-bottom: 20px;
}
#content .content-vonthron .content-body h2{
	margin-top: 0;
	margin-bottom: 10px;
}

#content .content-vonthron .content-wrapper {
	width: 500px;
}

#content .content-vonthron li:nth-child(1) .content-body{
    top: 100px;
    left: 100px;
}
#content .content-vonthron li:nth-child(2) .content-body{
	bottom: 100px;
    right: 100px;
    text-align: right;
}

#content .content-vonthron li:nth-child(2) .button{
	background-color: var(--secondary-bgcolor);
}
#content .content-vonthron li:nth-child(2) .button:before{
	background-color: var(--primary-bgcolor);
}
#content {
    position: relative;
    z-index: 4;
}
#contentPage {
    padding: 120px 30px;
    box-sizing: border-box;
}
#contentPage.specialIntro {
    padding: 0 30px 0 0;
}
#contentPage .introPage{
	padding: 100px 30px;
}


#cta-relamping .button{background-color: var(--relamping-color);}


.cta-footer .button{background-color: var(--base-color);}


#cta-sanitaire .button{background-color: var(--sanitaire-color);}


#cta-professionnels .button{background-color: #cbad05;}

#ctaFooter{
	background-color: #00193a;
	padding: 70px 30px;
}
#ctaFooter .title{
	margin-bottom: 40px;
}
.cta-footer .title{
	margin-bottom: 50px;
}

.cta-footer .title h2 {
	text-shadow: 1px 1px 1px rgb(0 0 0 / 0.5);
	font-size: 26px;
}
.cta-footer .button{
	min-width: 258px;
}
.cta-footer {
	margin: 5px 10px
}


.cta-footer:nth-child(2):before{
	opacity: 0.6;
}
.cta-footer .cta-content{max-width: 700px;margin: auto;}

#egaliteFooter{
	padding: 70px 30px;
	background-color: var(--primary-bgcolor);

}
#egaliteFooter .title{
	margin-bottom: 40px;
}
#egaliteFooter .title:before{
	background-color: var(--white);
}
#egaliteFooter p{
	color: var(--white);
	margin-bottom: 1.5em;
}
#egaliteFooter b{
	color: var(--white);
	font-size: 24px;
	display: inline-block;
	margin-top: 1.5em;
}





.form-wrap .wrap-fieldset {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#aside{
	margin-left: 40px;
	float: right;
	margin-bottom: -10px;
}

#aside-recrutementform{
	background-color: var(--secondary-bgcolor);
	padding: 30px 22px;
	color: var(--white);
	position: relative;
	top: -50px;
	min-width: 300px;
	margin-bottom: -50px;
}
#aside-recrutementform .mention{
	color: var(--white);
}
#aside-recrutementform h3 {
	margin-top: 0;
	color: var(--white);
	font-family: var(--font-bold);
	text-transform: uppercase;
	font-size: 22px;
	position: relative;
	padding-bottom: 20px;
	text-align: center;
}
#aside-recrutementform h3:after {
    content: '';
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 50px;
    background-color: var(--primary-bgcolor);
    position: absolute;
    margin-left: -25px;
}
#aside-recrutementform .form-wrap .wrap-fieldset .blc_text,
#aside-recrutementform .form-wrap .wrap-fieldset .blc_email,
#aside-recrutementform .form-wrap .wrap-fieldset .blc_select,
#aside-recrutementform .form-wrap .wrap-fieldset .blc_fileattach,
#aside-recrutementform .form-wrap .wrap-fieldset  #cptchk-recrutement,
#aside-recrutementform .form-wrap .wrap-fieldset .button.cf_submit,
#aside-recrutementform .form-wrap .wrap-fieldset .blc.blc_captcha {
	flex: 1 1 94%;
    max-width: 94%;
    width: 100%;
    margin: 0px 2%;
}
#aside-recrutementform .form-wrap .wrap-fieldset .button.cf_submit{
	background-color: var(--primary-bgcolor);
}
#aside-recrutementform .form-wrap .wrap-fieldset .button.cf_submit:hover{
	background-color: var(--tertiary-bgcolor);
}

#aside-recrutementform .blc_checkbox{
	margin-top: 30px;
}

#aside-recrutementform .cekome_form .blc_checkbox label {
	color: var(--white);
}
#aside-recrutementform .cekome_form .blc_checkbox label a{
	color: var(--tertiary-bgcolor);
}

#aside-recrutementform .cekome_form .blc_checkbox label a:hover{
	color: var(--primary-bgcolor);
}

.form-wrap .wrap-fieldset #cptchk-contact .blc.blc_captcha, .form-wrap .wrap-fieldset #cptchk-recrutement .blc.blc_captcha {
    max-width: 100%;
    margin: 4px 0;
}
#cptchkbx-recrutement{
	position: relative;
	top: -5px;
}

#jobs .recrutement-wrapper{
	padding: 10px;
}
#jobs .recrutement_img{
	height: 200px;
}

#jobs .recrutement_content{
	padding: 20px 20px 30px;
	background-color: var(--light-color);
}

#jobs .text_recrutement{
	font-size: 14px;
	line-height: 1.6;
}
#jobs .recrutement_content h2 {
	margin-top: 0;
	font-size: 22px;
	margin-bottom: 10px;
}

#jobs .recrutement_content h2 a {
	color: var(--title-color);
}
#jobs .recrutement_content h2 a:hover {
	color: var(--primary-bgcolor);
}



/*-----------------*/
/* FOOTER */
/*-----------------*/
#footer{
	font-size: 14px;
	position: relative;
	z-index: 20;
	color: var(--text-color);
	box-shadow: 0 0 30px rgba(0,0,0,0.1);

}

.home #footer{
		padding-bottom: 53px;
}
#footer #footerbloc{
	padding: 50px 15px;
}

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

/*LOGO*/

#footer #logofooter .logo-footer{
	display: inline-block;
	margin-right: 40px;
}

#footer #logofooter{
	display: flex;
	padding-bottom: 20px;
	align-items: center;
	border-bottom: solid 1px rgb(0 0 0 / 20%);
	margin-bottom: 20px;
}
#seo-footer {
    font-size: 12px;
    font-style: italic;
}


 #logofooter img{
    width: 90px;
}



/*MAPS*/
#footer #mapfooter{
	width:100%;
	/* height: 100%; */
	box-sizing: border-box;
}
#footer #mapfooter img{
	object-fit:cover;
}


#footer .maps_canvas img{
    transition:0.5s all ease;
}



/*NAVIGATION*/
#footer #navfooter{
    /* padding: 10px 0 10px 10px; */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

#footer #navfooter #menu-footer .menu-item{
margin-right: 20px;
}


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

/*COPYRIGHT*/
#footer #footerlinks{
    font-size: 13px;
    text-align: center;
    background-color: var(--secondary-bgcolor);
    padding: 10px 15px;
}
#footer #footerlinks a{
    color: var(--white);
    text-decoration: none;
}


#recrutementFooter{
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 12px 15px;
	background: var(--base-color);
	z-index: 90;
	text-align: center;
	color: var(--white);
	font-family: var(--font-text);
}

#recrutementFooter:hover{
	background-color: #00193a;
}
#recrutementFooter strong{
	text-transform: uppercase;
}
#interviewMois{
	 padding: 80px 30px 100px;
	 background-color: #00193a;
}

#interviewMois .title{
	 margin-bottom: 40px;
}
#certifications {
    padding: 80px 30px 100px;
    position: relative;
    box-sizing: border-box;
}

#certifications .cksliderwrap{
	padding-bottom: 50px;
}

#certifications .title {
    margin-bottom: 40px;
}

#certifications .prev,
#certifications .next{
	top: calc(50% - 25px);
	transform: translateY(-50%);
}

.annonces.single-php .has-medium-font-size{
	color: var(--base-color) !important;
}

/*----------------------------- ************ -----------------------------*/
.hiddenHead
{
	display: none;
}
