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

/*-----------------*/
/* ELEMENTS */
/*-----------------*/
/*----------------- ANIMATION TITRE -----------------*/
.title :is(h1, h2, h3) {display: block;}
.char {
    display: inline-block;
    will-change: transform, opacity;
}

/*----------------- MORE LINKS -----------------*/
.more-links {
    color: var(--title-color);
    position: relative;
    padding: 0 20px;
    font-family: var(--font-title);
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 15px;
    z-index: 1;
    display: inline-block
}

.more-links_icon {
    margin-left: 20px;
    bottom: -2px;
    position: relative
}

.more-links_icon svg {
    --size: 16px;
    width: var(--size);
    height: var(--size);
    stroke: var(--title-color);
    stroke-width: 10px;
    transform: rotate(-35deg);
    transition: all .4s
}

.more-links:after {
    content: '';
    --size: 40px;
    position: absolute;
    right: 7px;
    top: -6px;
    width: var(--size);
    height: var(--size);
    border-radius: var(--size);
    background: var(--primary-color);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    z-index: -1;
}

.more-links:hover:after {
    width: 100%;
    right: 0
}

.more-links:hover .more-links_icon svg { transform: rotate(0)}

.more-links.white {color: var(--white)}
.more-links:hover{
    color: var(--title-color);
}

.more-links.bigLink .more-links_icon {
    margin-left: 60px;
    bottom: -3px
}

.more-links.bigLink .more-links_icon svg {--size: 36px;}
.more-links.bigLink.white .more-links_icon svg{stroke: var(--white);}
.more-links.bigLink:after {
    margin-left: 30px;
    border: solid 1px;
    --size: 100px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
}

.more-links.bigLink {
    text-transform: uppercase;
    padding: 30px 43px 30px 0;
    display: flex;
    align-items: center;
    width: max-content;
   
}
.more-links.bigLink{font-size: 0;}
.more-links.bigLink span{ font-size: 16px}
.more-links.bigLink:hover:after {
    width: var(--size);
    right: 7px;
    background: var(--white);
    transform: translateY(-50%) scale(1.2);
    z-index: -1
}

.more-links.bigLink:hover .more-links_icon svg {
    stroke: var(--title-color);
    z-index: 2;
    transform: scale(1.2) rotate(0)
}

/*-----------------*/
/* HEADER */
/*-----------------*/
#logo {place-self: center;}
#header-coordonnees {
    position: fixed;
    top: 0;
    right: -360px;
    width: 360px;
    height: 100%;
    min-height: 100%;
    padding: 70px 30px 65px;
    background-color: var(--tertiary-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
}
body.is-toggle-open #header-coordonnees {
    right: 0;
    visibility: visible
}
#info-toogle{display: flex;}
#header-coordonnees .flex>div {margin: 15px 0;}

#header-portfolio {
    display: grid;
    width: 100%;
    grid-gap: 5px;
    transition: .6s;
    grid-template-columns: repeat(3,1fr);
    max-width: 100%;
    grid-template-rows: repeat(2,100px);
    position: relative;
    padding-top: 30px;
    border-top: solid 1px rgb(248 248 248 / 10%);
    margin: 40px 0 0 !important;
}

#header-portfolio .portfolio-item {grid-column: span 1}

#header-coordonnees .title .separator{margin-bottom: 30px;}
#header-coordonnees .title h2{font-size: 34px;}

/*-----------------*/
/* NAVPRIMARY */
/*-----------------*/
.navigmenu .naviglink.lvl-0 span:after,
.navigmenu .naviglink span:before {
    content: '';
    display: block;
    position: absolute;
    left: -.1em;
    bottom: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid var(--primary-color);
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.48,.57,.33,.89) .1s;
    -o-transition: transform .4s cubic-bezier(.48,.57,.33,.89) .1s;
    transition: transform .4s cubic-bezier(.48,.57,.33,.89) .1s;
    transition: transform .4s cubic-bezier(.48,.57,.33,.89) .1s , -webkit-transform .4s cubic-bezier(.48,.57,.33,.89) .1s
}

.navigmenu .naviglink span:before {
    padding-bottom: 4px;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.48,.57,.33,.89);
    -o-transition: transform .4s cubic-bezier(.48,.57,.33,.89);
    transition: transform .4s cubic-bezier(.48,.57,.33,.89);
    transition: transform .4s cubic-bezier(.48,.57,.33,.89) , -webkit-transform .4s cubic-bezier(.48,.57,.33,.89)
}


#navprimary .navigmenu .active .naviglink.lvl-0 {color: var(--primary-color)}

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

#header-social{
    margin-top: 15px;
}

/*-----------------*/
/* HEADERHOME + BANNER */
/*-----------------*/
#headerHome,
#banner{padding-top: 75px;}

/*-----------------*/
/* HEADERHOME */
/*-----------------*/
#headerHome-content{pointer-events: none;}
#headerHome-content>*{pointer-events: all;}
#headerHome-social .sociblock .share-buttons a svg{--size: 20px;}
#headerHome-social .sociblock .share-buttons a:not(:hover) svg{fill: var(--white);}

/*-----------------*/
/* SOCIAL */
/*-----------------*/
.sociblock:not(#headerHome-social .sociblock) .share-buttons a {
    --size: 35px;
    width: var(--size);
    height: var(--size);
    align-items: center;
    justify-content: center;
    margin: 0 3px;
}

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

.sociblock:not(#headerHome-social .sociblock) .share-buttons a:hover:before {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.sociblock:not(#headerHome-social .sociblock) .share-buttons a svg {--size: 15px;}
.sociblock:not(#headerHome-social .sociblock) .share-buttons a:hover svg {fill: var(--white);}
#header-social .sociblock .share-buttons a svg{fill: var(--white);}
/*-----------------*/
/* GALLERY HOME */
/*-----------------*/

/*-----------------*/
/* PRODUITS HOME */
/*-----------------*/

/*-----------------*/
/* CONTENT */
/*-----------------*/
.home #content .wp-block-gallery .gallery-item {display: none;}
.home #content .wp-block-gallery .gallery-item:nth-child(-n+5) {display: flex;}

.home #content:before,
.home #content:after{
    height: 60%;
}
.home #content:before{
    background: var(--tertiary-color);
    opacity: 0.8;
    z-index: 0;
}
.home #content:after{background-image: url('../images/pattern.jpg');background-position: center;background-size: cover;}
.home .eb-wrapper-outer { background: none!important}
.home #content .wp-block-gallery {pointer-events: none;position: relative;z-index: 1;}
.home #content .wp-block-gallery a {pointer-events: all}

/*-----------------*/
/* PRESTATIONS */
/*-----------------*/
.home #prestations:before {
   background: var(--overlay-color);
}
.home #prestations{
	background-image: url('../images/home-bg1.jpg')
}
.nohome #prestations{padding: 0;}
.home #prestations{color: var(--white);}

.prestations-wrapper{
	padding-top: 35px;
    padding-bottom: 35px;
}
.bloc_prestations:not(:last-child){border-bottom: solid 1px #545454;}

.prestations-title{
	height: 30%;
	margin: auto 0;
	will-change: transform;
	flex: 0 0 auto;
	width: 50%;
	-webkit-transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
	padding-right: 16px;
}
.prestations-title h2 a{
	color: var(--title-color);
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.home .prestations-title h2 a{color: var(--white);}
.prestations-title h2{
	margin: 0;
	text-transform: uppercase;
	font-size: 30px;
}

.bloc_prestations .tc_excerpt{
	height: 53%;
	margin: auto 0 auto 0;
	width: 35%;
	flex: 0 0 auto;
	-webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.bloc_prestations .liresuite{
	height: 0%;
    margin: auto 0 auto auto;
	
}
.bloc_prestations:hover .prestations-title h2 a{color: var(--primary-color);}

/*-----------------*/
/* ACTU */
/*-----------------*/
.design-link {
    display: inline-flex;
    align-items: center;
    padding-left: 52px;
    text-transform: uppercase;
    font-family: var(--font-bold);
    font-size: 12px;
    letter-spacing: 1px;
    position: relative;
    color: var(--title-color)
}

.design-link:before,
.design-link:after {
    content: '';
    position: absolute;
    width: 46px;
    background: var(--text-color);
    height: 1px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s linear 0s
}

.design-link.white {color: var(--white)}
.design-link.white:before,
.design-link.white:after {background: var(--white)}

.design-link span:before {
    content: "";
    --size: 6px;
    width: var(--size);
    height: var(--size);
    display: inline-block;
    margin: 0;
    margin-right: 6px;
    order: -1;
    background: var(--primary-color);
    z-index: 1;
    position: relative;
    vertical-align: middle;
    top: -1px;
    border-radius: 10px;
}

.design-link:after {
    width: 0;
    left: unset;
    right: 0
}

.design-link:hover {
    padding-left: 0;
    padding-right: 52px;
    color: var(--primary-color);
}
.design-link:hover:before {width: 0}
.design-link:hover:after {width: 46px}


#news {background-image: url(../images/home-bg1.jpg);}
#news::after { background: var(--overlay-color);}
#news .title_link_slider:not(:hover){color: var(--white);}
#news-title {
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    padding-bottom: 10px;
    margin-bottom: 30px
}

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

.wrapper_slider {
    padding: 20px 0
}

#news .thumbnail_slider {
    height: auto;
    min-height: 250px
}

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

.thumbnail_slider a img {
    position: absolute;
    left: 0;
    top: 0
}

#news .content_slider {padding: 50px 0 50px 100px}

.title_slider {
    font-size: 22px;
    text-transform: initial;
    font-family: var(--font-bold);
}

.newsdate {
    position: absolute;
    top: 40px;
    background: var(--secondary-color);
    left: -90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100% - 80px);
    justify-content: center;
    padding: 20px 30px;
    font-family: var(--font-title);
    color: var(--white);
}

.text_slider,.text_slider a {
    font-size: 16px;
    line-height: 1.6
}

.newsdate .month {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 2px
}

.newsdate .day {
    font-size: 36px;
    line-height: 1;
}

#news .next_slider {
    display: flex;
    align-items: center;
    width: 200px;
    justify-content: flex-end;
    margin: 0
}
/*-----------------*/
/* VIDEO */
/*-----------------*/
#video .bloc_videos{
	padding: 220px 15px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	z-index: 8;
	width: 100%;
}
#video .widget_videos{
    perspective: none!important;
}
#video .title h2{text-transform: uppercase;}
#video .element_content{
	font-family: var(--font-bold);
    margin-bottom: 90px;
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.video-play-button {
  z-index: 10;
  justify-content: center;
  box-sizing: content-box;
  display: flex;
  width: 24px;
  height: 24px;
  align-items: center;
  border-radius: 50%;
  padding: 0 10px 0px 13px;
  position: relative;
}

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

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

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

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

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

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



.video-overlay {
  position: static;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.9);
  opacity: 0;
  transition: all ease 500ms;
}

.video-overlay.open {
  position: fixed;
  z-index: 9999999;
  opacity: 1;
}

.video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 200ms;
}

.video-overlay-close:hover {
  color: #fa183d;
}

.video-overlay iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  /* width: 90%; */
  /* height: auto; */
  box-shadow: 0 0 15px rgba(0,0,0,0.75);
  max-width: 90%;
}



/*-----------------*/
/* SECTIONS */
/*-----------------*/
.section_thumb .blocthumb {position: relative}

.sectionsbloc .specialthumb {overflow: hidden}
.sectionsbloc .specialthumb img {height: 120%}

.sectionsbloc.even .section_thumb {order: 2;}
.sectionsbloc.even .specialthumb {height: 100%;}


.sectionsbloc.odd .section_thumb {order: 0;}


.sectionsbloc.odd .section_txt .title h2,
.sectionsbloc.odd .section_txt {color: var(--white)}

.sectionsbloc.odd :is(a:not([class*="button"]), a:not([class*="button"]) strong){background-image: linear-gradient(to bottom, transparent 20%, var(--white) 21%);}
.sectionsbloc.odd :is(a:not([class*="button"]):hover, a:not([class*="button"]):hover strong){color: var(--white)}
.sectionsbloc.odd .section_txt:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--tertiary-color);
    z-index: -1
}

/*-----------------*/
/* REASSURANCES */
/*-----------------*/
#reassurances {
    z-index: 3;
    overflow: hidden;
    height: 300px;
    display: grid;
    align-items: center;
    position: relative;
    margin-bottom: -118px;
}
.nohome #reassurances{
    margin-bottom: -80px;
    margin-top: -118px;
}

.picto-container li {
    flex-direction: row;
    margin: 0;
    padding: 0 50px;
    min-width: max-content;
    color: var(--white);
}

.picto-container li svg, 
.picto-container li img {--size: 25px;}

.picto-container li p {
    color: var(--white);
    font-family: var(--font-bold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.picto-container li p {margin: 0 0 0 14px;}

#reassurances-container {
    background: var(--primary-color);
    transform: rotate(3deg);
    padding: 20px 100px;
    box-sizing: border-box;
    width: calc(100% + 100px);
    max-width: calc(100% + 100px);
    left: -50px;
    position: relative;
}

.picto-container {
    animation: marquee 80s linear infinite;
    position: relative;
    flex-wrap: nowrap;
    flex-direction: row;
}

#reassurances-containerBis {
    content: "";
    background: var(--tertiary-color);
    transform: rotate(-3deg);
    z-index: -1;
    padding: 0 70Px;
    width: calc(100% + 100Px);
    max-width: calc(100% + 100Px);
    left: -50Px;
    position: absolute;
    height: 70px;
    display: flex;
    align-items: center;
}

#reassurances-containerBis span {
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

#reassurances-containerBis span:last-child {margin-left: auto;}

/*-----------------*/
/* PARTENAIRES */
/*-----------------*/
#partenaires {
    padding: 120px 40px;
    z-index: 30;
}

#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: 90px;
    max-width: 90%;
}

/*-----------------*/
/* NEWSLETTER */
/*-----------------*/

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

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

/*-----------------*/
/* CONTACTFORM */
/*-----------------*/

/*-----------------*/
/* FOOTER */
/*-----------------*/
#wrapperForm .title{margin-bottom: 30px;}
#footer{background: var(--tertiary-color);}
body.template-contact-php #footer #footerbloc:before{content: none;}
body.template-contact-php #footer #footerbloc{border-bottom: solid 1px}
body.home #footer {margin-top: 1px!important;}
body:not(.template-contact-php) #footer #footerbloc {
	display: block;
	background-image: url(../images/home-bg1.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 80px 15px;
}
#footer #footerbloc{display: block;}
#footer #footerbloc>.wrappercontent {
    align-items: center;
    justify-items: center;
    display: grid;
    grid-row-gap: 15px;
    grid-column-gap: 20px;
    transition: .6s;
    grid-template-areas:
        "infoouvertureFooter   infoadresseFooter          infotelportFooter";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(1,minmax(min-content,auto));
}
#footerLinks a {color: var(--white)}

.wrapperFooter {
    background: var(--white);
    box-shadow: 0px 0px 30px #1a1a2612;
    padding: 10px
}

.imgFooter {
    background: url(../images/home-bg4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 80%;
}

#footer #footerbloc>.wrappercontent font{display: contents;}