/***/
/*-----------------*/
/* 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:2465.845703125px;stroke-dasharray:2465.845703125px}100%{stroke-dashoffset:0;stroke-dasharray:2465.845703125px}}@keyframes animate-svg-fill-1{0%{fill:transparent}100%{fill:rgb(0,0,0)}}.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:968.0802612304688px;stroke-dasharray:968.0802612304688px}100%{stroke-dashoffset:0;stroke-dasharray:968.0802612304688px}}@keyframes animate-svg-fill-2{0%{fill:transparent}100%{fill:rgb(0,0,0)}}.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:652.0443115234375px;stroke-dasharray:652.0443115234375px}100%{stroke-dashoffset:0;stroke-dasharray:652.0443115234375px}}@keyframes animate-svg-fill-3{0%{fill:transparent}100%{fill:rgb(225,6,18)}}.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:314.56744384765625px;stroke-dasharray:314.56744384765625px}100%{stroke-dashoffset:0;stroke-dasharray:314.56744384765625px}}@keyframes animate-svg-fill-4{0%{fill:transparent}100%{fill:rgb(0,0,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%;
}
.white blockquote p
{
    color: var(--white);
}

/*-------------------- 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-perso {
    width: 70px;
    top: 0;
    left: 50px;
    transform: translateY(-100%);
    transition: 1s all ease-in-out;
}

body.is-toggle-open #header-perso {
    transform: translateY(0);
}

#header-coordonnees {
    position: fixed;
    top: 0;
    right: -360px;
    width: 360px;
    height: 100%;
    min-height: 100%;
    padding: 70px 30px 65px;
    background-color: var(--black);
    overflow: hidden;
    visibility: hidden;
    overflow-y: auto;
    z-index: 9998;
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    -o-transition: all .6s cubic-bezier(.77, 0, .175, 1);
    transition: all .6s cubic-bezier(.77, 0, .175, 1);
    text-align: left;
    box-shadow: 0 0 30px #75757557;
}

body.is-toggle-open #header-coordonnees {
    right: 0;
    visibility: visible
}

#info-toogle {
    display: flex;
    justify-self: center;
    align-items: center;
}

#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);
    fill: var(--black);
}

#header.fixed-header #info-toogle svg circle,
.nohome #info-toogle svg circle {
    fill: none;
}

.is-toggle-open #header #info-toogle svg circle {
    fill: none;
}

body:not(.is-toggle-open) #info-toogle:hover svg circle {
    transform: rotate(2turn);
    stroke-dashoffset: 160;
}

#info-toogle svg path {
    stroke-dashoffset: 0;
}

#info-toogle svg path:first-of-type {
    stroke-dasharray: 28;
    transition: stroke-dashoffset .8s cubic-bezier(.23, 1, .32, 1) .4s;
}

#info-toogle svg path:nth-of-type(2) {
    stroke-dasharray: 20;
    transition: stroke-dashoffset .8s cubic-bezier(.23, 1, .32, 1) .5s;
}

#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:first-of-type {
    stroke-dashoffset: 28;
    transition-delay: .1s;
}

body.is-toggle-open #info-toogle svg path:nth-of-type(2) {
    stroke-dashoffset: 20;
    transition-delay: 0s;
}


#header-coordonnees .flex>div {
    margin: 15px auto;
}

#header-coordonnees .flex>div:not(.title, #header-contact) {
    max-width: 180px;
    width: 100%;
}

#header-coordonnees .title h2 {
    font-size: 34px;
}

/*-----------------*/
/* 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 var(--primary-color);
    -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%;
    -webkit-transition: -webkit-transform .4s cubic-bezier(.48, .57, .33, .89) .1s;
    -o-transition: transform .4s cubic-bezier(.48, .57, .33, .89) .1s;
    transition: transform .4s cubic-bezier(.48, .57, .33, .89) .1s;
    transition: transform .4s cubic-bezier(.48, .57, .33, .89) .1s, -webkit-transform .4s cubic-bezier(.48, .57, .33, .89) .1s
}

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


#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,
#navprimary .navigmenu .active>.naviglink span:before,
#navprimary .navigmenu .naviglink:hover span:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1)
}


/*-----------------*/
/* HEADERHOME */
/*-----------------*/
#headerHome-content {
    pointer-events: none;
}

#headerHome-content>* {
    pointer-events: all;
}

#headerHome-social .sociblock .share-buttons a svg {
    --size: 20px;
}

#headerHome-social .sociblock .share-buttons a:not(:hover) svg {
    fill: var(--white);
}
/*-------------------- MOT -------------------*/
#headerHome .widget_certiftops
{
    width: 100%;
    max-width: 200px;
    position: absolute;
    bottom: 20px;
    right: 0;
    z-index: 2;
}
#headerHome .bloc_certiftops
{
    padding: 0!important;
}
#headerHome .widget_element li .wrap-element
{
    border-radius: 0;
    border: none;
    background: #fff0;
}
#headerHome .widget_element img {
    max-height: 120px;
}
/*-----------------*/
/* 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;
}


/*-----------------*/
/* 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;
}
#galleryHome .swiper-pagination
{
    /* bottom: 150px; */
}

.wp-element-caption
{
    transition: all 0.3s;
}
.gallery .gallery-item.swiper-slide-active .wp-element-caption
{
    opacity: 1;
    transform: translateY(0);
}
.firstWord
{
    font-size: 1.5em;
    display: block;
    letter-spacing: 2px;
    margin-bottom: 5px;
}
.lastWord
{
    color: var(--primary-color);
}
/*-----------------*/
/* CTA */
/*-----------------*/



/*-----------------*/
/* PRESTATIONS */
/*-----------------*/
#prestations {
    overflow: hidden;
}

#prestations::before {
    background-image: url(../images/home-bg1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#prestations::before,#prestations .overlay
{
  z-index: -1;
}

.template-parent-page-php #content {
    padding-bottom: 0;
}

.template-parent-page-php #prestations {
    /* padding-top: 0; */
    width: calc(100% - 40px);
    margin: 0 auto;
}

.title_content {
    color: var(--title-color);
    /* pointer-events: none; */
}

.bloc_prestations h3
{
    transition: all 0.4s;
}


.bloc_prestations.hiddenChild:hover {
    background: color-mix(in hsl, var(--overlay-color) 30%, #fff0) ;
}

.safari .bloc_prestations.hiddenChild:hover {
    background: var(--black) ;
}


.bloc_prestations.hiddenChild:hover h3 {
    color: var(--primary-color);
}

.prestations-content {
    padding: 10px;
}

.prestations-content .button{
    background: #fff0;
    background-image: url(../images/arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    --size: 100px;
    width: var(--size);
    height: var(--size);
    transition: all 0.4s;
}

.prestations-content .button:hover {
    transform: rotate(-45deg);
}

.prestations-content .button span {
    font-size: 0;
}


/*-----------------*/
/* ACTU / NEWS */
/*-----------------*/
.btnLine {
    background: none !important;
    padding: 0 !important;
    line-height: 1.6;
    color: var(--title-color) !important;
    letter-spacing: 1px
}

.btnLine::after {
    content: '';
    position: absolute;
    height: 1px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--title-color);
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out
}

.btnLine:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left
}

.design-link {
    display: inline-flex;
    align-items: center;
    padding: 0;
    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(--primary-color);
    z-index: 1;
    position: relative;
    vertical-align: middle;
    top: -3px;
    border-radius: 100%
}

.design-link:after {
    width: 0;
    left: unset;
    right: 0
}

.design-link:hover {
    padding-left: 0;
    padding-right: 52px;
    color: var(--primary-color)
}

.design-link:hover:before {
    width: 0
}

.design-link:hover:after {
    width: 46px
}


#news-title {
    margin-bottom: 40px;
}

#news .wrapper_inner_slider {
    background: none;
}

#news-title h2:after {
    background: url(../images/icons/curved-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: auto;
    bottom: -72px;
    left: 52px;
    --size: 64px;
    width: var(--size);
    height: var(--size);
    pointer-events: none;
}

#news .next_slider {
    margin-top: 0;
}

.title_slider {
    font-size: 19px;
}

#news .content_slider {
    padding: 20px 0;
}



/*-----------------*/
/* 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;
    border: 1px solid var(--primary-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(--primary-color);
    font-size: 2em;
    font-family: var(--font-title);
    transform: scale(0);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all 0.4s;
}
#choixSections .linkSections.active .subimageSections:before,
#choixSections .linkSections:hover .subimageSections:before
{
    color: var(--white);
}
#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-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#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 */
/*-----------------*/

/*-----------------*/
/* FAQ */
/*-----------------*/

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

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


/*-----------------*/
/* FOOTER */
/*-----------------*/
#wrapperForm .title{margin-bottom: 30px;}
#footer{background: var(--black);}
body.template-contact-php #footer #footerbloc:before{content: none;}
body.template-contact-php #footer #footerbloc{border-bottom: solid 1px}
body.home #footer {margin-top: 1px!important;}
body:not(.template-contact-php) #footer {margin-top: 80px;}
body:not(.template-contact-php) #footer #footerbloc {
	display: block;
	background-image: url(../images/home-bg1.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-columns: repeat(3,1fr);
    grid-template-rows: repeat(1,minmax(min-content,auto));
}
#footerLinks a {color: var(--white)}

.wrapperFooter {
    background: var(--white);
    /* color: var(--background-color); */
    box-shadow: 0px 0px 30px #1a1a2612;
    padding: 10px
}

.imgFooter {
    background: url(../images/home-bg3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}
.infohoraires_other span
{
    color: #f00;
    text-transform: uppercase;
    font-family: var(--font-title);
}
