/*-----------------*/
/* LOADER */
/*-----------------*/
#loader-wrapper .loader{
    position: relative;
    text-align: center;
}
.preloader {
    --size: 50px;
    width: var(--size);
    height: var(--size);
    animation: rotatePreloader 2s infinite ease-in;
    margin: auto;
    left: 25px;
    position: relative;
}
#loader-wrapper #logoLoader{
    width: 200px;
    margin-bottom: 60px;
}

@keyframes rotatePreloader {
  0% {
    transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
  }
  100% {
    transform: translateX(-50%) translateY(-50%) rotateZ(-360deg);
  }
}
.preloader div {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.preloader div:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0%;
  width: 10%;
  height: 10%;
  background-color: #ffffff;
  transform: translateX(-50%);
  border-radius: 50%;
}

.preloader div:nth-child(1) {
  transform: rotateZ(0deg);
  animation: rotateCircle1 2s infinite linear;
  z-index: 9;
}

@keyframes rotateCircle1 {
  0% {
    opacity: 0;
  }
  0% {
    opacity: 1;
    transform: rotateZ(36deg);
  }
  7% {
    transform: rotateZ(0deg);
  }
  57% {
    transform: rotateZ(0deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(2) {
  transform: rotateZ(36deg);
  animation: rotateCircle2 2s infinite linear;
  z-index: 8;
}

@keyframes rotateCircle2 {
  5% {
    opacity: 0;
  }
  5.0001% {
    opacity: 1;
    transform: rotateZ(0deg);
  }
  12% {
    transform: rotateZ(-36deg);
  }
  62% {
    transform: rotateZ(-36deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(3) {
  transform: rotateZ(72deg);
  animation: rotateCircle3 2s infinite linear;
  z-index: 7;
}

@keyframes rotateCircle3 {
  10% {
    opacity: 0;
  }
  10.0002% {
    opacity: 1;
    transform: rotateZ(-36deg);
  }
  17% {
    transform: rotateZ(-72deg);
  }
  67% {
    transform: rotateZ(-72deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(4) {
  transform: rotateZ(108deg);
  animation: rotateCircle4 2s infinite linear;
  z-index: 6;
}

@keyframes rotateCircle4 {
  15% {
    opacity: 0;
  }
  15.0003% {
    opacity: 1;
    transform: rotateZ(-72deg);
  }
  22% {
    transform: rotateZ(-108deg);
  }
  72% {
    transform: rotateZ(-108deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(5) {
  transform: rotateZ(144deg);
  animation: rotateCircle5 2s infinite linear;
  z-index: 5;
}

@keyframes rotateCircle5 {
  20% {
    opacity: 0;
  }
  20.0004% {
    opacity: 1;
    transform: rotateZ(-108deg);
  }
  27% {
    transform: rotateZ(-144deg);
  }
  77% {
    transform: rotateZ(-144deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(6) {
  transform: rotateZ(180deg);
  animation: rotateCircle6 2s infinite linear;
  z-index: 4;
}

@keyframes rotateCircle6 {
  25% {
    opacity: 0;
  }
  25.0005% {
    opacity: 1;
    transform: rotateZ(-144deg);
  }
  32% {
    transform: rotateZ(-180deg);
  }
  82% {
    transform: rotateZ(-180deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(7) {
  transform: rotateZ(216deg);
  animation: rotateCircle7 2s infinite linear;
  z-index: 3;
}

@keyframes rotateCircle7 {
  30% {
    opacity: 0;
  }
  30.0006% {
    opacity: 1;
    transform: rotateZ(-180deg);
  }
  37% {
    transform: rotateZ(-216deg);
  }
  87% {
    transform: rotateZ(-216deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(8) {
  transform: rotateZ(252deg);
  animation: rotateCircle8 2s infinite linear;
  z-index: 2;
}

@keyframes rotateCircle8 {
  35% {
    opacity: 0;
  }
  35.0007% {
    opacity: 1;
    transform: rotateZ(-216deg);
  }
  42% {
    transform: rotateZ(-252deg);
  }
  92% {
    transform: rotateZ(-252deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(9) {
  transform: rotateZ(288deg);
  animation: rotateCircle9 2s infinite linear;
  z-index: 1;
}

@keyframes rotateCircle9 {
  40% {
    opacity: 0;
  }
  40.0008% {
    opacity: 1;
    transform: rotateZ(-252deg);
  }
  47% {
    transform: rotateZ(-288deg);
  }
  97% {
    transform: rotateZ(-288deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
.preloader div:nth-child(10) {
  transform: rotateZ(324deg);
  animation: rotateCircle10 2s infinite linear;
  z-index: 0;
}

@keyframes rotateCircle10 {
  45% {
    opacity: 0;
  }
  45.0009% {
    opacity: 1;
    transform: rotateZ(-288deg);
  }
  52% {
    transform: rotateZ(-324deg);
  }
  102% {
    transform: rotateZ(-324deg);
  }
  100% {
    transform: rotateZ(-324deg);
    opacity: 1;
  }
}
/*-----------------*/
/* ELEMENTS */
/*-----------------*/
.title:not(.no-after):after {
    background-color: #fff0;
    background-image: url(../images/separator.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 45px;
    width: 190px;
}


/*-----------------*/
/* HEADER */
/*-----------------*/
#info-toogle{display: flex;}
#header-coordonnees{
    position: fixed;
    top: 0;
    right: -445px;
    width: 310px;
    height: 100%;
    min-height: 100%;
    padding: 70px 40px;
    background-color: var(--light-color);
    overflow: hidden;
    visibility: hidden;
    overflow: scroll;
    z-index: 9999;
    transition: all .6s cubic-bezier(.77,0,.175,1);
    box-shadow: 0 0 20px rgba(0,0,0,.1);
}
body.is-toggle-open #header #header-coordonnees {
    right: 0;
    visibility: visible;
}

#header-coordonnees .flex > *{margin: 15px 0;}
#header-coordonnees .flex > div{font-size: 16px;}
#logoCoordonnees{order: -1;}
#logoCoordonnees img{width: 200px;}

/*-----------------*/
/* NAVPRIMARY */
/*-----------------*/
.navigmenu .naviglink.lvl-0 span:after,
.navigmenu .naviglink span:before {
    content: '';
    display: block;
    position: absolute;
    left: -.1em;
    bottom: -.4em;
    width: 100%;
    height: 1px;
    border-top: 1px solid currentColor;
    -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%;
    transition: transform .4s cubic-bezier(.48,.57,.33,.89) .1s;
}

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


#navprimary .navigmenu .active .naviglink.lvl-0 {color: var(--secondary-color)!important;}

#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 {
    transform: scale(1,1)
}
/*-----------------*/
/* HEADERHOME */
/*-----------------*/

/*-----------------*/
/* GALLERY HOME */
/*-----------------*/
#galleryHome .gallery {
    display: grid;
    width: 100%;
    transition: .6s;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
    grid-auto-rows: 100px;
    position: relative;
    grid-gap: 2px;
}

#galleryHome .gallery .gallery-item {
    grid-column: span 1;
    position: relative;
    width: 100%!important
}
/*-----------------*/
/* PRODUITS HOME */
/*-----------------*/

/*-----------------*/
/* CONTENT */
/*-----------------*/
.home #content:before,
#content .specialIntro:before{
	background: var(--gradient-color);
    height: 40%;
}
#content .specialIntro:before{ height: 60%;}
/*-----------------*/
/* PRESTATIONS */
/*-----------------*/
.nohome #prestations{padding: 0;}
.home #prestations{background: var(--title-color);}
#prestations .bloc_prestations{padding: 5px 0;}
#prestations .prestations-content{
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    z-index: 2;
    padding: 50px 40px;
}
#prestations .prestations-content h2{
	text-align: center;
	letter-spacing: 2px;
	font-size: 1.25em;
	text-transform: uppercase;
	margin-bottom: 40px;
}
#prestations .prestations-content h2 a{color: var(--white);}

#prestations .gotolink a{
    position: absolute;
    top: 0;
    left: 0;
    --size: 100%;
    width: var(--size);
    height: var(--size);
    font-size: 0;
    z-index: 2;
}

#prestations .prestations-img:before{
    z-index: 1;
	opacity: 0.75;
}
#prestations .bloc_prestations .prestations-img img{transition: all 0.6s;}
#prestations .bloc_prestations:hover .prestations-img img{
	transform:  scale(1.2);
}

#prestations .prestations-content ul li{
	 margin: 0 0 6px;
    padding: 8px 10px;
    background: #ffffff2e;
    border-radius: 30px;
    color: var(--white);
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: translate3d(-360px, 0, 0);
    transform: translate3d(-360px, 0, 0);
    opacity: 0;
    line-height: 1.2;
    font-size: 14px;
}
#prestations .bloc_prestations:hover .prestations-content ul li {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}
#prestations .prestations-content ul li:nth-of-type(1) {transition-delay: .05s;}
#prestations .prestations-content ul li:nth-of-type(2) {transition-delay: .10s;}
#prestations .prestations-content ul li:nth-of-type(3) {transition-delay: .15s;}
#prestations .prestations-content ul li:nth-of-type(4) {transition-delay: .20s;}
#prestations .prestations-content ul li:nth-of-type(5) {transition-delay: .25s;}
#prestations .prestations-content ul li:nth-of-type(6) {transition-delay: .30s;}
#prestations .prestations-content ul li:nth-of-type(7) {transition-delay: .35s;}
#prestations .prestations-content ul li:nth-of-type(8) {transition-delay: .40s;}
#prestations .prestations-content ul li*:nth-of-type(9) {transition-delay: .45s;}
#prestations .prestations-content ul li:nth-of-type(10) {transition-delay: .50s;}

/*-----------------*/
/* 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-bg2.jpg);}
#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 100px}

.title_slider {
    font-size: 25px;
}

.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-bold);
    color: var(--title-color);
}

.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: 35px;
    line-height: 1;
}

#news .next_slider {
    display: flex;
    align-items: center;
    width: 200px;
    justify-content: flex-end;
    margin: 0
}

#news .title_link_slider {
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    transition: .4s cubic-bezier(.215,.61,.355,1);
    background-size: 0 100%;
}
#news .title_slider:hover .title_link_slider {background-size: 100% 100%;}

/*-----------------*/
/* SECTIONS */
/*-----------------*/
.buttons-wrap{
	flex-direction: column;
	align-items: center;
	gap: 5px;
}
#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: 14px;
    font-family: var(--font-bold);
    letter-spacing: 1.4px;
    line-height: 1.3;
    text-align: center;
    color: var(--title-color);
    background: #bde1f3;
    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);
    font-weight: bold;
}

#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(--title-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;
    outline: dotted var(--white) 2px;
    outline-offset: -5px;
}

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

#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%);
}

#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 */
/*-----------------*/
#reassurances{background-image: url('../images/home-bg1.jpg')}
.picto-container {
    z-index: 1;
    position: relative;
    align-items: flex-start;
    counter-reset: pictosvg;
}
.picto-container li {
    position: relative;
    margin: 0;
}
.pictoSvg {
    display: inline-block;
    margin: 0 auto;
    background: var(--primary-color);
    border-radius: 50%;
    --size: 130px;
    width: var(
    --size);
    height: var(
    --size);
    display: grid;
    align-content: center;
    justify-content: center;
    box-shadow: 0px 0px 20px #00000017;
}
.picto-container li .pictoSvg:before{
    --size: 40px;
    left: initial;
    right: 0;
    border-radius: 50%;
    width: var(--size);
    height: var(--size);
    background: var(--secondary-color);
    border: 4px solid var(--title-color);
    box-sizing: border-box;
    content:
    "0" counter(pictosvg);
    counter-increment: pictosvg;
    color: var(--title-color);
    display: grid;
    align-content: center;
    justify-content: center;
    font-family: var(
    --font-bold);
    font-size: 12px;
    box-shadow: 0px 0px 20px #00000017;
    -webkit-font-smoothing: auto;
}



.picto-container li p{
  font-family: var(--font-bold);
  font-size: 16px;
}


/*-----------------*/
/* CERTIFICATIONS */
/*-----------------*/
#certifications{margin: 60px 0 50px;}
#certifications  .bloc_certifications{padding: 10px!important;}
#certifications  .bloc_certifications img{
	height: auto;
    max-height: 80px;
}
/*-----------------*/
/* PARTENAIRES */
/*-----------------*/
#content .partenairesPage{align-items: center;}
#content .partenairesPage .uagb-post__image{
	margin: 0;
	padding: 0;
	text-align: center;
}
#content .partenairesPage .uagb-post__image img{
    height: 100px;
    width: 80%;
    object-fit: contain;
    margin: 0 auto;
    max-width: 230px;
}
#content .partenairesPage .uagb-post__inner-wrap{}
/*-----------------*/
/* AGENCES */
/*-----------------*/

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

/*-----------------*/
/* FOOTER */
/*-----------------*/
#footer #footerbloc {
    align-items: center;
    display: grid;
    grid-row-gap: 5px;
    grid-column-gap: 20px;
    transition: .6s;
    grid-template-areas:
        "footerLinks";
    grid-template-columns: 1fr;
    grid-template-rows: repeat(1,minmax(min-content,auto));
}
#footer-coordonnees > div:not(.title) {
    margin: 40px 0;
    font-size: 16px;
}
#footerForm{
	background-image: url(../images/home-bg1.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	box-shadow: 0 0 30px rgb(0 0 0 / 50%);
}
#footerbloc{background: var(--title-color);}