/*-----------------*/
/* LOADER */
/*-----------------*/
#loader-wrapper
{
    display: grid;
    align-items: center;
    justify-items: center;
}
.loader
{
    --delay:1.3s;
    max-width: 1200px;
    width: 100%;
    animation: loaderParent calc(var(--delay)/3) ease-in forwards;
    animation-delay: var(--delay);
    height: 2Px;
    display: grid;
    align-items: center;
}
.loader::before
{
    background: var(--secondary-color);
    width: 100%;
    height: 100%;
    animation: loaderBarre var(--delay) ease-in forwards;
}
@keyframes loaderBarre {
    0%{
        width: 0%;
    }
    100%
    {
        width: 100%;
    }
}
@keyframes loaderParent {
    0%{
       height: 1px;
       max-width: 1200px;
    }
    100%{
        height: 100%;
        max-width: 100%;
    }
}
/*-----------------*/
/* 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);
}
.title:not(.no-after):after {
    background-color: #fff0;
    background-image: url(../images/emphase.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 20px;
}
/*-----------------*/
/* HEADER */
/*-----------------*/

/*-----------------*/
/* NAVPRIMARY */
/*-----------------*/
.social:not(.no-icon)
{
    padding: 0;
}
.social:not(.no-icon):before
{
    display: none;
}

/*-----------------*/
/* HEADERHOME */
/*-----------------*/

/*-----------------*/
/* CONTENT / INTRODUCTION */
/*-----------------*/
.home #content
{
    padding-bottom: 0;
}
.home #content::before
{
    background-image: url(../images/bg-content.png);
    background-position: center;
    background-repeat: repeat;
    background-size: 200px;
    border-radius: 50%;
    top: initial;
    bottom: -17vw;
    --size: 55vw;
    left: 50%;
    transform:translateX(-50%);
    width: var(--size);
    height: var(--size);
    opacity: 0.5;
}

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

/*-----------------*/
/* CTA */
/*-----------------*/

/*-----------------*/
/* PRESTATIONS */
/*-----------------*/
.template-parent-page-php #prestations
{
    padding-top: 0;
}

/*-----------------*/
/* ACTU / NEWS */
/*-----------------*/
#news
{
    z-index: 2;
}
.formeBefore
{
    position: absolute;
    top: 0;
    left: 0;
    --size: 100%;
    width: var(--size);
    height: var(--size);
}
.formeBefore::before
{
    background: var(--black);
    width: 65%;
    left: initial;
    right: 100px;
    top: initial;
    bottom: 0px;
    height: calc(100% - 370px);
    transform: translateX(-50%) scale(-1);
    z-index: -2;
}

#news :is(.prev, .next)
{
     background-image: url(../images/arrowMore.svg);
     background-size: 15%;
}
#news :is(.prev)
{
    transform: translateY(-50%) scale(-1)!important;
}

/*-----------------*/
/* SECTIONS */
/*-----------------*/


/*-----------------*/
/* REASSURANCES */
/*-----------------*/

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

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

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

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

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


/*-----------------*/
/* FOOTER */
/*-----------------*/
#partenaires
{
    position: relative;
    padding-bottom: 200Px;
}
#partenaires::before
{
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    --size: 100%;
    width: var(--size);
    height: var(--size);
    height: 400Px;
    background-image: url(../images/background-footer.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}