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

/*-----------------*/
/* ELEMENTS */
/*-----------------*/
/*----------------- 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 */
/*-----------------*/
#header-social .sociblock .share-buttons{justify-content: flex-start;}
#info-toogle {display: flex;}
#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 {
  transform: scale(0.16) translate(30px, 30px);
	transition: all .8s cubic-bezier(.23,1,.32,1) .4s;
}


#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{
    opacity: 0;
    transition-delay: .1s;
}
#header-coordonnees {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100%;
    min-height: 100%;
    padding: 70px 30px 65px;
    background-color: var(--secondary-color);
    overflow: hidden;
    visibility: hidden;
    overflow: scroll;
    z-index: 9998;
    transition: all .6s cubic-bezier(.77,0,.175,1);
    text-align: left;
    box-shadow: 0 0 30px #00000057
}
#header-coordonnees .title h3{
    font-size: 23px;
}
body.is-toggle-open #header-coordonnees {
    right: 0;
    visibility: visible
}

#header-coordonnees .button{margin: 4px 0;}
#header-coordonnees .flex>div:not(.title) {margin: 15px auto;width: 100%;}
#header-coordonnees .flex>div + .button{
    margin-top: 20px;
}
#header-coordonnees :is(.list_infoagence,.itemlistwidgetagence){padding: 0;}

/*-----------------*/
/* SOCIAL */
/*-----------------*/
#header-social .label {
    margin-right: 20px;
    color: var(--white);
    font-family: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}
.sociblock .share-buttons a {
    --size: 35px;
    width: var(--size);
    height: var(--size);
    align-items: center;
    justify-content: center;
    margin: 0 3px
}

.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: 1px solid rgb(188 188 188);
}

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

.sociblock:not(#footer-social .sociblock) .share-buttons a:not(:hover) svg {fill: var(--white);}
#footer-social .sociblock .share-buttons a:hover svg {fill: var(--white)!important;}
.sociblock .share-buttons a svg {--size: 15px}

/*-----------------*/
/* FIXED BUTTON */
/*-----------------*/
#fixed-button{
    position: fixed;
    top: 50%;
    z-index: 10;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: end;
}
#fixed-button a{box-shadow: 0 2px 24px -2px rgba(0, 0, 0, .14);}

#fixed-button .button-item span{
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--font-title);
    letter-spacing: 1px;
    padding: 0 20px;
    height: 100%;
    margin: 0;
    bottom: 0;
    width: auto;
    position: absolute;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
    opacity: 0;
    z-index: 99;
    pointer-events: none;
    right: 100%;
    background: #2b2b2b;
    color: var(--white);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
#fixed-button .button-item a:before{
    display: block;
    transition: all 0.3s ease;
    --size: 60px;
    width: var(--size);
    height: var(--size);
    position: relative;
    background-color: var(--primary-color);
    margin-bottom: 1px;
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
}
#fixed-button .button-item a.contact-item:before{background-image: url('../images/icons/mail-white.svg');}
#fixed-button .button-item a.localisation-item:before{background-image: url('../images/icons/map-white.svg');}
#fixed-button .button-item a:hover:before{padding-right: 8px;}

#fixed-button .button-item a:hover span{
    visibility: visible;
    opacity: 1;
    transition-delay: .1s;
    transform: none;
}



/*-----------------*/
/* NAVPRIMARY */
/*-----------------*/
#navprimary .navigmenu .naviglink.lvl-0:not(.item-logo) span:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -14.5px;
    transform-origin: right center;
    transform: scale(0,1);
    transition: transform .25s cubic-bezier(.25,.8,.25,1);
    height: 3px;
    background: currentColor
}

#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 {
    transform-origin: left center;
    transform: scale(1,1)
}

/*-----------------*/
/* NAVSECONDARY */
/*-----------------*/
#navsecondary{
	position: relative;
	z-index: 2;
}
#navsecondary .navigmenu .naviglink.lvl-0:not(.item-home){
	font-family: var(--font-text);
	font-size: 12px;
	padding: 6px 10px;
	color: var(--text-color);
	font-weight: bold;
	letter-spacing: 0.2px;
}

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

#navsecondary .navigmenu .naviglink.lvl-0:not(.item-logo, .item-home) 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 .4s cubic-bezier(.48,.57,.33,.89) .1s;
}

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

#navsecondary .navigtoogle:not(:last-of-type):after {
    content: "";
    height: 10px;
    width: 1px;
    position: absolute;
    right: 0;
    background-color: var(--title-color);
    transform: translateY(-50%);
    opacity: 0.4;
    top: 50%;
}

/*-----------------*/
/* HEADERHOME */
/*-----------------*/

/*-----------------*/
/* GALLERY HOME */
/*-----------------*/

/*-----------------*/
/* MAP LIVRAISON */
/*-----------------*/
.livraison-carte{
    width: 100%;       /* Prend la largeur que vous voulez (ex: 500px, 80%, etc.) */
    max-width: 600px;  /* Optionnel : pour éviter que la carte devienne géante sur très grand écran */
    margin: 0 auto;   
}

.livraison-carte svg {
    width: 100%;
    height: auto;
    display: block;    /* Supprime les espaces vides indésirables sous le SVG */
    height: 100%;
}
/*-----------------*/
/* CONTENT */
/*-----------------*/
.home #content{padding-top: 0;}
.home #content .content-imgHome{flex-wrap: nowrap!important;}

.home #content .content-imgHome  .wp-block-column .wp-block-image,
.home #content .content-imgHome  .wp-block-column .wp-block-image a{height: 100%;}

.home #content .content-imgHome  .wp-block-column .wp-block-image img{
	height: 100%;
	object-fit:cover;
}

.home #content .content-imgHome{
    max-width: 410px;
    margin-left: auto;
    position: relative;
    top: -70px;
    margin-bottom: -40px;
    z-index: 3;
    gap: 0;
}
.home #content .content-imgHome .wp-block-column:first-of-type .wp-block-image{
    top: 35px;
    height: 125px;
    position: relative;
}
.home #content .content-imgHome .wp-block-column:last-of-type .wp-block-image{
    position: relative;
    border-radius: 0 0 200px 200px;
    overflow: hidden;
    height: 230px;
    left: -26%;
    width: 126%;
    z-index: -1;
}

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

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


/*-----------------*/
/* PRODUIT */
/*-----------------*/
.tabs .wpt-688_tab{order: 1;}

#tab-wpt-688 p{display: inline-block;}

#btformsinglewoo{
    margin-top: 50px;
}
/*-----------------*/
/* SECTIONS */
/*-----------------*/
#choixSections {
    counter-reset: sections;
    display: flex;
    justify-content: center;
    position: relative;
    padding-bottom: 70px;
    margin-top: 120px;
}

#choixSections:before {
    border: 1px solid var(--primary-color);
    border-bottom: none;
    border-right: none;
    top: 94px;
    height: calc(100% - 90px);
}

#choixSections:after {
    --size: 20px;
    width: var(--size);
    height: var(--size);
    background: var(--primary-color);
    clip-path: polygon(0 0,50% 50%,100% 0,50% 50%,0 35%,50% 100%,100% 35%,50% 50%,100% 0);
    top: calc(100% + 4px);
    left: -10px
}

#choixSections .linkSections p {
    text-transform: uppercase;
    font-size: 14px;
    font-family: var(--font-bold);
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
    color: var(--title-color);
    background: var(--background-color);
    padding: 0 30px;
}

#choixSections .linkSections:not(:last-of-type) {margin-right: 30px}

#choixSections .linkSections {
    position: relative;
    cursor: pointer;
    padding: 5px 20px;
    transition: 250ms all ease-in-out;
    text-align: center
}

#choixSections .linkSections.active p {color: var(--primary-color);}

#choixSections .linkSections img {
    --size: 30px;
    width: var(--size);
    height: var(--size);
    object-fit: contain;
    filter: brightness(0) invert(1)
}

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

#choixSections .linkSections.active .subimageSections,
#choixSections .linkSections:hover .subimageSections {
    background-color: var(--primary-color);
    filter: drop-shadow(0 5px 0 white)
}

#choixSections .linkSections .subimageSections:before{
    counter-increment: sections;
    content: counter(sections);
    color: var(--white);
    font-size: 2em;
    font-family: var(--font-title);
    transform: scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-weight: bold;
}
#choixSections .linkSections .subimageSections:after {
    content: " ";
    --size: 100%;
    width: var(--size);
    height: var(--size);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0);
    border: 1px solid var(--primary-color);
    opacity: 0;
    transition: .4s all;
    border-radius: 50%;
    border-bottom-left-radius: 3px
}

#choixSections .linkSections.active .subimageSections:after,
#choixSections .linkSections:hover .subimageSections:after {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1.15)
}

/*-----------------*/
/* REASSURANCES */
/*-----------------*/
.nohome #reassurances{background-image: url('../images/home-bg2.jpg'); }
.nohome #reassurances:before{background-color: var(--overlay-color);}

.nohome #reassurances .shape:after{
	content: '';
    position: absolute;
    top: initial;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    background-image: url(../images/shape.svg);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100%;
}


.home #reassurances{background: var(--secondary-color)}
.picto-container li{
	position: relative;
	flex: 1 1 50%;
	text-align: left;
	flex-direction: row;
	padding: 19px 40px;
}

.picto-container li:nth-child(odd){
	text-align: right;
	flex-direction: row-reverse;
}
.picto-container{ flex-wrap: wrap;}
.picto-container li p{
	margin: 0 0  0 40px;
	color: var(--white);
	/* text-transform: uppercase; */
	font-family: var(--font-bold);
	/* letter-spacing: 1px; */
	font-size: 16px;
}
.picto-container li:nth-child(odd):before{
	right: 20px;
	left: auto;
}

.picto-container li:nth-child(odd) p{
	margin: 0 40px  0 0;
}
.picto-container li:before{
	content: "";
	--size: 70px;
	width: var(--size);
	height: var(--size);
	border: solid 2px var(--primary-color);
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
}
/*-----------------*/
/* PARTENAIRES */
/*-----------------*/

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

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

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

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

/*-----------------*/
/* FOOTER */
/*-----------------*/
#footerCoordonnees #listwidgetagence{
	display: flex;
	align-items: center;
	gap: 40px;
}
#footerLogo{order: -1;display: flex;align-items: center;}
#certifications-iso img{
    width: 50px;
    margin-left: 30px;
}
#footerLinks{
    border-top: solid 1px #c5c5c5;
}
#footerForm{
	background-image: url(../images/home-bg2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 120px 50px;
    z-index: 3;
}
#footerForm #wrapperForm {
    max-width: 700px;
    margin: auto;
    background-color: var(--white);
    padding: 70px 50px;
}
#footerForm #wrapperForm .title {margin-bottom: 20px;}