/*-----------------*/
/* LOADER */
/*-----------------*/
.circular {
  -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    --size: 50vw;
    width: var(--size);
    height: var(--size);
    --maxsize: 50px;
    max-width: var(--maxsize);
    max-height: var(--maxsize);
  transform-origin: center center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
          animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@-webkit-keyframes color {
  100%, 0% {
    stroke: var(--primary-color);
  }
  40% {
    stroke: var(--secondary-color);
  }
  66% {
    stroke: var(--primary-color);
  }
  80%, 90% {
    stroke: var(--secondary-color);
  }
}
@keyframes color {
  100%, 0% {
    stroke: var(--primary-color);
  }
  40% {
    stroke: var(--secondary-color);
  }
  66% {
    stroke: var(--primary-color);
  }
  80%, 90% {
    stroke: var(--secondary-color);
  }
}

.showbox {
  padding: 5%;
}
/*-----------------*/
/* ELEMENTS */
/*-----------------*/
a
{
    display: inline-block;
}
.tc_content a:not([class*="button"])
{
    display: inline;
}
.thumbnail_slider a:not(.button)
{
    height: 100%;
    width: 100%;
}
.title:not(.no-after):after,hr.wp-block-separator {
    background-color: #fff0!important;
    background-image: url(../images/emphase.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 20px;
    width: 120px;
}
/*------------------- BUTTON ---------------------*/
.underbutton>*, .button, .tc_content .wp-block-button__link
{
    background-image: linear-gradient(to right,var(--secondary-color) 0%,var(--primary-color) 51%,var(--secondary-color) 100%);
    background-size: 200% auto;
}
.underbutton>*:hover,.button:hover,.tc_content .wp-block-button__link:hover{
    background-position: right center
}
.underbutton>*:after, .button:after, .tc_content .wp-block-button__link:after {
    content: "";
    position: absolute;
    background-image: url(../images/leaf.png);
    background-position: center;
    width: 30px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    right: -10px;
    top: -25px;
}
/*-----------------*/
/* HEADER */
/*-----------------*/
#info-toogle {
    display: flex;
    justify-self: flex-end;
    position: relative;
    border-radius: 50%;
}
#info-toogle::before
{
    display: none;
}

#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)
}

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(--white);
    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 svg circle{stroke: var(--white);}
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 {
    position: fixed;
    top: 0;
    /* right: -110%; */
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 70px 40px 65px;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    opacity: 0;
    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;
    pointer-events: none;
    will-change: opacity, transform;
}
#header-coordonnees>*
{
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}
body.is-toggle-open #header-coordonnees>*
{
    pointer-events: all;
}
#header-coordonnees .flex>div {
    margin: 15px 0;
}

body.is-toggle-open #header-coordonnees {
    right: 0;
    opacity: 1;
    top: 0;
    pointer-events: auto;
}
#header-coordonnees #logoCoordonnees {
    order: -1;
    margin-bottom: 30px;
}
#header-coordonnees:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: var(--black);
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    -webkit-transform: scale(.04) , translateY(9999px);
    transform: scale(.04) , translateY(9999px);
    overflow: hidden;
}
.is-toggle-open #header-coordonnees:before{
    -webkit-animation: menu-animation .8s 
    ease-out forwards;
        animation: menu-animation .8s 
    ease-out forwards;
}

.wrapCoord
{
    opacity: 0;
    transition: all 0.4s;
    transition-delay: 0.4s;
}

.is-toggle-open .wrapCoord
{
    opacity: 1;
}

@keyframes menu-animation {
    0% {
        background: var(--primary-color);
        opacity: 0;
        -webkit-transform: scale(0.04) translateY(300%);
        transform: scale(0.04) translateY(300%);
    }

    40% {
        background: var(--primary-color);
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
        -webkit-transition: ease-out;
        transition: ease-out;
    }

    40% {
        background: var(--primary-color);
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(0.02) translateY(0px);
        transform: scale(0.02) translateY(0px);
    }

    61% {
        -webkit-transform: scale(0.04);
        transform: scale(0.04);
    }

    99.9% {
        height: 0;
        padding-bottom: 100%;
        border-radius: 100%;
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        height: 100%;
        padding-bottom: 0;
        border-radius: 0;
    }
}
.wrapCoordOnly .horairesBloc
{
    gap: 5px 2px;
}
#seo-header
{
    gap: 20px;
}
#seo-header .button
{
    white-space: nowrap;
    width: auto;
    min-width: fit-content;
}
/*-----------------*/
/* NAVPRIMARY */
/*-----------------*/
.navigmenu .navigtoogle:not(.navigtoogleLogo,.lang) .naviglink.lvl-0 span:after,
.navigmenu .navigtoogle:not(.navigtoogleLogo,.lang)  .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 .navigtoogle:not(.navigtoogleLogo,.lang)  .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  .navigtoogle:not(.navigtoogleLogo,.lang).active .naviglink.lvl-0 {color: var(--primary-color);margin: 0 auto;}

#navprimary .navigmenu .active .naviglink.lvl-0 span:after,
#navprimary .navigmenu .naviglink.lvl-0:hover span:after,
#navprimary .navigmenu .active .naviglink.lvl-0 span:before,
#navprimary .navigmenu .naviglink.lvl-0:hover span:before {
    -webkit-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1)
}

.fixed-header #navprimary .navigmenu .naviglink.lvl-0.item-logo span
{
    height: 50px;
    width: 50px;
    background-size: 100%;
}

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


/*-----------------*/
/* CONTENT / INTRODUCTION */
/*-----------------*/
.has-drop-cap:not(:focus):first-letter
{
    font-family: var(--font-title);
    color: var(--primary-color);
}
.linkTurn {
    --size: 12rem;
    width: var(--size);
    height: var(--size);
    display: inline-block;
    font-size: 15px;
    font-family: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    word-spacing: 0.75em;
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: initial;
    bottom: -90px;
    z-index: 1;
}

.link__svg {
    width: 100%;
    height: auto;
    transform-box: fill-box;
    fill: var(--white);
    stroke: var(--white);
    background: linear-gradient(to bottom right,var(--secondary-color), var(--primary-color) 50%);
    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__svg {
    background-color: var(--secondary-color);
}

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

:is(#content,#reassurances) .link__text {
    -webkit-animation: rotateReverse normal infinite 20s linear;
    animation: rotateReverse normal infinite 20s linear;
    transform-origin: 50% 50%;
}
@keyframes rotateReverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.link--alt {
    font-size: 1.1rem;
    letter-spacing: 0;
}
.eb-feature-list-content,.eb-feature-list-title
{
    color: var(--text-color)!important;
}
.home #content .has-background
{
    background: var(--black)!important;
    color: var(--white)!important;
}
.nohome #content .wp-block-image
{
    margin-bottom: 30px;
}



/*-----------------*/
/* 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 figure.wp-block-gallery.has-nested-images
{
    gap: 0;
}
/*-----------------*/
/* CTA */
/*-----------------*/

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

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

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

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

.bloc_prestations h3
{
    transition: all 0.4s;
}

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

.prestations-content {
    padding: 10px;
}

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

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

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

#prestations .button::after
{
    display: none;
}
/*-----------------*/
/* ACTU / NEWS */
/*-----------------*/
.the-arrow {
    width: 64px;
    transition: all .2s
}

.the-arrow.-left {
    position: absolute;
    top: 24px;
    left: 0
}

.the-arrow.-left>.shaft {
    width: 0
}

.the-arrow.-left>.shaft:before,
.the-arrow.-left>.shaft:after {
    width: 0
}

.the-arrow.-left>.shaft:before {
    transform: rotate(0)
}

.the-arrow.-left>.shaft:after {
    transform: rotate(0)
}

.the-arrow.-right {
    top: 0
}

.the-arrow.-right>.shaft {
    width: 64px;
    transition-delay: .2s
}

.the-arrow.-right>.shaft:before,
.the-arrow.-right>.shaft:after {
    width: 8px;
    transition-delay: .3s;
    transition: all .5s
}

.the-arrow.-right>.shaft:before {
    transform: rotate(40deg)
}

.the-arrow.-right>.shaft:after {
    transform: rotate(-40deg)
}

.the-arrow>.shaft {
    background-color: var(--primary-color);
    display: block;
    height: 1px;
    position: relative;
    transition: all .2s;
    transition-delay: 0;
    will-change: transform
}

.the-arrow>.shaft:before,
.the-arrow>.shaft:after {
    background-color: var(--primary-color);
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: 0;
    right: 0;
    transition: all .2s;
    transition-delay: 0
}

.the-arrow>.shaft:before {
    transform-origin: top right
}

.the-arrow>.shaft:after {
    transform-origin: bottom right
}

.animated-arrow:hover>.the-arrow.-left>.shaft {
    width: 64px;
    transition-delay: .1s
}

.animated-arrow:hover>.the-arrow.-left>.shaft:before,
.animated-arrow:hover>.the-arrow.-left>.shaft:after {
    width: 8px;
    transition-delay: .1s
}

.animated-arrow:hover>.the-arrow.-left>.shaft:before {
    transform: rotate(40deg)
}

.animated-arrow:hover>.the-arrow.-left>.shaft:after {
    transform: rotate(-40deg)
}

.animated-arrow:hover>.main {
    transform: translateX(80px)
}

.animated-arrow:hover>.main>.the-arrow.-right>.shaft {
    width: 0;
    transform: translateX(200%);
    transition-delay: 0
}

.animated-arrow:hover>.main>.the-arrow.-right>.shaft:before,
.animated-arrow:hover>.main>.the-arrow.-right>.shaft:after {
    width: 0;
    transition-delay: 0;
    transition: all .1s
}

.animated-arrow:hover>.main>.the-arrow.-right>.shaft:before {
    transform: rotate(0)
}

.animated-arrow:hover>.main>.the-arrow.-right>.shaft:after {
    transform: rotate(0)
}

.animated-arrow>.main {
    display: flex;
    align-items: center;
    transition: all .2s
}

.animated-arrow>.main>.text {
    margin: 0 16px 0 0;
    line-height: 1
}

.animated-arrow>.main>.the-arrow {
    position: relative
}

.animated-arrow {
    display: inline-block;
    color: var(--white);
    font-size: 12px;
    position: relative;
    transition: all .2s;
    letter-spacing: 2px;
    font-family: var(--font-bold);
    text-transform: uppercase;
    padding: 18px 0 18px 0;
}

#news {
    padding: 120px 30px;
    z-index: 1;
}
#news::before{
    background-image: url(../images/home-bg2.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

#news .content-news {
    grid-gap: 0 60px;
}

#news .wrapper_slider {
    grid-column: span 1;
    border-bottom: solid 1px rgb(255 255 255 / 20%);
    padding-bottom: 30px;
}

#news .wrapper_inner_slider {
    height: auto;
    background: none;
}

#news .wrapper_slider:last-of-type,
#news .wrapper_slider:first-of-type {
    border: none;
    margin: 0;
    padding: 0
}

#news .wrapper_slider:not(:first-of-type) .thumbnail_slider,
#news .wrapper_slider:not(:first-of-type) .text_slider {
    display: none;
}

#news .next_slider {
    margin-top: 10px;
}

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

#news .title_slider {
    font-size: 25px;
}

#news .thumbnail_slider .button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
    color: var(--white);
}

#news .wrapper_slider:first-of-type .text_slider,
#news .wrapper_slider:first-of-type .text_slider a {
    color: var(--white)
}

#news .wrapper_slider:first-of-type .next_slider {
    display: none
}

#listarticles .listedarticle {
    /* background: var(--light-color); */
    height: 100%
}



/*-----------------*/
/* SECTIONS */
/*-----------------*/
#sections::after
{
    z-index: -1;
}
#choixSections {
    counter-reset: sections;
    display: flex;
    justify-content: center;
    position: relative;
    width: 95%;
}

#choixSections:before {
    width: 90%;
    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-title);
    letter-spacing: 1px;
    line-height: 1.3;
    text-align: center;
    color: var(--title-color);
    background: var(--background-color);
    padding: 2px 30px;
    clip-path: polygon(1% 5%, 99% 0%, 94% 100%, 4% 96%);
}

#choixSections .linkSections {
    position: relative;
    cursor: pointer;
    padding: 5px 10px;
    transition: 250ms all ease-in-out;
    text-align: center
}

#choixSections .linkSections.active p {
    background: var(--primary-color);
    color: var(--white);
}

#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(--title-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);
}

#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)
}

.sectionsbloc .wp-block-uagb-faq-child .uagb-faq-questions-button .uagb-question
{
    color: var(--white);
}
.sectionsbloc .uagb-block-003c2754 .uagb-icon svg
{
    fill: var(--white);
}


/*-----------------*/
/* REASSURANCES */
/*-----------------*/
#reassurances {
    background-image: url(../images/home-bg5.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
#reassurances .picto-container li p{
	color: var(--white);
	margin-top: 20px;
    line-height: 1.3em;
    font-family: var(--font-bold);
    text-transform: uppercase;
}

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

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

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

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

/*-----------------*/
/* CONTACTFORM */
/*-----------------*/
.maps_canvas,.imgContact>a
{
    height: 100%;
    width: 100%;
}
.maps_canvas img
{
    object-fit: cover;
}

/*-----------------*/
/* FOOTER */
/*-----------------*/
#footer:before {
    background: url(../images/home-bg7.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-bg7.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;
}
