/*-----------------*/
/* VARIABLE */
/*-----------------*/
:root
{
	/*COLORS*/
	--primary-back-color: #a4c440;
	--secondary-back-color: #4caf50;
	--tertiary-back-color: #1b5e20;
	--back-color: #fff;
	--primary-text-color: #d9d9d9;
	--secondary-text-color: #f7f7f7;
	--tertiary-text-color: #181d1d;
	--title-color: #11172c;
    --text-color: #55595D;

	/*FONTS*/
	--font-title:ExoBold, sans-serif;
	--font-bold:PoppinsSemiBold, sans-serif;
	--font-text:PoppinsRegular,sans-serif;
}

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


@font-face {
    font-family: 'ExoBold';
    src: url('../fonts/Exo2-Bold.eot');
    src: url('../fonts/Exo2-Bold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Exo2-Bold.woff2') format('woff2'),
         url('../fonts/Exo2-Bold.woff') format('woff'),
         url('../fonts/Exo2-Bold.ttf') format('truetype'),
         url('../fonts/Exo2-Bold.svg#Exo2-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PoppinsRegular';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Poppins-Regular.woff2') format('woff2'),
         url('../fonts/Poppins-Regular.woff') format('woff'),
         url('../fonts/Poppins-Regular.ttf') format('truetype'),
         url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'PoppinsSemiBold';
    src: url('../fonts/Poppins-SemiBold.eot');
    src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
         url('../fonts/Poppins-SemiBold.woff') format('woff'),
         url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
         url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

.primary{color: var(--primary-back-color);}
.secondary{color: var(--secondary-back-color);}
.tertiary{color: var(--tertiary-back-color);}

body {
  overflow-y: auto;
  font-size: 17px;
  font-family: var(--font-text), sans-serif;
  background-repeat: no-repeat, no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  top:0 !important;
  background: var(--back-color);
  color: var(--title-color);
  scroll-behavior: smooth;
}

.posrel{
  position: relative;
}

.posabs{
  position: absolute;
}

.posfix
{
    position: fixed;
}

/*-----------------*/
/* Title */
/*-----------------*/
h1, h2, h3, h4, h5, h6 {
	line-height: 120%;
	margin: 16px 0px;
	font-family: var(--font-title), sans-serif;
}

h2, h3, h4, h5, h6 {
	text-align: left;
}

h1 {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}


h1{font-size: 2.8em;}
h2{font-size: 2.5em;}
h3{font-size: 1.3em;}
h4{font-size: 1.3em;}
h5{font-size: 1.2em;}
h6{font-size: 1.1em;}

@media(max-width: 980px)
{	
    h1{font-size: 2em}
    h2{font-size: 1.8em;}
    h3{font-size: 1.6em}
    h4{font-size: 1.4em;}
    h5{font-size: 1.2em;}
    h6{font-size: 1.1em;}
}

@media(max-width: 480px)
{	
    h1{font-size: 1.6em}
    h2{font-size: 1.5em;}
    h3{font-size: 1.4em}
    h4{font-size: 1.3em;}
    h5{font-size: 1.2em;}
    h6{font-size: 1.1em;}
}

h3{margin-top: 25px;}
/*-----------------*/
/* Image */
/*-----------------*/
img.cover{
	object-fit: cover;
	width: 100%;
	height: 100%;
}


img.coverFull
{
    object-fit: cover;
    width: auto;
    height: 100vh;
}

.nohome img, .nohome iframe{max-width: 100%;height: auto;}

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

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

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

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

/*--------------------------------------------*/
.gallery_zoom:before, .gallery_zoom:after,
.gallery_zoom:before, .gallery_zoom:after  {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transition: background-color 0.2s ease-in-out, transform 0.4s ease-in-out;
    background-color: var(--back-color);
}
.gallery-icon:hover .gallery_zoom:before,
.blocks-gallery-item:hover .gallery_zoom:before {
    transform: translateX(0px);
}

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

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

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

.gallery .gallery-icon:hover .gallery_zoom,
.blocks-gallery-item:hover .gallery_zoom
 {
    opacity: 1;
}

.gallery_zoom {
    position: absolute;
    z-index: 25;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

/*--------------------------------------------*/
/*-----------------------------------------------------------*/
.gallery-icon::before, .gallery-icon::after,
.blocks-gallery-item::before,.blocks-gallery-item::after
{
    content:
    ''!important;
    position: absolute;
    top: 100%;
    left: 0;
    width:100%;
    height:100%;
    background: var(--title-color);
    z-index: 1;
    transition: all 0.4s;
    pointer-events: none;
    opacity: 0;
    pointer-events: none;
}
.gallery-icon:hover::before, .blocks-gallery-item:hover:before
{
    opacity: 0.7;
    top: 0;
}

.gallery-icon:hover img, .blocks-gallery-item:hover img
{
    transform: scale(1.2);
}
.blocks-gallery-item
{
    overflow: hidden;
    position: relative;
}
.wp-block-gallery .blocks-gallery-item a img
{
    transition: all 0.4s;
}

/*-----------------*/
/* Text align */
/*-----------------*/
.tar{text-align: right;}
.tal{text-align: left;}
.tac, .text-center{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;
    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: var(--title-color);
}
.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: var(--title-color);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);}

/*----------------------------- formules générales -----------------------------*/
.baseBackground
{
    background-size: cover!important;
    background-position: center center!important;
    background-repeat: no-repeat!important;
}
.baseBefFull, .baseBef, .baseBefFull, .baseAftFull{z-index: 0;}
.baseBef:before, .baseAft::after
{
    content: "";
    position: absolute;
    z-index: -1;
}
.baseAftFull::after, .baseBefFull::before
{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.baseBefore:before, .baseAfter::after
{
    content: "";
    position: absolute;
    top:  50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.baseFixed
{
   top: 0px;
   right: 0px;
   bottom: 0px;
   left: 0px;
   width: 100%;
   height: 100%;
   background: var(--title-color);
   z-index: 9999;
}


/*-----------------*/
/* Modal */
/*-----------------*/
.modal{
  display: grid;
  align-items: center;
  text-align: center;
  justify-items: center;
  width: 100vw;
  overflow: hidden;
  position: fixed;
  background: #111111cc;
  z-index: 9999;
  /* background-image: url(../images/icons/clock.svg); */
  background-position: bottom left;
  background-repeat:no-repeat;
  background-size: 400px;
  transition:0.5s all ease;
}

.closemodal {
    position: absolute;
    top: 20px;
    height: 30px;
    width: 30px;
    right: 20px;
    cursor: pointer;
    background: url(../images/icons/close.png);
}

.innermodal{
	padding: 50px;
	background: #fff;
	box-shadow: 0 13px 20px -22px;
	position: relative;
	pointer-events: bounding-box;
	max-width: 600px;
}

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

.detailhoraires{
    color: var(--title-color);
    text-align: right;
}
.horairemodal .jourhoraires{
    font-weight: bold;
    color: var(--primary-back-color);
    width: 170px;
}

.horairemodal .titlehoraires{
	font-size: 120%;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
	text-align: center;
	color: var(--title-color);
}

.bthoraire{
	cursor: pointer;
}

/* ------------------------- */
/* GLOBAL BUTTON */
/* ------------------------- */
.underbutton > *, button, .button{
    padding: 20px 30px;
    border: none;
    color: var(--back-color);
    text-decoration: none;
    background: var(--primary-back-color);
    transition:0.5s all ease;
    cursor: pointer;
    box-sizing: border-box;
    display: inline-block;
    position:relative;
    letter-spacing: 0.03em;
    font-size: 19px;
    border-radius: 4px;
}

#addresseDiv button,#addresseDiv .button{border: none;}

.horairesBT:hover{background-color: transparent;}


.underbutton.icon > *, button.icon, .button.icon{
  padding-left: 40px;
  background-size: 26px;
  font-size: 16px;
  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;
}

.liresuite
{
    text-align: center;
    margin: 16px auto;
}

#phoneBT-infotelfixe, #phoneBT-infotelport, #phoneBT-infotelport2, .horairesBT, .formulaireMail, #cta_byadresse .adresseIco, #infoadresse_inner, #infotelport, #infotelfixe{
	display: flex;
	box-sizing: border-box;
	padding-top: 13px;
	padding-bottom: 13px;
	background-color: transparent;
	box-shadow: none;
	text-align: left;
}

#header #phoneBT-infotelfixe, #header #phoneBT-infotelport, .horairesBT, .formulaireMail, #infoadresse, #cta_byadresse .adresseIco, #header .horairesBT, .sociblock .share-buttons span, #phoneBT-infotelport.button, #phoneBT-infotelport2.button
{
	border: none;
}



.desccontact, .blc_checkbox label{color: var(--title-color);font-size: 16px!important;}
.privacyform_lab a{color: var(--tertiary-back-color);transition: all 0.4s;}

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

.button.current-post-page,
.button.current{outline-style: solid;outline-color: var(--secondary-text-color);pointer-events: none;}
/* ------------------------- */
/* GLOBAL TEXT PAO */
/* ------------------------- */


.tc_content{
    line-height: 175%;
    box-sizing: border-box;
    text-align: left;
    word-break: break-word;
}
.tc_content h2, .tc_content h3, .tc_content h4, .tc_content h5, .tc_content h6{
	margin-top: 1em;
	margin-bottom: 0.7em;
}

.tc_content a:not([class*="button"]){
    color: var(--primary-back-color);
    text-decoration: underline;
    font-family: var(--font-bold);
    transition: all 0.4s;
}
.tc_content strong, .tc_content b{
    color: var(--primary-back-color);
    transition: all 0.4s;
}

strong, b
{
    font-family: var(--font-bold);
}
.tc_content p{
    margin-bottom: 1.3em;
    color: var(--text-color);
}
.tc_content ol,
.tc_content ul{
    list-style-position: inside;
    margin:10px 20px;
}
.tc_content ul{
    list-style-type: square;
}
.tc_content ol{
    list-style-type: decimal;
}
.tc_content ul li,
.tc_content ol li{
    padding: 5px 0px;
    color: var(--text-color);
}

.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;
}
.tc_content blockquote{
  background: var(--primary-back-color);
  border-bottom: 3px solid var(--secondary-text-color);
  position: relative;
  margin: 2em 10px !important;
  padding: 1em 30px !important;
  quotes: "\201C""\201D""\2018""\2019";
  max-width: 100%;
  box-sizing: border-box;
}
.tc_content blockquote cite{
    display: block;
    text-align: right;
}

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

.tc_content blockquote p {
  display: flow-root;
  color: var(--back-color);
  margin-bottom: 0.5em;
}

.tc_content table{
	width: 100% !important;
	margin-bottom: 1em;
	background-color: rgba(255,255,255,0.4) !important;
}
.tc_content table th{padding:0.15em 0.4em;border: 1px solid rgba(0,0,0,0.6);background:rgba(0,0,0,0.1);}
.tc_content table td{padding:0.15em 0.4em;border: 1px solid rgba(0,0,0,0.6);}

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

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

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

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

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

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

#header {
    z-index: 15;
    box-sizing: border-box;
    height: auto !important;
    /* background: var(--title-color); */
    width: 100%;
}
#header #logo {text-align: center;}
#header #noshare {text-align: center;overflow: hidden;box-sizing: border-box;}
#header #share {text-align: center;}
#header #noshare .label,
#header #share .label,
#header #autotraduction .label{
	font-size: 10px;
	letter-spacing: 0.02em;
	margin: 4px 0 0px;
	text-transform:uppercase;
	font-weight:bold;
	line-height: 15px;
	text-align: left;
	max-width: 150px;
	margin: 4px auto 0;
	color: var(--tertiary-text-color);
}

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

#header #infoadresse #infoadresse_inner, #cta .adresseIco, #infotelport, #infotelfixe
{
    padding-left: 40px;
}
#cta .adresseIco
{
    background: none;
    color: var(--back-color);
}
#header #infoadresse #infoadresse_inner div {
    /* margin: 0 3px; */
    text-align: left;
    display: inline-block;
    /* font-weight: 900; */
    color: var(--back-color);
}


/*-----------------*/
/* MENU PRIMARY */
/*-----------------*/
#navprimary .ckmenu-nav{color: var(--back-color);}

#navprimary .navigmenu .navigtoogle > .navdown{
    text-align: left;
    font-size: 0.75em;
}

#navprimary .navigmenu .naviglink.lvl-1{
	opacity: 0;
	color: var(--back-color);
	padding: 14px 10px;
	box-sizing: border-box;
}
#navprimary .navigmenu .naviglink.lvl-1:not(:last-child){border-bottom: 1px solid #00000045;}

/*-----------------*/
/* SLIDER ACTU */
/*-----------------*/
#slideactu {
    /* padding: 90px 50px; */
    box-sizing: border-box;
    /* padding-bottom: 150px; */
    /* background: aliceblue; */
    overflow: hidden;
}

.wrapper_slider {
    background-size: cover;
    box-sizing: border-box;
    background-position: bottom right;
    position: relative;
}

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

.wrapper_inner_slider{
    align-content: space-between;
    transition:1s all ease;
    align-content: stretch;
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
}

.wrapper_inner_slider:hover img
{
    transform: scale(1.2);
}

.thumbnail_slider{
	line-height:0;
	overflow: hidden;
	position: relative;
	z-index: 0;
	/* transform: scale(1.5); */
}

.img_thumbnail_slider, .nohome .img_thumbnail_slider{
    width: 100%;
    object-fit: cover;
    transition: all 0.6s;
    height: 400px;
}

.content_slider {
    padding: 50px 30px;
    box-sizing: border-box;
    z-index: 1;
}
.title_link_slider{
    text-decoration: none;
    text-transform: initial;
    font-size: 1.5em;
    line-height: 1.4em;
    font-family: var(--font-bold);
    letter-spacing: 0.03em;
    width: 100%;
    display: block;
    display: grid;
    text-align: left;
    padding: 10px 0;
}
.text_slider, .nohome.category .tc_content{
    color: var(--title-color);
    line-height: 175%;
    padding: 15px 0px;
    box-sizing: border-box;
    width: 100%;
    max-width: 600Px;
    text-align: left;
}
.next_slider{
    text-align: right;
}

@media (max-width:980px) {
  .thumbnail_slider{
      max-height: 500px;
  }
}

/*-----------------*/
/* PRESTATION BLOC */
/*-----------------*/
#prestations
{
    background-size: cover;
    background-position: left center;
    background-repeat: repeat-x;
    box-sizing: border-box;
    position: relative;
    z-index: 15;
    padding: 100px 20px;
    z-index: 0;
    overflow: hidden;
}

#prestations .widget_parentpage .bloc_inner_wpp h2 
{
    font-size: 1.3em;
    font-family: var(--font-bold);
    text-transform: initial;
    margin-bottom: 0;
    text-align: left;
}
#prestations .widget_parentpage .bloc_inner_wpp h2 a
{
    text-decoration: none;
    box-sizing: border-box;
    margin: 0 auto;
    font-weight: initial;
    transition: all 0.4s;
}

#prestations .tc_content
{
    padding: 15px 25px;
    box-sizing: border-box;
    transition: all 0.4s;
}


#prestations .tc_excerpt
{
    text-align: center;
}

#prestations .wrapPresta .subtitle
{
    color: var(--title-color);
}

#prestations .widget_parentpage
{
    box-sizing: border-box;
    gap: 30px;
    padding: 0;
    margin-bottom: 40px;
}

#prestations .ckctrldiv
{
    display: none;
}

#prestations .tc_content
{
    box-sizing: border-box;
    text-align: left;
    z-index: 1;
    padding: 10px 0;
    color: var(--primary-back-color);
}

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

.wrapperSections
{
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
}

.sectionsbloc.even{
    flex-direction: row-reverse;
}
.section_thumb{
    position: relative;
    box-sizing: border-box;
    /* padding: 20px; */
}
.section_thumb .blocthumb{
    box-sizing: border-box;
    overflow: hidden;
}
.section_txt{
    box-sizing:
    border-box;
    padding: 0;
    text-align: center;
}


.sectionsbloc h2{
    padding: 16px 0;
    /* text-align: center; */
    position: relative;
    color: var(--title-color);
    margin-top: 0;
    margin-bottom: 30px;
    /* text-transform: uppercase; */
}

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

.widget_element{
    text-align: center;
}
.widget_element li{
    list-style: none;
    position: relative;
    box-sizing: border-box;
    line-height: 0;
    max-width: 100%;
    width: 100%;
    padding: 20px;
}
.widget_element img{
    max-width: 80%;
    width: auto;
    object-fit: contain;
    max-height: 100px;
}
.widget_element a{
    /* width: 100%; */
    display: inline-block;
}

.widget_element h3,
.widget_element h3 a{
	color: var(--title-color);
	box-sizing: border-box;
	line-height: 100%;
	text-decoration: none;
	display: block;
}

.widget_element h3{
    top: 0;
    right: 0;
    display: inline-block;
    padding-top: 10px;
    margin: 0 auto;
    text-align: center;
    display: none;
}

.widget_element .element_content{
    padding: 15px 0;
    /* pointer-events: none; */
    transition:0.5s all ease;
    /* font-size: 16px; */
    text-align: left;
    color: var(--title-color);
    box-sizing: border-box;
}

.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-text-color);
	opacity:0;
	transition:0.5s all ease;
}

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

.widget_element .gotolink
{
    margin: 16px auto;
    display: none;
}

.widget_element .gotolink:hover a
{
    background: var(--primary-back-color);
}

.widget_element .gotolink a{
	line-height:120%;
	padding: 10px;
	box-sizing: border-box;
	color: var(--primary-text-color);
	background: var(--tertiary-back-color);
	display:initial;
	transition:0.5s all ease;
    display: none;
}
.attention
{
    background: var(--primary-back-color);
    padding: 20px;
    color: var(--back-color);
}
/*-----------------*/
/* H1 */
/*-----------------*/
#h1{
	color: var(--title-color);
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
	text-align: center;
}

#h1 h1{
    display: inline-block;
    text-transform: uppercase;
    padding: 10px 25px;
    box-sizing: border-box;
    margin-top: 80px;
}

#slogan-title
{
    color: var(--back-color);
    font-size: 4.5em;
    box-sizing: border-box;
    position: relative;
}

/*-----------------*/
/* CONTENT */
/*-----------------*/
#content{
	color: var(--title-color);
	padding: 40px;
	box-sizing: border-box;
	z-index: 0;
	overflow: hidden;
}

.nohome:not(.woocommerce-category-php):not(.template-contact-php):not(.template-parent-page-php) #content
{
	padding: 100px 30px;
	padding-bottom: 160px;
}

#content.hasnocontent{padding:0;}

/*-----------------*/
/* LEBONPRO */
/*-----------------*/
#lebonpro{
	background: var(--back-color);
	color: var(--title-color);
	padding: 60px 0;
}


/*-----------------*/
/* TEMPLATE AGENCE */
/*-----------------*/
#filterwidgetagence{
    text-align: right;
    padding: 10px;
    background: #f0f0f0;
    color: var(--title-color);
    border-bottom: 1px solid var(--back-color);
    font-size:12px;
    display: none;
}
#filterwidgetagence select{
	border:none;
	background:#fff;
	padding:2px 20px 2px 5px;
	box-sizing:border-box;
	border:1px solid #ccc;
}

.itemlistwidgetagence{
    box-sizing: border-box;
    line-height: 0;
    border-bottom: 1px solid #efefef;
    background: var(--back-color);
}
.itemlistwidgetagence:last-child
{
    border: none;
}
.itemlistwidgetagence.active{
	outline-color: var(--primary-back-color)
}

.list_imgagence{
    height: 300px;
    overflow: hidden;
}
.list_infoagence{
    padding: 32px 25px;
    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;}
.list_infoagence .tel_list_infoagence a{color: var(--primary-back-color);}
.list_infoagence .more_list_infoagence{
    margin: 32px 0 0 0;
    text-align: left;
    text-decoration: underline;
    /* padding: 0 30px; */
    box-sizing: border-box;
}
.list_infoagence a{text-decoration: none;}
.list_infoagence a.button{color: var(--back-color)!important;}

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

#boxlink_agence a.blink_agence:hover{
	border-bottom: 1px solid var(--secondary-text-color);
}
.gm-style .gmnoprint:last-child
{
    top: 50px!important;
}

.title_list_infoagence a
{
    font-family: var(--font-title);
    color: var(--title-color);
    font-size: 22px;
}

/*-----------------*/
/* CTA */
/*-----------------*/
.cta_labelBig{
    font-size: 1.4em;
    color: var(--tertiary-text-color);
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    font-weight: bold;
}
.cta_labelSmall{
    font-size: 1em;
    color: var(--tertiary-text-color);
    padding-bottom: 1em;
}

/* Landing Form */

.landing_labelBig{
    padding-top: 0.5em;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 0;
    color: var(--primary-back-color);
}
.landing_labelSmall{
    padding-bottom: 25px;
}

/*-----------------*/
/* CATEGORY PAGE */
/*-----------------*/
#listarticles .listedarticle{
    position: relative;
    line-height: 0;
    box-shadow: 0 13px 20px -22px #000;
    outline-color: #ffffff99;
    outline-offset: -5px;
    outline-width: 1px;
    outline-style: dotted;
    height: 100%;
    box-sizing: border-box;
    min-height: 160px;
    background: var(--tertiary-back-color);
}
#listarticles .listedarticle h2{
    font-size: 20px;
    position: absolute;
    top: 10px;
    text-align: center;
    width: 90%;
    background: var(--title-color);
    margin: 0 5%;
    padding: 5px;
    box-sizing: border-box;
}

#listarticles .listedarticle h2 a{
    color: var(--tertiary-text-color);
    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;
}

.nohome.category .blocthumb::before
{
    background: #0000004d;
    z-index: 0;
}


#listarticles .listedarticle .liresuite{
    position: absolute;
    bottom: 0;
    line-height: 100%;
    text-align: center;
    width: 100%;
    padding-bottom: 11px;
}


/*-----------------*/
/* FOOTER */
/*-----------------*/
#footer #footerbloc{
	box-sizing: border-box;
	position: relative;
	background: var(--back-color);
	padding: 30px 20px;
}

#footer
{
    position: relative;
    z-index: 15;
}

#mapwidgetagence
{
    min-height: 400px;
}

/*LOGO*/
#footer #logofooter img{
    max-height: 80px;
    max-width: 100%;
}

/*MAPS*/
#footer #mapfooter{
	width:100%;
	padding: 0 30px;
	box-sizing: border-box;
}
#footer .maps_canvas{
    min-height: 500px;
}

/*ADDR FOOTER*/
#footer #addrfooter{
    width: 100%;
    padding: 5px 20px;
    box-sizing: border-box;
}
#footer #addrfooter #addrfooter_txt{
	background-image: url(../images/icons/mapHeader.svg);
	background-repeat: no-repeat;
	background-size: 28px;
	background-position: center left 5px;
	padding: 10px 25px;
	padding-left: 50px;
	box-sizing:border-box;
}

#footer #addrfooter #addrfooter_txt div{
    margin-right: 6px;
    font-weight: 900;
}

/*NAVIGATION*/
#footer #navfooter{
    /* width: 100%; */
    /* height: 100%; */
    padding: 10px 20px;
    box-sizing: border-box;
    display: grid;
    align-items: center;
}

#footer .titlefooter {
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    box-sizing: border-box;
    font-family: var(--font-title);
    font-size: 1.1em;
}

#footer #navfooter #menu-footer{
    list-style-type: none;
    list-style-position: inside;
    line-height: 1.6em;
}
#footer #navfooter #menu-footer li a{
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.4s;
}

/*COPYRIGHT*/
#footer #footerlinks{
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}
#footer #footerlinks a{
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.4s;
}

/*----------------------------- En tête  full size  -----------------------------*/
#en-tete
{
    width: 100%;
    position: relative;
    overflow: hidden!important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    z-index: 1;
    height: calc(100vh - 150px)!important;
    min-height: 600px;
    margin: 0 auto;
}


.nohome #thumbnailPage .blocthumb, .nohome #thumbnailPage .blocthumb img
{
    position: relative;
    min-height: 400px;
    height: calc(70vh - 100px);
    overflow: hidden;
    object-fit: cover;
}

.nohome #thumbnailPage .tc_excerpt
{
    background: var(--primary-back-color);
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
    color: var(--back-color);
    max-width: 80%;
    transform: translateY(-50px);
}


/*----------------------------- Header   -----------------------------*/
#addresseDiv {
    padding: 50px 25px;
    box-sizing: border-box;
}
#adresseHead {
    height: 100%;
    box-sizing: border-box;
}

/*----------------------------- LOADER   -----------------------------*/

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background-color: var(--title-color);
    display: inline-block!important;
    /* transition: 500ms all ease-in-out; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s;
    transition-delay: 1s;
  }
  body.loaded .loader.out{
      left: -100%;
  }
  
  .loader-body {
    position: absolute;
    top: 50%;
    left: 50%;
  }
  .loader-14 {
    border-radius: 50%;
    box-shadow: 0 1em 0 -0.2em var(--primary-back-color);
    position: relative;
    -webkit-animation: loader-14 0.8s ease-in-out alternate infinite;
    animation: loader-14 0.8s ease-in-out alternate infinite;
    -webkit-animation-delay: 0.32s;
    animation-delay: 0.32s;
    top: -2em;
    display: inline-block;
    width: 2em;
    height: 2em;
    color: inherit;
    vertical-align: middle;
    pointer-events: none;
  }
  .loader-14:after, .loader-14:before {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    box-shadow: inherit;
    -webkit-animation: inherit;
            animation: inherit;
  }
  
  .loader-14:before {
    left: -2em;
    -webkit-animation-delay: 0.48s;
    animation-delay: 0.48s;
  }
  .loader-14:after {
    right: -2em;
    -webkit-animation-delay: 0.16s;
    animation-delay: 0.16s;
  }
  
  @-webkit-keyframes loader-14 {
    0% {
      box-shadow: 0 2em 0 -.2em var(--primary-back-color);
    }
    100% {
      box-shadow: 0 1em 0 -.2em var(--back-color);
    }
  }
  
  @keyframes loader-14 {
    0% {
      box-shadow: 0 3em 0 -.2em var(--primary-back-color);
    }
    100% {
      box-shadow: 0 2em 0 -.5em var(--back-color);
    }
  }
/*----------- Actualités ----------------*/

#slideactu .wrappercontent{height: 100%;}

.title_slider
{
    text-align: center;
}

/*----------------------------- PRESTATIONS -----------------------------*/
#__lpform_nom
{
    display: none;
}

/*----------------------------- FOOTER -----------------------------*/
#footer #menu-footer li{padding: 5px 10px;box-sizing: border-box;}

/*----------------------------- CONTACT -----------------------------*/
#cta_listelement .bthoraire, #cta_listelement .formulaireMail, #cta_listelement .phonea, #cta_byadresse .adresseIco, #cta_bytelport #phoneBT-infotelfixe, #cta_infoouverture .horairesBT
{
    display: inline-block;
}

#landingform
{
    box-sizing: border-box;
    text-align: center;
    z-index: 1;
    position: relative;
}
.nom.ckformfields
{
    background-image: none!important;
}

/*----------------------------- INFO TOOGLE -----------------------------*/
#info-toogle {
    height: 50px;
    padding: 4px;
    width: 50px;
    margin: 0px auto;
    background-color: var(--primary-back-color);
    background-image: url(../images/icons/info.svg);
    background-size: 27px;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0px;
    cursor: pointer;
    top: 0px;
    z-index: 1;
}

/*----------------------------- Animation -----------------------------*/
.animation-element-up, .animation-element_toogle-up, .animation-element-child-up>*, .animation-element_toogle-child-up>*
{
    transform: translateY(-100px);
    opacity: 0;
    transition: all 0.6s;
}

.animation-element, .animation-element_toogle, .animation-element-child>*, .animation-element_toogle-child>*
{
    transform: translateX(-100px);
    opacity: 0;
    transition: all 0.6s;
}

.animClass.in-view, .animClassChild.in-view>*, .animClassToogle.in-view, .animClassChildToogle.in-view>*
{
    transform: translate(0px, 0px)!important;
    opacity: 1;
}
.animationDirection
{
    position: relative;
    overflow: hidden;
}
.animationDirection::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-back-color);
    transition: all 0.5s;
    top: 0;
    z-index: 1;
}

.animationDirection.left::before{left: 0%;}
.animationDirection.left.in-view::before{left:-100%;}

.animationDirection.right::before{right: 0%;left: initial;}
.animationDirection.right.in-view::before{right: -100%;}

.animationDirection.top::before{top: 0%;}
.animationDirection.top.in-view::before{top:-100%;}

.animationDirection.bottom::before{bottom: 0%; top: initial;}
.animationDirection.bottom.in-view::before{bottom: -100%;}

.animationDirection.back::before{background: var(--back-color);}
.animationDirection.primback::before{background: var(--primary-back-color);}
.animationDirection.secback::before{background: var(--secondary-text-color);}
.animationDirection.tertback::before{background: var(--tertiary-back-color);}
.animationDirection.textback::before{background: var(--title-color)}
.animationDirection.primtextback::before{background: var(--primary-text-color);}
.animationDirection.texttertback::before{background: var(--tertiary-text-color)}
/*----------------------------- delay    -----------------------------*/

.delay:nth-child(2), .animClassChild.delay>*:nth-child(2){transition-delay: 0.2s;}
.delay:nth-child(3), .animClassChild.delay>*:nth-child(3){transition-delay: 0.3s;}
.delay:nth-child(4), .animClassChild.delay>*:nth-child(4){transition-delay: 0.4s;}
.delay:nth-child(5), .animClassChild.delay>*:nth-child(5){transition-delay: 0.5s;}
.delay:nth-child(6), .animClassChild.delay>*:nth-child(6){transition-delay: 0.6s;}
.delay:nth-child(7), .animClassChild.delay>*:nth-child(7){transition-delay: 0.7s;}
.delay:nth-child(8), .animClassChild.delay>*:nth-child(8){transition-delay: 0.8s;}



/*----------------------------- overflow    -----------------------------*/
.animClass, .animClassChild, .animClassToogle, .animClassChildToogle{overflow: hidden;}
.animClass.in-view, .animClassChild.in-view, .animClassToogle.in-view, .animClassChildToogle.in-view{overflow: inherit;}

/*----------------------------- Slogan / accroche  -----------------------------*/
#slogan-sub
{
    font-size: 1.2em;
    color: var(--back-color);
    display: block;
    margin: 32px auto;
    max-width: 90%;
    margin-top: 20px;
    z-index: 1;
    font-family: var(--font-title);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    /* text-shadow: none!important; */
}

#slogan-title>strong
{
    display: inline-block;
}

.titleColor
{
    color: var(--primary-back-color);
}

/*----------------------------- TEXT     -----------------------------*/
.home #content .article_content
{
    height: 100%;
}

#content .wrappercontent
{
    box-sizing: border-box;
    z-index: 3;
}

/*----------------------------- Arrow-ck -----------------------------*/
#arrow-ck {
	position: absolute;
	bottom: 50px;
	box-sizing: border-box;
	height: 100px;
	width: 100px;
	padding: 5px 9px;
	left: 50%;
	cursor: pointer;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}
@-webkit-keyframes chevron-pulse {
	0% {opacity: 0; }
	40% {opacity: 1; }
	80% {opacity: 0; }
	100% {opacity: 0; }
}
@keyframes chevron-pulse {
	0% {opacity: 0; }
	40% {opacity: 1; }
	80% {opacity: 0; }
	100% {opacity: 0; }
}
#arrow-ck .tcon-svgchevron {width: 30px;height: 30px;position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);}
#arrow-ck .tcon-svgchevron path {-webkit-animation: chevron-pulse 3s infinite cubic-bezier(0.4, 0, 0.2, 1);animation: chevron-pulse 3s infinite cubic-bezier(0.4, 0, 0.2, 1);fill: transparent;stroke: var(--back-color);stroke-width: 2px;}
#arrow-ck .tcon-svgchevron path.a1 {-webkit-animation-delay: 0s;animation-delay: 0s; }
#arrow-ck .tcon-svgchevron path.a2 {-webkit-animation-delay: -0.5s;animation-delay: -0.5s; }
#arrow-ck .tcon-svgchevron path.a3 {-webkit-animation-delay: -1s;animation-delay: -1s; }

/*----------------------------- MENU No home -----------------------------*/
.nohome #navprimary
{
    box-sizing: border-box;
}
/*------------------------ CONTACT CALL TO ACTION -----------------------*/
#phoneBT-infotelfixe, #phoneBT-infotelport, #phoneBT-infotelport2, .formulaireMail,  #cta_byadresse .adresseIco, #cta_infoouverture .horairesBT
{
    color: var(--back-color);
    background: none;
    padding: 5px 20px;
    padding-left: 0;
    font-size: 16px;
    position: relative;
    font-family: var(--font-text);
}
#cta .button:hover{background-color: transparent;}

/*----------------------------- HEADER -----------------------------*/
#header #navprimary {
    width: 100%;
    max-width: 1400px;
    /* border-top: 1px solid #0000001c; */
}

/*----------------------------- REASSURANCES -----------------------------*/
#reassurances
{
    padding: 50px 30px;
    /* padding-bottom: 70px; */
    box-sizing: border-box;
}
#reassurances svg {
    height: 60px;
    max-width: 100%;
    position: relative;
}
.picto-bloc{position: relative;}

.picto-bloc svg 
{
    padding: 5px;
    box-sizing: border-box;
}
/*----------------------------- PAGES -----------------------------*/
.template-contact-php #landingform {
    z-index: 10;
    background: var(--back-color);
    padding: 0;
}

.columnOrder {
    flex-direction: column;
}

.privacyform_chk {
    box-shadow: none;
    height: 18px;
    width: 18px;
    margin-right: 10px !important;
}

.nohome.childpage h2 {
    margin: 30px 0px;
    padding-top: 10px;
}

/*--------------------- LogoResponsive et logoHead --------------------*/
#logoResponsive img, #logoHead img
{
    box-sizing: border-box;
    max-width: 90%;
    max-height: 130px;
}

.logoCta
{
    max-height: 250px;
    padding: 25px 0;
    max-width: 80%;
}

/*----------------------------- ************ -----------------------------*/
.cekome_form .button.cf_submit:hover
{
    background-color: var(--tertiary-back-color);
}

/*----------------------------- ************ -----------------------------*/
.nohome.single #thumbnailPage  .blocthumb{height: 100%;max-height: 100%;}

#thumbnailPage>article
{
    height: 100%;
    text-align: center;
    display: grid;
    align-items: center;
    width: 100%;
}
/*----------------------------- HEADER -----------------------------*/
.navigtoogle.social svg
{
    height: 18px;
    fill: var(--title-color);
    transition: all 0.4s;
    margin: 0 10px;
}
.navigtoogle.social svg:hover
{fill: var(--primary-back-color);}

.socials{
    position: fixed;
    left: 0;
    top: 25%;
    z-index: 150;
    background: #fff;
    padding: 5px;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 0 10px 0 #999;
}
.socials .share-buttons{
    display: flex;
    flex-direction: column;
}
.socials .share-buttons a{
    margin: 0 0 10px;
    display: inline-block;
    width: 25px;
    height: 25px;;
}
.socials .share-buttons a:last-child{
    margin-bottom: 0;
}

.socials svg{
    width: 25px;
    height: 25px;;
    fill: var(--primary-back-color);
}
.socials a:hover svg{
    fill: var(--secondary-back-color);
}



/*----------------------------- LINE AFTER BUTTON -----------------------------*/
.liresuite a{position: relative;}

#ContactLinkHead .liresuite a:after
{
   background: var(--title-color);
}

#ContactLinkHead .btn-cta
{
    background: var(--tertiary-back-color);
}

/*----------------------------- ACTUALITES -----------------------------*/
#slideactu .liresuite
{
    margin: 0;
    margin-top: 10px;
    text-align: left;
}

.text_slider, .title_link_slider, .nohome.category .tc_content, .nohome.category h2 a
{
    color: var(--back-color);
    transition: all 0.4s;
}
/*----------------------------- Separator -----------------------------*/
.separate::before
{
    height: 400px;
    width: 100%;
    top: -32px;
    transform: translateX(-50%);
    background: var(--primary-back-color);
}

.btn-cta:hover, #ContactLinkHead .btn-cta:hover
{
    background: var(--title-color);
}

.separate section h2
{
    text-align: center;
    color: var(--title-color);
    font-size: 32px;
    margin-bottom: 90px;
    text-transform: uppercase;
}

/*----------------------------- CONTACT -----------------------------*/
#blocmaps
{
    box-sizing: border-box;
}

/*----------------------------- certifications -----------------------------*/
#certifications .widget_element h3{display: none;}

/*---------------------- CEKOME STARS / Le bon pro ----------------------*/
.home .cekome-stars-icon{text-align: left;z-index: 1;position: relative;}
#navprimary .navigmenu .naviglink.lvl-1:hover::after {left: 0;}

/*----------------------------- partenaires -----------------------------*/
#partenaires
{
    padding: 60px 30px;
    box-sizing: border-box;
    z-index: 1;
    position: relative;
}

#partenaires .widget_element img
{
    max-height: initial;
    padding: 10px;
    box-sizing: border-box;
    height: 100px;
}

.nohome #partenaires li
{
    margin-bottom: 60px;
}

.template-rating-php #h1
{
    padding: 50px;
    box-sizing: border-box;
}

#en-tete #landingform h2
{
    text-align: center;
}
/*----------------------------- ************ -----------------------------*/
#slogan-title
{
    font-family: var(--font-title);
    display: inline-block;
    text-transform: uppercase;
}

.navigBloc img
{
    max-width: 100%;
    height: 100px;
}

.hidden
{
    display: none;
}

/*----------------------------- ************ -----------------------------*/
@keyframes sousmenu {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(.8)
    }

    50% {
        opacity: 1;
        transform: translateY(0) scale(.8)
    }

    100% {
        opacity: 1;
        transform: scale(1);
        border-bottom: 1px solid #00000020;
        background: var(--title-color);
    }
}
.template-contact-php #content .wrappercontent
{
    padding: 0;
    text-align: center;
}
#header .navdown a:hover::after{opacity: 1;}

/*----------------------------- ************ -----------------------------*/
.accroche #phoneBT-infotelfixe
{
    display: inline-block;
    padding-right: 15px;
    color: var(--title-color);
}

/*----------------------------- ************ -----------------------------*/
.wrapperButton{
    gap: 20px;
}

.wrapperButton .buttonAccroche
{
    padding: 15px;
    box-sizing: border-box;
    background: var(--primary-back-color);
    transition: all 0.4s;
}

.wrapperButton .nextButton {
    background: var(--secondary-text-color);
}

.wrapperButton .nextButton:hover,
.buttonAccroche:hover {
    background: var(--title-color);
}

.wrapperButton .nextButton .button {
    background: transparent !important;
}

.buttonAccroche .button
{
    padding-left: inherit;
    padding: 15px;
    background-image: none!important;
    color: var(--back-color)!important;
}

#footer .button
{
    color: var(--back-color);
}
/*----------------------------- ************ -----------------------------*/
.nohome.category .content_slider{padding: 20px;background: #00000080!important;}

.messerr{margin-bottom: 16px;}

/*----------------------------- ************ -----------------------------*/
#footer.index{z-index: 1;}

/*----------------------------- quote -----------------------------*/
blockquote strong, blockquote a strong, blockquote strong a{color: var(--back-color)!important;}

.nohome blockquote h3{color: var(--back-color);}
.nohome blockquote .button{background: var(--secondary-text-color);}
.nohome blockquote .button:hover{background: var(--title-color);}

#ContactLinkHead .liresuite a:after{display: none;}

.white_cform{box-shadow: 0 10px 60px -30px rgba(0,0,0,0.9)!important;}

.buttonOrange{background: var(--tertiary-back-color);}
.buttonOrange::after{background: var(--title-color)!important;}
.buttonOrange:hover{background: var(--title-color);}

/*----------------------------- ************ -----------------------------*/
#cta .adresseIco{cursor: initial;text-align: center;/* padding: 0; */line-height: 1.4;}

/*----------------------------- ************ -----------------------------*/
.nohome.single.galerie #contentPage img
{
    width: 100%;
    max-height: 250px;
    object-fit: cover;
}

.nohome.galerie .content-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.nohome.galerie #content h2 {
    position: absolute;
    left: 50%;
    bottom: 10px;
    width: 95%;
    max-width: 100%;
    text-align: center;
    transform: translateX(-50%);
    right: 0;
    z-index: 1;
    padding: 30px;
    box-sizing: border-box;
    font-size: 1.5em;
    transition: all 0.4s;
}

.nohome.galerie h2 a
{
    color: var(--back-color);
    text-decoration: none;
    /* text-transform: uppercase; */
}

.nohome.galerie .article_content {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.return-link
{
    box-sizing: border-box;
}

.nohome.galerie.single .content{padding: 60px 32px;}
/*----------------------------- ************ -----------------------------*/
#landingform .landing_labelBig
{
    color: var(--title-color);
}
/*----------------------------- ************ -----------------------------*/
#content p
{
    line-height: 180%;
    margin-bottom: 30px;
}

#content p:last-of-type
{
    margin-bottom: 0;
}

/*----------------------------- ************ -----------------------------*/
.white_cform
{
    top:35%!important;
}
#slogan-sub ul
{
    text-align: left;
    max-width: 80%;
    margin:0 auto;
    list-style: initial;
}
#slogan-sub li
{
    display: inline-block;
    color: var(--back-color);
    position: relative;
    margin: 5px auto;
    font-family: var(--font-title);
    padding: 0 25px;
    text-shadow: 0px 0px 5px #000000bf;
}

/*----------------------------- ************ -----------------------------*/
.norobo
{
    padding: 0px 15px;
}

#cptchkbx-tplpg
{
    border: 1px solid #777!important;
    width: 17px!important;
    height: 17px!important;
    outline:none!important;
    line-height: 20px!important;
    margin-right: 0!important;
}

/*----------------------------- ************ -----------------------------*/
#slideactu .ckctrldiv {
    bottom: -70px;
}

/*----------------------------- ************ -----------------------------*/
.vegas-wrapper
{
    z-index: 1;
}
.nohome.childpage .gallery .gallery-item a:after, .nohome.single .gallery .gallery-item a:after
{
    display:none;
}

.nohome.childpage .wp-caption-text.gallery-caption,.nohome.single .wp-caption-text.gallery-caption
{
    font-size: 1em;
}
/*----------------------------- ************ -----------------------------*/
label.nom{display: inline-block;}

/*----------------------------- ************ -----------------------------*/
#slideactu .ckslidercontrols .next,
#slideactu .ckslidercontrols .prev {
    bottom: initial;
    top: 40%;
    transform: translateY(-50%);
}

.home #slideactu .content_slider {
    text-align: center;
    align-content: end;
    transition: all 0.4s;
    pointer-events: none;
}
.home #slideactu .content_slider>*
{
    pointer-events: initial;
}

/*----------------------------- ************ -----------------------------*/
.horairesBT, #phoneBT-infotelfixe{font-family: var(--font-text);}

/*----------------------------- ************ -----------------------------*/
.picto-bloc
{
    transition: 0.6s;
    align-items: center;
}

.picto-bloc .textRea{grid-column: span 5;}
.picto-container li h4
{
    font-size: 1em;
    margin-top: 0;
    text-align: center;
    font-family: var(--font-title);
}

/*----------------------------- ************ -----------------------------*/
.bloc_inner_wpp img,
.bloc_inner_wpp .blocthumb {
    width: 100%;
    transition: all 1s;
}

.bloc_inner_wpp:hover .mark {
    transform: translate(-50%, -50%) scale(1.1);
}

/*----------------------------- ************ -----------------------------*/
#navprimary 
{
    box-sizing: border-box;
    transition: all 0.4s;
    box-sizing: border-box;
    z-index: 1;
}
/*----------------------------- ************ -----------------------------*/
#blocmaps
{
    width: 100%;
    overflow: hidden;
}
#blocmaps>article
{
    max-width: 100%;
    width: 100%;
}
/*----------------------------- ************ -----------------------------*/
#cta
{
    z-index: 1;
    padding: 50px;
}

.titlehoraires h2
{
    margin: 10px 0!important;
    text-align: center;
}

#horairesPage
{
    padding: 25px;
    box-sizing: border-box;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/*----------------------------- ************ -----------------------------*/
.picto-container
{
    display: grid;
    align-items: center;
}

/*----------------------------- ************ -----------------------------*/
.nohome.category h2 a
{
    text-decoration: none;
    font-size: 32px;
    line-height: 1;
}
.nohome.category h2{margin-bottom: 0!important;}

/*----------------------------- PRESTA -----------------------------*/
.bloc_inner_wpp
{
    display: grid;
    box-sizing: border-box;
}
.bloc_inner_wpp::after
{
    background:var(--back-color);
}

.bloc_inner_wpp::before
{
    background: var(--tertiary-back-color);
    z-index: -7;
    transform: rotate(0deg);
    transition: all 0.4s;
    /* border-radius: 30px; */
}

.bloc_inner_wpp:hover::before
{
    transform: rotate(-5deg);
}

.bloc_inner_wpp .liresuite a
{
    background: #fff0;
    border: 1px solid var(--primary-back-color);
    border-radius: 50%;
    color: var(--primary-back-color);
    letter-spacing: -0.1em;
    --size: 45px;
    width: var(--size);
    height: var(--size);
    padding: 8px;
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.bloc_inner_wpp .liresuite a:hover
{
    background: var(--primary-back-color);
    color: var(--back-color);
}
.wrapPresta
{
    padding: 10px 20px;
    box-sizing: border-box;
}

.wrapPresta .lastWord,.wrapPresta .firstWord
{
    color: var(--primary-back-color);
    font-variant: small-caps;
    letter-spacing: -0.03em;
    text-align: left;
    line-height: 1;
}

.wrapPresta::before
{
    background: var(--primary-back-color);
    height: 50px;
    width: 4px;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
}

.wrapPresta .liresuite, .wrapPresta h2
{
    margin: 0;
}

.bloc_wpp-home
{
    display: grid;
}

/*----------------------------- ************ -----------------------------*/
.liresuite 
{
    margin: 20px auto;
    box-sizing: border-box;
    transition: all 0.4s;
}

.liresuite a {
    padding: 20px;
    text-align: left;
}

.button:hover
{
    background-color: var(--tertiary-back-color);
    color: var(--back-color);
}
/*----------------------------- ************ -----------------------------*/
#slideactu .content_slider 
{
    position: absolute;
    top: 0;
    left: 0;
    background: #00000080;
    height: 100%;
    width: 100%;
    transition: all 0.4s;
}

.subtitleActu
{
    position: absolute;
    left: 20px;
    top: 20px;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    color: var(--back-color);
    transition: all 0.4s;
}

.subtitleActu::before
{
    content:'';
    display: inline-block;
    left: 0;
    --size:20px;
    width: var(--size);
    height: var(--size);
    z-index: -1;
    background: url(../images/icons/calendar.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
}
/*----------------------------- ************ -----------------------------*/
#galleryHome .gallery
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* grid-auto-rows: 450px; */
}

.home #galleryHome .gallery-item img
{
    object-fit: cover;
    min-width: 100%;
    max-width: 100%;
    transition: all 0.6s;
    width: 100%;
    /* border-radius: 5px; */
}

.home #galleryHome .gallery-item:hover img
{
    transform: scale(1.2);
}

/*----------------------------- ************ -----------------------------*/
.wrapText a:not(.button)
{
    color: var(--primary-back-color);
}

.wrapText h5
{
    color: var(--secondary-text-color);
    font-family: var(--font-text);
    font-weight: 100;
    text-transform: uppercase;
    font-size: 1em;
}

/*----------------------------- ************ -----------------------------*/
.bloc_wpp-home
{
    box-sizing: border-box;
    height: 100%;
    z-index: 1;
}

.bloc_wpp-home.HiddenParent, .bloc_wpp-home:hover
{
    border-color: var(--tertiary-back-color);
}
.bloc_wpp-home>*
{
    transition: all 0.6s;
}

/*----------------------------- ************ -----------------------------*/
.gallery-icon{box-sizing: border-box;}
/*----------------------------- ************ -----------------------------*/
.picto-container li p
{
    /* max-width: 90%; */
    /* margin: 0 auto; */
    margin-top: 18px;
    line-height: 1.6em;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-title);
    letter-spacing: 2px;
    font-size: 0.9em;
}

.txt_wrap
{
    z-index: 2;
}
/*-----------------------------------------------------------*/
.wrapText {
    text-align: center;
}

/*-----------------------------------------------------------*/
.nohome.galerie:not(.single) .blocthumb
{
    position: relative;
}
.nohome.galerie:not(.single) .blocthumb::before
{
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width:100%;
    height:100%;
    background: var(--title-color);
    opacity: 0.6;
    transition: all 0.4s;
    z-index: 0;
}

.nohome.galerie:not(.single) .article_content:hover .blocthumb::before
{
    opacity: 0.8!important;
}
/*-----------------------------------------------------------*/
.return-link a {
    display: inline-block;
    margin-bottom: 80px;
    text-decoration: none;
    color: var(--back-color);
    background: var(--primary-back-color);
    position: relative;
    font-family: var(--font-bold);
    padding: 22px;
    box-sizing: border-box;
    transition: all 0.4s;
    border-radius: 30px;
}

.return-link a:hover 
{
    background: var(--secondary-back-color);
}
/*-----------------------------------------------------------*/
.tc_content a:not(.button):not(.wp-block-button__link):hover, #footer a:not(.button):hover, #phoneBT-infotelfixe:hover, 
.horairesBT:hover, .tc_content a:not(.button):not(.wp-block-button__link):hover strong, #phoneBT-infotelport:hover, #phoneBT-infotelport2:hover
{
    color: var(--secondary-back-color)!important;
}

.white_cform div
{
    color: var(--title-color)!important;
}
.gallery-item
{
    position: relative;
    margin-bottom: 0!important;
    line-height: 0;
    overflow: hidden;
}

/*-----------------------------------------------------------*/
#partenaires .ckctrldiv
{
    bottom: -30px;
}
/*-----------------------------------------------------------*/
.sectionsbloc a:not(.button):hover, .sectionsbloc strong a:not(.button):hover, .sectionsbloc a:not(.button):hover strong
{
    color: var(--back-color)!important;
}
/*-----------------------------------------------------------*/
#navprimary .navigmenu .naviglink.lvl-1:hover
{
    color: var(--primary-back-color);
}
/*-----------------------------------------------------------*/
.bloc_wpp-home
{
    transition: all 0.4s;
}

/*-----------------------------------------------------------*/
#content .textContent
{
    padding: 30px 40px;
    box-sizing: border-box;
    margin: 0 auto;
    z-index: 1;
    max-width: 700px;
    width: 100%;
    /* background: var(--back-color); */
    /* margin-left: 0; */
    /* padding-left: 0; */
}
/*-----------------------------------------------------------*/
#accroche img
{
    max-width: 300px;
    padding: 20px;
    box-sizing: border-box;
}

#contactDiv h2
{
    text-align: center;
    margin-right: 40px;
    text-transform: initial;
    font-size: 1.7em;
    font-family: var(--font-title);
}
/*-----------------------------------------------------------*/
.fixHead #footer
{
    z-index: 10;
}
/*-----------------------------------------------------------*/
#landing_listelement
{
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
    max-width: 700px;
    background: var(--back-color);
}

.tc_content .wp-block-button__link strong, .tc_content .wp-block-button__link, .tc_content .wp-block-button__link:hover
{
    color: var(--back-color)!important;
}   
/*-----------------------------------------------------------*/
#en-tete .accroche
{
    display: grid;
    justify-items: center;
    z-index: 1;
}

#footer.indexbas
{
    z-index: 10;
}
/*-----------------------------------------------------------*/
.titleSec
{
    margin-bottom: 70px;
    margin-top: 0;
    position: relative;
}

.subtitle
{
    color: var(--secondary-back-color);
    margin:0;
    margin-top: 40px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8em;
}

.titleSec,.subtitle
{
    box-sizing: border-box;
    /* text-align: center; */
}

.titleSec.white, .subtitle.white, .white
{
    color: var(--back-color);
}

/*-----------------------------------------------------------*/
#galleryWrap
{
    z-index: 1;
    padding: 50px 0;
}


.nohome.single:not(.galerie) #content .tc_content p
{
    margin-bottom: 15px;
}

/*-----------------------------------------------------------*/
#navprimary .navigmenu
{
    margin: 0 auto;
    position: relative;
}
/*-----------------------------------------------------------*/
.vegas-wrapper
{
    position: static;
    width: 100%;
}
.home #content
{
    overflow: hidden;
}

.navigmenu .navigtoogle.logo .naviglogo
{
    padding: 0;
    max-height: 150px;
}
/*-----------------------------------------------------------*/
#logoResponsive
{
    padding: 10px;
    box-sizing: border-box;
}
/*-----------------------------------------------------------*/
body .vegas-container
{
    min-height: 500px;
}

/*-----------------------------------------------------------*/
#cta_listelement h3
{
    color: var(--back-color);
    /* text-align: center; */
    margin: 0;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

#cta_listelement>div
{
    padding: 20px 40px;
    box-sizing: border-box;
}

#partenaires
{
    padding: 100px 50px;
}
.home #partenaires
{
    background: url(../images/background.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
:root .has-very-light-gray-background-color
{
    background: #fff0;
}

.home #partenaires::before
{
    background: var(--title-color);
    opacity: 0.8;
}

#partenaires .wrapElem
{
    position: relative;
    /* --size: 200px; */
    /* width: var(--size); */
    /* height: var(--size); */
    display: grid;
    align-items: center;
    justify-items: center;
    margin: 0 auto;
}

#partenaires .wrapElem::before
{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    z-index: -1;
    background: var(--back-color);
    /* border-radius: 50%; */
}
/*-----------------------------------------------------------*/
#galleryHome .gallery .gallery-item .gallery-icon, #galleryHome .gallery .gallery-item a {
    width: 100%;
    height: 100%;
    display: block;
    cursor: zoom-in;
    background-color: var(--primary-bgcolor);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.gallery-item:hover .wp-caption-text.gallery-caption {
    top: 50%;
}
.wp-caption-text.gallery-caption {
    position: absolute;
    top: 150%;
    left: 0;
    color: var(--back-color);
    font-size: 25px;
    text-align: center;
    transform: translateY(-50%);
    width: 100%;
    font-family: var( --font-title);
    padding: 16px;
    box-sizing: border-box;
    transition: all 0.4s;
    text-transform: uppercase;
}
.gallery-item:hover .wp-caption-text.gallery-caption {
    top: 50%;
}
/*-----------------------------------------------------------*/
#certifications .widget_element
{
    margin: 0;
    /* margin-top:15px */
}
/*-----------------------------------------------------------*/
#fieldDiv {
    gap: 30px;
    margin: 0 auto;
}
/*-----------------------------------------------------------*/
.pictoWrap 
{
    width: 100%;
    margin: 0 auto;
    padding: 30px 10px;
    height: auto;
    box-sizing: border-box;
}
/*-----------------------------------------------------------*/
#contentBefore
{
    padding: 100Px 50px;
    padding-top: 40px;
}

/*-----------------------------------------------------------*/
.nohome #thumbnailPage .blocthumb img 
{
    animation: scale-down-center 8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
  @keyframes scale-down-center {
    0% {
      -webkit-transform: scale(1.4);
              transform: scale(1.4);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }

/*-----------------------------------------------------------*/
#contactDiv {
    padding: 50px 30px;
    padding-top: 100px;
    box-sizing: border-box;
    color: var(--back-color);
}

#contactDiv::before
{
    background: var(--title-color);
    opacity: 0.5;
}

#contactDiv .liresuite
{
    text-align: left;
}

.thumbnail_slider a
{
    display: inline-block;
    line-height: 0;
    height: 100%;
    width: 100%;
}

mark, .count
{
    display: none;
}
/*-----------------------------------------------------------*/
#content .imgContent img
{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*-----------------------------------------------------------*/
.vegas-wrapper::before
{
    background: var(--title-color);
    z-index: 0;
    opacity: 0.6;
}
/*-----------------------------------------------------------*/
.article_content.hasthumb
{
    line-height: 0;
    text-align: center;
}

/*-----------------------------------------------------------*/
.nohome h1
{
    padding: 0 20px;
    box-sizing: border-box;
    display: inline-block;
}

#partenaires .ckctrldiv
{
    display: none;
}
/*-----------------------------------------------------------*/
.navigmenu .navdown {
    position: absolute;
    left: 0;
    right: 0;
    box-sizing: border-box;
    line-height: 1.2em;
    top: 64px;
    padding: 0 30px;
    margin: 0 auto;
    background-color: var(--title-color);
    width: 100%;
    transition: all 0.4s;
    height: 0;
    overflow: hidden;
    display: grid!important;
}

#navprimary .navigtoogle.has-child {
    position: static;
    z-index: 2;
}

.menuarticle p {
    width: auto;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
    margin: 0;
    display: inline-block;
    position: absolute;
    bottom: 30px;
    transform: translateX(-50%);
    left: 50%;
    text-align: center;
    width: 90%;
    min-width: 90%;
    font-family: var(--font-title);
    text-transform: uppercase;
    display: block;
    transition: all 500ms ease;
    line-height: 1.3;
}

.menuarticle .blocthumb:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: linear-gradient(to bottom, rgba(255,255,255,0) 0, rgba(0,0,0,0.8) 90%);
}

.navigmenu .naviglink.lvl-2:hover {
    color: #fff;
    padding-left: 16px;
}

.navigmenu .navigBloc.tb_hoverBloc article:hover p {
    transform: translateY(-50px);
}

.navigmenu .navigBloc.tb_hoverBloc article:hover .liresuite a {
    opacity: 1;
    top: -20px;
    /* bottom: 20px; */
}
/*-----------------------------------------------------------*/
.navigmenu .naviglink.lvl-2 .menu-icons {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

.ckmenu-nav a {
    transition: all 0.3s ease-in-out;
    transition-property: all;
    transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    /* transition-delay: 0.4s; */
    text-decoration: none;
    top: 0;
}

/*-----------------------------------------------------------*/
.pictoWrap h3
{
    text-align: center;
}


.navigmenu .menuprimary.open .navdown
{
    height: inherit;
    transition: all 0.4s;
    padding: 30px;
}

#navprimary .navigmenu .navigtoogle:not(.logo) a.lvl-0:not(.logoHead):before 
{
    content: '';
    width: 30px;
    height: 30px;
    background: var(--primary-back-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(0);
    top: 50%;
    z-index: -1;
    transition: all 300ms ease-in-out;
    -webkit-mask: url(../images/masque.svg);
    mask: url(../images/masque.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: bottom center;
    -webkit-mask-position: bottom center;
    mask-size: cover;
    -webkit-mask-size: cover;
}

#navprimary .navigmenu .navigtoogle:not(.logo):hover a.lvl-0:not(.logoHead):before,#navprimary .navigmenu .navigtoogle.active a.lvl-0:not(.logoHead):before
{
    transform: translateX(-50%) translateY(-50%) rotate(85deg) scale(1);
}

#navprimary .navigtoogle.has-child .naviglink.lvl-0::after {
    top: 12px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: relative;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-top-color: var(--title-color);
    border-width: 4px;
    margin-left: 10px;
}
/*-----------------------------------------------------------*/
.logoHead
{
    font-size: 0!important;
}
.logoHead img
{
    max-width: 100%;
    max-height: 120px;
    box-sizing: border-box;
}
/*-----------------------------------------------------------*/
.innerTitle
{
    color: var(--back-color);
    min-height: 40px;
    font-size: 1.2em;
    max-width: 80%;
    text-align: center;
    line-height: 1.4;
}

#partenairesHead
{
    display: block;
    z-index: 1;
}
/*-----------------------------------------------------------*/
#partenairesHead .widget_element .wrapElem
{
    --size: 190px;
    width: var(--size);
    height: var(--size);
    position: relative;
    margin: 0 auto;
    display:  grid;
    padding: 10px;
    box-sizing: border-box;
    align-items: center;
    align-content: center;
    justify-content: center;
    justify-items: center;
}

#partenairesHead .widget_element .wrapElem::after
{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width:100%;
    height:100%;
    background: var(--back-color);
    z-index: -1;
    border-radius: 50%;
    border-radius: 5px;
    border-radius: 50%;
}
/*-----------------------------------------------------------*/
.section_txt h4 
{
    font-weight: initial;
    font-size: 1.1em;
    margin: 0;
}

.section_txt h4::after
{
    content:" - ";
}
/*-----------------------------------------------------------*/
.imgContent
{
    grid-row: span 2;
    z-index: 1;
}
.imgContent .widget_element .element_content
{
    pointer-events: initial;
}

.imgContent .widget_element a
{
   font-size: 0;
   text-decoration: none;
   --size: 120px;
   display: block;
   width: var(--size);
   border-radius: 50%;
   height: var(--size);
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   box-sizing: border-box;
   right: -20px;
   transition: all 0.4s;
}
/*-----------------------------------------------------------*/
#galleryHome
{
    z-index: 2;
    /* margin-top: 60px; */
}
#tarteaucitronAlertSmall #tarteaucitronCookiesNumber
{
    padding: 5px!important;
}
/*----to top style----*/
.to-top.fixed {
	opacity: 1;
	bottom: 65px;
	z-index: 71;
}
.to-top {
	background: var(--primary-back-color);
	bottom: 100%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	color: #fff;
	display: block;
	font-size: 15px;
	height: 50px;
	line-height: 48px;
	opacity: 0;
	position: fixed;
	right: 20px;
	text-align: center;
	transition: 1s ease-in-out;
	width: 50px;
	z-index: 333;
	-webkit-transition: 1s ease-in-out;
	border-radius:100px;
	overflow:hidden;
	-webkit-animation: pulse 2s infinite;
	-o-animation: pulse 2s infinite;
	animation: pulse 2s infinite;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.navigmenu .navigtoogle.social .naviglink.lvl-0
{
    padding: 10px;
}

/*--------------------------------------------*/
.imgContent .blocthumb
{
    height: 100%;
}

.home #content .liresuite
{
    text-align: left;
    margin-top: 30px;
}
/*--------------------------------------------*/
.imgContent::before
{
    content:"A vos cotés depuis 1953";
    --size:200px;
    width: var(--size);
    height: var(--size);
    z-index: 1;
    left: 50px;
    top: 110px;
    display: grid;
    align-items: center;
    justify-content: center;
    padding: 30px;
    padding-top: 20px;
    box-sizing: border-box;
    text-align: center;
    color: var(--back-color);
}

/*--------------------------------------------*/
#contactDiv .widget_element h3
{
    display: initial;
    color: var(--back-color);
}
#contactDiv .widget_element .element_content p
{
    max-width: 700px;
    color: var(--back-color);
    font-size: 2.5em;
    line-height: 1.3em;
    font-family: var(--font-title);
    margin-bottom: 30px;
}
#contactDiv .widget_element,#contactDiv .widget_element .wrapElem, #contactDiv .widget_element li
{
    position: static;
    text-align: left;
}
#contactDiv .widget_element img
{
    max-height: 100%;
    max-width: 100%;
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}
/*--------------------------------------------*/
#reassurances
{
    /* background: url(../images/background1.jpg); */
    /* background-attachment: fixed; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
    box-shadow: 0px 0px 20px #0000000f;
}

#reassurances::before
{
    /* background: cornsilk; */
    /* opacity: 0.95; */
    background: var(--secondary-text-color);
}
/*--------------------------------------------*/

.titleAdresse
{
    color: var(--secondary-text-color);
    text-align: left;
}
.wrapAdresse
{
    display: grid;
    grid-template-columns: 60Px 1fr;
    align-items: center;
    gap: 10px;
    justify-items: start;
}
.wrapAdresse::before
{
    content:'';
    display: inline-block;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url(../images/icons/clockHeader.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px;
    grid-row: span 2;
}
.locationAdresse::before{background-image: url(../images/icons/mapHeader.svg);}
.telAdresse::before{background-image: url(../images/icons/phoneHeader.svg);}

/*--------------------------------------------*/
#en-tete-img-Wrap
{
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#en-tete-img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%!important;
}

/*--------------------------------------------*/
.partenairesWrap
{
    gap: 60px;
}

/*--------------------------------------------*/
#footer
{
    background: url(../images/background.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#footer::before
{
    background: var(--title-color);
    opacity: 0.6;
}
.wrapTextSection
{
    padding: 20px;
    box-sizing: border-box;
    /* background: var(--back-color); */
    /* border-radius: 10px; */
}
/*--------------------------------------------*/
.st, .st-hint-trigger {
    background: var(--primary-back-color)!important;
    border-color: var(--primary-back-color)!important;
}

.cekome-stars-list .fs
{
    color: var(--primary-back-color)!important; 
}

.cekome-stars .st-focus:hover {
    background: var(--text-color)!important;
    border-color: var(--text-color)!important;
    color: var(--back-color)!important;
}
/*--------------------------------------------*/
#thumbnailPage
{
    /* max-width: calc(100% - 100px); */
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    min-height: 300px;
    background: url(../images/background1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#thumbnailPage::before
{
    background: var(--title-color);
    opacity: 0.6;
    z-index: 1;
}

.content_slider .tc_content p
{
    color: var(--back-color);
}

.home.safari #header
{
    z-index: 340;
}
/*--------------------------------------------*/
#thumbnailPage::after
{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#en-tete::before, #thumbnailPage::after,#galleryHome::before
{
    background: var(--back-color);
    -webkit-mask: url(../images/curveFull.svg);
    mask: url(../images/curveFull.svg);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: bottom center;
    -webkit-mask-position: bottom center;
    mask-size: cover;
    z-index: 2;
    -webkit-mask-size: cover;
    top: 3px;
    pointer-events: none;
}
#galleryHome::before
{
    transform: scaleY(-1);
    top: -3px;
}

.navdownwrapper .menuImages .navbloctitle
{
    display: none;
}
.navigBloc p
{
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-top: 15px;
    transition: all 0.4s;
}
.navigBloc .blocthumb
{
    position: relative;
}
.navigBloc .blocthumb::before
{
    content:
    '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(to top, var(--tertiary-text-color),#0000);
}
/*--------------------------------------------*/
#certifications
{   
    max-width: 450px;
}

.blc_select label
{
    position: static;
}

.has-very-dark-gray-background-color
{
    background: var(--title-color)!important;
}
/*--------------------------------------------*/
.sectionsbloc .wp-block-media-text__content
{
    padding: 0 70px;
}

/*--------------------------------------------*/
.section_num0::after
{
    background: var(--tertiary-text-color);
}
.section_num0 h2,.section_num0 h3,.section_num0 .tc_content p
{
    color: var(--back-color);
}
/*--------------------------------------------*/
#sections .sectionsbloc h3 {
    color: var(--primary-back-color);
    text-transform: uppercase;
    font-size: 1em;
    position: relative;
    padding-left: 40px;
    box-sizing: border-box;
}
#sections .sectionsbloc h3::before
{
    content:'';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    --size: 30px;
    width: var(--size);
    height: var(--size);
    z-index: -1;
    background: url(../images/fav.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: none;
}

#sections .sectionsbloc.section_num0 h3::before
{
    filter: brightness(0) invert();
}
/*--------------------------------------------*/
.pictoSvg, .pictoSvg::before
{
    display: inline-block;
    margin: 0 auto;
    background: var(--back-color);
    border-radius: 50%;
    --size: 130px;
    width: var(--size);
    height: var(--size);
    display: grid;
    align-content: center;
    justify-content: center;
    box-shadow: 0px 0px 20px #0000000d;
}
.picto-container
{
    counter-reset: pictosvg;
}
.pictoSvg::before
{
    --size:40px;
    left: initial;
    right: 0;
    background: var(--secondary-back-color);
    border: 4px solid var(--back-color);
    box-sizing: border-box;
    content: "0" counter(pictosvg);
    counter-increment: pictosvg;
    color: var(--back-color);
    font-family: var(--font-title);
    font-size: 14px;
}
/*--------------------------------------------*/
.wp-block-image img
{
    height: auto;
}

.colonneCouleur
{
    background: var(--tertiary-back-color);
    padding: 50px;
    box-sizing: border-box;
    z-index: 1;
}
.tc_content .colonneCouleur p, .tc_content .colonneCouleur li
{
    color: var(--back-color);
}
/*--------------------------------------------*/
.has-very-light-gray-color p
{
    color: var(--back-color);
}

.firstWord
{
    color: var(--primary-back-color);
}
/*--------------------------------------------*/
#header #infoouverture {
    background-image: url('../images/icons/clockHeader.svg');
}

#header #infotelport,
#header #infotelfixe{
    background-image: url('../images/icons/phoneHeader.svg');
    margin-right: 30px;
}

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

#header #infoadresse, #header #infotelport, #header #infotelfixe, #header #infoouverture {
    position: relative;
    /* font-family: var(--font-bold); */
    margin-right: 0;
    padding-left: 30px;
    text-shadow: none;
    position: relative;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 16px;
    color: var(--back-color);
    display: flex;
    align-items: center;
    font-size: 16px;
    text-align: left;
  }

  #infoadresse span, #infotelport span, #infotelfixe span, #infoadresseFooter span, #infotelportFooter span, #infoadresseContact span, #infotelportContact span, #infoouverture span, #infotelfixeFooter span, #infotelportFooter span, #infoouvertureFooter span, #infoadresseFooter span, #infotelfixeContact span, #infotelportContact span, #infoouvertureContact span, #infoadresseContact span {
    color: var(--primary-back-color);
    font-size: 12px;
    font-family: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-right: 10px;
    box-sizing: border-box;
    text-align: left;
  }

  /*--------------------------------------------*/
  .horairesBT
  {
    cursor: pointer;
    transition: alL 0.4s;
  }

.itemlistwidgetagence .list_imgagence,
.itemlistwidgetagence .more_list_infoagence{
    display: none;
}
  #map_agence {
      display: inline-block;
      height: 414px;
      width: 100%;
  }