/*-----------------*/
/* LOADER */
/*-----------------*/
#loader-wrapper svg
{
    --size: 50vw;
    width: var(--size);
    height: var(--size);
    --maxsize: 300px;
    max-width: var(--maxsize);
    max-height: var(--maxsize);
    
}

@keyframes animate-svg-stroke-1{0%{stroke-dashoffset:397.6649475097656px;stroke-dasharray:397.6649475097656px}100%{stroke-dashoffset:0;stroke-dasharray:397.6649475097656px}}@keyframes animate-svg-fill-1{0%{fill:transparent}100%{fill:rgb(61,32,12)}}.svg-elem-1{animation:animate-svg-stroke-1 1s cubic-bezier(0.47,0,0.745,0.715) 0s both,animate-svg-fill-1 0.7s cubic-bezier(0.47,0,0.745,0.715) 0.8s both}@keyframes animate-svg-stroke-2{0%{stroke-dashoffset:2358.627197265625px;stroke-dasharray:2358.627197265625px}100%{stroke-dashoffset:0;stroke-dasharray:2358.627197265625px}}@keyframes animate-svg-fill-2{0%{fill:transparent}100%{fill:rgb(61,32,12)}}.svg-elem-2{animation:animate-svg-stroke-2 1s cubic-bezier(0.47,0,0.745,0.715) 0.12s both,animate-svg-fill-2 0.7s cubic-bezier(0.47,0,0.745,0.715) 0.9s both}@keyframes animate-svg-stroke-3{0%{stroke-dashoffset:4.3134446144104px;stroke-dasharray:4.3134446144104px}100%{stroke-dashoffset:0;stroke-dasharray:4.3134446144104px}}@keyframes animate-svg-fill-3{0%{fill:transparent}100%{fill:rgb(61,32,12)}}.svg-elem-3{animation:animate-svg-stroke-3 1s cubic-bezier(0.47,0,0.745,0.715) 0.24s both,animate-svg-fill-3 0.7s cubic-bezier(0.47,0,0.745,0.715) 1s both}@keyframes animate-svg-stroke-4{0%{stroke-dashoffset:144.79627990722656px;stroke-dasharray:144.79627990722656px}100%{stroke-dashoffset:0;stroke-dasharray:144.79627990722656px}}@keyframes animate-svg-fill-4{0%{fill:transparent}100%{fill:rgb(114,186,45)}}.svg-elem-4{animation:animate-svg-stroke-4 1s cubic-bezier(0.47,0,0.745,0.715) 0.36s both,animate-svg-fill-4 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.1s both}@keyframes animate-svg-stroke-5{0%{stroke-dashoffset:232.1394500732422px;stroke-dasharray:232.1394500732422px}100%{stroke-dashoffset:0;stroke-dasharray:232.1394500732422px}}@keyframes animate-svg-fill-5{0%{fill:transparent}100%{fill:rgb(114,186,45)}}.svg-elem-5{animation:animate-svg-stroke-5 1s cubic-bezier(0.47,0,0.745,0.715) 0.48s both,animate-svg-fill-5 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.2000000000000002s both}@keyframes animate-svg-stroke-6{0%{stroke-dashoffset:115.21076965332031px;stroke-dasharray:115.21076965332031px}100%{stroke-dashoffset:0;stroke-dasharray:115.21076965332031px}}@keyframes animate-svg-fill-6{0%{fill:transparent}100%{fill:rgb(114,186,45)}}.svg-elem-6{animation:animate-svg-stroke-6 1s cubic-bezier(0.47,0,0.745,0.715) 0.6s both,animate-svg-fill-6 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.3s both}@keyframes animate-svg-stroke-7{0%{stroke-dashoffset:142.1903839111328px;stroke-dasharray:142.1903839111328px}100%{stroke-dashoffset:0;stroke-dasharray:142.1903839111328px}}@keyframes animate-svg-fill-7{0%{fill:transparent}100%{fill:rgb(114,186,45)}}.svg-elem-7{animation:animate-svg-stroke-7 1s cubic-bezier(0.47,0,0.745,0.715) 0.72s both,animate-svg-fill-7 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.4000000000000001s both}
/*-----------------*/
/* ELEMENTS */
/*-----------------*/
.linkTurn {
    --size: 10rem;
    width: var(--size);
    height: var(--size);
    display: inline-block;
    font-size: 16px;
    font-family: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: .1175em;
    word-spacing: 0.15em;
    text-decoration: none;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    z-index: 1;
    background: var(--secondary-color);
    border-radius: 50%;
    font-family: var(--font-title);
 }
 
 .link__svg {
    width: 100%;
    height: auto;
    transform-box: fill-box;
    fill: var(--white);
    stroke: var(--white);
    border-radius: 50%;
    stroke-width: .05em;
    box-sizing: border-box;
    stroke-linecap: round;
    stroke-linejoin: round;
    padding: 10px;
    transition: all .3s cubic-bezier(.33,1,.68,1)
 }
 
 .link__arrow {
    transform-origin: 50% 50%;
    transition: transform .15s cubic-bezier(.32,0,.67,0)
 }
 
 .linkTurn:hover .link__arrow {
    transform: scale(1.3);
    transition: transform .3s cubic-bezier(.33,1,.68,1)
 }
 
 .link__arrow {
    stroke-width: .075em
 }
 
 #wrappersite:not(.safari) .link__text {
    -webkit-animation: rotateReverse normal infinite 20s linear;
    animation: rotateReverse normal infinite 20s linear;
    transform-origin: 50% 50%
 }
 
 .link--alt {
    font-size: 1.15rem;
    letter-spacing: 0;
    word-spacing: 0
 }
 
 @keyframes rotateReverse {
    0% {
        transform: rotate(0deg);
    }
 
    100% {
        transform: rotate(-360deg);
    }
 }


/*----------------- SECTION SEPARATOR -----------------*/
.section-separator{
	position: relative;
	-webkit-perspective: 1000px;
	perspective: 1000px;
    z-index: 5;
}
.section-separator svg{
	position: absolute;
    z-index: 50;
    top: -78px;
    left: 0;
    width: 100%;
    height: 80px;

}

.section-separator.reflect svg {transform: rotateY(180deg);}

.section-separator.bottom svg {
	transform: rotateX(180deg) rotateY(180deg);
	top: -1px;
}

/*-----------------*/
/* HEADER */
/*-----------------*/
#header {
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
}

#logoCoordonnees {
    margin: 0 40px;
    text-align: center;
}

#header.fixed-header .navigmenu .naviglink.lvl-0
{
    padding: 20px 14px;
}

#header-coordonnees
{
    padding: 15px;
    gap: 10px;
    
}


#logoCoordonnees img
{
    height: 100%;
    width: 100%;
}

#infotelportButton,#infotelfixeButton,.buttonHead a {
    background-color: var(--primary-color);
    padding: 6px 20px 6px 40px;
    border-radius: 50px!important;
    transition: 250ms all ease-in-out;
    display: inline-block;
    margin-left: auto;
    margin-bottom: -15px
}

.buttonHead a {
    line-height: 1.5;
    overflow: hidden;
    font-family: var(--font-text);
    font-size: 14px;
    text-transform: initial
}

.buttonHead a::before {
    --size: 15px;
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    width: var(--size);
    height: var(--size);
    background-image: url(../images/icons/mail-white.svg)
}

#infotelportButton span,#infotelfixeButton span {
    display: none
}

#infotelportButton:hover,#infotelfixeButton:hover {
    background-color: var(--secondary-color)
}

#infotelportButton a,#infotelfixeButton a {
    color: var(--white)
}

#infotelportButton:before,#infotelfixeButton:before {
    background-image: url(../images/icons/mobile-white.svg);
    left: 15px
}

#infotelfixeButton:before {
    background-image: url(../images/icons/phone-white.svg)
}

.infohoraires_other{
    color: var(--primary-color);
    font-size: 1.2em;
}

/*-----------------*/
/* NAVPRIMARY */
/*-----------------*/

.navigtoogle:not(.social,.logo) span:before, .urgence span::before {
    position: absolute;
    top: -2px;
    left: -7px;
    box-sizing: content-box;
    padding: 0 5px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    content: "";
    opacity: 0;
    transition: opacity .2s , transform .2s;
    transform: scale(.8333);
    backface-visibility: hidden;
    border-radius: 5px
}

.navigtoogle:not(.social,.logoParent).active .naviglink.lvl-0 span:before, .navigtoogle:not(.social,.logoParent) .naviglink.lvl-0:hover span:before, #navprimary .urgence span::before {
    opacity: 1;
    transform: scale(1.2)
}

.navigtoogle:not(.social,.logoParent).active .naviglink.lvl-0, .navigtoogle:not(.social,.logoParent) .naviglink.lvl-0:hover, #navprimary .urgence {
    transform: scale(.8333);
    color: var(--primary-color);
}

.navigmenu .naviglink.lvl-1 {
    font-family: var(--font-text)
}

.navigmenu .naviglink.lvl-2
{
    color: var(--title-color);
}
.menuarticle .liresuite a::before
{
    display: none!important;
}


/*-----------------*/
/* HEADERHOME */
/*-----------------*/
:is(#headerHome,#banner) .linkTurn{
	border-radius: 50%;
	position: absolute;
	bottom: 90px;
	z-index: 6;
	top: auto;
    left: initial;
	right: 30px;
	--size: 10rem;
	font-family: var(--font-bold);
}
#headerHome
{
    padding-top: 50px;
}
/*-----------------*/
/* GALLERY HOME */
/*-----------------*/
/*-----------------*/
/* PRODUITS HOME */
/*-----------------*/
/*-----------------*/
/* CONTENT */
/*-----------------*/
#content .eb-image-comparison-wrapper div[data-testid="container"]{height: 600px!important;}
.intro-link{position: relative;}

.grid-img .wp-block-image > a,
.grid-img .wp-block-image img{height: 100%;}

.grid-img .wp-block-image img{
	object-fit: cover;
	width: 100%;
}
/*-----------------*/
/* PRESTATIONS */
/*-----------------*/
body.page_pompes-a-chaleur-climatisation #banner #bannerImg img{
    object-position: top;
}
#prestations .bloc_prestations{overflow: hidden;}
#prestations .widget_parentpage{
	grid-gap: 0;
	counter-reset: prestation;
}

#prestations .prestations-content{
	z-index: 4;
	left: 0;
	right: 0;
	position: absolute;
	bottom: 0;
	padding: 30px 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	/*pointer-events: none;*/
}
#prestations .prestations-title{
	padding-top: 30px;
	margin-bottom: 10px;
	transform: translateY(70px);
	transition: all ease .5s;
}
#prestations .prestations-title:before {
    content: "0" counter(prestation);
    counter-increment: prestation;
    font-size: 16px;
    line-height: 1;
    font-family: var(--font-text);
    color: var(--white);
    opacity: .4;
    letter-spacing: 1px;
    font-weight: bold;
    height: auto;
    width: auto;
}

#prestations .prestations-title:after {
    background: var(--white);
    height: 60px;
    width: 2px;
    top: -80px;
    left: 8px;
    opacity: .4
}

#prestations .prestations-content h2, 
#prestations .prestations-content h3 {margin: 0;}

#prestations .prestations-content .title_content,
#prestations .prestations-content .content_link, 
#prestations .prestations-content .tc_excerpt{color: var(--white);}

#prestations .prestations-txt{
	opacity: 0;
	transition: all ease .5s;
	transform: translateY(100%);
}
#prestations .prestations-img:before{
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(to top, rgb(0 0 0 / 80%), #00000000);
}

#prestations .prestations-img{background: var(--title-color);}
#prestations .prestations-img img {
    transition: all 600ms ease;
    width: calc(100% + 50px);
    transition: opacity .35s , transform .35s;
    transform: translate3d(-40px,0,0);
}

#prestations .bloc_prestations:hover .prestations-title {transform: translateY(0);}
#prestations .bloc_prestations:hover .prestations-txt {
    opacity: 1;
    transform: translateY(0);
}

#prestations .bloc_prestations:hover .prestations-img img {
    transform: translate3d(0,0,0);
    opacity: .2;
}
/*-----------------*/
/* 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(--secondary-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(--secondary-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
}

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

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

/*-----------------*/
/* SECTIONS */
/*-----------------*/
#choixSections {
    counter-reset: sections;
    display: flex;
    justify-content: center;
    position: relative
}

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

#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% + 94px);
    left: -10px
}

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

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

#choixSections .linkSections {
    position: relative;
    cursor: pointer;
    padding: 5px 10px;
    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: calc(50% + 3px);
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    line-height: 1;
}
#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)
}
.buttons-wrap{gap: 10px;}
.sectionsbloc .wp-block-columns
{
    gap: 10px;
}
/*-----------------*/
/* REASSURANCES */
/*-----------------*/
#reassurances{
    background: var(--dark-color);
}
#reassurances .picto-bloc .picto-img .icon-box{
    display: flex;
    align-items: center;
}
.picto-container{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	position: relative;
	margin: 140px 0 70px;
	display: grid;
}

.picto-container .picto-content{
	margin: 0 ;
	text-align: left;
}
.picto-container li p{
	margin:  0;
	font-size: 16px;
}
.picto-container li p strong{
    display: block;
    font-family: var(--font-title);
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 6px;
    font-weight: 100;
    color: var(--white);
}
.picto-container  .picto-img{
	position:absolute;
	background: var(--primary-color);
	top: 0;
	left: 0;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*-----------------*/
/* FOURNISSEURS */
/*-----------------*/
#fournisseurs {
    padding: 140px 60px 0;
    margin-bottom: -160px;
    z-index: 11;
}

#fournisseurs .title h2 {
    margin-bottom: 30px
}

#fournisseurs .fournisseurs-intro p:not(:last-of-type) {
    margin-bottom: 16px;
}

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

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

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

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

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

#fournisseurs .widget_fournisseurs li .button:before, #fournisseurs .widget_fournisseurs li .button:after {
    content: none
}

#fournisseurs .widget_fournisseurs li .button:hover {
    background: var(--tertiary-color)!important;
}

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

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

/*-----------------*/
/* RECRUTEMENT */
/*-----------------*/
.list_buttonsrecrutement
{
    grid-template-columns: 1fr!important;
}
.list_buttonsrecrutement>a:first-child,.title_list_labels
{
    display: none;
}
/*-----------------*/
/* PARTENAIRES */
/*-----------------*/
.partenaires-intro
{
    background-image: url(../images/home-bg5.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 250px;
}
/*-----------------*/
/* FOOTER */
/*-----------------*/
#footer{
	background: var(--dark-color);
	display: flex;
	flex-direction: column;
}
#footer .section-separator{
    order: -1;
}
#footerbloc{order: -1;}

body:not(.template-contact-php) #footer #footerbloc {
	display: block;
	background-image: url(../images/home-bg3.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:
        "infoadresseFooter infotelportFooter infoouvertureFooter";
    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-bg2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}
#wrapperForm .title{margin-bottom: 30px;}