/*-----------------*/
/* LOADER */
/*-----------------*/
#loader-wrapper span{
	 font-size: 25px;
	 font-family: var(--font-bold);
	 letter-spacing: 5px;
	 text-transform: uppercase;
	 line-height: 1;
	 display: block;
	 mix-blend-mode: difference;
	 padding: 5px 15px;
}
#loader-wrapper div{
	 position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
}
#loader-wrapper div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  background-color: white;
  animation: move 2s linear infinite;
}
@keyframes move {
  0%,
  100% {
    left: 0;
  }
  50% {
    left: calc(100% - 100px);
  }
}
/*-----------------*/
/* ELEMENTS */
/*-----------------*/
.nohome #content .tc_content .wp-block-media-text:not([class*="has-luminous"]){background-color: var(--secondary-color);}
.nohome #content .tc_content .wp-block-media-text__content,
.nohome #content .tc_content .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {padding: 50px;}
/*-----------------*/
/* HEADER */
/*-----------------*/
#header-coordonnees {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    min-height: 100%;
    padding: 70px 40px 65px;
    background-color: var(--secondary-color);
    overflow: hidden;
    visibility: hidden;
    overflow: scroll;
    z-index: 9998;
    -webkit-transition: all .6s cubic-bezier(.77,0,.175,1);
    -o-transition: all .6s cubic-bezier(.77,0,.175,1);
    transition: all .6s cubic-bezier(.77,0,.175,1);
    text-align: left;
    box-shadow: 0 0 30px #00000057
}

#header-coordonnees .title h3{font-size: 25px;}

body.is-toggle-open #header-coordonnees {
    right: 0;
    visibility: visible
}

#header-coordonnees .button{margin: 4px 0;}
#header-coordonnees .flex>div {margin: 15px 0;}
#header-coordonnees .flex>div + .button{
    margin-top: 20px;
}
#info-toogle {
    display: flex;
    justify-self: flex-end;
    background: none;
}
#info-toogle:before{content: none;}

#info-toogle svg circle {
    stroke-dasharray: 160;
    stroke-dashoffset: 0;
    transform-origin: center;
    transform: rotate(0deg);
    transition: transform 1.2s cubic-bezier(.23,1,.32,1), stroke-dashoffset 1.2s cubic-bezier(.23,1,.32,1);
}

body:not(.is-toggle-open) #info-toogle:hover svg circle {
    transform: rotate(2turn);
    stroke-dashoffset: 160;
}

#info-toogle svg path {stroke-dashoffset: 0;}

#info-toogle svg path:first-of-type {
    stroke-dasharray: 28;
    transition: stroke-dashoffset .8s cubic-bezier(.23,1,.32,1) .4s;
}
#info-toogle svg path:nth-of-type(2) {
    stroke-dasharray: 20;
    transition: stroke-dashoffset .8s cubic-bezier(.23,1,.32,1) .5s;
}

#info-toogle .header__toggler-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 15px;
    height: 2px;
    background-color: var(--primary-color);
    transition: transform .8s cubic-bezier(.23,1,.32,1);
}

#info-toogle .header__toggler-bar:nth-child(2) {
    transform: translate(-50%,-50%) rotate(45deg) scaleX(0);
    transition-delay: 0s;
}
#info-toogle .header__toggler-bar:nth-child(3) {
    transform: translate(-50%,-50%) rotate(-45deg) scaleX(0);
    transition-delay: .1s;
}

body.is-toggle-open #info-toogle .header__toggler-bar:nth-child(2) {
    transform: translate(-50%,-50%) rotate(45deg) scaleX(1);
    transition-delay: .4s;
}
body.is-toggle-open #info-toogle .header__toggler-bar:nth-child(3) {
    transform: translate(-50%,-50%) rotate(-45deg) scaleX(1);
    transition-delay: .5s;
}

body.is-toggle-open #info-toogle svg path:first-of-type {
    stroke-dashoffset: 28;
    transition-delay: .1s;
}
body.is-toggle-open #info-toogle svg path:nth-of-type(2) {
    stroke-dashoffset: 20;
    transition-delay: 0s;
}

#header-social .share-buttons{justify-content: flex-start;}

/*-----------------*/
/* NAVPRIMARY */
/*-----------------*/
#navprimary .navigmenu .naviglink.lvl-0 span:after{
	content: '';
    display: inline-block;
    width: calc(100% - 2px);
    height: 1px;
    background-color: currentColor;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .26s cubic-bezier(.33,.02,0,.93)
}

#navprimary .navigmenu .naviglink.lvl-0:hover span:after,
#navprimary .navigmenu .active .naviglink.lvl-0 span:after{transform: scaleX(1);}

/*-----------------*/
/* SOCIAL */
/*-----------------*/
.share-buttons a {
    --size: 35px;
    width: var(--size);
    position: relative;
    display: flex!important;
    height: var(--size);
    align-items: center;
    justify-content: center;
    margin: 0 3px!important;
    padding: 0!important
}

.sociblock .share-buttons a svg {
    --size: 15px;
    fill: var(--white);
}
.sociblock .share-buttons a:hover svg {fill: var(--white)}

.share-buttons a:before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 100px;
    transition: all ease 250ms;
    border: 1px solid rgb(188 188 188)
}

.share-buttons a:hover:before {
    background: var(--primary-color);
    border-color: var(--primary-color)
}

/*-----------------*/
/* GALLERY HEADER */
/*-----------------*/
#galleryHeader{
    position: relative;
    margin-top: -20%;
    z-index: 3;
}

#galleryHeader .gallery{
    height: 34.625em;
    font-size: 1.25vw;
    overflow: hidden;
    position: relative;
}

#galleryHeader .gallery .gallery-item {
    margin-bottom: 0;
    position: absolute
}
#galleryHeader .gallery .gallery-item:first-of-type {
    width: 17.9375em!important;
    height: 25.25em;
    top: 3.625em;
    left: 0;
    z-index: 1
}

#galleryHeader .gallery .gallery-item:nth-child(2) {
    width: 11.5625em!important;
    height: 16.25em;
    top: 7.0625em;
    left: 16.4375em;
    z-index: 6
}

#galleryHeader .gallery .gallery-item:nth-child(3) {
    width: 9.8125em!important;
    height: 13.75em;
    top: 13.875em;
    left: 26.625em;
    z-index: 4
}

#galleryHeader .gallery .gallery-item:nth-child(4) {
    width: 24.5625em!important;
    height: 34.625em;
    top: 0;
    left: 33.875em;
    z-index: 2
}

#galleryHeader .gallery .gallery-item:nth-child(5) {
    width: 15.4375em!important;
    height: 21.75em;
    top: 8em;
    left: 55.375em;
    z-index: 5
}

#galleryHeader .gallery .gallery-item:nth-child(6) {
    width: 11.4375em!important;
    height: 17.5em;
    top: 5.125em;
    left: 69.4375em;
    z-index: 3
}


/*-----------------*/
/* HEADERHOME */
/*-----------------*/
.overlay{background: linear-gradient(to bottom, #000000d9 0%, rgba(0, 0, 0, .45098039215686275), #00000078);}
#headerHome-content{
    padding-bottom: 13%;
    padding-top: 50px;
}
/*-----------------*/
/* GALLERY HOME */
/*-----------------*/
#galleryHome {
    position: relative;
    z-index: 1;
    height: 31.725em;
    font-size: 1.25vw;
    overflow: hidden;
    background: var(--secondary-color);
}
#galleryHome .gallery .gallery-item {
    margin-bottom: 0;
    position: absolute;
}
#galleryHome .gallery .gallery-item:first-of-type {
    width: 17.9375em!important;
    height: 24.55em;
    top: 3.525em;
    left: 0;
    z-index: 1;
}
#galleryHome .gallery .gallery-item:nth-child(2) {
    width: 9.8625em!important;
    height: 14.35em;
    top: 6.8625em;
    left: 14.2375em;
    z-index: 6;
}
#galleryHome .gallery .gallery-item:nth-child(3) {
    width: 25.5625em!important;
    height: 31.725em;
    top: 0;
    left: 27.175em;
    z-index: 2;
}
#galleryHome .gallery .gallery-item:nth-child(4) {
    width: 14.2375em!important;
    height: 10.65em;
    top: 11.3em;
    left: 55.475em;
    z-index: 5;
}
#galleryHome .gallery .gallery-item:nth-child(5) {
    width: 18.1375em!important;
    height: 21.5em;
    top: 5.025em;
    left: 66.8375em;
    z-index: 3;
}
/*-----------------*/
/* PRODUITS HOME */
/*-----------------*/

/*-----------------*/
/* CONTENT */
/*-----------------*/
.linkTurn {
    --size: 11rem;
    width: var(--size);
    height: var(--size);
    display: inline-block;
    font-size: 15px;
    font-family: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    word-spacing: 0.62em;
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    /* top: initial; */
    bottom: -90px;
    z-index: 1;
    font-weight: bold;
}

.link__svg {
    width: 100%;
    height: auto;
    transform-box: fill-box;
    fill: var(--white);
    stroke: var(--white);
    background: var(--black);
    border-radius: 50%;
    padding: 10px;
    stroke-width: 0.05em;
    box-sizing: border-box;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.linkTurn:hover .link__svg {background: var(--primary-color);}

.link__arrow {
    transform-origin: 50% 50%;
    transition: transform 0.15s cubic-bezier(0.32, 0, 0.67, 0);
}

.linkTurn:hover .link__arrow {
    transform: scale(1.3) rotate(-20deg);
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.link__arrow {stroke-width: 0.075em;}

.link__text {
    -webkit-animation: rotateReverse normal infinite 20s linear;
    animation: rotateReverse normal infinite 20s linear;
    transform-origin: 50% 50%
}

.link--alt {
    font-size: 1.1rem;
    letter-spacing: 0
}
.home #content .linkTurn{
    border-radius: 50%;
    /* border: 1px solid var(--primary-color); */
    background: var(--background-color);
}
.home #content .linkTurn .link__svg{
	fill: var(--title-color);
	stroke: var(--white);
	background: none;
}
.home #content #link-circle3 {
    fill: var(--primary-color);
    transition: 250ms all ease-in-out;
}
.home #content .linkTurn:hover  #link-circle3{
    fill: var(--black);
}

/*-----------------*/
/* PRESTATIONS */
/*-----------------*/
.home #prestations{background-image: url(../images/bg-prestations.jpg);}
.home #prestations:before{background-color: var(--overlay-color);}

.nohome #prestations{padding: 0;}

#prestations :is(.prestations-img, .prestations-content){
	padding: 30px;
	border: .1rem solid #ffffff61;
}

#prestations .prestations-content{border-top: none;}


/*-----------------*/
/* ACTU */
/*-----------------*/
#news .next_slider {margin-top: 10px;}
#news .left {
    display: grid;
    align-items: start
}
.title_link_slider,
#listarticles .listedarticle h2 a{
    background-repeat: no-repeat;
    background-image: -o-linear-gradient(transparent calc(100% - 2px),currentColor 2px);
    background-image: linear-gradient(transparent calc(100% - 2px),currentColor 2px);
    background-image: -ms-linear-gradient(transparent 95%,currentColor 2px);
    transition: .6s cubic-bezier(.215,.61,.355,1);
    background-size: 0 96%;
}

.title_link_slider:hover,
#listarticles .listedarticle h2 a:hover{background-size: 100% 96%}
#news .titleImg {
    background: url(../images/home-bg3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 200px;
}

#news .wrapperActu { counter-reset: actus}

#news .wrapper_slider:not(:last-child) .wrapper_inner_slider {border-bottom: 1px solid #00000017}

#news .wrapper_inner_slider {
    background: none;
    padding: 10px 0px;
}

#news .thumbnail_slider {
    transition: all .5s;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    height: 160px;
}

#news .content_slider::before {
    content: "0" counter(actus);
    counter-increment: actus;
    position: absolute;
    top: 47%;
    transform: translateY(-50%);
    left: 0;
    font-family: var(--font-title);
    font-size: 4em;
    opacity: .1;
    color: var(--title-color);
    font-weight: bold;
}

/*-----------------*/
/* SECTIONS */
/*-----------------*/
#sections .wp-block-media-text__media{position: relative;}
#sections .wp-block-media-text__media img{position: absolute;}
.section_thumb {
    width: 100%;
    height: 700px
}

.section_txt {
    background: var(--secondary-color);
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 6%;
    box-shadow: 0 0 30px rgb(0 0 0 / 10%);
}
.sectionsbloc.section_num3 .section_txt{background: none;}
.sectionsbloc .wrap-text {padding: 100px 120px}
.buttons-wrap.tac{justify-content: center;}
/*-----------------*/
/* REASSURANCES */
/*-----------------*/
#reassurances{background: var(--secondary-color)}
.picto-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.picto-container li{
	text-align: left;
	align-items: flex-start;
	border: solid 1px #ffffff8a;
	margin: 0;
	padding: 60px 30px;
	position: relative;
	border-top: none;
	border-bottom: 0;
}
.picto-container span:before,
.picto-container span:after{
	height: 1px;
	background: #ffffff8a;
}
.picto-container span:before{width: 31px;}
.picto-container span:after{
    right: 0;
    left: auto;
    width: calc(100% - 105px);
}
.picto-container li:after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	z-index: -1;
	opacity: 0;
	transition: 250ms all ease-in-out;
	clip-path: polygon(30px 0, 30px 30px, 105px 30px, 105px 0, 100% 0, 100% 100%, 0 100%, 0 0);
}

.picto-container li:first-child{
	border-right-width: 0.5px;
	border-bottom-width: 0.5px;
}
.picto-container li:nth-child(2){border-left-width: 0.5px;}
.picto-container li:nth-child(3){
	border-top-width: 0.5px;
	border-right-width: 0.5px;
	border-bottom: solid 1px #ffffff8a;
}
.picto-container li:nth-child(4){
	border-top-width: 0.5px;
	border-left-width: 0.5px;
	border-bottom: solid 1px #ffffff8a;
}
.picto-container li p strong{
	display: block;
	font-family: var(--font-bold);
	font-size: 16px;
	margin-bottom: 10px;
	color: var(--white);
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
}
.picto-container li p{
	margin: 0;
	font-size: 15px;
	color: var(--white);
	line-height: 1.6;
}
.picto-container li svg, 
.picto-container li img{
    position: absolute;
    top: -40px;
    padding: 20px;
}

/*-----------------*/
/* PARTENAIRES */
/*-----------------*/
#partenaires {
    padding: 170px 60px 0;
    margin-bottom: -160px;
    z-index: 30;
}

#partenaires:before{background: var(--secondary-color)}

#partenaires .partenaires-intro p:last-of-type{margin-bottom: 0;}

#partenaires .widget_partenaires li .wrap-element {
    border: none;
    height: auto;
    padding: 0
}

#partenaires .widget_partenaires {
    background-color: #fff;
    border: 1px solid #eee;
    border-bottom: none;
    border-right: 0;
    position: relative;
    z-index: 2
}

#partenaires .widget_partenaires li {
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    min-height: 160px;
    padding: 20px!important
}

#partenaires .widget_partenaires li.no-flex {
    align-items: stretch;
    padding: 0!important;
    border: none;
    margin-left: auto;
}

#partenaires .widget_partenaires li .button {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 100%;
    background: var(--primary-color)!important;
    padding: 10px;
    line-height: 1.4;
    border-radius: 0!important
}

#partenaires .widget_partenaires li .button:before,
#partenaires .widget_partenaires li .button:after {content: none}

#partenaires .widget_partenaires li .button:hover {background: var(--secondary-color)!important;color: var(--white);}
#partenaires .widget_element img{
    max-height: 60px;
    max-width: 90%;
}
/*-----------------*/
/* NEWSLETTER */
/*-----------------*/

/*-----------------*/
/* SHARE */
/*-----------------*/

/*-----------------*/
/* AGENCES */
/*-----------------*/

/*-----------------*/
/* CONTACTFORM */
/*-----------------*/
.blc_desc .callout {
    text-transform: none;
    font-family: var(--font-text);
    font-size: 14px;
    color: var(--black);
}
#contactCoordonnees font{display:contents}
#contactCoordonnees{margin-bottom: 70px;}
#contactForm{
    background: var(--secondary-color);
    padding: 30px 15px;
}
/*-----------------*/
/* CTA */
/*-----------------*/
#cta .wrappercontent{
  line-height: 1.5;
  max-width: 600px;
  background-color: var(--overlay-color);
  padding: 60px 40px;
}
#cta .title{margin-bottom: 20px;}
#cta .accroche{
    margin-bottom: 30px;
}
#cta .title h2{font-size: 28px;}

/*-----------------*/
/* FOOTER */
/*-----------------*/
#footerForm:after{
	background: linear-gradient(rgb(0 0 0 / 0%), hsl(0deg 0% 0% / 70%));
}
#footer{background-color: var(--black);}
#footerLinks a { color: var(--white);}

#footer #footerbloc {
	grid-template-areas:
		"footerLinks";
	grid-template-columns:  1fr;
	padding: 0;
}
#footerForm{
	background-image: url(../images/home-bg4.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 50px 220px;
    z-index: 3;
}
#footerForm #wrapperForm{
	max-width: 700px;
    margin: auto;
    background-color: var(--white);
    padding: 70px 50px;
}
#footerForm #wrapperForm .title{margin-bottom: 40px;}

#footer-coordonnees{
	bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
#footer-coordonnees .wrappercontent > div {
    line-height: 1.3;
    font-size: 15px;
    padding: 45px 20px 20px 20px;
}
#footer-coordonnees .wrappercontent > div font{display: contents;}
#footer-coordonnees .wrappercontent>div:before {top: 20px;}