/*-----------------*/
/* LOADER */
/*-----------------*/
#loader-wrapper{
	--loader-size: 50px;
	  --animation: cubic-bezier(0.785, 0.135, 0.15, 0.86) 2s infinite;
	  --loader-color: var(--tertiary-color);
}
.loader {
	
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  width: var(--loader-size);
  height: var(--loader-size);
  -webkit-animation: rotate 8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
          animation: rotate 8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
@-webkit-keyframes rotate {
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loader__dot {
  background-color: var(--loader-color);
  border-radius: 50%;
}
.loader__dot:nth-of-type(1) {
  -webkit-animation: dot1 var(--animation);
          animation: dot1 var(--animation);
  --loader-color: var(--secondary-color);
}
@-webkit-keyframes dot1 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(-100%, -100%);
    border-radius: 5px;
  }
  95% {
    transform: translateY(0);
  }
}
@keyframes dot1 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(-100%, -100%);
    border-radius: 5px;
  }
  95% {
    transform: translateY(0);
  }
}
.loader__dot:nth-of-type(2) {
  -webkit-animation: dot2 var(--animation);
          animation: dot2 var(--animation);
}
@-webkit-keyframes dot2 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(100%, -100%);
    border-radius: 5px;
  }
  95% {
    transform: translateY(0);
  }
}
@keyframes dot2 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(100%, -100%);
    border-radius: 5px;
  }
  95% {
    transform: translateY(0);
  }
}
.loader__dot:nth-of-type(3) {
  -webkit-animation: dot3 var(--animation);
          animation: dot3 var(--animation);
}
@-webkit-keyframes dot3 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(-100%, 100%);
    border-radius: 5px;
  }
  95% {
    transform: translateY(0);
  }
}
@keyframes dot3 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(-100%, 100%);
    border-radius: 5px;
  }
  95% {
    transform: translateY(0);
  }
}
.loader__dot:nth-of-type(4) {
  -webkit-animation: dot4 var(--animation);
          animation: dot4 var(--animation);
}
@-webkit-keyframes dot4 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(100%, 100%);
    border-radius: 5px;
  }
  95% {
    transform: translateY(0);
  }
}
@keyframes dot4 {
  5% {
    transform: translate(0);
  }
  50% {
    transform: translate(100%, 100%);
    border-radius: 5px;
  }
  95% {
    transform: translateY(0);
  }
}
/*-----------------*/
/* ELEMENTS */
/*-----------------*/
.newwindow span {
    background-image: url(../images/icons/newWindow-white.svg);
    background-size: 15px;
    background-position: left center;
    background-repeat: no-repeat;
    padding-left: 25px!important;
}
* :is(.adresse span, .portable span, .horaires span, .fixe span, .mail span, .horaires.nomodal .titlehoraires) {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: bold;
    padding: 0
}
.wp-block-cover .wp-block-file{
    justify-content: center;
}
.wp-block-cover .wp-block-file a:not(.wp-element-button){display: none}
/*----------------- ELEMENTOR SHAPRE -----------------*/
.elementor-shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    z-index: 10;
}
.elementor-shape svg {
    display: block;
    width: calc(200% + 1.3px);
    height: 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.elementor-shape .elementor-shape-fill {
    fill: var(--background-color);
    transform-origin: center;
    transform: rotateY(0deg);
}
.elementor-shape-bottom {bottom: -1px;}
.elementor-shape-top {top: -1px;}

.elementor-shape[data-negative=false].elementor-shape-bottom, 
.elementor-shape[data-negative=true].elementor-shape-top {transform: rotate(180deg);}

/*----------------- SCROLL DOWN -----------------*/
.scroll-down{
	position: absolute;
	bottom: 110px;
	left: 0;
	right: 0;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}
.scroll-down span {
	width: 20px;
	height: 20px;
    display: block;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	margin: -10px;
	animation: animate 2s infinite;
}
.scroll-down span:nth-child(2) {animation-delay: -0.2s;}
.scroll-down span:nth-child(3) {animation-delay: -0.4s;}

@keyframes animate {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
		transform: rotate(45deg) translate(10px, 10px);
	}
	100% {
		opacity: 0;
	}
}

/*----------------- TOOLTIP -----------------*/
.tooltip .tooltiptext {
    visibility: hidden;
    width: 150px;
    background-color: #191919;
    color: #fff;
    text-align: center;
    padding: 8px 5px;
    border-radius: 6px;
    position: absolute;
    z-index: 20;
    top: 110%;
    left: -10px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 11px;
    line-height: 1.2;
	text-transform: none;
	letter-spacing: 0;
	font-family: var(--font-text);
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 11px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #232323 transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}


/*----------------- BUTTON -----------------*/
.button:not(.buttonIcon),
.tc_content .wp-block-button__link {transition-delay: .4s , .5s}

.button:not(.buttonIcon):before,
.tc_content .wp-block-button__link:before,
.button:not(.buttonIcon):after,
.tc_content .wp-block-button__link:after {
    padding: 18px 0 11px;
    content: '';
    position: absolute;
    top: 0;
    left: calc(-100% - 60px);
    height: 100%;
    width: calc(100% + 40px);
    color: #fff;
    border-radius: 2px;
    transform: skew(-25deg)
}

.button:not(.buttonIcon) span,
.tc_content .wp-block-button__link span {
    position: relative;
    z-index: 10
}

.button:not(.buttonIcon):before,
.tc_content .wp-block-button__link:before {
    background: var(--tertiary-color);
    z-index: 5;
    transition: left 1s cubic-bezier(.86,0,.07,1)
}

.button:not(.buttonIcon):after,
.tc_content .wp-block-button__link:after {
    background: #fff;
    transition: left .8s cubic-bezier(.86,0,.07,1) .2s;
    z-index: 0;
    opacity: .8
}

.button:not(.buttonIcon):hover:after,
.tc_content .wp-block-button__link:hover:after {
    left: calc(0% - 20px);
    transition: left .8s cubic-bezier(.86,0,.07,1)
}
.button:not(.buttonIcon):hover{background-color: transparent;}
.cekome_form .button.cf_submit:hover{background-color: var(--tertiary-color);}

.button:not(.buttonIcon):hover:before,
.tc_content .wp-block-button__link:hover:before {
    left: calc(0% - 20px);
    transition: left 1s cubic-bezier(.86,0,.07,1)
}

/*-----------------*/
/* HEADER */
/*-----------------*/
#header-top{
	background: var(--primary-color);
	padding: 8px 30px;
}

#header-coordonnees > div span{color: var(--white);}
.header-alsace{margin: 0 7px;}

#ludotheque{
	margin-right: auto;
	display: block;
	position: relative;
	font-family: var(--font-bold);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
}
#ludotheque a{
	background-image: url(../images/icons/cadenas.svg);
	background-repeat: no-repeat;
    background-size: 15px;
    background-position: left center;
	padding: 4px 14px 4px 22px;
}

#ludotheque a{color: var(--white);}
#ludotheque a:hover{color: var(--secondary-color);}

/*-----------------*/
/* SOCIAL */
/*-----------------*/
.sociblock:not(#headerHome-social .sociblock) .share-buttons a {
    --size: 35px;
    width: var(--size);
    height: var(--size);
    align-items: center;
    justify-content: center;
    margin: 0 3px;
}
.sociblock:not(#headerHome-social .sociblock) .share-buttons a:before {
    content: '';
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 100px;
    transition: all ease 250ms;
    border: solid 1px #FFF;
    box-sizing: border-box;
}
.sociblock:not(#headerHome-social .sociblock) .share-buttons a:hover:before{
	background: var(--secondary-color);
	border-color: var(--secondary-color);
}
.sociblock:not(#headerHome-social .sociblock) .share-buttons a svg{--size: 14px;}
.sociblock:not(#headerHome-social .sociblock) .share-buttons a:hover svg{fill: var(--white);}
.sociblock:not(#header .sociblock) .share-buttons a svg{fill: var(--white);}


/*-----------------*/
/* NAVPRIMARY */
/*-----------------*/
#navprimary .navigmenu .naviglink.lvl-0:not(.button) span:before {
    content: "";
    background: var(--white);
    mix-blend-mode: exclusion;
    width: calc(100% + 20px);
    height: 0;
    position: absolute;
    bottom: 0;
    left: -10px;
    transition: all .3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
#navprimary .navigmenu .naviglink.lvl-0:hover span:before, 
#navprimary .navigtoogle.active .naviglink.lvl-0 span:before {height: 100%;}
/*-----------------*/
/* HEADERHOME */
/*-----------------*/

/*-----------------*/
/* GALLERY HOME */
/*-----------------*/

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

/*-----------------*/
/* CONTENT */
/*-----------------*/
.home #content .icons-item .wp-block-media-text__media{height: 90px;}
.home #content .imgContent img {
    position: absolute;
    top: 0;
    left: 0;
    --size: 100%;
    width: var(--size);
    height: var(--size);
}

.home #content .textContent #content-text > p:last-of-type {
    padding-left: 20px;
    margin-top: 20px;
}

.home #content .contentBottom {margin-top: 50px;}

.home #content .icons-item .wp-block-media-text__media {
    display: grid;
    align-items: center;
    justify-items: center;
    position: relative;
}

.home #content .icons-item .wp-block-media-text__media img {
    --size: 60px;
    width: var(--size);
    height: var(--size);
    object-fit: contain;
}

.home #content .icons-item {margin-top: 30px;}

.home #content .icons-item .wp-block-media-text__content {
    padding: 20px 10px;
    line-height: 1.3
}

.home #content .icons-item .wp-block-media-text__content p {font-size: 20px!important;}

.home #content .icons-item .wp-block-media-text__media::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    --size: 40px;
    width: var(--size);
    height: var(--size);
    background: var(--white);
    box-shadow: 0 1px 18px 0 rgba(0,0,0,.050980392156862744);
    padding: 20px;
    border-radius: 50%;
    z-index: -1
}
/*-----------------*/
/* PRESTATIONS */
/*-----------------*/

/*-----------------*/
/* ACTU */
/*-----------------*/
#news .wrapper_slider:hover .content_slider{
    background: var(--overlay-color);
}
#news .wrapper_slider:hover .wrapper_inner_slider {border-color: var(--secondary-color);}

#news .thumbnail_slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    transition: 250ms all ease-in-out;
    z-index: -1;
}

#news .wrapper_inner_slider {
    border-radius: 30px;
    overflow: hidden;
    background: none;
    border: solid 1px var(--light-color);
    transition: 250ms all ease-in-out;
}

#news .wrapper_slider .content_slider {
    background: var(--secondary-color);
    box-shadow: 0 1px 18px 0 rgba(0,0,0,.050980392156862744);
    color: var(--white);
    transition: 250ms all 
ease-in-out;
}
/*-----------------*/
/* SECTIONS */
/*-----------------*/
.sectionsbloc .section_thumb .blocthumb {overflow: hidden}
#choixSections {
    counter-reset: sections;
    display: flex;
    justify-content: center;
    position: relative
}

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

#choixSections:after {
    --size: 20px;
    width: var(--size);
    height: var(--size);
    background: var(--secondary-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: 0.6px;
    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(--secondary-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(--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(--secondary-color);
    filter: drop-shadow(0 5px 0 var(--light-color));
}

#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%;
    transition: .4s all;
    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(--secondary-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)
}

.sectionsbloc .wrap-text{
	background: var(--primary-color);
	color: var(--white);
}
.sectionsbloc .wrap-text strong{color: var(--secondary-color);}
.sectionsbloc .wrap-text ul:not(.no-bullet) li:before{background: var(--secondary-color);}
.sectionsbloc .specialthumb{
    height: 250px;
    overflow: hidden;
}

/*-----------------*/
/* REASSURANCES */
/*-----------------*/
#reassurances{background-image:url('../images/bg-reassurances.jpg');}
#reassurances-buttons{
    margin-top: 40px;
	margin-bottom:10px;
}
#reassurances-buttons a{margin: 2px;}

#reassurances .accroche{
	padding: 15px 25px;
	background: var(--light-color);
	color: var(--black);
	border-radius: 15px;
	font-weight: bold;
	font-size: 15px;
}

.picto-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.picto-container li{
	text-align: left;
	align-items: flex-start;
	border: solid 1px rgb(255 255 255 / 40%);
	margin: 0;
	padding: 60px 30px;
	position: relative;
	border-top: none;
	border-bottom: 0;
}
.picto-container span:before,
.picto-container span:after{
	height: 1px;
	background: rgb(255 255 255 / 40%);
}
.picto-container span:before{width: 31px;}
.picto-container span:after{
    right: 0;
    left: auto;
    width: calc(100% - 105px);
}
.picto-container li:after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	z-index: -1;
	opacity: 0;
	transition: 250ms all ease-in-out;
	clip-path: polygon(30px 0, 30px 30px, 105px 30px, 105px 0, 100% 0, 100% 100%, 0 100%, 0 0);
}

.picto-container li:first-child{
	border-right-width: 0.5px;
	border-bottom-width: 0.5px;
}
.picto-container li:nth-child(2){border-left-width: 0.5px;}
.picto-container li:nth-child(3){
	border-top-width: 0.5px;
	border-right-width: 0.5px;
	border-bottom: solid 1px rgb(255 255 255 / 40%);
}
.picto-container li:nth-child(4){
	border-top-width: 0.5px;
	border-left-width: 0.5px;
	border-bottom: solid 1px rgb(255 255 255 / 40%);
}
.picto-container li p span{
	display: block;
	font-family: var(--font-title);
	font-size: 25px;
	margin-bottom: 10px;
	color: var(--white);
	font-weight: normal;
	line-height: 1.1;
}
.picto-container li p{
	margin: 0;
	font-size: 16px;
	color: var(--white);
	line-height: 1.6;
}
.picto-container li svg, 
.picto-container li img{
    position: absolute;
    top: -40px;
    padding: 20px;
}
/*-----------------*/
/* PARTENAIRES */
/*-----------------*/
.partenaires-header {margin-bottom: 60px}
#partenaires #partenaires-buttons{margin-bottom: 30px;}
#partenaires .widget_partenaires {
    background-color: #fff;
    border-bottom: none;
    border-right: 0;
    position: relative;
    z-index: 2
}

#partenaires .widget_partenaires li {
    border: 1px solid #eee;
    min-height: 160px;
}

#partenaires .widget_partenaires img {
    max-width: 81%;
    height: auto;
    max-height: 80px;
}
#partenaires .widget_partenaires li .wrap-element{
	height: auto;
	border: none;
	padding: 0;
}
#partenaires .partenaires-intro{
    background-image: url('../images/img-partenaires.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 450px;
    width: 100%;
}

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

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

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

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

/*-----------------*/
/* FOOTER */
/*-----------------*/
#fondContact {
    background: url(../images/bg-footer.jpg);
    background-position: top -100px center;
    background-repeat: no-repeat;
    background-size: cover;
}
#footer .wrapperContact{background: var(--background-color);}
#footer-coordonnees{box-shadow: 0px 0px 20px #00000017;}
#footer-coordonnees > div{margin: 15px 0;}
#footer #wrapperForm{background: var(--primary-color);}
#footerSeo{
    font-size: 14px;
    text-align: center;
}
.descbloctel a{color: var(--secondary-color);}
#footer .cekome_form :is(.blc_checkbox label a:hover, .descbloctel a:hover){color: var(--white);}