/*-----------------*/
/* VARIABLE */
/*-----------------*/
:root
{
	/*COLORS*/
	--primary-bgcolor: #68bc43;
	--secondary-bgcolor: #aed000;
	--tertiary-bgcolor: #6cbfec;
	--light-bgcolor: #eceae1;
	--text-color: #6d6d6d;
	--title-color: #343437;
	--white: #FFFFFF;
	--black: #000000;

	/*FONTS*/
	--font-title:Oswald, sans-serif;
	--font-subtitle:Crimson, sans-serif;
	--font-text:Spartan,sans-serif;
	--font-bold:SpartanBold, sans-serif;
}

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


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


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




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



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

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

.posrel{
  position: relative;
}

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

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

.more-links.return {
    background: none;
    display: inline-block;
    padding: 0 0 0 20px;
}

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


.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.return{
	padding-left: 25px;
	padding-right: 0;
	display: inline-block;
	
}

.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,.1);
	padding-top: 80px;
	padding-bottom: 0;
	margin-top: 50px;
}

.more-links.return:after{
	/* content: "⭠"; */
	/* right: auto; */
	/* left: 0; */
}


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

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

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


.doc-link .size{
	font-size: 13px;
	font-style: italic;
}
/*------------------------------------------------------------------
[1.5 Preloader ]
*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: var(--secondary-bgcolor);
  display: inline-block!important;
  /* transition: 500ms all ease-in-out; */
}
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);
	text-transform: uppercase;
	letter-spacing: -.02em;
}

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

h2{
	font-size: 40px;
	margin-bottom: 30px;
	margin-top: 30px;
}

h3{
	font-size: 35px;
}
h4{
	font-size: 28px;
}
h5{
	font-size: 25px;
}
h6{
	font-size: 20px;
}

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

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


.title small, .section-title small{
	font-family: var(--font-subtitle);
	color: var(--primary-bgcolor);
	display: block;
	padding-bottom: 20px;
	font-style: italic;
	font-size: 21px;
	line-height: 1;
	text-transform: none;
	letter-spacing: 0;
}

.section_title small{
	color: var(--text-color);
	text-shadow: 1px 1px 1px rgba(255,255,255,0.5);
}


.title{
	position: relative;
	margin-bottom: 130px;
}

.nohome .title{
	margin-bottom: 80px;
}

.title h2 {
	margin-top: 0;
	font-size: 50px;
}

.title.white h2 {
	color: var(--white);
}



.title:before{
	/* content: ""; */
	width: 1px;
	position: absolute;
	left: 50%;
	top: -150px;
	height: 90px;
	background-color: var(--secondary-bgcolor);
}

/*-----------------*/
/* 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%;
	/* position: relative; */
	/* filter: blur(8px); */
}

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

/*-----------------*/
/* Gallery */
/*-----------------*/
@-webkit-keyframes pulse {
  0% {
    opacity: 0;
    background-position: center top;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -moz-background-size: 75% auto;
    -o-background-size: 75% auto;
    -webkit-background-size: 75% auto;
    background-size: 75% auto;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    background-position: center bottom;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
}
@-moz-keyframes pulse {
  0% {
    opacity: 0;
    background-position: center top;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -moz-background-size: 75% auto;
    -o-background-size: 75% auto;
    -webkit-background-size: 75% auto;
    background-size: 75% auto;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    background-position: center bottom;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
}
@-ms-keyframes pulse {
  0% {
    opacity: 0;
    background-position: center top;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -moz-background-size: 75% auto;
    -o-background-size: 75% auto;
    -webkit-background-size: 75% auto;
    background-size: 75% auto;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    background-position: center bottom;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
    background-position: center top;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -moz-background-size: 75% auto;
    -o-background-size: 75% auto;
    -webkit-background-size: 75% auto;
    background-size: 75% auto;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    background-position: center bottom;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
}

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

#galleryHome{position: relative;z-index: 1;box-sizing: border-box;/* padding: 10px 5px; */}




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


#galleryHome .gallery  {
	width: 100%;
	transition: 0.6s;
	grid-template-columns: repeat(3, 1fr);
	max-width: 100%;
	gap: 10px;
	display: grid;
	align-items: start;
	justify-items: stretch;
}
#galleryHome .gallery dl.gallery-item{position: relative;box-sizing: border-box;grid-column: span 1;height: 200px;margin: 0;}

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

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

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

.gallery-icon:hover a:before{width: 100%;height: 100%;opacity: 0.8;}

.gallery .gallery-icon a{
	display: block;
	height: 100%;
	position: relative;
}

.gallery-item .gallery-caption{
	position: absolute;
	left: 0;
	top: 50%;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0;
	z-index: 2;
	font-family: var(--font-bold);
	color: #ffffff;
	right: 0;
}

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

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

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

.gallery-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;
  opacity: 0;
  transform: translateY(100%);
  transition: 250ms all ease-in-out;
}

.wp-block-gallery .blocks-gallery-image:hover figcaption,
.wp-block-gallery .blocks-gallery-item:hover figcaption{
  opacity: 1;
  transform: translateY(0);
}
.wp-block-gallery .blocks-gallery-item{
	overflow: hidden;
}
.gallery-item img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition: 500ms all ease-in-out;
	transition: transform 1s cubic-bezier(.215,.61,.355,1);
}



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






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

#mapfooter{
	height: 440px;
	width: 100%;
	z-index: -1;
	margin: auto;
}


#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;
}
#contactform{
	/* position: relative; */
	/* z-index: 4; */
	/* margin-top: 50px; */
	/* padding: 150px  0 0 0; */
	/* background-color: var(--lightblue); */
	/* margin-left: 80px; */
}

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

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

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

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


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

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

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

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

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


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

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

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

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

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


#searchResaHome{
	padding: 75px 25px 25px;
	background-color: var(--light-bgcolor);
}

/*-----------------*/
/* CONTACT HOME */
/*-----------------*/
#homeContact{
    padding: 0 0 160px 0;
    position: relative;
    background-image: url(../images/bg-contact.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: bottom;
}

#homeContact .mask-bottom{
	top: -90px;
	bottom: auto;
}

#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,
#homeContact .horairesBT {
	color: var(--title-color);
}

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

#homeContact .wrap-contact{
	margin: auto;
	flex-direction: row-reverse;
}
#homeContact #landing_listelement{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 70px;
}



/*-----------------*/
/* PARTENAIRES */
/*-----------------*/
#partenaires{
	padding: 30px 15px 0;
	/* background-color: #464646; */
}
#partenaires .widget_element{
	padding: 0;
	margin: 0 80px;
}

#partenaires .widget_element img{
	max-height: 80px;
}
#partenaires .prev,
#partenaires .next{
	top: 50%;

}
#partenaires .ckctrldiv{
	display: none;
}

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


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

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

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


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

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

.innermodal{
	padding: 80px 50px 50px;
	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;text-align: center;}


.horairemodal p:last-of-type{
	margin-bottom: 0;
}
 .jourhoraires{
    font-weight: bold;
    color: var(--primary-bgcolor);
    width: 140px;
}

.horairemodal span{
	font-size: 35px;
	font-family: var(--font-title);
	text-align: center;
	color: var(--title-color);
	line-height: 1.3;
	text-transform: uppercase;
	display: block;
	margin-bottom: 20px;
}

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

.bthoraire{
	cursor: pointer;
}
.detailhoraires{
	 color: #666;
}

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

/* ------------------------- */
/* GLOBAL BUTTON */
/* ------------------------- */
.underbutton > *, button, .button{
  background-color: var(--primary-bgcolor);
  padding: 18px 30px;
  font-size: 13px;
  font-family: var(--font-bold);
  color: var(--white);
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  /* height: auto; */
  line-height: 1.2;
  letter-spacing: 1px;
  border-radius: 100px;
}

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

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

.button.hollow{background-color: transparent;color: var(--primary-bgcolor);}
.button.hollow.white{
	color: var(--white);
}
.button.hollow span{
	position: relative;
	display: block;
	line-height: 1.4;
	padding: 20px 30px;
}
.button.hollow span:before,
.button.hollow span:after{
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	background: var(--secondary-bgcolor);
	transition: all .3s ease;
}
.button.hollow span:before{
    height: 20px;
    width: 2px;
}

.button.hollow span:after{
	width: 20px;
    height: 2px;
}

.button.hollow::before,
.button.hollow::after{
	position: absolute;
	content: "";
	right: 0;
	bottom: 0;
	background: var(--secondary-bgcolor);
	transition: all .3s ease;
}

.button.hollow::before{
    height: 20px;
    width: 2px;
}

.button.hollow:hover span:before {
height: 100%;
}

.button.hollow:hover span:after {
	width: 100%;
}

.button.hollow::after{
    width: 20px;
    height: 2px;
}

.button.hollow:hover::before{
	height: 100%;
}
.button.hollow:hover::after{
    width: 100%;
}




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


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

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


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

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


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

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

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

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

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



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

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

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

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

#phoneBT-infotelfixe, #phoneBT-infotelport, .horairesBT, .formulaireMail{
	display: inline-block;
	box-sizing: border-box;
	color: var(--title-color);
}

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

#infotel_footer #phoneBT-infotelfixe,
#infotel_footer #phoneBT-infotelport{
	/* color: var(--white); */
}

#backBTsinglewoo{
	/* display: flex; */
	/* width: 190px; */
	/* box-sizing:border-box; */
	/* background-size: 18px; */
}
 #infotelport,  #infoouvertureContact{
}

#addrfooter_txt,  #addrcontact_txt{
	background-repeat: no-repeat;
}



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


#addrfooter_txt, #infoouvertureContact, #addrcontact_txt{
	padding: 5px 40px 5px 0;
	padding: 5px 0 4px 40px;
	background-size: 25px;
	background-position: 0;
	text-align: left;
	/* display: inline-block; */
	/* flex: 1 1 100%; */
}

 #addrfooter_txt, #addrcontact_txt{
    background-image: url(../images/icons/map-white.svg);
    display: inline-block;
}


#infoouverture #infoouverture_inner p {
	margin: 0;
}

#infoouverture #infoouverture_inner > div,
#infotel #infotel_inner > div,
#infoadresse #infoadresse_inner > div{padding: 30px 30px;background-color: var(--white);text-transform: uppercase;letter-spacing: 1px;font-size: 14px;font-weight: bold;position: relative;overflow: hidden;display: flex;height: 106px;box-sizing: border-box;align-items: center;justify-content: center;flex-direction: column;}



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



#addrfooter_txt, #addrcontact_txt{
	/* background-image: url(../images/icons/map.svg); */
	/* text-align: center; */
	/* max-width: 150px; */
	/* margin: auto!important; */
	/* min-width: 150px; */
	/* display: inline-grid; */
}

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

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

.formulaireMail{background-image:url(../images/icons/mail.svg);}
#backBTsinglewoo{margin-bottom: 0;margin-top: 30px;}


#infoouverture span, #infoadresse span, #infotel span{
	display: block;
	color: rgba(255,255,255,.8);
	font-size: 14px;
	font-family: var(--font-text);
	padding-bottom: 2px;
}
#infotel_footer #phoneBT-infotelfixe:hover, .horairesBT:hover, #footer .horairesBT:hover, #footer #phoneBT-infotelfixe:hover, #infotel_footer #phoneBT-infotelport:hover{
	color: var(--primary-bgcolor);
}
.button.current-post-page,
.button.current{outline-style: solid;outline-color: var(--secondary-bgcolor);pointer-events: none;}

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

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

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

@supports (display: flow-root) {
	.tc_content,
	.tc_content > h2:not([class*="wp-block"]),
	.tc_content > h3:not([class*="wp-block"]),
	.tc_content > h4:not([class*="wp-block"]),
	.tc_content > h5:not([class*="wp-block"]),
	.tc_content > h6:not([class*="wp-block"]),
	.tc_content > p:not([class*="wp-block"]),
	.tc_content > ol:not([class*="wp-block"]),
	/*.tc_content > ul:not([class*="wp-block"]):not([class*="flex"]):not([class*="grid"]),*/
	.tc_content > pre,
	.tc_content > blockquote,
	.tc_content > figure,
	.tc_content .wp-block-media-text__content p{
		/* min-width: 240px; */
		/* display: flow-root; */
	}
}

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


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

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

.tc_content a:not([class*="button"]), 
.tc_content a:not([class*="button"]) strong{
    color: var(--primary-bgcolor);
    position: relative;
    line-height: 1;
    border-bottom: 1px solid var(--primary-bgcolor);
    transition: color 0.3s ease-in-out;
    background-size: 100% 200%;
    background-image: linear-gradient(to top, transparent 0%, transparent 50%, var(--secondary-bgcolor) 50%, var(--secondary-bgcolor) 100%);
    background-position: 0 100%;
    will-change: background-position;
}

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

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

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

.tc_content u{}
.tc_content ol,
.tc_content ul{
    margin: 0 0 16px 20px;
}
.tc_content ul:not(.elempartenaires){
}
.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: 0;
	background-color: var(--primary-bgcolor);
	top: 15px;
	width: 6px;
	display: block;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	height: 6px;
}
.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;
}

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

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    box-sizing: inherit;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background-color: var(--light-bgcolor);
    margin-bottom: 1em;
}


.tc_content table th{padding:0.15em 0.4em;border: 1px solid rgba(0,0,0,0.6);background:rgba(0,0,0,0.1);}
.tc_content table td{padding: 10px 5px;border: 1px solid rgba(0,0,0,0.1);box-sizing: border-box;}

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

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

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

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

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


.callout {
	border: #f58484 2px solid;
	padding: 30px 20px;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

.callout p:last-of-type {
	margin-bottom: 0;
}

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

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


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

#header {
	position: absolute;
	z-index: 21;
	/* background: var(--primary-bgcolor); */
	left: 0;
	right: 0;
	padding: 10px 0;
	top: 0;
	z-index: 999;
}

#header-bottom{
	color: var(--white);
	font-family: var(--font-bold);
	line-height: 1.3;
	font-size: 15px;
	/* border-bottom: solid 1px rgba(255,255,255,0.4); */
	/* border-top: solid 1px rgba(255,255,255,0.4); */
	margin-top: 10px;
	background-color: var(--primary-bgcolor);
}




#infoadresse strong, #infoadresseBis strong, #infotel strong, #infoouverture strong {
	font-size: 18px;
	text-transform: uppercase;
	display: block;
	color: var(--white);
	font-family: var(--font-title);
	text-align: center;
	padding: 20px 15px;
	letter-spacing: 1px;
}




	#header-bottom.fixed-header{
		position: fixed;
		top: 0;
		z-index: 99;
		box-shadow: 0 0 30px rgba(0,0,0, 0.2);
		left: 0;
		/* width: 100%; */
		animation: slide-down 0.7s;
		background: var(--primary-bgcolor);
		right: 0;
		box-sizing: border-box;
		padding: 10px 30px 7px 30px;
		margin: 0;
	}



	#header-wrap.fixed-header #logodesktop {
		width: 180px;
	}
	#header-wrap.fixed-header .fixed-logo {
		display: block;
	}
	#header-wrap.fixed-header .nofixed-logo {
		display: none;
	}
	
	@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    } 
    100% {
        opacity: 0.9;
        transform: translateY(0);
    } 
	}

 #logo a {display: inline-block;}
#logodesktop {
	    width: 220px;
	    position: relative;
	    margin-top: -45px;
	    margin-bottom: -55px;
	    margin-right: 105px;
}
#header .fixed-logo {
	display: none;
}

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

#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);
}
 #infotelport_footer, #infotelport_contact {
	background-image: url(../images/icons/mobile-white.svg);
}



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


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

#infocontact{
}

#infocontact{
	display: flex;
	align-items: center;
	flex-direction: column;
	color: var(--title-color);
	min-width: 450px;
	justify-content: center;
	position: relative;
}

#infoadresseFooter, #infotelFooter, #infoouvertureFooter{
	text-align: center;
	margin-bottom: 20px;
}

#planFooter .size{
	display: none;
}

.gps{
	display: block;
	font-size: 10px;
	text-transform: initial;
	letter-spacing: 0;
}


#infocontact #infoouverture{
	/* 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 {
	margin: 0px auto;
	background-color: var(--primary-bgcolor);
	position: fixed;
	z-index: 30;
	cursor: pointer;
	z-index: 6000 !important;
	text-align: center;
	transition: .5s ease-in-out;
	box-shadow: 0 0 0 0 var(--primary-bgcolor), 0 0 0 0 var(--secondary-bgcolor);
	display: none;
	border-radius: 10em;
	bottom: -5em;
	left: -5em;
	width: 9em;
	height: 9em;
}

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

#planheader .button{
	padding: 10px 20px;
	font-size: 12px;
	margin-right: 10px;
	background-color: var(--secondary-bgcolor);
}
#planheader .button:hover{
	background-color: var(--tertiary-bgcolor);
	color: var(--white);
}

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

}

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

body.pagenotfound #info-toogle,
body.template-mentions-legales-php #info-toogle{
	display: none;
}



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

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

.overlay{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.6;
	z-index: 1;
}

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



body.loaded #contactHeader {
    opacity: 1;
    transform: translateX(0);
}

#contactHeader {
    place-self: center;
    position: relative;
    z-index: 120;
    top: -180px;
    opacity: 0;
    transform: translateY(100%);
    transition: .55s cubic-bezier(.4,0,.2,1) .95s;
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
    margin-bottom: -180px;
}

#header-contact {
    box-sizing: border-box;
    position: relative;
    border-radius: 10px;
}



#header-contact #header-contactWrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    position: relative;
    z-index: 1;
}

#header-contact #header-contactWrapper > div{
	background-color: var(--secondary-bgcolor);
	box-sizing: border-box;
	position: relative;
	margin: 0 20px;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0,0,0,0.2);
	overflow: hidden;
	flex: 1 1 33.33333333%;
	text-align: center;
}

#plus .col{
	margin-bottom: 15px;
}

#plus img{
	max-height: 140px;
	width: auto;
	max-width: 100px;
}

/*-----------------*/
/* MENU PRIMARY */
/*-----------------*/
#navprimary .navigtoogle.has-child .naviglink.lvl-0 {
	padding-right: 8px;
}

#navprimary .navigtoogle.has-child .naviglink.lvl-0:after{
	top: 13px;
	border: solid transparent;
	content:
	" ";
	height: 0;
	width: 0;
	position: relative;
	pointer-events: none;
	border-color: rgba(136, 183, 213, 0);
	border-top-color: var(--white);
	border-width: 5px;
	margin-left: 0px;
}
#navprimary .navigmenu .naviglink.lvl-0{
    padding: 30px 6px;
}

#header-bottom.fixed-header #navprimary .navigmenu .naviglink.lvl-0{
	 padding: 10px 0;
}

#header-bottom.fixed-header #logo img{
	margin: 0;
	display: none;
}

#header-bottom.fixed-header #navprimary .navigtoogle.has-child .naviglink.lvl-0:after {
	top: 14px;
}

#navprimary .navigmenu .naviglink.lvl-0 span:before,
#navprimary .navigmenu .naviglink.lvl-0 span:after,
#navprimary .navigtoogle .naviglink.lvl-0 span:before,
#navprimary .navigtoogle .naviglink.lvl-0 span:after{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	height: 100%;
	width: 15px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: 250ms all ease-in-out;
	opacity: 0;
}
#navprimary .navigmenu .naviglink.lvl-0:hover span,
#navprimary .navigtoogle.active .naviglink.lvl-0 span{
	background-color: #fafaf8;
}

#navprimary .navigmenu .naviglink.lvl-0:hover, 
#navprimary .navigtoogle.active .naviglink.lvl-0 {
    color: var(--primary-bgcolor);
}
#navprimary .navigmenu .naviglink.lvl-0 span:before,
#navprimary .navigtoogle .naviglink.lvl-0 span:before{
	left: -13px;
	background-image: url('../images/before-actif.svg');
}

#navprimary .navigmenu .naviglink.lvl-0 span:after,
#navprimary .navigtoogle .naviglink.lvl-0 span:after{
     background-image: url('../images/after-actif.svg');
     right: -10px;
}


#navprimary .navigmenu .naviglink.lvl-0:hover span:before,
#navprimary .navigtoogle.active .naviglink.lvl-0 span:before,
#navprimary .navigmenu .naviglink.lvl-0:hover span:after,
#navprimary .navigtoogle.active .naviglink.lvl-0 span:after{
	opacity: 1;
}

#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 .navigmenu .navigtoogle > .navdown{
    text-align: left;
    padding: 10px 0;
}

#navprimary .navigmenu .naviglink.lvl-1 span{position: relative;}

#navprimary .navigmenu .naviglink.lvl-1 span:before{
	content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-bgcolor);
    -webkit-transition: width .2s ease-in-out;
    -o-transition: width .2s ease-in-out;
    transition: width .2s ease-in-out;
}
#navprimary .navigmenu .naviglink.lvl-1:hover{
	color: var(--primary-bgcolor);
}
#navprimary .navigmenu .naviglink.lvl-1:hover span:before{
	width: 100%;
}




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

.section-title.white h2{
	color: var(--white);
}

.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{
	/* margin: 0 auto 30px; */
	/* background: none; */
	/* color: transparent; */
	width: 0;
	height: 130px;
	color: #000;
	margin: 0 auto;
}


/*-----------------*/
/* SLIDER ACTU */
/*-----------------*/
#slideactu{
	position: relative;
	background-color: var(--light-bgcolor);
	padding: 150px 30px 220px;
}

#slidepackactu {
	padding: 100px 30px 220px;
}

#slideactu .title,
#slidepackactu .title{
	margin-bottom: 60px;
}
#slideactu .cksliderwrap,
#slidepackactu .cksliderwrap{
	padding: 0 65px;
	box-sizing: border-box;
}

#slideactu .ckctrldiv,
#slidepackactu .ckctrldiv{
	display: none;
}
#slideactu .more-links,
#slidepackactu .more-links{
	position: absolute;
	bottom: 8px;
	color: var(--white);
	left: 50%;
	transform: translateX(-50%);
	min-width: 142px;
}

.wrapper_slider{
	box-sizing: border-box;
	position: relative;
	z-index: 8;
	min-width: 33.333333%!important;
	padding: 0 11px;
	width: 33.333333%;
}


.labelactu{
	position: absolute;
	left: -10px;
	top: -10px;
	z-index: 1;
}


.wrapper_inner_slider{
   position: relative;
   display: flex;
   align-items: stretch;
   /* box-sizing: border-box; */
   /* padding: 100px 0; */
}




.thumbnail_slider a{
	display: block;
	background-color: var(--black);
	position: relative;
	height: 100%;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}

.thumbnail_slider a:hover img{
	transform: scale(1.1);
}
.thumbnail_slider{
	height: 500px;
}



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


.content_slider{
    padding-top: 25px;
    box-sizing: border-box;
}


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

.title_link_slider{
    font-size: 30px;
    line-height: 1.1;
    margin-bottom: 20px;
    /* display: inline-block; */
    font-family: var(--font-title);
    box-sizing: border-box;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: -.02em;
    background-size: 100% 96%;
    width: auto;
    background-repeat: no-repeat;
    background-image: -o-linear-gradient(transparent calc(100% - 2px),currentColor 2px);
    background-image: linear-gradient(transparent calc(100% - 2px),var(--black) 2px);
    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 96%;
}

.title_link_slider:hover{
}

.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{
    color: var(--white);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
    line-height: 1.5;
    max-width: 650px;
    font-size: 18px;
}
.next_slider{
    margin-top: 30px;
}
.title_slider{
	margin-bottom: 15px!important;
	max-width: 95%;
}
.title_link_slider:hover{background-size: 100% 96%;}

.title_slider:after{
	content: none;
}
.title_slider small{
	font-size: 18px;
	padding: 0 20px 5px 0;
}



/*-----------------*/
/* PRESTATIONS */
/*-----------------*/
#prestations{padding: 90px 15px 150px;position: relative;background-color: var(--tertiary-bgcolor);}

.nohome #prestations{
	padding: 0;
	background-color: transparent;
}

#prestations .title h2 {margin-top: 0;}

#prestations .widget_parentpage li{
	padding: 0 15px;
	box-sizing: border-box;
	
}

#prestations .widget_parentpage li .bloc_inner_wpp {
	position: relative;
}

#prestations .prestations-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	box-sizing: border-box;
	padding: 20px;
}

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

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


#prestations .blocthumb {
	height: 600px;
	position: relative;
}

#prestations .blocthumb:before{
	content: "";
	background: linear-gradient(transparent, rgba(0,0,0,0.8));
	position: absolute;
	left: 0 ;
	top: 0;
	width: 100%;
	height: 100%;
}



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

.item-vins .excerptelement {
	position: relative;
	background-color: var(--white);
	left: -100px;
	padding: 40px;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
	max-width: 700px;
}

.item-vins .excerptelement > :first-child {
	margin-top: 0;
}


.elemvins .item-vins:nth-child(2n) .excerptelement {
	left: auto;
	right: -100px;
	margin-left: auto;
}

.item-vins .element-content h3 {
	margin-bottom: 5px;
	margin-top: 70px;
}
.item-vins .element-img{
	position: relative;
}
.item-vins .element-title{
	border-bottom: solid var(--primary-bgcolor) 1px;
	padding-bottom: 15px;
	margin-bottom: 60px;
}
.item-vins .element-img img{
	position: absolute;
	left: 0;
	top: 0;
}

.elemvins table{
	width: 100%!important;
}

.elemvins .item-vins:nth-child(2n){
	flex-direction: row-reverse;
}

.elemvins table tr {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    width: 100%;
}

.elemvins table td{
	padding: 8px 10px;
	/* font-family: var(--font-bold); */
	/* text-transform: uppercase; */
	font-size: 16px;
	height: auto!important;
	width: auto;
	line-height: 1.4;
	border: none;
}

.elemvins table td:not(:first-of-type) {
	width: 100px;
	box-sizing: border-box;
}

.elemvins table strong{
	  /* color: var(--secondary-bgcolor); */
	  font-family: var(--font-title);
}

.elemvins table td em{
	text-transform: none;
	display: block;
	color: var(--black);
}


#carte {
	margin-left: -30px;
	margin-right: -30px;
	margin-top: 80px;
}

#carte .item-carte:nth-child(2n) {
	flex-direction: row-reverse;
}

#carte .item-carte:nth-child(2) .element-content {
	padding: 100px 200px 100px 50px;
}

#carte .item-carte:nth-child(2)  .secondary-img {
	right: auto;
	left: -125px;
}


#carte .item-carte {
	background-color: var(--primary-bgcolor);
	color: var(--white);
}
#carte .item-carte .element-img {
	position: relative;
}
#carte .item-carte .secondary-img {position: absolute;width: 250px;height: 250px;display: block;right: -125px;top: 50%;background-position: center;background-repeat: no-repeat;background-size: cover;z-index: 1;transform: translateY(-50%);box-shadow: 0 0 30px rgba(0,0,0,0.4);}

#carte .item-carte table {
	background: none!important;
	margin: 0;
}

#carte .item-carte table tr {
	border-bottom: solid 1px #8f6d5569;
}

#carte .item-carte table tr td:last-of-type {
	text-align: right;
	width: 70px;
}

#carte .item-carte table strong {
	color: var(--secondary-bgcolor);
}

#carte .item-carte table em {
	display: block;
	font-size: 15px;
}

#carte .item-carte table  td {
	border: none;
	padding: 10px 4px;
	line-height: 1.2;
}

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

#carte .item-carte .element-title {
	color: var(--white);
}

#paiements{
	width: 100%;
	/* padding: 100px 0 0; */
	position: relative;
}
#logos-list li:not(:last-of-type) {
    margin-right: 60px;
}

#logos-list li img{
	max-height: 49px;
	width: auto;
	max-width: 120px;
}

/*-----------------*/
/* SECTIONS */
/*-----------------*/
#sections{
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding: 200px 30px;
}

#sections:before{
	 content:"";
	 position: absolute;
	 left: 0;
	 top: 0;
	 height: 100%;
	 width: 100%;
	 background: linear-gradient(180deg, rgb(255 255 255) 0%, rgba(227,229,164,1) 20%, rgba(66,125,79,1) 90%, rgba(22,45,54,1) 100%);
	 z-index: -1;
	 opacity: 0.7;
}

#sections:after{
	 content:"";
	 position: absolute;
	 left: 0;
	 top: 0;
	 height: 100%;
	 width: 100%;
	 background: url(../images/bg-sections.jpg);
	 background-size: 952px;
	 background-position: center;
	 /* background-repeat: no-repeat; */
	 background-size: cover;
	 background-attachment: fixed;
	 z-index: -2;
	 opacity: 0.3;
}
.sectionsbloc{
	position: relative;
	margin: 150px 0;
}
.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.even .section_wrap{
    flex-direction: row-reverse;
}
.sectionsbloc.odd{
	flex-direction: row;
}
.section_thumb{
    position: absolute;
    left: 0;
    width: 60%;
    height: 100%;
    top: 0;
}

.section_thumb .blocthumb{
	height: 100%;
}

.section_title{margin-bottom: 0;z-index: 1;}



.section_thumb .blocthumb img{
	    -webkit-mask: url(../images/nuage.png);
	    mask: url(../images/nuage.png);
	    -webkit-mask-size: contain;
	    -webkit-mask-repeat: no-repeat;
	    -webkit-mask-position: center right;
	    position: relative;
	    z-index: 12;
	    /* position: absolute; */
	    /* top: 0; */
	    /* left: 0; */
}
.section_txt{
    width: 50%;
    padding: 100px 0;
}

.section_wrap{
	 display: flex;
	 align-items: center;
	 position: relative;
}
.sectionsbloc .section_txt .wrap-content {
	position: relative;
	background-color: rgb(255 255 255 / 0.9);
	padding: 50px;
	box-sizing: border-box;
	box-shadow: 0 0 30px rgba(0,0,0,0.2);
	max-width: 700px;
	width: 90%;
	border-radius: 20px;
}

.sectionsbloc.odd .section_txt .wrap-content{
	margin-left: auto;
}

.sectionsbloc.odd .section_thumb .blocthumb img {
	-webkit-mask-position: center left;
}

.sectionsbloc .buttons-wrap .button:last-of-type{
margin-left: 10px;
}


.section_txt .wrap-text .tc_content > p:first-of-type {
    color: #222222;
    margin-bottom: 25px;
    /* font-size: 16px; */
    font-family: var(--font-bold);
}
.sectionsbloc.odd .section_txt .wrap-text p:first-of-type{
	color: var(--white);
}

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


.sectionsbloc h2{
	margin-top: 0;
	max-width: 1050px;
	margin: auto;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.9);
}

.sectionsbloc.odd .section_txt .wrap-text{
	float: right;
}


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



.sectionsbloc.odd .section_txt .wrap-text{
	float: right;
	color: var(--white);
	background-color: rgba(0,0,0, 0.7);
	padding: 50px;
}





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

.widget_element{
    /* text-align: center; */
}
.widget_element li{
    /* list-style: none; */
    position: relative;
    padding: 20px!important;
    text-align: center;
    box-sizing: border-box;
}
.widget_element img.contain{
    max-width: 100%;
    height: auto;
    max-height: 80px;
    transition: 250ms all ease-in-out;
}

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

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

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

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


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

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

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

.widget_element .gotolink{
    /* position: absolute; */
    /* bottom: 20px; */
    /* left: 20px; */
    display: none;
}

#partenaires .widget_element .gotolink, #partenaires .widget_element h3{
	display: none;
}
.widget_element .gotolink a{
	line-height:120%;
	padding: 10px;
	box-sizing: border-box;
	color: var(--primary-txtcolor);
	background: var(--tertiary-bgcolor);
	opacity:0;
	transition:0.5s all ease;
}


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


#content.less-padding{padding: 50px 30px 450px;}

body.template-mets-php #content, body.template-vins-php #content{
	padding: 150px 30px 50px;
}

body.template-photobooth-php #content{
	padding-bottom: 0;
}
body.template-photobooth-php #contentPage:not(.galleryPage) .gallery{
	margin-bottom: 0;
	margin-top: 50px;
}

.contentContact .wrap-contact{
	flex-direction: row-reverse;
}

.message-fb{
	background-color: var(--tertiary-bgcolor);
	padding: 50px;
	box-sizing: border-box;
	margin-top: 50px;
	display: flex;
	align-items: center;
	box-shadow: inset 0 0 30px rgba(0,0,0,0.3);
}

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

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

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

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


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


#content{
	padding: 100px 30px 500px;
	background-color: rgba(255,255,255,1);
	background-image: url('../images/bg-content.jpg');
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: center bottom;
}

.home #content .col-content {
	box-sizing:border-box;
	padding: 0 50px;
}


.home #content:before{
	/* content: ""; */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.7;
	z-index: -1;
}



.home #content .blocthumb {
   height: 500px;
   /* position: absolute; */
   left: 0;
}

.home #content .col-img{
	position: relative;
	padding-right: 50px;
	box-sizing: border-box;
}

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

.home #content .blocthumb img{
	/* position: absolute; */
	/* right: 0; */
	/* top: 0; */
}


.home #content .tc_content{
	box-sizing: border-box;
}
	.home .body-formules{
		position: relative;
		background-color: var(--primary-bgcolor);
		padding: 50px 40px;
		box-sizing: border-box;
		font-size: 17px;
		/* max-width: 440px; */
		box-shadow: 0 0 30px rgba(0,0,0,0.4);
		margin: auto;
		outline: solid 1px var(--secondary-bgcolor);
		color: rgba(255,255,255,.8);
		outline-offset: -20px;
		z-index: 2;
	}

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

.home #content .tc_content > p:first-of-type{
	color: #222222;
	margin-bottom: 25px;
	/* font-size: 16px; */
	font-family: var(--font-bold);
}
#content.hasnocontent{padding:0;}

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




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

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


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

#products-home {
	padding: 100px 0 150px;
}

#products-home .title{
	margin-bottom: 60px;
}

#products-home .products{
	width: 100%;
	transition: 0.6s;
	grid-template-columns: repeat(4, 1fr);
	max-width: 100%;
	gap: 1px;
	display: grid;
	align-items: start;
	justify-items: stretch;
}

#products-home .products li{
	position: relative;
}

#products-home .products li a{
	display: block;
	height: 600px;
	position: relative;
}

#products-home .products li a:before{
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: var(--black);
	opacity: 0.6;
	transition: 250ms all ease-in-out;
}


#products-home .products li a:hover:before{
	opacity: 0.3;
}

#products-home .products li a:hover .woocommerce-loop-product__title{
	bottom: 100px;
}

#products-home .products .star-rating {
	display: none;
}

#products-home .products img {
	object-fit: cover;
	width: 100%;
	height: 100%;

}

#products-home .products .woocommerce-loop-product__title{
	position: absolute;
	left: 40px;
	right: 40px;
	color: var(--white);
	text-shadow: 1px 1px 1px rgba(0,0,0,0.6);
	bottom: 30px;
	/* transform: translateY(-50%); */
	text-align: center;
	transition: 250ms all ease-in-out;
}


#plus {
	position: relative;
	background-color: var(--light-bgcolor);
	padding: 50px 0 220px;
}
/*-----------------*/
/* 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;
}
 */
.mask-bottom, .mask-top {
	position: relative;
	display: inline-block;
	width: 100%;
	vertical-align: middle;
	z-index: 21;
	position: absolute;
	bottom: 0;
	left: 0;
}

.mask-top {
    bottom: auto;
    top: -10px;
    transform: scale(-1);
}

.mask-bottom {
	bottom: -10px;
}

.mask-bottom img, .mask-top img{
	width: 100%;
}


 #homeHeader{
     position: relative;
 }
 	#homeHeader .imageDiapo:before, #h1 .imageDiapo:before{
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 1;
		background: linear-gradient(to top, var(--white) 0%, rgba(227,229,164,1) 20%, rgba(66,125,79,1) 76%, rgba(22,45,54,1) 100%);
		opacity: 0.7;
	}



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

  #homeHeader .border .shape {
    fill: currentColor;
    transition-property: fill,opacity;
    transition-timing-function: ease-in-out;
    transition-duration: .3s;
}
#homeHeader .innerText, #h1 .innerText{
	position: absolute;
	z-index: 2;
	top: 0;
	height: 100%;
	width: 100%;
	left: 0;
	display: flex;
	align-items: center;
	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);
}

#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 h1, #homeHeader .innerTitle p, #h1 .innerTitle h1, #h1 .innerTitle p{
	font-size: 55px;
	line-height: 1.1;
	color: var(--white);
	text-shadow: 1px 1px 1px var(--black);
	margin: 0;
	font-family: var(--font-title);
	text-transform: uppercase;
	text-align: center;
}

 #homeHeader .innerTitle p, #h1 .innerTitle p{
 	margin-bottom: 40px;
 }

#homeHeader .innerTitle p small, #h1 .innerTitle p small{
	display: block;
	font-family: var(--font-subtitle);
	font-size: 55px;
	line-height: 1;
	font-style: italic;
	text-transform: initial;
	padding-bottom: 20px;
}

#homeHeader .innerTitle, #h1 .innerTitle{
	margin: 0 0 0;
	/* max-width: 850px; */
}

 #h1 .innerTitle{
 	position: absolute;
 	left: 0;
 	right: 0;
 	bottom: 200px;
 }

.innerLogo {
    position: absolute;
    left: 0;
    right: 0;
    top: 250px;
    margin-bottom: 60px;
    margin-top: -80px;
}

#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;
	/* width: 984px; */
}

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



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


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

#banner p, #banner h1, #h1 p{
	color: var(--white);
	margin: 0;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
	padding: 0 15px;
	font-family: var(--font-title);
	line-height: 1;
	font-size: 65px;
}

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

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

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



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

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

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

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


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

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


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

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

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


#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-wrapper{
	float: right;
	width: 350px;
	margin-bottom: 30px;
	margin-left: 50px;
}

#reassurances-wrapper .button{
	display: block;
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
}
#reassurances{
	padding: 50px 40px;
	box-sizing: border-box;
	border-radius: 10px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 1;
	overflow: hidden;
	clear: both;
	background-image: url(../images/home-bg5.jpg);
	display: block;
	box-shadow: 0 0 30px rgba(0,0,0,0.4);
	margin-bottom: 15px;
}

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

#reassurances .picto-container{
	overflow: hidden;
	flex-direction: column;
}
#reassurances .picto-container li{
	text-align: left;
	width: 100%;
	justify-content: start;
	padding: 1em 0!important;
}

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


#reassurances .picto-container li svg, 
#reassurances .picto-container li img{
	width: 40px;
	height: 40px;
	width: 40px;
	min-width: 40px;
	max-width: 40px;
	filter: drop-shadow(1px 1px 1px rgba(0,0,0,.6));
}

#reassurances .picto-container li p{
	    margin-left: 25px;
    color: var(--white);
    text-shadow: 1px 1px 1px rgba(0,0,0,.6);
    font-family: var(--font-bold);
    font-size: 16px;
}




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

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

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


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


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

#landing_listelement .form-wrap{
    padding: 50px 30px;
    box-sizing: border-box;
    /* background-color: var(--primary-bgcolor); */
    border-radius: 20px;
    /* box-shadow: 0 0 30px rgba(0,0,0,0.1); */
}

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


#contentForm #landing_listelement{
	background-color: var(--primary-bgcolor);
	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%;
}

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

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

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

	.sidebar_wrapper .landing_form{
		padding: 0 15px 20px;
	}
/*-----------------*/
/* CATEGORY PAGE */
/*-----------------*/
#listarticles .listedarticle{
    position: relative;
    /* line-height: 0; */
    background-color: var(--tertiary-bgcolor);
}

#listarticles .listedarticle .image_content {
	background-color: var(--secondary-bgcolor);
	display: block;
	overflow: hidden;
}

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


#listarticles .listedarticle .image_content:hover img{
	transform: scale(1.2) rotate(5deg);
    opacity: 0.2;
}
#listarticles .listedarticle .blocthumb{
	 z-index: 1;
	 position: relative;
	 height: 500px;
}
#listarticles .listedarticle .blocthumb:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--black);
	opacity: 0.7;
	z-index: 0;
}
#listarticles .listedarticle h2{
    font-size: 28px;
    /* line-height: 1.3; */
    /* letter-spacing: 3px; */
    text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
    text-transform: uppercase;
    /* font-family: var(--font-text); */
    margin: 0;
}
#listarticles .listedarticle h2 a{
	color: var(--white);
}

#listarticles .listedarticle h2 a:hover{
	color: var(--primary-bgcolor);
}
#listarticles .listedarticle .tc_excerpt{
	/* width: 90%; */
	margin: 0 0 80px;
	padding-left: 20px;
	padding-right: 20px;
}

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

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



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

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

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

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

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

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

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

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

#addrfooter_txt{
	/* margin-bottom: 30px!important; */
	/* border-bottom: solid; */
}
 .marque-alsace{
	width: 30px;
	display: inline-block;
	vertical-align: middle;
}

/*LOGO*/
#footer #logofooter{
    display: block;
    text-align: center;
    margin-bottom: 40px;
}
#footer #logofooter a{
	display: inline-block;
}
 #logofooter img{
    width: 250px;
    margin-bottom: 20px;
}

#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{
    /* min-height: 170px; */
    /* outline-style: dashed; */
    /* outline-width: 2px; */
    /* outline-color: var(--quaternary-txtcolor); */
    /* outline-offset: -4px; */
}
#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);
}

#infotelport_contact{
	/* background-image: url(../images/icons/mobile.svg); */
	/* margin-left: 60px; */
}
#footer .horairesBT{
	color: var(--text-color);
}

#addrcontact #phoneBT-infotelfixe, 
#addrcontact .horairesBT, 
#infotelport_contact .phonea{
	/* color: var(--text-color); */
}
#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, #infotelport_contact, #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 0 10px 10px;
    box-sizing: border-box;
    display: inline-block;
}

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

#footer #navfooter #menu-footer .menu-item{
		margin-right: 15px;
	}
#footer #navfooter a{
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}

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

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