/*-----------------*/
/* VARIABLE */
/*-----------------*/
:root
{
	/*COLORS*/
	--primary-bgcolor: #2aa736;
	--secondary-bgcolor: #0094d2;
	--tertiary-bgcolor: #f29537;
	--text-color: #808291;
	--title-color: #191a1c;
	--light-color: #f4f4f4;
	--white: #FFFFFF;
	--black: #000000;

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

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

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




body {
  font-size: 16px;
  line-height: 1.8;
  font-family: var(--font-text);
  top:0 !important;
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
}
*:before, *:after {
    box-sizing: border-box;
}

@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;
	padding: 0 15px 0 0;
	text-decoration: none;
	display: inline-block;
	position: relative;
	font-family: var(--font-title);
	font-size: 14px;
	letter-spacing: 1px;
	line-height: 1;
	z-index: 0;
	color: var(--title-color);
	font-size: 12px;
	font-family: var(--font-bold);
	letter-spacing: 1px;
}

.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{
	content: "";
	background-image: url(../images/icons/right-arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 9px;
	height: 9px;
	margin-left: 10px;
	display: inline-block;
	position: absolute;
	right: 0px;
	z-index: -2;
	transition: all 150ms linear;
	top: 50%;
	transform: translateY(-50%);
}

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

.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 ]
*/
.container
{
	margin: 0;
	padding: 0;
	height: 100%;
	width: 100%;
	overflow: hidden;
	text-align: center;
}

.preloader svg {
	z-index: 10;
	height: 100%;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
   background: #222;
  background: linear-gradient(to bottom, #111 , #222);
  display: inline-block!important;
  /* transition: 500ms all ease-in-out; */
}
#loader-wrapper svg{
  width: 100px;
  height: 100px;
  margin: 20px;
  display:inline-block;
}
#loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background: linear-gradient(to bottom, #2c3e50, #212f3c);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loaded .loader {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;  
	transition: all 0.3s ease-out;
}

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

.loading p {
  color: #ccc;
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
  font-family: var(--font-bold);
}

/*
 * Loading Dots
 * Can we use pseudo elements here instead :after?
 */
.loading span {
  display: inline-block;
  vertical-align: middle;
  width: .6em;
  height: .6em;
  margin: .19em;
  background: #007DB6;
  border-radius: .6em;
  animation: loading 1s infinite alternate;
}

/*
 * Dots Colors
 * Smarter targeting vs nth-of-type?
 */
.loading span:nth-of-type(2) {
  background: #008FB2;
  animation-delay: 0.2s;
}
.loading span:nth-of-type(3) {
  background: #009B9E;
  animation-delay: 0.4s;
}
.loading span:nth-of-type(4) {
  background: #00A77D;
  animation-delay: 0.6s;
}
.loading span:nth-of-type(5) {
  background: #00B247;
  animation-delay: 0.8s;
}
.loading span:nth-of-type(6) {
  background: #5AB027;
  animation-delay: 1.0s;
}
.loading span:nth-of-type(7) {
  background: #A0B61E;
  animation-delay: 1.2s;
}

/*
 * Animation keyframes
 * Use transition opacity instead of keyframes?
 */
@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body.loaded .preloader{
	/* display: none!important; */
}

.loader-10 {
  position: relative;
  -webkit-animation: loader-10-1 2s infinite linear;
  animation: loader-10-1 2s infinite linear;
  top: 50%;
}
.loader-10:before, .loader-10:after {
  content: "";
  width: 0;
  height: 0;
  border: 20px solid var(--primary-bgcolor);
  display: block;
  position: absolute;
  border-radius: 100%;
  -webkit-animation: loader-10-2 2s infinite ease-in-out;
  animation: loader-10-2 2s infinite ease-in-out;
}
.loader-10:before {
  top: 0;
  left: 50%;
}
.loader-10:after {
  bottom: 0;
  right: 50%;
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}

@-webkit-keyframes loader-10-1 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader-10-1 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes loader-10-2 {
  0%,
 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes loader-10-2 {
  0%,
 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.scroll-wrapper > .scroll-content {
  border: none !important;
  -webkit-box-sizing: content-box !important;
          box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scroll-element {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5px;
  background: #5d5d5d;
}

.scroll-element.scroll-x.scroll-scrolly_visible {
  display: none !important;
}

.site-light .scroll-element {
  border-color: #e0e0e0;
  background: #fff;
}

.scroll-element .scroll-element_size {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5px;
}

.scroll-element .scroll-element_track {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.scroll-element .scroll-bar {
  width: 5px;
  cursor: pointer;
  background: #bc8953;
  /* min-height: 20px; */
  position: absolute;
}

.site-light .scroll-element .scroll-bar {
  background: #c0c0c0;
}


/*-----------------*/
/* 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: 42px;
	margin-bottom: 40px;
	margin-top: 0;
	line-height: 1;
}

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

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

@media(max-width:736px){
	h1, #title p{font-size: 28px;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: 14px;
	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.tac {
	margin-bottom: 100px;
}
#pageTitle{
	margin-bottom: 0;
}

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

.accroche{
	max-width: 900px;
	margin: auto;
}


.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: 10px;
    width: 120px;
    background-image: url('../images/logotype.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
}

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



/*-----------------*/
/* 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;
	background-color: var(--light-color);
}


#galleryHome .gallery dl.gallery-item{
	padding: 4px 2px 20px;
	min-width: calc(100% / 7);
	position: relative;
	overflow: hidden;
	height: 300px;
	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;
}

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

.gallery-item:hover a: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%;
}



.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-family: var(--font-bold);
    width: 100px;
    text-align: right;
}
#infoouverture  .jourhoraires,
#infoouverture .detailhoraires {
	color: var(--white);

}

.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{
	 text-align: left;
	 padding-left: 10px;
}

.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 */
/* ------------------------- */

.tc_content .wp-block-button__link{
  background-color: var(--primary-bgcolor);
  padding: 18px 30px;
  font-size: 12px;
  font-family: var(--font-bold);
  color: var(--title-color);
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  /* height: auto; */
  line-height: 1;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  border-radius: 45px;
  overflow: hidden;
}
.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;
}

.tc_content .wp-block-button__link:hover{
	color: var(--white);
}

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


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

.underbutton > *, .button{
	  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: 2px;
	  position: relative;
	  z-index: 1;
	  border-radius: 45px;
	  padding: 15px 15px;
}

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

.underbutton > *:before, .button:before{
	width: 100%;
	background-color: var(--tertiary-bgcolor);
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	border-radius: 28px;
	transition: all 0.3s ease;
	z-index: -1;
	transform: translateY(-50%);
	height: 100%;
}

.underbutton.secondary > *:before, .button.secondary:before {
	background-color: var(--primary-bgcolor);
}
.underbutton.white > *:after, .button.white:after{
	 background-image: url('../images/icons/right-arrow_white.svg');
}

.underbutton > *:after, .button:after{
    content: "";
    background-image: url('../images/icons/right-arrow.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 9px;
    height: 9px;
    margin-left: 10px;
    transform: translateX(-5px);
    display: inline-block;
    position: absolute;
    right: 0px;
    z-index: -2;
    transition: all 150ms linear;
}

.underbutton > *:hover:after, .button:hover:after{
	right: -10px;
}

.underbutton > *:hover:before, .button:hover:before{
	width: 42px;
	background-color: var(--secondary-bgcolor);
}


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


#header #infotelport a:hover, #header #infotelport2 a:hover, #header #infotelfixe a:hover, .horairesBT:hover, #phoneBT-infotelport:hover{
	color: var(--primary-bgcolor);
}


#backBTsinglewoo{margin-bottom: 30px;margin-top: 30px;}






#infoadresseFooter, #infotelfixeFooter, #infoadresseContact, #infotelfixeContact{
    background-position: left center;
    background-size: 15px;
    background-repeat: no-repeat;
    padding: 0 0 0 25px;
}


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

#infoadresseFooter{
	margin-right: 30px;
	background-image: url('../images/icons/map.svg');
}

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

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

#infotelfixeContact{
	background-image: url('../images/icons/phone.svg');
	margin: 40px 0;
}



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

#footer #infotelfooter a {
	color: var(--white);
}


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





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




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


/* ------------------------- */
/* 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;
	background-clip: text;
	-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: all 0.3s ease-in-out;
    background-repeat: no-repeat;
    background-image: -o-linear-gradient(transparent calc(100% - 2px),currentColor 2px);
    background-image: linear-gradient(transparent calc(100% - 1px),var(--secondary-bgcolor) 1px);
    background-image: -ms-linear-gradient(transparent 95%,currentColor 2px);
    -webkit-transition: .6s cubic-bezier(.215,.61,.355,1);
    -o-transition: .6s cubic-bezier(.215,.61,.355,1);
    transition: .6s cubic-bezier(.215,.61,.355,1);
    background-size: 0 100%;
}

.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(--secondary-bgcolor);
	background-size: 100% 95%;
}

.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 strong{
	color: #313131;
}

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

.sitemap ul{
	margin-left: 10px;
}

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

.widget_element{
	margin: 0 !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;
}
.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 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(--text-color);
    position: relative;
    padding-top: 11px;
}
blockquote cite:before{
/* 	content: ""; */
	position: absolute;
	height: 50px;
	width: 2px;
	background-color: var(--black);
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

blockquote.is-style-large{
	border-top: 2px solid var(--primary-bgcolor);
	border-bottom: 2px solid var(--primary-bgcolor);
}
blockquote:before {
  color: var(--primary-bgcolor);
  content: open-quote;
  font-size: 130px;
  position: absolute;
  top: 20px;
  left: -40px;
  font-family: var(--font-title);
  background-color: var(--white);
  line-height: 1;
  height: 100px;
  display: inline;
  z-index: 2;
}
blockquote p {
  font-size: 32px;
  font-family: var(--font-surtitle);
  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: 10px!important;border: 1px solid rgb(224 224 224 / 60%)!important;font-size: 14px;color: var(--white);line-height: initial!important;text-align: left;display: table-cell!important;}
.tc_content table td{padding: 10px !important;border: 1px solid rgb(0 0 0 / 10%)!important;display: table-cell;}
.wp-block-table.wide-table tr {
	display: table-row!important;
}


table thead{
	background-color: var(--primary-bgcolor);
}

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


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



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

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

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

#bandeau-info{
	position: relative;
	/* 	background: linear-gradient(to right, #0a9f3a, #6eb52a); */
	z-index: 40;
	padding: 15px 20px;
	background: linear-gradient(132deg, var(--primary-bgcolor), var(--secondary-bgcolor));
	background-size: 400% 400%;
	animation: Gradient 15s ease infinite;
}

@keyframes Gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#bandeau-info, 
#bandeau-info a{
	color: var(--white);
	display: block;
}
#bandeau-info .gotolink{
	margin-left: auto;
	min-width: 160px;
	text-align: right;
}
#bandeau-info .wrap-element{
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
}

.title-bandeau{
	text-transform: uppercase;
	font-family: var(--font-bold);
	margin-right: 20px;
}



/*-----------------*/
/* HEADER */
/*-----------------*/
#header{
	z-index: 31;
	position: absolute;
	left: 0;
	right: 0;
}

#header-top{
    padding: 0 50px;
    display: flex;
    align-items: center;
    height: 36px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    justify-content: center;
    background-image: linear-gradient(to bottom, #0b4e98, #0b4e98);
}

body.is-toggle-open #header-top {
	   background-color: var(--primary-bgcolor);
	   background-image: none;
}


#header-contact .wrappercontent:before{
	content: "";
	position: absolute;
	width: 1px;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	margin-left: -1px;
	background-color: var(--white);
	height: 100%;
	opacity: 0.1;
}
#header-contact{
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background-image: linear-gradient(to bottom, #0b4e98, #0b4e98);
	padding: 90px 0;
	display: flex;
	align-items: flex-start;
	overflow: hidden;
	transform: translateY(-100%);
	transition: all 0.3s ease;
	height: calc(100vh - 26px);
	box-sizing: border-box;
	z-index: -1;
	opacity: 0;
	overflow: scroll;
}

 body.with-bandeau #header-contact{
 	height: calc(100vh - 93px);
 }
#header-contact .wrappercontent{
	height: 100%;
	align-items: center;
}
#header-contact .title {
	margin: 0 0 30px 0;
}

#navcontact .title{
	margin: 0 0 43px 0;
}

#header-contact .title h2 {
	font-size: 28px;
}

#navcontact{
	display: flex;
	flex-direction: column;
	align-items: center;
}


#infoadresse,
#infoouverture,
#infotelfixe {
	position: relative;
	text-align: center;
	margin: 15px 0;
	line-height: 1.3;
	color: var(--white);
}

#infotelfixe a {
	background-image: url('../images/icons/phone-white.svg');
	background-position: left center;
	background-size: 14px;
	background-repeat: no-repeat;
	padding-left: 24px;
}

#infoouverture{
	margin-bottom: 0;
}
#infoouverture span, 
#infoadresse span, 
#infotelfixe span,
#infoouvertureContact span, 
#infoadresseContact span, 
#infotelfixeContact span {
	display: block;
	color: var(--tertiary-bgcolor);
	font-size: 12px;
	font-family: var(--font-bold);
	padding-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1;
}
#infoouvertureContact span, 
#infoadresseContact span, 
#infotelfixeContact span{
	color: var(--primary-bgcolor);
}



#infoouverture span{
	padding-bottom: 10px;
}

#infoouverture a,
#infotelfixe a{
	color: var(--white);
}


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

#infoouvertureContact a:hover, #infotelportContact a:hover{
	color: var(--primary-bgcolor);
}
	
	@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 0.9;
        transform: translateY(0);
    } 
	}
#logo{
	text-align: center;
	margin-bottom: 20px;
	margin-top: -15px;
}
 #logo a {display: inline-block;}
#logodesktop {width: 300px;}
.nohome #logodesktop {width: 200px;}
#header .fixed-logo {
	display: none;
}

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


#header #noshare {
	margin-left: auto;
	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 {
	z-index: 30;
	cursor: pointer;
	z-index: 6000 !important;
	text-align: center;
	transition: .5s ease-in-out;
	display: block;
	text-transform: uppercase;
	color: var(--white);
	font-family: var(--font-bold);
	font-size: 13px;
	line-height: 1.2;
	padding-top: 10px;
}
#hide-toogle{
	transform: translateX(-50%) translateY(0);
	transition-delay: 0.3s;
	top: 0;
	left: 50%;
	position: absolute;
	padding: 0;
}
#hide-toogle:before{
		content:"";
	background-image: url(../images/icons/arrow-down.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/arrow-down.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s ease;
	width: 20px;
	height: 20px;
	animation: anim-fleche 0.6s linear infinite;
}
#info-toogle:after, 
#hide-toogle:after{
	content: '';
	width: 140px;
	height: 140px;
	border-radius: 22px;
	position: absolute;
	left: 50%;
	bottom: -20px;
	margin-left: -70px;
	transform: rotate(45deg);
	z-index: -1;
	background-color: var(--tertiary-bgcolor);
	transition: all 0.3s ease;
}
#hide-toogle:after{
	    border-radius: 50px;
	    width: 200px;
	    height: 200px;
	    margin-left: -100px;
	    bottom: auto;
	    top: -160px;
	    background-color: var(--primary-bgcolor);
}
@keyframes anim-fleche {
  0% {
    margin-bottom: 0.5rem;
    opacity: 1; }

  100% {
    margin-bottom: -1rem;
    opacity: 0; } }




#header .is-toggle-open #info-toogle:before{
	background-image: url(../images/icons/close.svg);
	top: 30px;
	right: -10px;
}
body.is-toggle-open #info-toogle {
    transform: translateY(-100px);
}
body.is-toggle-open #header #header-contact {
   transform: translateY(0);
   opacity: 1;
}
#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%;
	z-index: 1;
	background: linear-gradient(rgba(12, 12, 12, 0.7) 10%, rgba(12, 12, 12, 0.3));
}
#h1 .overlay{
	background: linear-gradient(rgba(12, 12, 12, 0.7) 10%, rgba(12, 12, 12, 0.5));
}

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


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


#navprimary .navigtoogle.has-child .naviglink.lvl-0:after{
	bottom: 10px;
	border: solid transparent;
	content:
	" ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-top-color: var(--white);
	border-width: 4px;
	left: 50%;
	margin-left: -2px;
}
#navprimary .navigmenu .naviglink.lvl-0{
    padding: 0 16px 25px;
}
#navprimary .navigmenu .naviglink.lvl-0:hover,
#navprimary .navigmenu .active .naviglink.lvl-0{
	color: var(--tertiary-bgcolor);
}

#navprimary .navigmenu .naviglink.lvl-0:hover:before,
#navprimary .navigmenu .active .naviglink.lvl-0:before {
    background-color: var(--tertiary-bgcolor);
    background-size: 50%;
    border-radius: 100%;
}

#navsecondary .navigmenu .naviglink.lvl-0{
	color: var(--white);
	position: relative;
	text-align: center;
}

#navsecondary .navigmenu .naviglink.lvl-0:before{
	content: "";
	height: 80px;
	width: 80px;
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 40%;
	display:block;
	border-radius: 50%;
	margin: 0 auto 20px;
	background-color: var(--tertiary-bgcolor);
	transition: 250ms all ease-in-out;
}

#navsecondary .navigmenu .naviglink.item-agenda:before{
    background-image: url('../images/icons/menu-icons/agenda.svg');
}
#navsecondary .navigmenu .naviglink.item-evenement:before{
    background-image: url('../images/icons/menu-icons/evenement.svg');
}
#navsecondary .navigmenu .naviglink.item-accueil:before{
    background-image: url('../images/icons/menu-icons/accueil.svg');
}
#navsecondary .navigmenu .naviglink.item-histoire:before{
    background-image: url('../images/icons/menu-icons/histoire.svg');
}
#navsecondary .navigmenu .naviglink.item-actu:before{
    background-image: url('../images/icons/menu-icons/actu.svg');
}
#navsecondary .navigmenu .naviglink.item-contact:before{
    background-image: url('../images/icons/menu-icons/contact.svg');
}
#navsecondary .navigmenu .naviglink.item-images:before{
    background-image: url('../images/icons/menu-icons/images.svg');
}
#navsecondary .navigmenu .naviglink.item-travaux:before{
    background-image: url('../images/icons/menu-icons/travaux.svg');
}



#navsecondary .navigmenu .navigtoogle{
	flex: 1 1 33.333333333%;
	text-align: center;
	padding: 30px;
	max-width: 33.333333333%;
}


#navsecondary .navigmenu .naviglink.lvl-0:hover{
	color: var(--primary-bgcolor);
}

#navsecondary .navigmenu .naviglink.lvl-0:hover:before{
	background-color: var(--primary-bgcolor);
}

#navsecondary, #navcontact{
	padding: 50px 50px;
}



body.template-mentions-legales-php #navprimary .navigmenu .naviglink.lvl-0 span:before,
body.template-mentions-legales-php #navprimary .navigmenu .naviglink.lvl-0 span:after{
	content: none;
}



#navprimary .navigmenu .naviglink.item-contact{
	border: solid 2px var(--secondary-bgcolor);
	color: var(--secondary-bgcolor);
	transition-delay: initial;
	margin-left: 10px;
}
#navprimary .navigmenu .naviglink.item-contact:hover{
	background-color: var(--secondary-bgcolor);
	color: var(--primary-bgcolor);
}
#navprimary .navigmenu .naviglink.item-contact span:before {
	content: none;
}


#navprimary .navigtoogle .naviglink.lvl-0:hover span:before,
#navprimary .navigtoogle.active .naviglink.lvl-0 span:before{
	bottom: -14px;
	opacity: 0.5;
}




#navprimary .navigmenu .navigtoogle > .navdown{
    text-align: left;
    padding: 10px 0;
}

#navprimary .navigmenu .navigtoogle.no-megamenu > .navdown{
	padding: 15px 0;
}




.section-title h2{
	margin: 0;
	display: inline-block;
}

.section-title.white h2{
	color: var(--white);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
}

.section-title{
	position: relative;
	margin-bottom: 90px;
	z-index: 1;
}

.section-title 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;
	z-index: -1;
}

.section-title .no_line{
	width: 0;
	height: 130px;
	color: #000;
	margin: 0 auto;
}


/*-----------------*/
/* CTA SECTION */
/*-----------------*/

#contactform:before {
    position: absolute;
    content: '';
    background: var(--primary-bgcolor);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    opacity: 0.9;
}

#contactform {
	 position: relative;
	 background: url(../images/contact-bg.jpg);
	 background-size: cover;
	 background-position: center center;
	 background-repeat: no-repeat;
	 padding: 150px 60px;
	 box-sizing: border-box;
	 z-index: 5;
}

#contactform .title h2{
	font-size: 36px;
}

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

#contactform .title:before{
	background-color: var(--title-color);
}

#contactform  .col-coordonnees {
	position: relative;
	z-index: 2;
	width: 40%;
	color: var(--white);
}
#contactform .col-title{
	width: 100%;
}

#contactform  .col-form{
	width: 60%;
}


.home #agenda{
	box-sizing: border-box;
	padding: 150px 30px;
	background-color: var(--light-color);
}
 #agenda .calendar-item {
    padding: 50px 30px;
}
#agenda .calendar-localisation{
	flex: 1 1 100%;
}
#agenda .calendar-localisation,
#agenda .calendar-heure{
	margin-right: 20px;
}
 .calendar-localisation, .calendar-heure,  .calendar-horodatage{
	position:relative;
	padding: 0 0 0 22px;
}

#agenda .calendar-informations{
	display: flex;
	align-items: center;
	margin-top: 15px;
	color: var(--black);
	font-size: 14px;
	flex-wrap: wrap;
}

#agenda .calendar-content {
    font-size: 14px;
    line-height: 1.5;
}


 .calendar-localisation:before{
	content: "";
	background-image: url('../images/icons/map.svg');
	width: 15px;
	height: 15px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -7.5px;
}
 .calendar-heure:before{
	content: "";
	background-image: url('../images/icons/clock.svg');
	width: 15px;
	height: 15px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -7.5px;
}
 .calendar-horodatage:before{
	content: "";
	background-image: url('../images/icons/calendar.svg');
	width: 15px;
	height: 15px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -7.5px;
}

#agenda .calendar-img{
	min-width: 170px;
	box-sizing: border-box;
	height: 170px;
	width: 170px;
	margin: 0 auto 20px;
}
#agenda .calendar-img img{border-radius: 100%;}



#agenda .calendar-body {
    padding-left: 40px;
}
#agenda .calendar-body h3 {
   
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    font-family: var(--font-bold);
    line-height: 1.3;
}
#agenda .calendar-button {
    min-width: 210px;
    max-width: 210px;
    text-align: center;
}

#agenda .calendar-body h3 a {
	 color: var(--title-color);
}
#agenda .calendar-body h3 a:hover {
	 color: var(--primary-bgcolor);
}

/*-----------------*/
/* SLIDER ACTU */
/*-----------------*/
#slideactu{
	position: relative;
	box-sizing: border-box;
	z-index: 2;
	padding: 200px 15px 250px;
	background-image: url('../images/bg-news.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

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

#slideactu:before{
	background-color: rgb(0 0 0 / 70%);
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}



#slideactu .more-links{
}

.wrapper_slider{
	box-sizing: border-box;
	position: relative;
	box-sizing: border-box;
	padding: 0 20px;
	flex: 1 1 33.3333333%;
	width: 33.3333333%;
	min-width: 33.3333333%!important;
}




.thumbnail_slider{
   position: relative;
   height: 250px;
   z-index: 1;
   transition: 250ms all ease-in-out;
}
#slideactu .category{
		position: absolute;
		left: -10px;
		top: 20px;
		z-index: 2;
}
.category_title{
	color: var(--white);
	background-color: var(--secondary-bgcolor);
	padding: 5px 27px 5px 10px;
	font-family: var(--font-bold);
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 1px;
	border-radius: 0 5px  5px 0;
}


.category_title.evenements{
	background-color: var(--tertiary-bgcolor);
}
.category_title:before{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background-image: url('../images/icons/feed.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	right: 8px;
	top: 8px;
}

.category_title.evenements:before{
	background-image: url('../images/icons/star-white.svg');
}
.category_title.evenements:after{
	background-color: #bd670f;
}
.category_title:after{
	content: "";
	display: block;
	background-color: #035f86;
	height: 5px;
	width: 10px;
	left: 0px;
	position: absolute;
	top: -2px;
	transform: skewY(-18deg);
	z-index: -1;
}


.wrapper_inner_slider{
	position: relative;
	height: 100%;
	background-color: var(--white);
	border-radius: 5px;
}

.nohome .wrapper_inner_slider, .nohome .content_slider{
	background-color: var(--light-color);
}



.content_slider{
	box-sizing: border-box;
	left: 0;
	bottom: 0;
	padding: 30px;
	z-index: 1;
	transition: 500ms ease all;
	bottom: 10px;
	left: 10px;
	background: var(--white);
	border-radius: 0 0 5px 5px;
}




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



.img_thumbnail_slider{
    width: 100%;
    object-fit: cover;
    transition: 500ms all ease-in-out;
    height: 100%;
    position: absolute;
    left: 0;
    /* top: 0; */
    border-radius: 5px 5px 0 0;
}





.content_slider .wrappercontent {
	z-index: 2;
}

.title_link_slider{
    color: var(--title-color);
    font-size: 20px;
    line-height: 1.1;
    display: inline-block;
    font-family: var(--font-title);
}

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

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


.text_slider, .text_slider a{
    line-height: 1.5;
    font-size: 14px;
    color: var(--text-color);
}

.wrap_slider{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: solid 1px rgba(0,0,0,0.1);
	margin-top: 20px;
	padding-top: 10px;
}
.text_slider p {
	margin: 0;
}

.arrowright{
	background-image: url('../images/icons/arrowright.svg');
	width: 30px;
	height: 30px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
}

.arrowright.color{
	background-image: url('../images/icons/arrowright-color.svg');
}

.arrowright span{
	display: none;
}
.dateckslider{
	font-family: var(--font-text);
	font-size: 12px;
	display: flex;
	align-items: center;
	padding: 0 0 0 25px;
	position: relative;
	text-transform: uppercase;
}
.dateckslider:before{
	content: "";
	background-image: url('../images/icons/calendar.svg');
	width: 15px;
	height: 15px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	margin-top: -7.5px;
	left: 0;
}
.title_slider{
	margin-bottom: 10px;
	position: relative;
	transition: .5s;
	padding: 0;
	/* transform: translateY(50px); */
}


.title_slider:before{
	content: none!important;
}

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

.title_slider:after{
	content: none;
}
.title_slider small{
	color: var(--primary-bgcolor);
	display: block;
	font-size: 14px;
	margin-bottom: 10px;
	padding-bottom: 0;
}



/*-----------------*/
/* PRESTATIONS */
/*-----------------*/
#prestations{position: relative;box-sizing: border-box;background-image: url(../images/bg-prestations.jpg);background-position: center;background-repeat: no-repeat;background-size: cover;background-attachment: fixed;z-index: 1;padding: 150px 20px;}


.home #prestations:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.8;
	z-index: -1;
}
#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-content{
	width: 75%;
	box-sizing: border-box;
}

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


#prestations .widget_parentpage li{
	box-sizing: border-box;
	position: relative;
	padding: 5px;
	transition: all 0.4s ease;
}


#prestations .widget_parentpage li:hover{
	transform: translateY(-10px);
}




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


#prestations .image_content {
   
    height: 240px;
    display: block;
    cursor: pointer;
    z-index: 0;
    position: relative;
}
#prestations ul {
	/* counter-reset: section; */
}
#prestations .content-presta{
	box-sizing: border-box;
	z-index: 4;
	bottom: 15px;
	left: 0;
	right: 0;
}


#prestations .wrap-presta{
	position: relative;
    z-index: 7;
}
#prestations .wrap-presta{
	    font-size: 15px;
	    line-height: 1.7;
	    max-width: 400px;
}

#prestations .liresuite{
	padding-left: 25px;
}

#prestations .liresuite .arrowright  {
	width: 20px;
	height: 20px;
}
#prestations .wrap-presta .content_link {color: var(--white);}





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




#prestations h3 {
  font-size: 36px;
  margin-bottom: 20px;
  margin-top: 0;
}

#prestations h3 a {
	color: var(--text-color);
	position: relative;
	padding: 0px 10px;
	margin-left: 15px;
	display: inline-block;
	box-sizing: border-box;
	margin-right: 35px;
}

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




#prestations .prestations-content h3 {
	margin-top: 0;
	font-size: 20px;
	margin-bottom: 10px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
	position: relative;
	z-index: 1;
}

#prestations .prestations-content h3 a:before,
#prestations .prestations-content h3 a:after{
	height: 3px;
	width: 200px;
	position: absolute;
	content: '';
	top: 50%;
	-webkit-transform: scaleX(0) translateY(-50%);
	transform: scaleX(0) translateY(-50%);
	-webkit-transform-origin: 0% 0;
	-ms-transform-origin: 0% 0;
	transform-origin: 0% 0;
	background-color: #d5ac63;
	z-index: 5;
	transition: all 0.35s linear;
}
#prestations .prestations-content h3 a:before{
    right: 100%;
}

#prestations .prestations-content h3 a:after{
	left: 100%;
}

#prestations .widget_parentpage li:hover  h3 a:after,
#prestations .widget_parentpage li:hover  h3 a:before{
	-webkit-transform: scaleX(1) translateY(-50%);
    transform: scaleX(1) translateY(-50%);
}
#prestations .widget_parentpage li:hover  h3 a:after{
	-webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}


#cta-footer{
	background-image: url('../images/cta-bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
	padding: 100px 30px 180px;
}

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

#cta-footer:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	z-index: -1;
	opacity: 0.7;
}

/*-----------------*/
/* SECTIONS */
/*-----------------*/
#sections{
    position: relative;
    z-index: 2;
    padding: 150px 0;
}

#choixSections {
    display: flex;
    justify-content: center;
    margin: 100px 0 70px 0;
}
#choixSections:before{
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--primary-bgcolor);
	top: 34px;
}
#choixSections .linkSections p {
	text-transform: uppercase;
	font-size: 14px;
	font-family: var(--font-bold);
	letter-spacing: 1px;
	line-height: 1.3;
}
#choixSections .linkSections:not(:last-of-type){margin-right: 30px;}

#choixSections .linkSections{
	position: relative;
	cursor: pointer;
	padding: 5px 20px;
	transition: 250ms all ease-in-out;
	text-align: center;
}
#choixSections .linkSections.active{
	color: var(--black);
}
#choixSections .linkSections img{
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.subimageSections{
	border-radius: 100px;
	background-color: var(--primary-bgcolor);
	text-align: center;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 15px;
	transition: 250ms all ease-in-out;
	position: relative;
}

#choixSections .linkSections.active .subimageSections, #choixSections .linkSections:hover .subimageSections{
	background-color: var(--tertiary-bgcolor);
}

#choixSections .linkSections .subimageSections:after{
	bottom: 0;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-top-color: var(--tertiary-bgcolor);
	border-width: 9px;
	left: 50%;
	margin-left: -8px;
	opacity: 0;
	transition: 250ms all ease-in-out;
}
#choixSections .linkSections.active .subimageSections:after{
	opacity: 1;
	bottom: -16px;
}

.sectionsbloc{
	position: relative;
	display: flex;
	/* background-color: var(--light-color); */
	border-radius: 5px;
	overflow: hidden;
	/* box-shadow: 0 0 20px rgba(0,0,0,0.1); */
}

.sectionsbloc .section_txt .wrap-text:after{
  	/* content: ""; */
  	background-image: url('../images/logotype.svg');
  	background-repeat: no-repeat;
  	background-size: contain;
  	background-position: center;
  	position: absolute;
  	width: 300px;
  	height: 300px;
  	top: 50%;
  	left: 50%;
  	margin-left: -150px;
  	margin-top: -150px;
}
.sectionsbloc.odd{
    flex-direction: row-reverse;
}



.section_thumb{
    position: absolute;
    left: 0;
    height: 100%;
    width: 45%;
}

.sectionsbloc.even .section_thumb{
	left: auto;
	right: 0;
}

.section_thumb .blocthumb{
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    width: 100%;
    /* box-shadow: 0 0 30px rgba(0,0,0,0.2); */
}

.section_thumb .blocthumb img{
	/* width: 100%; */
	z-index: -1;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	pointer-events: none;
	/* height: auto; */
	right: 0;
}
.section_txt{
    width: 55%;
}
.section_txt .specialthumb{
	width: 0;
	display: none;
}
.section_txt .wrap-text{
	 padding: 0 70px;
	 position: relative;
	 max-width: 1000px;
	 margin-left: auto;
}

.sectionsbloc.odd .section_txt .wrap-text{
	margin: 0 auto 0 0 ;
}

.section_txt .wrap-text .title small{
}








.sectionsbloc .section_txt .wrap-content {
	position: relative;
	box-sizing: border-box;
}
.sectionsbloc .section_txt .wrap-content .tc_content {
    /* column-count: 2; */
    /* column-gap: 100px; */
}

.sectionsbloc .buttons-wrap{
	padding-top: 30px;
}
.sectionsbloc .buttons-wrap .button:not(:first-of-type){margin-right: 10px;}






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


.sectionsbloc h2{
	padding: 0;
}

.sectionsbloc h2:before{
	content: none;
}




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

.widget_element li{
    /* list-style: none; */
    position: relative;
    padding: 20px 30px!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);
}
/*-----------------*/
/* CONTENT */
/*-----------------*/
.logotype-title{
	margin-bottom: 60px;
}
.logotype-title span{background-image: url(../images/logotype.png);display: inline-block;height: 40px;width: 40px;background-position: center;background-repeat: no-repeat;background-size: contain;position: relative;/* margin-top: 25px; *//* opacity: 0.7; */}
.logotype-title span:before, .logotype-title span:after{
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 1px;
	width: 20px;
	display: block;
	background-color: var(--title-color);
	/* opacity: 1; */
}

.logotype-title span:before{
	left: -30px;
}

.logotype-title span:after{
	    right: -30px;
}




#content{
	/* padding: 0; */
	position: relative;
	z-index: 4;
	/* overflow: hidden; */
}


#contentPage {
    padding: 150px 30px 150px;
    box-sizing: border-box;
}

#contentPageBis {
    padding: 120px 30px 200px;
}
.agendaheader{border: solid 1px rgba(0,0,0,0.1);padding: 30px 15px;margin-bottom: 30px;display: flex;justify-content: space-around;background: var(--light-color);}

.agendaheader > div:before{top: 0;left: 50%;margin-left: -14.5px;margin-top: 0;width: 25px;height: 25px;}
.agendaheader > div{
	padding: 42px 0 0 0;
	color: var(--black);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
	font-family: var(--font-title);
}


#cta-boutique{
	position:relative;
	background-image: url('../images/cta-bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 150px 60px;
	z-index: 1;
}


#cta-boutique .title{
	margin-bottom: 50px;
}

#cta-boutique .title h2 {
	text-shadow: 1px 1px 1px rgb(0 0 0 / 0.5);
	font-size: 36px;
}
#cta-boutique:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black);
	opacity: 0.8;
}

#cta-boutique .cta-content{max-width: 700px;}


#products-home{
	padding: 150px 20px;
	position: relative;
	z-index: 1;
	background: url(../images/pattern.jpg);
}

.products{
	width: 100%;
	transition: 0.6s;
	grid-template-columns: repeat(4, 1fr);
	max-width: 100%;
	gap: 10px;
	display: grid;
	align-items: start;
	justify-items: stretch;
}
 .products .product{
    position: relative;
    box-sizing: border-box;
    grid-column: span 1;
}

#catalogue.product{
	height: 100%;
	padding: 30px 30px;
	text-align: center;
	background-image: url('../images/bg-product.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 1;
}

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



#catalogue.product .title h3 {
	font-size: 23px;
	font-family: var(--font-bold);
	text-shadow: 0 0 10px rgba(0,0,0,0.7);
}

#catalogue.product:before{
	content: "";
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	height: 100%;
	background-color: var(--black);
	opacity: 0.8;
	z-index: -1;
}
.products .product:not(#catalogue) .button{
	display: none;
}

.products .product:not(#catalogue)  a{
	display: block;
	height: 350px;
	overflow: hidden;
}

.products .product a img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: .5s;
}

.products .product a:hover img, .liproduct .hrefproduct:hover img{
	transform: scale(1.1);
}

.products .product a .woocommerce-loop-category__title, .titleproduct{
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.75);
	color: var(--white);
	top: 0;
	opacity: 0;
	transition: opacity .5s;
	-webkit-transition: opacity .5s;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-transform: uppercase;
	font-family: var(--font-bold);
	font-size: 18px;
}

span.price{
	position: absolute;
	left: 0;
	width: 100%;
	background-color: rgba(0,0,0,.75);
	color: var(--white);
	bottom: 0;
	opacity: 0;
	transition: opacity .5s;
	-webkit-transition: opacity .5s;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	text-transform: uppercase;
	font-family: var(--font-bold);
	font-size: 16px;
}

span.price del{
	display: none;

}

span.price .text{
	font-size: 12px;
	padding-right: 5px;
}

.products .product a:hover .woocommerce-loop-category__title, 
.liproduct .hrefproduct:hover .titleproduct,
.liproduct .hrefproduct:hover span.price{
	opacity: 1;
	
}

.product .count{
	display: none;
}


.home #content{
	padding: 150px 30px 100px;
	box-sizing: border-box;
	z-index: 1;
}



.home #content .col-content {
    box-sizing: border-box;
    padding: 0 10% 10%;
}

.home #content .col-content_bis {
    box-sizing: border-box;
    padding: 10%;
}
.home #content .blocthumb {
    height: 680px;
    /* position: absolute; */
    left: 0;
}

.home #content .col-secondaryimg, .home #content .col-img {
    padding: 0 20px;
    box-sizing: border-box;
}
.home #content .col-img {
    position: relative;
    /* display: flex; */
    margin-top: 50px;
}

.home #content .specialthumb {
    height: 680px;
    margin: 0 75px 50px auto;
    position: relative;
}




#content .col-img .blocthumb img{
	
	position: relative;
	z-index: 12;
}

#galleryHome .ckslidercontrols{
	/* display: none; */
}


    
    .home .body-formules ul {
		list-style: none;
		margin: 0;
	}
	.home .body-formules small {
		display: block;
		font-style: italic;
		line-height: 1;
		padding-bottom: 5px;
	}
    .home .body-formules ul li:not(:last-of-type){
     	padding-bottom: 28px;
     }
     .home .body-formules span {
     	color: var(--white);
     	display: block;
     	line-height: 1.2;
     }
     .home .body-formules strong{
     	line-height: 1;
     	color: var(--white);
     	font-size: 18px;
     }
	.home #content .content-formules {
		margin-top: 100px;
		margin-bottom: 0!important;
		max-width: 430px!important;
		margin-left: 45px;
		margin-right: 60px;
	}
	.home .body-formules h2 {
		margin-top: 0;
		margin-bottom: 30px;
		font-size: 20px;
		padding-bottom: 30px;
		border-bottom: solid 1px var(--secondary-bgcolor);
		color: var(--white);
	}
	.home .body-formules h2 span{
		display: block;
		font-size: 30px;
		color: var(--secondary-bgcolor);
		letter-spacing: 2px;
	}


#content.hasnocontent{padding:0;}

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

#section-video {
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	padding: 150px 10px 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	flex-direction: column;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	z-index: 8;
	text-align: center;
}
#section-video:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background-color: var(--black);
	height: 100%;
	width: 100%;
	opacity: 0.4;
	z-index: -1;
}

#section-video h2 {
	color: var(--white);
	margin: 0;
	font-size: 40px;
}

#section-video p {
	font-family: var(--font-bold);
	margin-bottom: 90px;
	font-size: 22px;
	text-transform: uppercase;
	letter-spacing: 3px;
}


.video-play-button {
  z-index: 10;
  justify-content: center;
  box-sizing: content-box;
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  border-radius: 50%;
  padding: 0 10px 0px 13px;
  position: relative;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 15px solid var(--black);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  line-height: 1;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}



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

.search-item{
	height: 100%;
	background-color: var(--light-color);
}
.search-item .imgitem{
	height: 240px;
	position: relative;
}
.search-item .typeitem{
	color: var(--white);
	background-color: var(--primary-bgcolor);
	padding: 5px 27px 5px 10px;
	font-family: var(--font-bold);
	text-transform: uppercase;
	font-size: 10px;
	letter-spacing: 1px;
	border-radius: 0 5px 5px 0;
	display: inline-block;
}

.search-item .typeitem:after{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background-image: url(../images/icons/page.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	right: 10px;
	top: 10px;
}

.search-item .typeitem-category{
	position: absolute;
	left: -10px;
	top: 20px;
	z-index: 2;

}

.search-item .typeitem:before{
	content: "";
	display: block;
	background-color: #16651d;
	height: 5px;
	width: 10px;
	left: 0px;
	position: absolute;
	top: -1px;
	transform: skewY(-18deg);
	z-index: -1;
}

.search-item .typeitem.post{

    background-color: var(--secondary-bgcolor);
}
.search-item .typeitem.post:before{
	background-color: #035f86;
	
}
.search-item .typeitem.post:after{
	background-image: url(../images/icons/feed.svg);
}

.search-item .bodyitem {
	padding: 30px 20px;
}
.search-item .bodyitem h2{
	margin: 0 0 10px 0;
	font-size: 20px;
	line-height: 1.1;
	display: inline-block;
}

.search-item .bodyitem h2 a{
	color: var(--title-color);
}

.search-item .bodyitem h2 a:hover{
	color: var(--primary-bgcolor);
}

.search-item .contentitem{
	font-size: 14px;
}
.search-item .footeritem{
	display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: solid 1px rgba(0,0,0,0.1);
    margin-top: 20px;
    padding-top: 10px;
}


#breadcrumbs, #breadcrumb {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-size: 12px;
    margin-bottom: 0;
    margin-left: 0;
}
#breadcrumbs .current, #breadcrumb .current{
	color: var(--primary-bgcolor);
	font-family: var(--font-bold);
}


#breadcrumbs a, #breadcrumb a{
	color: var(--text-color);
}

#breadcrumbs a:hover, #breadcrumb a:hover{
	color: var(--primary-bgcolor);
}
.textcontrols{
	margin-left: auto;
}
.textcontrols a {
		display: inline-block;
		padding: 5px;
		background-color: var(--text-color);
		color: var(--white);
		font-family: var(--font-bold);
		border-radius: 3px;
		border: none!important;
		line-height: 1;
}

.textcontrols a:hover{
	background-color: var(--tertiary-bgcolor);
	color: var(--white)!important;
}

.textcontrols .inline-list li:not(:last-of-type){
	margin-right: 0px;
}
.page-header{
	border-bottom: solid 1px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    padding-bottom: 10px;
}



.menu-primary-container{
	position: relative;
	margin-bottom: 40px;
}

.menu-primary-container #menu-primary > li > a {
	text-transform: uppercase;
	color: var(--white);
	font-family: var(--font-bold);
	background-color: var(--primary-bgcolor);
	padding: 30px 20px 20px 20px;
	box-sizing: border-box;
	display: block;
	text-align: center;
	border-radius: 5px 5px 0 0;
}

.menu-primary-container #menu-primary > li > .sub-menu{
	padding: 25px 15px;
	background: linear-gradient(to bottom, #2c3e50, #212f3c);
}

.menu-primary-container #menu-primary > li > .sub-menu li {
	padding: 2px 0;
}

.menu-primary-container #menu-primary li a{
	font-family: var(--font-bold);
}

.menu-primary-container #menu-primary > li > a:before{
	content: "";
	height: 60px;
	width: 60px;
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	background-color: var(--primary-bgcolor);
	background-size: 50%;
	border-radius: 100%;
	left: 50%;
	top: -30px;
	margin-left: -30px;
}
.menu-primary-container .item-municipale a:before{background-image: url(../images/icons/menu-icons/vie-municipale.svg);}
.menu-primary-container .item-enfants a:before {
	background-image: url(../images/icons/menu-icons/enfant.svg);
}
.menu-primary-container .item-demarches a:before {
	background-image: url(../images/icons/menu-icons/demarches.svg);
}
.menu-primary-container .item-association a:before {
	background-image: url(../images/icons/menu-icons/association.svg);
}
.menu-primary-container .item-entreprise a:before {
	background-image: url(../images/icons/menu-icons/entreprise.svg);
}
.menu-primary-container .item-infos a:before {
	background-image: url(../images/icons/menu-icons/information.svg);
}
.menu-primary-container .item-bienvivre a:before {
	background-image: url(../images/icons/menu-icons/bien-vivre.svg);
}



.menu-primary-container .sub-menu a {
    color: var(--white);
}

.menu-primary-container .sub-menu a:hover{
	color: var(--tertiary-bgcolor);
}

.menu-primary-container .sub-menu .current-menu-item > a,
.menu-primary-container .sub-menu a:hover{background-color: var(--tertiary-bgcolor);color: var(--white);}
.menu-primary-container #menu-primary > li > .sub-menu li a {
	position: relative;
	padding: 5px 10px 5px 28px;
	display: inline-block;
	line-height: 1.1;
	border-radius: 10px;
}
.menu-primary-container #menu-primary > li > .sub-menu .sub-menu li{
	padding-left: 15px;
}
.menu-primary-container #menu-primary > li > .sub-menu li a:before{
	content: "";
	position: absolute;
	background-image: url(../images/icons/right-arrow_white.svg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 10px;
	height: 10px;
	left: 10px;
	top: 8px;
}

.menu-primary-container #menu-primary .sub-menu .menu-item-has-children .sub-menu a{
	font-family: var(--font-text);
}



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

/* .vegas-slide-inner{
	width: 137vmax;
	z-index: -1;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,0);
	pointer-events: none;
	height: 100vmax;
}
 */
.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(100% + 1.3px);
    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);
}
 #homeHeader{
     position: relative;
 }

 body.with-bandeau #homeHeader .imageDiapo{
 	height: 90vh!important;
 }



.pathHeader{
	width: 100%;
	position: absolute;
	bottom: -40px;
	left: 0;
	right: 0;
	z-index: 1;
}

.pathHeader.top{
	bottom: auto;
	top: -40px;
}
.pathHeader.top img{
	transform: scale(-1);
}

 #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;
}
.innerText{
	position: absolute;
	z-index: 2;
	top: 0;
	box-sizing: border-box;
	left: 30px;
	right: 30px;
	height: 100%;
	padding-top: 170px;
}
.h1Text{
	position: absolute;
	z-index: 2;
	bottom: 50px;
	box-sizing: border-box;
	left: 30px;
	right: 30px;
}

.innerLogo {
	position: absolute;
	left: 0;
	right: 0;
	top: 220px;
}

.innerLogo p {
	font-family: var(--font-bold);
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px var(--black);
	letter-spacing: 3px;
	color: var(--white);
}
.innerText .wrappercontent{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#homeHeader .innerTitle, #h1 .innerTitle{
	/* padding: 50px; */
	opacity: 0;
	transition: .55s cubic-bezier(.4,0,.2,1) .95s;
	color: var(--white);
	position: relative;
	transform: translateY(-50px);
	z-index: 10;
	text-transform: uppercase;
}

#homeHeader .innerButton {
	opacity: 0;
	transition: .55s cubic-bezier(.4,0,.2,1) 1.25s;
	transform: translateY(-50px);
}


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

#h1 .section-title .no_line {
	border-color: var(--secondary-bgcolor);
	position: absolute;
	left: 50%;
	bottom: -160px;
	transform: translateX(-50%);
	z-index: 1;
}

#homeHeader .innerTitle small{
	display: block;
	font-family: var(--font-bold);
	font-size: 22px;
	padding-bottom: 20px;
	letter-spacing: 2px;
}

#homeHeader .innerTitle p, 
#h1 .innerTitle p {
	font-family: var(--font-bold);
	font-size: 35px;
	line-height: 1.2;
	/* text-transform: uppercase; */
	text-shadow: 1px 1px 1px var(--black);
	margin-bottom: 40px;
}
#homeHeader .innerTitle strong, 
#h1 .innerTitle strong {
	display: block;
	font-size: 16px;
	letter-spacing: 5px;
	position: relative;
	text-transform: uppercase;
	top: 20px;
}
#homeHeader .innerTitle span,
#h1 .innerTitle span{
	display: block;
	line-height: 1;
}
#homeHeader .innerTitle span:first-letter, #h1 .innerTitle span:first-letter {
	color: var(--primary-bgcolor);
	font-size: 200%;
	vertical-align: middle;
	letter-spacing: -10px;
}


#h1 .innerTitle strong{
	font-size: 40px;
	padding-bottom: 10px;
}

#homeHeader .innerTitle, #h1 .innerTitle{
	margin: 0 auto;
	max-width: 990px;
}

#homeHeader .innerButton {
	margin-top: 50px;
}

#infotelport2_home a{
	background-color: var(--tertiary-bgcolor);
}
#infotelfixe_home a:hover{
	background-color: var(--primary-bgcolor);
}


#homeHeader .innerButton a {
	margin: 0 5px;
}



#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, body.loaded #h1 .innerTitle, body.loaded #homeHeader .innerButton{
	opacity: 1;
	transform: translateY(0);
}



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

#home_garantie{
	padding: 100px 30px;
}




#home_garantie .title h2  {
	margin: 0;
	text-align: center;
	font-size: 45px;
	margin-bottom: 60px;
}

#home_garantie  .tc_content {
	column-count: 2;
	column-gap: 50px;
}

#home_garantie  .tc_content p {
-webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    break-inside: avoid-column;

}

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

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





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

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



#banner .wrappercontent{
	height: 100%;
}

.cekome-stars-icon{
	margin-bottom: 15px;
	/* margin-top: 65px; */
}

.cekome-stars-icon a {
	border: none!important;
	background-image: none!important;
}
/*-----------------*/
/* H1 */
/*-----------------*/
#h1{
	position: relative;
	/* background-color: var(--primary-bgcolor); */
	z-index: 2;
}

#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: 70vh;
	min-height: 450px;
	max-height: 650px;
}

#h1 .innerImg .imageAnimation .imageDiapo{
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
}
#h1.small-h1 .innerImg .imageAnimation{
	height: 650px;
}

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

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


#h1 h1, #h1 .h1{
	margin: 0;
	display: block;
	font-family: var(--font-title);
	font-size: 50px;
	line-height: 1;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px var(--black);
	letter-spacing: 2px;
	color: var(--white);
}

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


	#h1 .section-title small{
		opacity: 1;
		text-shadow: 1px 1px 1px var(--black);
		top: 0;
		color: var(--white);
		font-size: 80px;
	}
/*-----------------*/
/* LEBONPRO */
/*-----------------*/
#lebonpro{
	background: var(--quaternary-bgcolor);
	color: var(--quaternary-txtcolor);
	padding: 60px 0;
}


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

#listwidgetagence{
    overflow: hidden;
    overflow-y: scroll;
    height: 600px;
    background: var(--tertiary-bgcolor);
    color: var(--tertiary-txtcolor);
}
.itemlistwidgetagence:nth-child(even){background: rgba(0,0,0,0.1);}
.itemlistwidgetagence:nth-child(odd){background: rgba(255,255,255,0.1);}
.itemlistwidgetagence{
    padding: 10px;
    box-sizing: border-box;
    outline-color: #ffffff26;
    outline-style: solid;
    outline-width: 1px;
    outline-offset: -10px;
    line-height: 0;
}
.itemlistwidgetagence.active{
	outline-color: var(--primary-bgcolor)
}


#mapwidgetagence{height: 600px;}
.list_imgagence{
    width: 130px !important;
    height: 120px;
}
.list_infoagence{
    padding: 6px 8px;
    font-size: 13px;
    line-height: 130%;
    width: calc(100% - 130px);
    box-sizing: border-box;
}
.list_infoagence .title_list_infoagence{text-transform: uppercase;font-weight: bold;margin-bottom: 2px;padding-bottom: 2px;border-bottom: 1px dashed #777;}
.list_infoagence .tel_list_infoagence a{color: var(--primary-bgcolor);}
.list_infoagence .more_list_infoagence{
    text-align: right;
    text-decoration: underline;
}
.list_infoagence a{
	color: var(--tertiary-txtcolor);
	text-decoration: none;
}

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

#contentPage h1{
	margin-top: 0;
	line-height: 1.1;
}


#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;
	  box-sizing: border-box;
	  background-image: url(../images/bg-reassurances.jpg);
	  background-position: center;
	  background-repeat: no-repeat;
	  background-size: cover;
	  background-attachment: fixed;
	  z-index: 1;
	  padding: 100px 20px;
}

#reassurances:before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 0.8;
	z-index: -1;
}





#reassurances .picto-container li p strong{
	display: block;
	text-transform: uppercase;
	margin-bottom: 5px;
	font-size: 16px;
	color: var(--white);
	text-shadow: 1px 1px 1px rgba(0,0,0,.6);
	letter-spacing: 2px;
}



/*-----------------*/
/* 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;
}
/*-----------------*/
/* 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{
    /* padding: 50px 80px 80px; */
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: auto;
}

.landing_labelBig{
    font-family: var(--font-surtitle);
    line-height: 1;
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 50px;
    color: var(--primary-bgcolor);
}
.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-surtitle);
	color: var(--secondary-bgcolor);
	z-index: -1;
}


#contentForm #landing_listelement{
	max-width: none;
	padding: 40px;
}

#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 #cptchk-contact, 
.form-wrap .wrap-fieldset .blc.blc_captcha, 
.form-wrap .wrap-fieldset .button.cf_submit {
    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 {
    flex: 1 1 94%;
    max-width: 94%;
    width: 100%;
    display: inline-block;
    margin: 0px 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{
	max-width: 100%;
}


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

#pagesidebar {
		z-index: 2;
		position: relative;
	}
	.sidebar-contact h3{
		font-size: 24px;
		margin: 0 0 15px;
	}

	
	.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;
    /* line-height: 0; */
    height: 100%;
}


#listarticles .listedarticle .content_news{
	position: absolute;
	top: 50%;
	left: 15px;
	right: 15px;
	z-index: 2;
	text-align: center;
	transform: translateY(-50%);
}

#listarticles .listedarticle .image_content img{
	transition: 500ms all ease-in-out;
	width: 100%;
	object-fit: cover;
	transition: 500ms all ease-in-out;
	height: 100%;
	position: absolute;
	left: 0;
}





#listarticles .listedarticle h2{
    font-size: 18px;
    margin: 0;
}

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





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

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

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

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

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

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

/*-----------------*/
/* FOOTER */
/*-----------------*/
#footer{
	font-size: 16px;
	position: relative;
	z-index: 30;
	/* padding: 50px 0 0; */
	color: var(--text-color);
}




#coordonneesFooter h2 {
	margin-top: 0;
}
.footer-title{
	color: var(--title-color);
	/*  */
	font-size: 16px;
	letter-spacing: 12px;
	text-transform: uppercase;
	/* border-bottom: solid; */
}

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

/*LOGO*/

#footer #logofooter a{
	display: inline-block;
}

#copyright{
	padding: 10px;
}

#footer #logofooter{
	text-align: center;
}


 #logofooter img{
    width: 250px;
}

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

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

#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{
    /* transform: scale(0.8); */
    transition:0.5s all ease;
}

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

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


#footer .horairesBT{
	/* color: var(--tertiary-bgcolor); */
}

#addrcontact #phoneBT-infotelfixe:hover,
#addrcontact .horairesBT:hover, 
#infotelport_contact .phonea:hover{
	color: var(--secondary-bgcolor);
}

#addrcontact{
	flex-direction: column;
}

#footer #marqueAlsace{
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: 5px 0px;
	padding: 0 10px 0 35px;
	box-sizing:border-box;
	/* width: 100%; */
	text-align: left;
	background-size: 24px;
	background-position: 0 center;
	line-height: 1.4;
}

#footer #marqueAlsace{background-image: url(../images/marque-alsace.png);}

#footer #addrfooter #addrfooter_txt div{
    margin: 2px 3px;
}

#footer #infotelfixe_footer,
#footer #infotelport_footer{
	padding-bottom: 10px;
	/* display: inline-block; */
	width: auto;
	margin: auto;
	text-align: left;
}


#infotelfixe_footer, #infotelport_footer,  #infotelfixe_contact{
	/* text-align: right; */
	background-size: 30px;
	background-position: 0;
	background-repeat: no-repeat;
	color: var(--text-color);
	padding: 10px 0 10px 40px;
}



/*NAVIGATION*/
#footer #navfooter{
    padding: 10px;
    display: flex;
    justify-content: space-around;
    border-top: solid 1px rgba(0,0,0,0.1);
    background-color: var(--light-color);
}
#footerSeo{
	font-size: 14px;
	
}

#footerSeo p{
	margin-bottom: 20px;
}

#infoouvertureFooter .grid{
	grid-gap: 0;
	font-size: 14px;
}
#infoouvertureFooter .jourhoraires, #infoouvertureContact .jourhoraires{
	
	text-align: left;
}

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

#footer #navfooter #menu-footer .menu-item{
		margin-right: 20px;
	}
#footer #navfooter a{
    color: var(--text-color);
    font-size: 13px;
    padding: 0 5px;
}


#footer #navfooter a:hover{
	background-color: var(--primary-bgcolor);
	color: var(--white);
	border-radius: 100px;
}

/*COPYRIGHT*/
#footer #footerlinks{
    font-size: 14px;
    text-align: center;
}
#footer #footerlinks a{
    color: var(--black);
    text-decoration: none;
    /* padding-bottom: 3px; */
}


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