/*-----------------*/
/* LOADER */
/*-----------------*/
.loader {
    --duration: 3s;
    --primary: var(--primary-color);
    --primary-light: var(--secondary-color);
    --primary-rgba: var(--tertiary-color);
    width: 200px;
    height: 320px;
    position: relative;
    transform-style: preserve-3d;
  }
  
  @media (max-width: 480px) {
    .loader {
      zoom: 0.44;
    }
  }
  
  .loader:before, .loader:after {
    --r: 20.5deg;
    content: "";
    width: 320px;
    height: 140px;
    position: absolute;
    right: 32%;
    bottom: -11px;
  /* change the back groung color on switching from light to dark mood */
    background: var(--title-color);
    transform: translateZ(200px) rotate(var(--r));
    -webkit-animation: mask var(--duration) linear forwards infinite;
    animation: mask var(--duration) linear forwards infinite;
  }
  
  .loader:after {
    --r: -20.5deg;
    right: auto;
    left: 32%;
  }
  
  .loader .ground {
    position: absolute;
    left: -50px;
    bottom: -120px;
    transform-style: preserve-3d;
    transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(1);
  }
  
  .loader .ground div {
    transform: rotateX(90deg) rotateY(0deg) translate(-48px, -120px) translateZ(100px) scale(0);
    width: 200px;
    height: 200px;
    background: var(--primary);
    background: linear-gradient(45deg, var(--primary) 0%, var(--primary) 50%, var(--primary-light) 50%, var(--primary-light) 100%);
    transform-style: preserve-3d;
    -webkit-animation: ground var(--duration) linear forwards infinite;
    animation: ground var(--duration) linear forwards infinite;
  }
  
  .loader .ground div:before, .loader .ground div:after {
    --rx: 90deg;
    --ry: 0deg;
    --x: 44px;
    --y: 162px;
    --z: -50px;
    content: "";
    width: 156px;
    height: 300px;
    opacity: 0;
    background: linear-gradient(var(--primary), var(--primary-rgba));
    position: absolute;
    transform: rotateX(var(--rx)) rotateY(var(--ry)) translate(var(--x), var(--y)) translateZ(var(--z));
    -webkit-animation: ground-shine var(--duration) linear forwards infinite;
    animation: ground-shine var(--duration) linear forwards infinite;
  }
  
  .loader .ground div:after {
    --rx: 90deg;
    --ry: 90deg;
    --x: 0;
    --y: 177px;
    --z: 150px;
  }
  
  .loader .box {
    --x: 0;
    --y: 0;
    position: absolute;
    -webkit-animation: var(--duration) linear forwards infinite;
    animation: var(--duration) linear forwards infinite;
    transform: translate(var(--x), var(--y));
  }
  
  .loader .box div {
    background-color: var(--primary);
    width: 48px;
    height: 48px;
    position: relative;
    transform-style: preserve-3d;
    -webkit-animation: var(--duration) ease forwards infinite;
    animation: var(--duration) ease forwards infinite;
    transform: rotateY(-47deg) rotateX(-15deg) rotateZ(15deg) scale(0);
  }
  
  .loader .box div:before, .loader .box div:after {
    --rx: 90deg;
    --ry: 0deg;
    --z: 24px;
    --y: -24px;
    --x: 0;
    content: "";
    position: absolute;
    background-color: inherit;
    width: inherit;
    height: inherit;
    transform: rotateX(var(--rx)) rotateY(var(--ry)) translate(var(--x), var(--y)) translateZ(var(--z));
    filter: brightness(var(--b, 1.2));
  }
  
  .loader .box div:after {
    --rx: 0deg;
    --ry: 90deg;
    --x: 24px;
    --y: 0;
    --b: 1.4;
  }
  
  .loader .box.box0 {
    --x: -220px;
    --y: -120px;
    left: 58px;
    top: 108px;
  }
  
  .loader .box.box1 {
    --x: -260px;
    --y: 120px;
    left: 25px;
    top: 120px;
  }
  
  .loader .box.box2 {
    --x: 120px;
    --y: -190px;
    left: 58px;
    top: 64px;
  }
  
  .loader .box.box3 {
    --x: 280px;
    --y: -40px;
    left: 91px;
    top: 120px;
  }
  
  .loader .box.box4 {
    --x: 60px;
    --y: 200px;
    left: 58px;
    top: 132px;
  }
  
  .loader .box.box5 {
    --x: -220px;
    --y: -120px;
    left: 25px;
    top: 76px;
  }
  
  .loader .box.box6 {
    --x: -260px;
    --y: 120px;
    left: 91px;
    top: 76px;
  }
  
  .loader .box.box7 {
    --x: -240px;
    --y: 200px;
    left: 58px;
    top: 87px;
  }
  
  .loader .box0 {
    -webkit-animation-name: box-move0;
    animation-name: box-move0;
  }
  
  .loader .box0 div {
    -webkit-animation-name: box-scale0;
    animation-name: box-scale0;
  }
  
  .loader .box1 {
    -webkit-animation-name: box-move1;
    animation-name: box-move1;
  }
  
  .loader .box1 div {
    -webkit-animation-name: box-scale1;
    animation-name: box-scale1;
  }
  
  .loader .box2 {
    -webkit-animation-name: box-move2;
    animation-name: box-move2;
  }
  
  .loader .box2 div {
    -webkit-animation-name: box-scale2;
    animation-name: box-scale2;
  }
  
  .loader .box3 {
    -webkit-animation-name: box-move3;
    animation-name: box-move3;
  }
  
  .loader .box3 div {
    -webkit-animation-name: box-scale3;
    animation-name: box-scale3;
  }
  
  .loader .box4 {
    -webkit-animation-name: box-move4;
    animation-name: box-move4;
  }
  
  .loader .box4 div {
    -webkit-animation-name: box-scale4;
    animation-name: box-scale4;
  }
  
  .loader .box5 {
    -webkit-animation-name: box-move5;
    animation-name: box-move5;
  }
  
  .loader .box5 div {
    -webkit-animation-name: box-scale5;
    animation-name: box-scale5;
  }
  
  .loader .box6 {
    -webkit-animation-name: box-move6;
    animation-name: box-move6;
  }
  
  .loader .box6 div {
    -webkit-animation-name: box-scale6;
    animation-name: box-scale6;
  }
  
  .loader .box7 {
    -webkit-animation-name: box-move7;
    animation-name: box-move7;
  }
  
  .loader .box7 div {
    -webkit-animation-name: box-scale7;
    animation-name: box-scale7;
  }
  

  
/*-----------------*/
/* ELEMENTS */
/*-----------------*/
a
{
    display: inline-block;
}
.thumbnail_slider a
{
    height: 100%;
    width: 100%;
}
.wrappercontent.full
{
    max-width: 100%;
}
.fullAbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
#wrappersite
{
    overflow: hidden;
}

.title:not(.no-after):after, hr.wp-block-separator {
  background: url(../images/emphase.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

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

.fixed-header #header-coordonnees *:not(a:hover), body.no-overflow #header-coordonnees *:not(a:hover)
{
    color: var(--white);
}
.fixed-header #header-coordonnees>*::before,body.no-overflow #header-coordonnees>*::before
{
    filter: invert(1);
}
#header-coordonnees
{
  gap: 10px;
}
/*-----------------*/
/* NAVPRIMARY */
/*-----------------*/
/* .navigmenu .navigtoogle.social .naviglink .label {
    margin-right: 20px;
    color: var(--white);
    font-family: var(--font-bold);
    letter-spacing: 1px;
}

.navigmenu .navigtoogle.social {margin-top: 50px;}

.navigmenu .navigtoogle.social .naviglink {
    padding: 0!important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.ckmenu-nav.open {
    left: 0;
    background: var(--black);
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}
.ckmenu-items {
    flex-direction: column;
    padding: 60px 30px 30px 30px;
    justify-content: center;
}
.navigmenu {
    align-items: stretch!important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: auto;
}
.ckmenu-img {
    background-image: url(../images/home-bg1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
}

.navigmenu .naviglink 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)
}
.navigmenu .navdown,.navigmenu .navdown a span
{
    text-align: center;
    color: var(--white);
    font-family: var(--font-text);
}

.navigmenu .naviglink:hover span:after {
    transform: scaleX(1)
}
*/

.fixed-header #logoheader
{
    max-height: 50px;
} 

/*-----------------*/
/* HEADERHOME */
/*-----------------*/
#headerHome-accroche
{
    text-transform: uppercase;
}
#headerHome-content
{
    color: var(--black);
}
#headerHome::before, #prestations::before {
    background-image: url(../images/pattern-dots.png);
    background-size: cover;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    top: 40%;
    left: -7%;
    --size: 500px;
    width: var(--size);
    height: var(--size);
    z-index: -1;
    opacity: 0.9;
    animation: 4s floating infinite ease-in-out;
}
#headerHome-content blockquote
{
  padding: 10px 70px;
  font-size: 1.2em;
  margin-top: 0!important;
}
/*-----------------*/
/* GALLERY HOME */
/*-----------------*/
#galleryHome .wp-block-gallery.has-nested-images
{
  gap: 0;
}
#galleryHome .gallery-item {
    margin-bottom: 0;
}

.gallery-icon {
    line-height: 0;
}

.gallery-icon>*:not(a) {
    line-height: 1.2;
}

.gallery-icon
{
    height: 100%;
}

.nohome .gallery .gallery-item a img
{
    max-height: 450Px;
}

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


/*-----------------*/
/* CONTENT */
/*-----------------*/
.home #content
{
  padding: 0px 0;
  padding-top: 100px;
}
.home #content::before
{
  background: var(--tertiary-color);
}
.home #content .textContent
{
  color: var(--white);
}
.imgWrapContent
{
  top: 0;
  left: 0;
  width: 100%;
  gap: 20px;
}

.imgWrapContent .titleContent
{
  z-index: 2;
  max-width: 470px;
  padding: 30px;
}
.nameContent
{
  font-size: 2em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.imageDiapoWrap
{
  height: 550px;
}
.imgContent
{
  height: 300Px;
}

.imgWrapContent .article_content,.imgWrapContent .specialthumb,.imgWrapContent .secondaryImgContent,.imgWrapContent .tertiarythumb, .imgWrapContent .blocthumb, .imgWrapContent .quaternarythumb
{
  height: 100%;
  width: 100%;
}

.titleContent .title
{
  margin-top: 0;
  text-transform: uppercase;
}


.textContent
{
  margin-top: 60px;
  z-index: 1;
  position: relative;
}

/*-----------------*/
/* PRESTATIONS */
/*-----------------*/
.nohome.template-parent-page-php #content
{
  padding-bottom: 0;
}
.prestations-content .tc_excerpt
{
  padding: 15px;
}
.prestations-content .liresuite a {
  background: #fff0;
  border: 1px solid var(--primary-color);
  border-radius: 50%!important;
  color: var(--primary-color);
  letter-spacing: -.1em;
  --size: 45px;
  width: var(--size);
  height: var(--size);
  padding: 8px;
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.prestations-content .liresuite a:hover {
  background: var(--primary-color);
  color: var(--white);
}
.wrapPresta::before {
  background: var(--primary-color);
  height: 50px;
  width: 4px;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
}
.wrapPresta {
  padding: 10px 20px;
  box-sizing: border-box;
}

.prestations-wrapper .prestations-img::before {
  background: var(--tertiary-color);
  z-index: -7;
  transform: rotate(0deg);
  transition: all .4s;
}
.prestations-wrapper:hover .prestations-img::before {
  transform: rotate(-5deg);
}
/*-----------------*/
/* ACTU */
/*-----------------*/
.newsdate
{
  margin-left: 50Px;
  display: inline-block;
  margin-top: 20px;
  z-index: 2;
}
.newsdate:before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -20Px;
  height: 200px;
  width: calc(100% + 25px);
  border: 7px solid var(--primary-color);
  content: "";
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
  pointer-events: none;
  z-index: 1;
}
/*-----------------*/
/* SECTIONS */
/*-----------------*/
.sectionsbloc.odd .specialsection_thumb
{
  display: none;
}
/*-----------------*/
/* REASSURANCES */
/*-----------------*/
#reassurances::before
{
    background: url(../images/home-bg1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#reassurances::after
{
    background: var(--tertiary-color);
    opacity: 0.9;
}
.picto-container li p
{
  margin-top: 20px;
    line-height: 1.3em;
    font-family: var(--font-title);
    text-transform: uppercase;
}
/*-----------------*/
/* PARTENAIRES */
/*-----------------*/
#partenaires {
  padding: 70px 30px;
  position: relative;
  box-shadow: 0 0 30px rgb(0 0 0 / 20%);
}
#partenaires:before {
  background-image: url(../images/shapeTriangle.png);
  background-position: center;
  z-index: -2;
  filter: invert(1);
  opacity: 0.07;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*-----------------*/
/* NTHWORD */
/*-----------------*/
.nthWord
{
  font-size:2em;
}
.nthWord:nth-child(1){
  color: #fff0;
  -webkit-text-stroke: 1Px var(--title-color);
}
.nthWord:nth-child(2){
  color: var(--secondary-color);
}
/*-----------------*/
/* CERTIFICATIONS */
/*-----------------*/
#certifications {
    /* padding-top: 40Px; */
    position: absolute;
    bottom: 0;
    top: initial;
    left: 0;
    z-index: 1;
    height: auto;
    align-items: end;
    display: grid;
}

.widget_element {
    margin: 0 !important;
}

.widget_certifications li {
    position: relative;
    padding: 10px !important;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget_element li:before {
    content: none !important;
}

.widget_certifications a {
    position: relative;
    background: none !important;
    border: none !important;
}

.widget_certifications li .wrap-element {
    transition: all 1s cubic-bezier(.25, .8, .25, 1);
    /* border: 1px solid #f2f2f2; */
    padding: 16px;
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--white);
    /* border-radius: 5px; */
    /* width: 100%; */
}

.widget_certifications img {
    height: auto;
    max-height: 60px;
}

.widget_certifications .gotolink {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    align-items: center;
    transition: all .25s cubic-bezier(.3, .3, 0, .8);
}

.widget_certifications .gotolink a {
    opacity: 0;
    visibility: hidden;
    color: var(--title-color) !important;
    font-size: 12px;
    text-transform: uppercase;
    transform: translateY(16px);
    transition: all .25s cubic-bezier(.3, .3, 0, .8);
    font-family: var(--font-bold);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.widget_certifications li:hover .gotolink {
    background-color: var(--white);
}

.widget_certifications li:hover .gotolink a {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

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

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

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

/*-----------------*/
/* FOOTER */
/*-----------------*/
#footer::before
{
  background: url(../images/home-bg1.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body:not(.template-contact-php) #wrapperForm
{
  background: var(--background-color);
  box-shadow: 0px 0px 20px #00000014;
  padding: 20px;
}

#footer .overlay
{
  z-index: -1;
}

#footerLinks
{
  background: var(--background-color);
  gap: 50px;
}

#footerbloc
{
  border-top: 1Px solid #ffffff26;
}

#footerbloc .vide
{
    display: none;
}
#footer .adresse span,#footer .portable span,#footer .horaires span,#footer .fixe span,#footer .mail span
{
  color: var(--white);
}

#footer-coordonnees>* a:hover
{
  color: var(--secondary-color);
}