/*-----------------*/
/* 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: 4637.5732421875px;
        stroke-dasharray: 4637.5732421875px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 4637.5732421875px
    }
}

@keyframes animate-svg-fill-1 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(1, 1, 1)
    }
}

.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: 747.9232177734375px;
        stroke-dasharray: 747.9232177734375px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 747.9232177734375px
    }
}

@keyframes animate-svg-fill-2 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(255, 0, 1)
    }
}

.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: 681.8566284179688px;
        stroke-dasharray: 681.8566284179688px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 681.8566284179688px
    }
}

@keyframes animate-svg-fill-3 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(32, 23, 87)
    }
}

.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: 134.50274658203125px;
        stroke-dasharray: 134.50274658203125px
    }

    100% {
        stroke-dashoffset: 0;
        stroke-dasharray: 134.50274658203125px
    }
}

@keyframes animate-svg-fill-4 {
    0% {
        fill: transparent
    }

    100% {
        fill: rgb(252, 238, 0)
    }
}

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

/*-----------------*/
/* ELEMENTS */
/*-----------------*/
a {
    display: inline-block;
}

.tc_content a:not([class*="button"]) {
    display: inline;
}

.thumbnail_slider a {
    height: 100%;
    width: 100%;
}

/*-------------------- LINKTURN -------------------*/
.linkTurn {
    --size: 10rem;
    width: var(--size);
    height: var(--size);
    display: inline-block;
    font-size: 17px;
    font-family: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    word-spacing: 1em;
    text-decoration: none;
    -webkit-font-smoothing: auto;
    font-weight: bold;
    position: absolute;
    top: 55%;
    left: 0;
}

.link__svg {
    width: 100%;
    height: auto;
    transform-box: fill-box;
    fill: var(--white);
    stroke: var(--white);
    border-radius: 50%;
    padding: 10px;
    stroke-width: 0.05em;
    box-sizing: border-box;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    background: var(--primary-color);
}

.link__arrow {
    transform-origin: 50% 50%;
    transition: transform 0.15s cubic-bezier(0.32, 0, 0.67, 0);
}

.linkTurn:hover .link__arrow {
    transform: scale(1.3);
    transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.link__arrow {
    stroke-width: 0.075em;
    transform: rotate(-25deg);
}

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

.linkTurn.white svg {
    fill: var(--white);
    stroke: var(--white);
}

/*-----------------*/
/* HEADER */
/*-----------------*/
#header-top {
    background-color: var(--black);
    color: var(--white);
}

.fixed-header #header-coordonnees {
    display: none;
}

.fixed-header #navprimary {
    position: static;
    border-top: 1px solid rgb(255 255 255 / 20%);
    border-bottom: initial;
}

.fixed-header .navigmenu .naviglink.lvl-0 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.fixed-header .navigmenu .active .naviglink.lvl-0 span:after,
.fixed-header .navigmenu .naviglink.lvl-0 span:after {
    bottom: -9px !important;
}

.fixed-header #header-top>* {
    justify-content: center;
}

/*-----------------*/
/* NAVPRIMARY */
/*-----------------*/
#navsecondary .navigmenu .naviglink {
    font-size: 13px;
    padding: 8px 12px;
    letter-spacing: 0.5px;
}

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

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

#navsecondary .navigmenu .naviglink.lvl-0:not(.item-logo) span:after {
    bottom: 0;
    height: 1px;
}

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

.navigmenu .active .naviglink.lvl-0 span:after,
.navigmenu .naviglink.lvl-0:hover span:after {
    transform-origin: left center;
    transform: scale(1, 1)
}


/*-----------------*/
/* HEADERHOME */
/*-----------------*/
.logoheaderHome {
    max-height: 100Px;
}

#headeHome-logos {
    margin-bottom: 20px;
    gap: 30px;
}

html:not([lang="de"]) .description,
[lang="de"] .elemEnfant {
    display: none;
}

.titleEffects {
    align-items: center;
}

/*-----------------*/
/* CONTENT / INTRODUCTION */
/*-------------*/
#content .wp-block-gallery {
    position: relative;
    z-index: 1;
}

#content .uagb-timeline__day-new {
    background: var(--primary-color);
    color: var(--white);
}

#content .uagb-timeline__date-new {
    font-family: var(--font-title);
}

#content .uagb-timeline__day-new .uagb-timeline__heading {
    color: var(--white);
    font-size: 20px;
}

#content .uagb-timeline-desc-content {
    font-size: 15px;
    line-height: 1.3;
    font-weight: bold;
}

#content .uagb-timeline__day-right .uagb-timeline__arrow:after {
    border-left-color: var(--primary-color);
}

#content .uagb-timeline__day-left .uagb-timeline__arrow:after {
    border-right-color: var(--primary-color);
}

.home #content .ckslidercontrols .next,
.home #content .ckslidercontrols .prev {
    top: 50%;
    transform: translateY(-50%);
}

.home #content .cksliderwrap {
    padding-bottom: 0;
}

.home #content .ckctrldiv {
    display: none;
}

.home #content .widget_element li .wrap-element {
    height: 100px;
}

.home #content .tertiarythumb {
    position: relative;
}

.home #content .tertiarythumb::before {
    content: "";
    position: absolute;
    left: 40px;
    bottom: -70px;
    --size: 250px;
    width: var(--size);
    height: var(--size);
    background: url(../images/mascotte.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/*-----------------*/
/* GALLERY HOME */
/*-----------------*/
#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;
}

/*-------------------- SWIPER -------------------*/
.swiper-button-next,
.swiper-button-prev {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    --size: 10px;
    width: var(--size);
    height: var(--size);
    font-size: 12px;
    font-weight: bold;
}
/*------------------- &&& ---------------------*/
#gallerySecond .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;
}

#gallerySecond .gallery .gallery-item {
    grid-column: span 1;
    position: relative;
    width: 100% !important
}

/*-----------------*/
/* CTA */
/*-----------------*/
#cta .title small {
    background: url(../images/home-bg3.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-size: 5vw;
    font-family: var(--font-alt);
    font-weight: 900;
}

/*-----------------*/
/* PRESTATIONS */
/*-----------------*/
body.template-parent-page-php #banner svg polygon:nth-child(2) {
    fill: #0f1528;
}

#content.parentPresta:before {
    background: var(--secondary-color);
    opacity: 0.2;
}

#prestations::after {
    background-image: url(../images/logo.png);
    background-position: center;
    background-repeat: repeat;
    background-size: 100px;
    z-index: -2;
}

#prestations:before {
    background: var(--black);
    opacity: 0.97;
}

#prestations .widget_parentpage .bloc_prestations {
    padding: 33px 5vw 42px;
    text-align: center;
    position: relative;
}

#prestations .widget_parentpage .bloc_prestations:not(:last-child):after {
    background: var(--white);
    height: 1px;
    top: auto;
    bottom: 0;
    opacity: 0.1;
}

.prestations-content :is(h2, h3) {
    opacity: .4;
    transition: opacity .8s;
    font-size: 38px;
    text-transform: uppercase;
    margin: 0 0 10px;
    /* text-shadow: 1px 1px 1px var(--black); */
}

.prestations-content .title_content {
    color: var(--white);
}

#prestations .tc_excerpt {
    opacity: .4;
    transition: opacity .8s;
    font-size: 18px;
    letter-spacing: .03em;
    margin: 0 auto;
    color: var(--white);
    max-width: 590px;
}

#prestations .bloc_prestations.elemActif :is(h2, h3),
#prestations .bloc_prestations.elemActif .tc_excerpt {
    opacity: 1
}


@keyframes image-show-long {
    0% {
        transform: translateY(var(--dist-y));
        opacity: 0
    }

    75% {
        opacity: 1
    }

    100% {
        transform: translateY(0) scale(1);
        opacity: 1
    }
}

@keyframes image-hide-long {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1
    }

    80% {
        opacity: 0
    }

    100% {
        transform: translateY(calc(-1 * var(--dist-y)));
        opacity: 0
    }
}

#prestations .nthwords {
    display: inline-block;
    font-family: var(--font-alt);
    color: var(--tertiary-color);
    transition: all 0.4s;
}

#prestations .title_content:hover .nthwords {
    color: var(--primary-color);
}

/*-----------------*/
/* ACTU / NEWS */
/*-----------------*/
#news>* {
    overflow: hidden;
}

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

#news::before {
    background: var(--black);
    background: url(../images/home-bg4.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home .content_slider {
    color: var(--white);
    z-index: 1;
    position: relative;
}

.home .thumbnail_slider {
    position: absolute;
    --size: 100%;
    width: var(--size);
    height: var(--size);
    transform: scale(0);
    transition: all 0.4s;
}

.home .thumbnail_slider img {
    position: absolute;
    --size: 300px;
    width: var(--size);
    height: var(--size);
    transition: all 0s;
    top: 50%;
    transform: translateY(-50%) translateX(-50%) rotate(2deg);
    filter: brightness(0.5);
    border-radius: 20px;
}

.wrapper_slider:hover .thumbnail_slider {
    transform: scale(1);
}

.newsdate {
    /* background: var(--secondary-color); */
    display: grid;
    align-items: center;
    padding: 20px;
    font-family: var(--font-alt);
    color: var(--background-color);
    border: 1px solid var(--primary-color);
    background: #fd071421;
}

.wrapper_slider .button {
    font-size: 0;
    --size: 50px;
    width: var(--size);
    height: var(--size);
    background: #fff0;
    border: 1px solid var(--white);
    transition: all 0.4s;
    border-radius: 50% !important;
}

.wrapper_slider .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url(../images/icons/arrowMore.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
    transition: all 0.4s;
}

.wrapper_slider .button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.wrapper_slider .button:hover::before {
    transform: rotate(360deg);
}

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

#choixSections:before {
    width: 80%;
    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: 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%);
}

#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 {
    padding: 0 20Px;
}

#reassurances::before {
    background: url(../images/home-bg1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.nohome #reassurances::before
{
    background-attachment: fixed;
}
#reassurances .title {
    text-shadow: 0px 0px 20px #000;
}

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

.pictoImg {
    background: url(../images/home-bg3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 200px;
}

#reassurances :is(svg, .iconeRea) {
    height: 70px;
    width: 70px;
    background: var(--primary-color);
    padding: 17px;
    box-sizing: border-box;
    max-width: 100%;
    position: relative;
    border-radius: 4px;
}

.picto-bloc {
    position: relative;
}

.picto-bloc svg {
    padding: 5px;
    box-sizing: border-box;
}

/*-----------------*/
/* certifications */
/*-----------------*/

/*-----------------*/
/* PARTENAIRES */
/*-----------------*/

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

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

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


/*-----------------*/
/* FOOTER */
/*-----------------*/
#footer .overlay {
    z-index: -1;
    background: var(--black);
    opacity: 0.8;
}

#footer::before {
    background: url(../images/home-bg1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#footerLinks {
    background: var(--black);
}

#footer #footerbloc {
    border-top: 1px solid #ffffff24;
    padding: 0;
}

#footerbloc>* {
    padding: 30Px;
    padding-top: 60Px;
}

#footerbloc>*::before {
    top: 25Px;
}

#footerbloc>*:not(:last-child) {

    border-right: 1px solid #ffffff24;
}

#infoouvertureFooter {
    order: -2;
}

#infoadresseFooterBis,
#infoadresseContactBis {
    order: -1;
}

#contactCoordonnees {
    display: grid;
    align-items: center;
    align-content: center;
}