/*-----------------*/
/* 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:2121.37109375px;stroke-dasharray:2121.37109375px}100%{stroke-dashoffset:0;stroke-dasharray:2121.37109375px}}@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:1701.30810546875px;stroke-dasharray:1701.30810546875px}100%{stroke-dashoffset:0;stroke-dasharray:1701.30810546875px}}@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:800.70703125px;stroke-dasharray:800.70703125px}100%{stroke-dashoffset:0;stroke-dasharray:800.70703125px}}@keyframes animate-svg-fill-3{0%{fill:transparent}100%{fill:rgb(0,0,0)}}.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:675.9906616210938px;stroke-dasharray:675.9906616210938px}100%{stroke-dashoffset:0;stroke-dasharray:675.9906616210938px}}@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}@keyframes animate-svg-stroke-5{0%{stroke-dashoffset:556.825439453125px;stroke-dasharray:556.825439453125px}100%{stroke-dashoffset:0;stroke-dasharray:556.825439453125px}}@keyframes animate-svg-fill-5{0%{fill:transparent}100%{fill:rgb(0,0,0)}}.svg-elem-5{animation:animate-svg-stroke-5 1s cubic-bezier(0.47,0,0.745,0.715) 0.48s both,animate-svg-fill-5 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.2000000000000002s both}@keyframes animate-svg-stroke-6{0%{stroke-dashoffset:701.3861083984375px;stroke-dasharray:701.3861083984375px}100%{stroke-dashoffset:0;stroke-dasharray:701.3861083984375px}}@keyframes animate-svg-fill-6{0%{fill:transparent}100%{fill:rgb(255,14,0)}}.svg-elem-6{animation:animate-svg-stroke-6 1s cubic-bezier(0.47,0,0.745,0.715) 0.6s both,animate-svg-fill-6 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.3s both}@keyframes animate-svg-stroke-7{0%{stroke-dashoffset:319.4571838378906px;stroke-dasharray:319.4571838378906px}100%{stroke-dashoffset:0;stroke-dasharray:319.4571838378906px}}@keyframes animate-svg-fill-7{0%{fill:transparent}100%{fill:rgb(255,14,0)}}.svg-elem-7{animation:animate-svg-stroke-7 1s cubic-bezier(0.47,0,0.745,0.715) 0.72s both,animate-svg-fill-7 0.7s cubic-bezier(0.47,0,0.745,0.715) 1.4000000000000001s 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);
}

.title.tar::after {
    left: initial;
    right: 0;
}

/*----------------LINKTURN------------------------*/
.linkTurn {
    --size: 11rem;
    width: var(--size);
    height: var(--size);
    display: inline-block;
    font-size: 1.05em;
    font-family: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    word-spacing: 0.3em;
    text-decoration: none;
    -webkit-font-smoothing: auto;
    margin-top: 30px;
    z-index: 1;
    position: relative;
}
.link__svg {
    width: 100%;
    height: auto;
    transform-box: fill-box;
    fill: var(--white);
    stroke: var(--white);
    background: var(--primary-color);
    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);
}
.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(45deg);}
.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);
}

@keyframes rotateReverse {
    0%{
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*-----------------*/
/* HEADER */
/*-----------------*/
#header {
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
}

#logoCoordonnees {
    margin: 0 40px;
    text-align: center;
}

#header.fixed-header .navigmenu .naviglink.lvl-0
{
    padding: 20px 14px;
}

#header-coordonnees
{
    padding: 15px;
    gap: 10px;
}


#logoCoordonnees img
{
    height: 100%;
    width: 100%;
}

#infotelportButton,#infotelfixeButton,.buttonHead a {
    background-color: var(--primary-color);
    padding: 6px 20px 6px 40px;
    border-radius: 50px!important;
    transition: 250ms all ease-in-out;
    display: inline-block;
    margin-left: auto;
    margin-bottom: -15px
}

.buttonHead a {
    line-height: 1.5;
    overflow: hidden;
    font-family: var(--font-text);
    font-size: 14px;
    text-transform: initial
}

.buttonHead a::before {
    --size: 15px;
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    width: var(--size);
    height: var(--size);
    background-image: url(../images/icons/mail-white.svg)
}

#infotelportButton span,#infotelfixeButton span {
    display: none
}

#infotelportButton:hover,#infotelfixeButton:hover {
    background-color: var(--secondary-color)
}

#infotelportButton a,#infotelfixeButton a {
    color: var(--white)
}

#infotelportButton:before,#infotelfixeButton:before {
    background-image: url(../images/icons/mobile-white.svg);
    left: 15px
}

#infotelfixeButton:before {
    background-image: url(../images/icons/phone-white.svg)
}

.infohoraires_other{
    color: var(--primary-color);
    font-size: 1.2em;
}


/*----------------- BTN LINE -----------------*/
.btnLine {
    background: none!important;
    padding: 0!important;
    line-height: 28px;
    color: var(--white);
    letter-spacing: 1px;
    font-size: 11px;
    font-family: var(--font-bold);
    text-transform: uppercase;
    position: relative
}

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

.btnLine:hover::after {
    transform: scaleX(0);
    transform-origin: bottom right
}
/*-----------------*/
/* NAVPRIMARY */
/*-----------------*/
.navigtoogle:not(.social,.logo) span:before, .urgence span::before {
    position: absolute;
    top: -2px;
    left: -7px;
    box-sizing: content-box;
    padding: 0 5px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    content: "";
    opacity: 0;
    transition: opacity .2s , transform .2s;
    transform: scale(.8333);
    backface-visibility: hidden;
    border-radius: 5px
}

.navigtoogle:not(.social,.logoParent).active .naviglink.lvl-0 span:before, .navigtoogle:not(.social,.logoParent) .naviglink.lvl-0:hover span:before, #navprimary .urgence span::before {
    opacity: 1;
    transform: scale(1.2)
}

.navigtoogle:not(.social,.logoParent).active .naviglink.lvl-0, .navigtoogle:not(.social,.logoParent) .naviglink.lvl-0:hover, #navprimary .urgence {
    transform: scale(.8333);
    color: var(--primary-color);
}

.navigmenu .naviglink.lvl-1, #navprimary .urgence span::before {
    font-family: var(--font-text)
}

#navprimary .urgence span
{
    --red:#f00;
    color: var(--red);
}

#navprimary .urgence span::before
{
    border-color: var(--red);
}

/*-----------------*/
/* HEADERHOME */
/*-----------------*/
.beforeHeader
{
    background-image: url(../images/backgroundFond1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: absolute;
    top: 0%;
    left: 0;
    --size: 100%;
    width: var(--size);
    height:var(--size);
}
.beforeHeader .overlay
{
    background: var(--black);
    opacity: 0.9;
}
#banner .overlay,.imageDiapo .overlay
{
    background: linear-gradient(to bottom,#000,#00000020);
}
#headerHome-accroche
{
    max-width: 800Px;
    margin: 0 auto;
}
/*-----------------*/
/* CONTENT / INTRODUCTION */
/*-----------------*/
.dateBig
{
    font-size: 5em;
    position: absolute;
    top: -75px;
    left: 50%;
    transform:translateX(-50%);
    font-family: var(--font-alt);
    color: var(--primary-color);
}

.home #content::before
{
    background-image: url(../images/backgroundFond1.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.home #content:after
{
    background: var(--black);
    opacity: 0.9;
}
.home #content::before,.home #content:after
{
    height: 60%;
    top: auto;
    bottom: 0;
}

.home #content .doubleImg {
    flex-wrap: nowrap !important;
    max-width: 516px;
    margin-left: auto;
    padding: 0 25px;
    position: relative;
    top: -122px;
    margin-bottom: -130px;
    grid-gap: 0;
}

.home #content .doubleImg .wp-block-image img {
    object-fit: cover;
    width: 100%;
}

.home #content .doubleImg .wp-block-column:first-child {
    width: 28%;
    position: relative;
    top: 95px;
    flex-basis: auto !important;
    z-index: 2;
}

.home #content .doubleImg .wp-block-column:first-child .wp-block-image img {
    height: 250px;
    min-width: 131%;
}

.home #content .doubleImg .wp-block-column:last-child {
    width: 72%;
    flex-basis: auto !important;
    z-index: 0;
}

.home #content .doubleImg .wp-block-column:last-child .wp-block-image img {
    height: 450px;
    border-radius: 0 0 200px 200px;
    overflow: hidden;
}

.home #content .has-medium-font-size {
    max-width: 640px;
    font-size: 32px !important;
    line-height: 1.4;
    font-weight: normal;
    font-family: var(--font-title);
    -webkit-font-smoothing: auto;
}

.home #content .has-medium-font-size strong {
    font-family: var(--font-title);
    color: var(--secondary-color);
}

.home #content .has-medium-font-size:after {
    content: "";
    width: 193px;
    height: 1px;
    background-color: var(--secondary-color);
    display: block;
    margin: 40px 0;
}


/*-----------------*/
/* 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 */
/*-----------------*/
#prestations
{
    background: var(--black);
    overflow: hidden;
 }
.widget_parentpage
{
    counter-reset: actus;
}
.bloc_prestations
{
    counter-increment: actus;
}

.bloc_prestations::before
{
    position: absolute;
    --pos: 30px;
    top: var(--pos);
    left: var(--pos);
    --size: 100px;
    width: var(--size);
    height: var(--size);
    content: attr(data-i) " -";
    font-family: var(--font-title);
    font-size: 3em;
    color: var(--primary-color);
}
.nthwords
{
    font-size: 0.5em;
    color: var(--primary-color);
    /* font-family: var(--font-alt); */
}
.prestations-img 
{
    position: relative;
}
.prestations-img img
{
    transition: all 0.4s;
}
.points
{
    position: absolute;
    z-index: -1;
    transition: all 0.6s;
    --size: 10px;
    width: var(--size);
    height: var(--size);
    transform: rotate(45deg);
    background: var(--primary-color);
    --deplacement : 50px;
}
.points:nth-child(1),.points:nth-child(2)
{
    top: var(--deplacement);
}
.points:nth-child(3),.points:nth-child(4)
{
    bottom: var(--deplacement);
}
.points:nth-child(1),.points:nth-child(3)
{
    left: var(--deplacement);
}
.points:nth-child(2),.points:nth-child(4)
{
    right: var(--deplacement);
}
.bloc_prestations :is(.title_content,.prestations-content .content_link, .prestations-content .tc_excerpt)
{
    color: var(--white);
}
.lutins
{
    background-image: url(../images/lutin.svg);
    background-position: bottom right;
    background-repeat: repeat-x;
    background-size: contain;
    height: 100px;
    width: 100%;
    left: 0;
    top: initial;
    bottom: -50px;
}
.lutins.white
{

    background-image: url(../images/lutinWhite.svg);
}
#prestations .shape
{
    position: absolute;
    top: 0;
    left: 0;
    --size: 100%;
    width: var(--size);
    height: var(--size);
    overflow: hidden;
    pointer-events: none;
}
#prestations .shape::after
{
    background-image: linear-gradient(to right, #ececec 1px, transparent 1px), linear-gradient(to bottom, #ececec 1px, transparent 1px);
    background-position: 0 0;
    background-size: calc(100vw / 32) calc(100vw / 32);
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%) rotate(15deg);
    --size: 150%;
    width: var(--size);
    height: var(--size);
    opacity: 0.05;
}
.bloc_prestations blockquote p {
    color: var(--white);
}
.home :is(#prestations) :is(.image_content, .specialthumb, .tertiarythumb, .wp-block-image,.wp-block-media-text__media)
{
    transition: initial;
}
/*-----------------*/
/* ACTU / NEWS */
/*-----------------*/
#news {
    background-image: url(../images/home-bg1.jpg);
}
#news .overlay
{
    z-index: -1;
}
#news .wrapper_inner_slider {
    background: none;
    display: flex;
    padding-top: 35px;
    padding-bottom: 35px;
    align-items: center;
}

#news .wrapper_slider:not(:first-child) .wrapper_inner_slider {
    border-top: solid 1px #e8e8e87a;
}

#news .title_slider {
    text-transform: uppercase;
    font-size: 20px;
    font-family: var(--font-bold);
}

#news .content_slider {
    width: 38%;
    flex: 0 0 auto;
    padding: 0 30px;
}

#news .title_link_slider:not(:hover) {
    color: var(--white)
}

#news .next_slider {
    margin: auto 0 auto auto;
}

#news .text_slider {
    flex: 0 0 auto;
    width: 36%;
    font-size: 16px;
}

#news .thumbnail_slider {
    --size: 180px;
    width: calc(var(--size) / 1.15);
    height: var(--size);
    min-width: calc(var(--size) / 1.15);
}

#news .thumbnail_slider>a {
    overflow: hidden;
    display: block;
    height: 100%;
    --size: 200px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    left: -25px;
    position: relative;
}


#news .thumbnail_slider:before,
#news .thumbnail_slider:after {
    --size: 6px;
    background: var(--primary-color);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    z-index: 1;
    left: auto;
    right: 5px;
}

#news .thumbnail_slider:before {
    top: 10px;
    right: 10px;
    --size: 20px;
}

#news .wrapper_slider:hover .thumbnail_slider {
    width: 0;
}

#news .wrapper_slider:hover .content_slider {
    transform: translateX(0);
}

#news .wrapper_slider:hover .text_slider {
    transform: translateX(0);
}
/*-----------------*/
/* SECTIONS */
/*-----------------*/
#choixSections {
    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;
    transition: 250ms all ease-in-out;	
	filter: brightness(0) invert(1);
}

.subimageSections {
    --size: 60px;
    border-radius: 100px;
    background-color: var(--tertiary-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:after {
    bottom: 0;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136,183,213,0);
    border-top-color: var(--primary-color);
    border-width: 9px;
    left: 50%;
    margin-left: -8px;
    opacity: 0;
    transition: 250ms all ease-in-out
}

#choixSections .linkSections.active .subimageSections:after {
    opacity: 1;
    bottom: -16px
}



/*-----------------*/
/* REASSURANCES */
/*-----------------*/
.home #reassurances
{
    z-index: 1;
}
#reassurances .overlay {
    z-index: -1;
}

#reassurances::before {
    background: url(../images/home-bg2.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover
}
#reassurances .picto-container li p,#reassurances h2
{
    color: var(--white);
}
#reassurances .picto-bloc {
    position: relative
}

#reassurances .picto-container .picto-bloc:nth-child(2n) {
    margin-top: 60px
}
#reassurances .picto-container 
{
    counter-reset: reassurances;
}

#reassurances .picto-container .picto-bloc:before {
    content: "";
    --size: 100px;
    width: var(--size);
    height: var(--size);
    font-size: 70px;
    text-align: center;
    line-height: 150px;
    border-radius: 68% 32% 27% 73% / 60% 62% 38% 40%;
    -webkit-transition: .3s;
    transition: .3s;
    display: inline-block;
    background-color: var(--black);
    position: relative;
    color: var(--secondary-color);
    position: absolute;
    left: 50%;
    z-index: -1;
    margin-left: -50px;
    top: -30px;
    opacity: 0.5;
}

#reassurances .picto-container .picto-bloc:after {
    content: "0" counter(reassurances);
    --size: 30px;
    counter-increment: reassurances;
    position: absolute;
    font-size: 11px;
    font-weight: 700;
    background: var(--secondary-color);
    color: #fff;
    height: var(--size);
    width: var(--size);
    display: grid;
    align-content: center;
    justify-content: center;
    border-radius: 50%;
    text-align: center;
    left: calc(50% - 50px);
    top: -30px;
    font-family: var(--font-title)
}

#reassurances .picto-container li p
{
    font-family: var(--font-bold);
    text-transform: uppercase;
    max-width: 190Px;
    display: inline-block;
}


/*-----------------*/
/* REASSURANCESBis */
/*-----------------*/
.nohome #reassurancesBis {background-image: url(../images/home-bg2.jpg);}

.nohome #reassurancesBis .picto-container li {
    position: relative;
    flex: 1 1 50%;
    text-align: left;
    flex-direction: row;
    padding: 19px 40px
}

.nohome #reassurancesBis .picto-container li:first-child, 
.nohome #reassurancesBis .picto-container li:nth-child(3) {
    text-align: right;
    flex-direction: row-reverse
}

.nohome #reassurancesBis .picto-container {flex-wrap: wrap}

.nohome #reassurancesBis .picto-container li p {
    margin: 0 0 0 40px;
    text-transform: uppercase;
    font-family: var(--font-bold);
    letter-spacing: 1px;
    color: var(--white)
}

.nohome #reassurancesBis .picto-container li:first-child:before, 
.nohome #reassurancesBis .picto-container li:nth-child(3):before {
    right: 20px;
    left: auto
}

.nohome #reassurancesBis .picto-container li:first-child p, 
.nohome #reassurancesBis .picto-container li:nth-child(3) p {margin: 0 40px 0 0}

.nohome #reassurancesBis .picto-container li:before {
    content: "";
    --size: 70px;
    width: var(--size);
    height: var(--size);
    border: solid 2px var(--primary-color);
    position: absolute;
    top: 0;
    left: 20px
}

.home #reassurancesBis {
    z-index: 3;
    overflow: hidden;
    height: 300px;
    display: grid;
    align-items: center;
    position: relative;
    margin-bottom: -60px;
    margin-top: -120px;
}

.home #reassurancesBis .picto-container li {
    flex-direction: row;
    margin: 0;
    padding: 0 50px;
    min-width: max-content;
    color: var(--white);
}

.home #reassurancesBis .picto-container li svg, 
.home #reassurancesBis .picto-container li img {--size: 25px;}

#reassurancesBis.picto-container li p {
    color: var(--white);
    font-family: var(--font-bold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home #reassurancesBis .picto-container li p {margin: 0 0 0 14px;color: var(--background-color);font-family: var(--font-title);}

.home #reassurancesBis-container {
    background: var(--primary-color);
    transform: rotate(3deg);
    padding: 20px 100px;
    box-sizing: border-box;
    width: calc(100% + 100px);
    max-width: calc(100% + 100px);
    left: -50px;
    position: relative;
}

.home #reassurancesBis .picto-container {
    animation: marquee 80s linear infinite;
    position: relative;
    flex-wrap: nowrap;
    flex-direction: row;
}

.home #reassurancesBis-containerBis {
    content: "";
    background: var(--title-color);
    transform: rotate(-3deg);
    z-index: -1;
    padding: 0 70Px;
    width: calc(100% + 100Px);
    max-width: calc(100% + 100Px);
    left: -50Px;
    position: absolute;
    height: 70px;
    display: flex;
    align-items: center;
}

.home #reassurancesBis-containerBis span {
    color: var(--white);
    font-size: 15px;
    font-family: var(--font-title);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.home #reassurancesBis-containerBis span:last-child {margin-left: auto;}
@keyframes marquee {
    0% { left: 0%; }
    50% { left: -100%;}
    100% { left: 0%;}
}
/*-----------------*/
/* PARTENAIRES */
/*-----------------*/

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

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

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


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

.wrapperContact {
    padding: 0;
    background: var(--white);
    box-shadow: 0px 0px 30px #1a1a2612;
    width: auto;
}

#wrapperForm {
    padding: 50px;
}

#wrapperForm .title {
    margin-bottom: 30px;
}

.imgContact {
    background: url(../images/home-bg1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgContact_content {
    padding: 50px 30px;
}

.imgContact_content img {
    width: 260px;
    margin-bottom: 30px;
}

.imgContact_content .title {
    margin-bottom: 40px;
}

#footerLinks {
    padding: 20px;
    /* margin: 0 auto 50px; */
    border-top: 1px solid rgb(0 0 0 / 10%);
}

#footer #footerbloc {
    padding: 40px 15px;
}

body.template-contact-php #footer:before,
body.template-contact-php #footer:after {
    content: none
}

#logoCoordonneesFooter img
{
    height: 120px;
}
