* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    image-orientation: none;
}

html {
    overflow-y: scroll !important;
}

body {
    font-family: "Fira Sans", sans-serif;
    font-size:18px; 
    color:#000000;
    font-weight: 400;
    margin: 0;
    background-color:#ffffff;
    line-height: 1.4;
}

@media (max-width:600px) {
    body {font-size:16px;}
}


#menu, .slicknav_menu {
    display: none;
}

html {height:100%;}



.wrapper-header{
    display: flex;
    flex-direction: column;

    position: relative;
    z-index: 1000000000;
    
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);

    font-size: 20px;
}

.page-accueil .wrapper-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}


/* HEADER LOGO */
.wrapper-header div.logo {
    flex-shrink: 0;
    z-index: 100000;
    height: 100%;

    margin: 1.5em 0 -1em 1.5em;

    filter: drop-shadow(0.5em 0.5em 1em rgba(0, 0, 0, 0.3));
}

.wrapper-header a.logo {
    text-decoration: none;
    color: currentColor;
    position: relative;
    display: inline-block;
}

.wrapper-header div.logo img {
   vertical-align: top;
   width: 20em;
   height: auto;
}


/* HEADER TOP */
.wrapper-header .header-top {
    position: absolute;
    top: 0;
    right: 1em;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-start;
    
    align-items: center;
    gap: 1em;
}

.header-top h3 {
    font-family: "Fira Sans", sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    color: #54565A;
    text-align: right;
    padding: 4px 0;
}
.header-top h3 strong {
    font-weight: 700;
}
.header-top h3 br {
    display: none;
}

.header-top-reseaux {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-top-reseaux a {
    background-color: #54565A;
    width: 2.5em;
    height: 2.5em;
    border-radius: 0 0 0.4em 0.4em;

    transition: background-color 0.2s ease;
}

.header-top-reseaux a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: top;
}

.header-top-reseaux a:hover {
    background-color: #94C641;
}

/* HEADER BOTTOM */
.wrapper-header .header-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

/* MENU */
.wrapper-menu{
    text-align: center;
    position: relative;
    z-index: 2;

    width: 100%;
    margin: 0 auto;

    padding-right: 1.5em;
}
.wrapper-menu .menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    height: 100%;
}
.wrapper-menu .menu > li{
    position: relative;
    z-index: 10;
}

.wrapper-menu .menu a,
.wrapper-menu .menu span{
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 400;
    font-size: 1.2em;
    line-height: 1.2;
    color: #000000;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 1.2em 1em;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 1em 1em 0 0;
}


.wrapper-menu .menu-item > a::before,
.wrapper-menu .menu-item > span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--selected-color);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform 0.2s ease;
}


/* ON HOVER */
.wrapper-menu .menu-item:hover > a,
.wrapper-menu .menu-item:hover > span {
    background-color: rgba(148, 198, 65, 0.3);
}

.wrapper-menu .menu-item:hover > a::before,
.wrapper-menu .menu-item:hover > span::before {
    transform: scaleY(1);
}

/* ON SELECTED */
.wrapper-menu .menu-item.selected > a,
.wrapper-menu .menu-item.selected > span {
    background-color: #94C641;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.wrapper-menu .menu-item.selected > a::before,
.wrapper-menu .menu-item.selected > span::before{
    transform: scaleY(1);
}



.wrapper-menu .menu span div.menu-arrow {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.wrapper-menu .menu-item.selected .menu-arrow {
    filter: brightness(0) invert(1);
} 

.wrapper-menu .sousmenu{
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 100%;
    list-style: none;
    padding: 0;
    background-color: #fff;
    z-index: -1;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.15);
}


.wrapper-menu .sousmenu::before {
    content: '';
    position: absolute;
    top: 0px;
    height:10px;
    left: 0px;
    width: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.1) 5px, rgba(0, 0, 0, 0) 10px);
    pointer-events: none;
}
.wrapper-menu .sousmenu a{
    color: #000;
    text-decoration: none;
    padding: 17px 15px;
    text-align: center;
    text-transform: uppercase;
    text-align: center;
    display: block;
    line-height: 1.15;
    font-size: 1em;
    font-weight: 400;
    border-radius: 0;
    white-space: nowrap;
}

.wrapper-menu .sousmenu a:hover{
    background-color: rgba(148, 198, 65, 0.3);
}

.wrapper-menu .sousmenu .selected a {
    background-color: #94C641;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.wrapper-menu .menu li:hover > ul{
    display: block;
}



/* BURGER */
.wrapper-header .burger-btn{
    position: relative;
    margin-left: auto;
    margin-right: 15px;
    margin-bottom: 15px;
    width: 40px;
    height: 40px;
    padding: 15px;
    background-color: #94C641;
    border: none;
    display: none;
    cursor: pointer;
    z-index: 100000;
    align-self: flex-end;
    transition: background 0.2s ease;
}
.wrapper-header  .burger-btn .line{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: inline-block;
    width: 22px;
    height: 2px;
    background: #fff;

    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);

    transition: transform 0.2s ease;
}


.wrapper-header .burger-btn .line:first-child{
    transform: translate(-50%, -10px); /* 8px + 2px de la hauteur*/
}
.wrapper-header .burger-btn .line:last-child{
    transform: translate(-50%, 8px);
}
.wrapper-header.open .burger-btn .line:first-child{
    transform: translate(-50%, -50%) rotate(45deg);
}
.wrapper-header.open .burger-btn .line:nth-child(2){
    transform: translate(-50%, -50%) scaleX(0);
}
.wrapper-header.open .burger-btn .line:last-child{
    transform: translate(-50%, -50%) rotate(-45deg);
}


@media (max-width: 1650px) {
    .wrapper-header {
        font-size: 19px;
    }
}

@media (max-width: 1520px) {
    .wrapper-header {
        font-size: 18px;
    }
}

@media (max-width: 1430px) {
    .wrapper-header {
        font-size: 17px;
    }
}
@media (max-width: 1370px) {
    .wrapper-header {
        font-size: 16px;
    }
}

@media (max-width: 1280px) {
    .wrapper-header div.logo {
        font-size: 14px;
        margin: 1em 0 -1em 1em;
    }

    .wrapper-menu .menu a, .wrapper-menu .menu span {
        padding: 1em 0.8em;
    }
}

@media (max-width: 1170px) {
    .wrapper-header {
        font-size: 15px;
    }
    .wrapper-header div.logo {
        font-size: 12px;
    }
}

@media (max-width: 1080px) {
    .wrapper-header .header-top {
        right: 15px;
    }

    .wrapper-header:not(.showslidemenu),
    .wrapper-header:not(.showslidemenu) .wrapper-menu{
        transition: none;
    }

    body.nav-open{
        height: 100vh;
        height: 100dvh;
        overflow-y: hidden;
    }

    .wrapper-header .burger-btn{
        display: block;
    }

    .wrapper-header .wrapper-menu {
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 100000;
        background-color: rgba(0, 0, 0, 0.7);
        width: 100%;
        opacity: 0;
        padding: 0;
        transition: opacity 0.2s ease;
        opacity: 0;
        pointer-events: none; 
        height: 100vh;      
        height: 100dvh;      
    } 

    .wrapper-header.open .wrapper-menu{
        opacity: 1;
        pointer-events: all;
    }

    .wrapper-header .wrapper-menu .menu {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 10px 70px 10px 10px;
        height: 100%;
        background: #fff;
        transform: translateX(100%);
        min-width: 240px;
        transition: transform 0.2s ease-out;
        transform-origin: top right;
        max-width: 350px;
        margin-left: auto; 
        overflow: auto;
    }
    .wrapper-header.open .wrapper-menu .menu {
        transform: translateX(0);
        counter-reset: menu-item;
    }


    .wrapper-header .wrapper-menu .menu a,
    .wrapper-header .wrapper-menu .menu span {
        padding: 10px;
        width: 100%;
        text-align: left;
        height: auto;
        counter-increment: menu-item;
        
    }

    .wrapper-header .menu > li {
        width: 100%;
    }
    .wrapper-header .wrapper-menu a{
        position: relative;
    }
    .wrapper-header .menu-item:hover {
        background: inherit;
    }

    .wrapper-header .wrapper-menu .sousmenu{
        position: static;
        box-shadow: none;
        display: none;
        background: transparent;
        padding-left: 15px;
        transform: none;
    }
    .wrapper-header .sousmenu::before {
        content: none;
    }

    .wrapper-menu .menu li:hover:not(.open) > ul {
        display: none;
    }

    .wrapper-header .menu-item:hover.open .sousmenu,
    .wrapper-header .menu-item.open .sousmenu {
        display: block;
    }
    .wrapper-header .menu-item.open div.menu-arrow {
        transform: none;
    }

    .wrapper-header .wrapper-menu .sousmenu a{
        font-weight: 500;
        padding: 10px 10px;
        text-align: left;
        font-size: 16px;
        text-transform: none;
    }

    .wrapper-menu .menu span div.menu-arrow {
        position: static;
        transform: none;
        margin-left: 5px;
        transform: rotate(-90deg);
    }


    .wrapper-header .header-top {
        font-size: 14px;
    }


    .wrapper-menu .menu-item > a::before,
    .wrapper-menu .menu-item > span::before {
        width: 5px;
        height: 100%;
    }

}

@media (max-width: 870px) {
    .wrapper-header .header-top {
        align-items: flex-start;
        font-size: 13px;
    }
    .header-top h3 br {
        display: initial;
    }
}


@media (max-width: 700px) {
    .header-top h3 .s1 {
        display: none;
    }
}


@media (max-width: 570px) {
    .header-top h3 {
        display: none;
    }
}

@media (max-width: 400px) {
    .wrapper-header div.logo {
        font-size: 10px;
    }

    .wrapper-header .header-top {
        right: 10px;
    }
    .wrapper-header .burger-btn {
        margin-bottom: 10px;
        margin-right: 10px;
    }

    .header-top-reseaux {
        gap: 8px;
    }
}


/* FOOTER */
.wrapper-full-footer {
    position: relative;
    background: #54565A;
}

.wrapper-footer {
    color: #fff;
    position: relative;
    font-weight: 400;

    display: grid;
    grid-template-columns: 2fr 1fr;
}


.wrapper-footer a {
    text-decoration: none;
    color: currentColor;
}
.wrapper-footer a:hover {
    color: #94C641;
}


/* FOOTER */
.wrapper-footer-inner {
    position: relative;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;

    padding: clamp(80px, 10vw, 160px) 0 50px;
    width: 100%;
    margin: 0 auto;

    z-index: 1;

    background: url('i/bg-footer.png') center bottom no-repeat;
    background-size: 100% auto;
}


.footer-1, .footer-2 {
    width: 50%;
}

.wrapper-footer-inner .footer-inner {
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    max-width: 400px;
}

.footer-inner h3 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.5em;
    margin-bottom: 1em;
    font-weight: 700;
    font-family: "Fira Sans", sans-serif;
}

.footer-inner p {
    margin: 0;
}
.footer-inner address {
    font-style: normal;
    font-weight: 400;
}

.wrapper-footer .footer-lien-plan {
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
}


.footer-inner .footer-email {
    font-weight: 700;
    display: inline-block;
    margin-top: 20px;
}

.footer-1 h3 span {
    font-weight: 400;
}

.footer-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-2 ul li a {
    text-transform: uppercase;
    font-weight: 400;
    display: inline-block;
    padding: 2px 0;
}

.footer-2 ul ul li a {
    color: #A8A8A8;
}

.footer-reseaux {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.footer-reseaux a {
    filter: brightness(0) invert(1);
}

.footer-reseaux a img {
    width: auto;
    height: 30px;
    vertical-align: top;
}

.footer-right {
    background-color: #94C641;
    border-left: 1em solid #fff;
    padding: 0 20px;

    padding-top: clamp(80px, 10vw, 160px);

    min-width: 450px;
}
.footer-right .footer-inner {
    max-width: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    margin: 0 auto;
}

.footer-right .footer-logo {
    margin-bottom: 20px;
}

.footer-right h3 {
    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
    text-transform: none;
    margin: 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
    font-size: 28px;
    margin-top: 2em;
    line-height: 1.5;
}

.wrapper-footer .mentions{
    color: #B6B6B6;    
    font-size: 18px;
}

div.mentions {
    position: relative;
    max-width: 1000px;
    margin: auto;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #B6B6B6;
    margin-top: clamp(200px, 30vw, 300px);
}


div.mentions a {
    color: #B6B6B6;
    font-weight: 700;
    text-decoration: none;
}
div.mentions a:hover {
    color: #fff;
}


.footer-partenaires {
    display: flex;
    gap: 40px 20px;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
    align-items: center;
    padding: 20px;
}

.footer-partenaires img {
    vertical-align: top;
}


@media (max-width: 1070px) {
    .footer-right .footer-logo {
        width: 300px;
    }

    .footer-right .footer-logo-1994 {
        width: calc(200px * 300/400);
    }

    .footer-1, .footer-2 {
        width: 100%;
    }

    .footer-right h3 {
        font-size: 24px;
    }

    .footer-right {
        min-width: 400px;
    }


    .footer-partenaires img {
        width: calc(var(--width) * 2/3);
        height: auto;
    }
}


@media (max-width: 750px) {
    .wrapper-footer {
        grid-template-columns: 1fr;
    }

    .footer-right {
        order: -1;
        border-left: none;
        border-bottom: 1em solid #fff;

        padding: 40px 20px 25px;
        min-width: 0;
    }

    .wrapper-footer-inner {
        padding: 40px 20px;
    }
    
}


/* CONTENU */

input.form_submit,
a.bouton {
    display: inline-block;
    color: #fff;
    background: #94C641;
    border: none; 
    border-radius: 8px 0 8px 8px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    padding: 1em 1em;
    font-weight: 700;
    font-size: 1em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-align: center;
    transition: background-color 0.2s ease;
}

a.bouton.bouton-blanc {
    color: #55575B;
    background: rgba(255, 255, 255, 1);
}

a.bouton:hover,
input.form_submit:hover {
    background-color: #7bb32e;
}
a.bouton.bouton-blanc:hover {
    background: rgba(255, 255, 255, 0.8);
}

a.bouton img {
    filter: brightness(0) invert(1);
}


.wrapper-site {
    /* overflow: hidden; */ /* Quand il est activé le sticky ne fonctionne plus */
}



.wrapper-contenu {
    background: #ffffff;
    z-index: 1;
    position: relative;
}

.wrapper-boxed-contenu {
    max-width: 1180px;
    margin: auto;
}

.wrapper-boxed {
    position: relative;
}

.page-accueil .wrapper-boxed {
    background: url('i/contenu.svg') bottom right no-repeat;
    background-size: clamp(300px, 60%, 800px) auto;
    padding-bottom: 90px;
}

.boxed {
    max-width: 1480px;
    margin: auto;
}

div.padding { padding:70px 30px 70px 30px;}

@media (max-width:900px) {
    div.padding {
        padding:45px 20px 35px 20px;
    }
}
@media (max-width:660px) {
    div.padding { 
        padding:30px 15px 10px 15px;
    }
}




h1,h2.h1 {
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 600;
    line-height: 1.05;
    color: #94C641;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    font-family: "Fira Sans", sans-serif;
}

h1::before {
    content: '';
    position: absolute;
    top: 0.1em;
    left: 0;
    width: 0.8em;
    aspect-ratio: 1 / 1;
    background: url(i/h1.svg) center center no-repeat;
    background-size: contain;
    transform: translateX(-120%);
}

span.dl {
    display: block;
    text-transform: uppercase;
    color: #54565A;
    font-family: "Fira Sans", sans-serif;
    font-size: 0.6em;
    line-height: 1;
    font-weight: 300;
    margin-top: 0.1em;
}
span.dl .fin {
    font-weight: 400;
}

h2 {
    margin: 0;
    font-weight: 600;
    color: #54565a;
    position: relative;
    line-height: 1.1;
    font-size: calc(clamp(26px, 4vw, 48px) * 36/48);
    margin-bottom: -1rem;
    text-transform: uppercase;
}

h3 {  
    font-size: clamp(22px, 4vw, 26px);
    font-weight: 800;
    color: #54565a;
    margin: 0;
    line-height: 1;
    margin-bottom: -1rem;
}






.justify  { text-align:justify;}
div.center  { text-align:center;}


a.lien:link,
a.lien:visited {
    color: #94C641;
    font-weight: 700;
    text-decoration: none;
}

a.lien:hover {
    color: #78a234;
    text-decoration: none;}


a.lienpetit:link,a.lienpetit:visited {font-size:15px;color:#94C641; font-weight:700; text-decoration:none; }
a.lienpetit:hover{color:#78a234;text-decoration:none;}

span.petit {
    font-size: 16px;
}



.list-3-columns {-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;}

.list-2-columns {-webkit-column-count: 2; 
-moz-column-count: 2;
column-count: 2;}



@media (max-width:800px) {
    .list-3-columns {-webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;}
}
@media (max-width:490px) {
    .list-3-columns, .list-2-columns {-webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;}
}



ul.list-3-columns li, ul.list-2-columns li {-webkit-column-break-inside: avoid;
          page-break-inside: avoid;
               break-inside: avoid;}



ul.puce {
    margin: 0;
    padding: 0;
	margin-top:5px;
	margin-bottom:5px;
    padding-left:10px;
}
ul.puce > li {
    position: relative;
    list-style-type:none;
    padding-left: 14px;
    overflow: hidden;
}
ul.puce > li::before{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    top: 10px;
    background: url(i/puce.svg) center center no-repeat;
    background-size: contain;
    vertical-align: middle;
}



ul.images {
    padding:0px;
    margin:0;
    list-style-type:none;
}

ul.images li {
    float:left;
}

ul.images div.i {
    display:block;
    margin:auto;
    text-align:center;
}

ul.n2 li {width:50%;}
ul.n3 li {width:33.33%;}
ul.n4 li {width:25%;}
ul.n5 li {width:20%;}

ul.n2 li, ul.n3 li, ul.n4 li, ul.n5 li {padding-left:10px;padding-right:10px;}


@media (max-width:880px) {
    ul.n4 li {width:50%;margin-bottom:20px;}
}




@media (max-width:560px) {
	ul.n2 li, ul.n3 li, ul.n4 li, ul.n5 li {width:100%;margin-bottom:20px;}
	ul.images li {float:none;}
}



input[type=text],
input[type=email],
input[type=url],
input[type=password],
textarea {
  width: 90%;
  width: 100%;
  background: rgb(255, 255, 255);
  border: none;
  padding: 5px;
  color: #333;
  border: 1px solid #333;
  border-radius: 0;
}
input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=url]:focus-visible,
input[type=password]:focus-visible,
textarea:focus-visible {
    border-radius: 0;
}



div.right { float:right; padding-left:16px; max-width: 100%;}
div.left { float:left; padding-right:16px;max-width: 100%;}

div.right-responsive {float:right; padding-left:16px;max-width:100%;}
div.left-responsive {float:left; padding-right:16px;max-width:100%;}

div.right-responsive-xl {float:right; padding-left:16px;max-width:100%;}
div.left-responsive-xl {float:left; padding-right:16px;max-width:100%;}


@media (max-width:800px) {
    div.right-responsive-xl {float:none;width:auto;padding:0;padding-bottom:20px;text-align: center;}
    div.left-responsive-xl {float:none;width:auto;padding:0;padding-bottom:20px;text-align: center;}
}

@media (max-width:560px) {
    div.right-responsive {float:none;width:auto;padding:0;padding-bottom:20px;text-align: center;}
    div.left-responsive {float:none;width:auto;padding:0;padding-bottom:20px;text-align: center;}
}


div.dessous {clear:both;height: 0px;}


.obligatoire {font-size:15px; color:#d42010; font-weight:bold; }

input.contact,textarea.contact {color:#111111; background-color:#f4f7f8; border:solid #333 1px; font-size:15px;}

input.contact_pb,textarea.contact_pb {  color:#111111; background-color:#f4f7f8; border:solid #ff0000 1px; font-size:15px;}
input.frmsubmit {  background-color:#d42010; border:#d42010 1px solid; height:22px; width:90px; cursor:hand;  font-size:15px; color:#000; font-weight:bold;  text-decoration:none;}

.cadresubmit { border:1px #111111 solid; }

.pagination_inactif { color:#c6bdbd; font-weight:normal; font-style:normal;}
a.lienpagination:link,a.lienpagination:visited,a.lienpagination:hover,a.lienpagination:active  {   color:#000; font-weight:bold; text-decoration:none;display:block;width:100%;}
a.lienpaginations:link,a.lienpaginations:visited,a.lienpaginations:hover,a.lienpaginations:active  {   color:#000; font-weight:bold; text-decoration:none;display:block;width:100%;}
.cadrepagination {}
.cadrepaginations {background-color:#d42010;pointer-events: none; }
a.lienpaginations{color: #fff!important;}
a.lienpaginations[href="#"] {pointer-events: none; color: #fff;}
table.pagination {background-color:#CCC;border:1px solid #ccc;background-image:url(i/pagination.gif);background-repeat:repeat-x;background-position:top;}

div.pagination {
    background-color: transparent;
    padding: 6px;
    overflow: hidden;
    font-size: 14px;
}
div.detail-pagination {
    background-color: transparent;
    padding: 6px 0;
    overflow: hidden;
    font-size: 14px;
}

.arrow-next {
    padding-left:6px;
    display: inline-block;
    vertical-align: middle;
}

.arrow-previous {
    padding-right:6px;
    display: inline-block;
    vertical-align: middle;
}

.arrow-next img,
.arrow-previous img {
    height: 0.8em;
    width: auto;
}



@media (max-width:580px) {
    td.cadrepaginations, td.cadrepagination {display: none;}
}

.form_header {
    background: #54565A;
    padding: 4px 20px!important;
    color:#ffffff;text-align:left;
    text-transform: uppercase;text-align: center;font-weight: 700;
}
form table:nth-of-type(1) {    
/*    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
    border: 1px solid #dedede;*/
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}

.formulaire-message-envoye {
    padding: 20px;
    background: #54565A;
    margin-top: 20px;
    color: #fff;
}

sup{
    color: #d42010;
    font-weight: 700;
    font-size: 16px;
    vertical-align: top;
}
.error{color:#d42010;font-weight: 600; font-size: 15px;}
.form_label {font-weight:normal;}
.form_input {}
div.form_note {font-style:italic;font-size:10px;}

#form {
    color:#333333;
    background-position: center center;
}

#form textarea {
    resize: vertical;
    min-height: 50px;
}

.formulaire-envoyer {margin-top:25px;text-align: center;}

.formulaire-champs-requis {
    display: inline-block;
    margin-left: 20px;
    font-size: 12px;
}

img {max-width: 100%;height:auto;}

div.wrapper-padding {padding-left:20px;padding-right:20px;}

@media (max-width:400px) {
	div.wrapper-padding {padding-left:14px;padding-right:14px;}
}

#menu {
    display:none;
}

@media (max-width:500px) {
	div.justify {text-align: left;}
}

a.back-to-top {
    display: none;
    width: 38px;
    height: 38px;
    text-indent: -9999px;
    position: fixed;
    z-index: 9999999;
    right: 0;
    transform: translateX(-50%);
    bottom: 20px;
    background: #000 url("i/arrow-up.svg") no-repeat center center;
    background-size: 20px 20px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.27);
    transition: all 0.2s ease-in-out 0s;
}

a.back-to-top:hover {
    background-size: 24px 24px;
    background-color: #000;
}



iframe {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}



div.galerie-photo {width:33.33%;display:inline-block;vertical-align: top;padding:18px;text-align: center;}

div.galerie-photo img, ul.images img {margin-bottom: 7px;}

@media (max-width:800px) {
    div.galerie-photo {width:50%;}
}


@media (max-width:500px) {
    div.galerie-photo {width:100%;}
}

img.cadrephoto, img.ombre, ul.images img {
    box-shadow: 0px 3px 8px rgba(9, 9, 13, 0.3);
}

a.lien-actu {color:inherit;text-decoration: none;}

div.col1-2 {display:inline-block;vertical-align:top;width:48%;}
div.col2-2 {display:inline-block;vertical-align:top;margin-left:4%;width:48%;}


@media (max-width:700px) { 
    div.col1-2 {display:inline-block;vertical-align:top;width:100%;}
    div.col2-2 {display:inline-block;vertical-align:top;margin-left:0%;width:100%;margin-top:15px;}
}


div.col1-3, div.col2-3, div.col3-3 {display:inline-block;width:30%;vertical-align: top;}
div.col2-3, div.col3-3 {margin-left:5%;}


@media (max-width:880px) {
    div.col1-3, div.col2-3, div.col3-3 {width:50%;margin-bottom: 10px;margin-left:0%;padding-left:2%;padding-right: 2%;}

}

@media (max-width:480px) {
    div.col1-3, div.col2-3, div.col3-3 {width:100%;margin-bottom: 10px;margin-left:0%;}

}


.wrapper-flex-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}
.wrapper-flex-columns.items-center {
    align-items: center;
}

.wrapper-flex-columns > br {
    display: none;
}

.wrapper-flex-columns .wrapper-col {
    flex: 1;
    min-width: min(450px, 100%);
    position: relative;
}



.style-galerie {
    border:1px solid #d8d8d8;background:rgba(0,0,0,0.05);position:relative;max-width: 760px;
    margin: auto;
}

.wrapper-galerie {
        float: none;
        width:100%;
        max-width:720px;
        margin:auto;margin-bottom: 20px;
    }

.photo_commentaire {display: block;text-align: center;text-decoration: none !important;color:#000;padding-top:5px;}


.ilightbox {text-decoration: none;}

.h2-puce {
    vertical-align: -1px;
    padding-right: 3px;
}

.wrapper-bande {}
.wrapper-boxed-bande {max-width: 1180px;margin:auto;}

body label[for="element7i0"] {font-size: 12px;line-height: 1.1;}

div.map iframe {vertical-align: top;}

.actualite-galerie {margin-top:20px; margin-bottom: 20px;}
/* isotope */

.isotope-grid-item { width: 25%; }

@media (max-width:1200px) {
    .isotope-grid-item { width: 33%; }
}

@media (max-width:520px) {
    .isotope-grid-item { width: 50%; }
}

@media (max-width:350px) {
    .isotope-grid-item { width: 100%; }
}

.pix-masonry-photo {
    padding: 10px;
    text-align: center;
}



.pswp {z-index: 150000000;}


.detail-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
}
.detail-pagination a.lien {
    color: #000 !important;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    text-transform: uppercase;
    margin: 5px 0;
    display: inline-block;
    font-family: "Noto Sans", sans-serif;
    font-variation-settings: "wdth" 75;
}

.back-list {
    width: 100%;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.detail-pagination .show-next {
    text-align: right;
}

.show-previous .lien {
    padding-left: 2px;
    transition: padding 0.2s ease;
    
}
.show-previous .lien:hover {
    padding-left: 0;
    padding-right: 2px;
}
.show-next .lien {
    padding-right: 2px;
    transition: padding 0.2s ease;
}
.show-next .lien:hover {
    padding-right: 0;
    padding-left: 2px;
}


.liste-pagination {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.liste-pagination > div {
    display: inline-block;
    width: 100%;
}

.liste-pagination > div:first-of-type{text-align: left;}
.liste-pagination > div:nth-of-type(2){text-align: center;}
.liste-pagination > div:last-of-type{text-align: right;}

.liste-pagination a.lien {
    color:#282828 !important;
    font-weight: 700;
    font-style: normal;
    font-family: "Noto Sans", sans-serif;
    font-variation-settings: "wdth" 75;
    text-transform: uppercase;
    font-size: 18px;
}


@media (max-width: 700px) {
    .detail-pagination .show-previous {width: 100%;}
    .detail-pagination .show-next {width: 100%;}
}






.form_label {
    
    font-weight: 500;
}


.form label[for="element7i0"] {font-size: 13px;color: #c6c6c6;}


.div-centre {text-align: center;}
.div-centre h2 {display: inline-block;}



.pswp {z-index: 1500000000 !important;}





/* BANDEAU SWIPER */
.pix-bandeau-swiper {
    aspect-ratio: 1920 / 900;
    position: relative;
    user-select: none;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;

    border-radius: 0 0 90px 90px;
}


.pix-bandeau-swiper .swiper-slide .swiper-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920 / 900;
    background-position: center center;
    background-size: cover;
}
.pix-bandeau-swiper .swiper-slide img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pix-bandeau-swiper .swiper-slide {
    position: relative;
    background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
}

.pix-bandeau-swiper video {
    pointer-events: none;
}
.pix-bandeau-swiper video[poster]{
    height:100%;
    width:100%;
    object-fit: cover;
}

.pix-bandeau-swiper .swiper-button-prev::after,
.pix-bandeau-swiper .swiper-button-next::after {
    content: none;
}
.pix-bandeau-swiper .swiper-button-prev,
.pix-bandeau-swiper .swiper-button-next {
    width: 30px;
    height: 30px;
    background: #94C641 url('i/arrow-right.svg') no-repeat center center / 100% 100%;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.pix-bandeau-swiper .swiper-button-prev {
    transform: rotate(180deg);
}
.pix-bandeau-swiper:hover .swiper-button-prev,
.pix-bandeau-swiper:hover .swiper-button-next {
    opacity: 0.7;
}
.pix-bandeau-swiper .swiper-button-prev:hover,
.pix-bandeau-swiper .swiper-button-next:hover {
    opacity: 1;
}

.pix-bandeau-swiper .swiper-slogan {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    width: 45%;
    text-align: left;
    z-index: 10;
    text-shadow: 1px 1px 2px rgba(0,0,0,1);
}
.pix-bandeau-swiper .swiper-slogan  h3 {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.3;
    font-size: clamp(16px, 3.2vw, 62px);
    color: #fff;
}
.pix-bandeau-swiper .swiper-slogan  h3::after {
    content: none;
}
.pix-bandeau-swiper .swiper-slogan  h3 span {
    font-style: italic;
    font-weight: 200;
    display: block;
    font-size: 0.75em;
}
.pix-bandeau-swiper .swiper-slogan  h3::after {
    content: none;
}


@media (max-width: 1020px) {
    .pix-bandeau-swiper {
        height: 470px;
        aspect-ratio: auto;
    }

    .pix-bandeau-swiper {
        border-radius: 0 0 70px 70px;
    }
}

@media (max-width: 800px) {
    .pix-bandeau-swiper {
        height: 380px;
    }

    .pix-bandeau-swiper {
        border-radius: 0 0 60px 60px;
    }
}


@media (max-width: 400px) {
    .pix-bandeau-swiper {
        height: 250px;
    }

    .pix-bandeau-swiper {
        border-radius: 0 0 45px 45px;
    }
}



/* SLOGAN */
.slogan {
    padding: 20px;
    background: rgba(34, 51, 83, 0.1);
    position: relative;
    z-index: 1;
}



/* FORMULAIRES */
.formulaire {
    display: block;
}
.formulaire tbody {
    display: block;
}
.formulaire tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.formulaire th {
    text-align: left;
    padding: 0 20px;
    margin-bottom: 3px;
}
.formulaire td {
    padding: 0 20px;
    line-height: 1;
}
.formulaire td input:not([type="checkbox"]), .formulaire td textarea {
    width: 100%;
}
.formulaire-envoyer {
    text-align: left;
}





/* FICHE TERRAIN/MAISON */
.wrapper-fiche {
    margin-top: 30px;
}
.wrapper-fiche h1 {
    margin-bottom: 0.3em;
}

.wrapper-fiche .fiche-content {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: 'content map' 'galerie map';
    position: relative;
    margin-bottom: 50px;
}

.wrapper-fiche .detail-texte {
    grid-area: content;
}

.wrapper-fiche .fiche-map {
    grid-area: map;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    max-height: calc(100dvh - 40px); /* 40px = padding haut + bas */
    overflow: auto;
    align-self: flex-start;
    position: sticky;
    top: 20px;
    margin-left: 20px;

    width: min(400px, 40vw);
}
.wrapper-fiche .fiche-map .map-embed {
    height: 500px;
    width: 100%;
}

.wrapper-fiche .fiche-galerie {
    grid-area: galerie;
}

.wrapper-fiche .fiche-galerie .isotope-grid-item {
    width: 50%;
}

.wrapper-fiche .fiche-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 30px;
}
.wrapper-fiche .fiche-tags .fiche-tag {
    display: inline-block;
    color: #3d3d3d;
    background: transparent;
    border: 1px solid #3d3d3d;
    border-radius: 8px;
    text-decoration: none;
    padding: 0.5em 0.75em;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
}

.wrapper-fiche .fiche-lots .lot-description {
    font-size: 0.8em;
    font-style: italic;
}
.wrapper-fiche .fiche-lots .lot-prix {
    white-space: nowrap;
}

.wrapper-fiche .fiche-lots tr {
    position: relative;
}
.wrapper-fiche .fiche-lots .tag {
    position: absolute;
    top: 0px;
    left: 0;
    font-size: 12px;
    color: #fff;
    display: inline-block;
    padding: 0px 2px;
}

.wrapper-fiche .fiche-lots .lot-vendu {
    opacity: 0.5;
}
.wrapper-fiche .fiche-lots .lot-vendu .tag {
    background: #d42010;
}
.wrapper-fiche .fiche-lots .lot-option .tag {
    background: #0088fb;
}


@media (max-width: 700px) {
    .wrapper-fiche .fiche-content {
        grid-template-columns: 1fr;
        grid-template-areas: 'content' 'map' 'galerie';
    }
    .wrapper-fiche .fiche-map {
        margin-left: 0;
        margin-bottom: 20px;
        margin-top: 40px;
        max-height: none;
        position: static;
        width: 100%;
    }

    .wrapper-fiche .fiche-map .map-embed {
        height: 300px;
    }

    .wrapper-fiche .fiche-galerie .isotope-grid-item {
        width: 50%;
    }
}

@media (max-width: 500px) {
    .wrapper-fiche .fiche-galerie .isotope-grid-item  {
        width: 100%;
    }
}


/* TEMOIGNAGES */
.wrapper-bande-temoignages {
    position: relative;
    text-align: center;
    padding: clamp(50px, 7vw, 100px) 100px calc(clamp(50px, 7vw, 100px) * 120/100) clamp(100px, 30vw, 200px);

    background: url('i/bg-temoignages.jpg') no-repeat left center / cover;
}
@media 
(-webkit-min-device-pixel-ratio: 1.5), 
(min-resolution: 144dpi) {
    .wrapper-bande-temoignages {
        background-image: url('i/bg-temoignages-2x.jpg');
    }
}


.boxed-bande-temoignages {
    max-width: 1180px;
    margin: 0 auto;
    
    position: relative;
    z-index: 10;
}

.boxed-bande-temoignages .temoignages-inner {
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 70px 50px 0 rgba(148, 198, 65, 0.7);
    padding: 60px 30px;
}

.wrapper-bande-temoignages h2 {
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #54565A;
    font-weight: 700;
    font-family: "Fira Sans", sans-serif;
    font-size: calc(clamp(24px, 4vw, 50px) * 64/50);
}

.wrapper-bande-temoignages .swiper-pagination {
    position: static;
    margin: 0 auto;
    transform: none!important;
    margin-top: 20px;
    --swiper-theme-color: #54565A;
}

.wrapper-bande-temoignages a {
    color: currentColor;
    text-decoration: none;
}
.wrapper-bande-temoignages q {
    position: relative;
    font-style: italic;
    font-weight: 300;
    font-size: 1.4em;
    color: #54565A;

    display: inline-block;
    padding: 0 100px;
}
.wrapper-bande-temoignages q::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background: url('i/quote.svg') no-repeat center center / 100% 100%;
    transform: translateY(-30%);
}
.wrapper-bande-temoignages q::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: url('i/quote.svg') no-repeat center center / 100% 100%;
    transform: scaleX(-1) translateY(30%);
}
.wrapper-bande-temoignages .temoignage-auteur {
    font-weight: 600;
    margin-top: 20px;
    font-size: 1.3em;
    color: #54565A;
}



.deco-temoignages-mots {
    position: absolute;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    text-align: center;
    line-height: 1;
    z-index: 2;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 40px;

    display: flex;
    flex-direction: column;
    gap: 10px;
    
    font-family: "Fira Sans", sans-serif;

    font-size: 30px;
}

.deco-temoignages-mots span:nth-child(1) {
    text-align: left;
    background: rgba(147, 198, 65, 0.8);
    color: #fff;
    padding: 0.7em 0.3em;
}
.deco-temoignages-mots span:nth-child(2) {
    text-align: center;
    background: rgba(84, 86, 90, 0.4);
    color: #fff;
    padding: 0.7em 0.3em;
}
.deco-temoignages-mots span:nth-child(3) {
    text-align: right;
    background: rgba(147, 198, 65, 0.8);
    color: #fff;
    padding: 0.7em 0.3em;
}




@media (max-width: 1090px) {
    .boxed-bande-temoignages {
        font-size: 16px;
    }
    .wrapper-bande-temoignages q {
        padding: 0 70px;
    }
    .wrapper-bande-temoignages q::before,
    .wrapper-bande-temoignages q::after {
        width: 60px;
        height: 60px;
    }

    .deco-temoignages-mots {
        font-size: 20px;
        left: 20px;
    }
    
    .boxed-bande-temoignages .temoignages-inner {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 30px 30px 0 rgba(148, 198, 65, 0.7);
    }

    .wrapper-bande-temoignages {
        padding: 70px 50px 70px 100px;
    }
}


@media (max-width: 830px) {
    .wrapper-bande-temoignages {
        background-size: 100% auto;
        background-image: url('i/bg-temoignages-mobile.jpg');
        background-position: bottom left;
    }
}
@media 
(-webkit-min-device-pixel-ratio: 1.5) and (max-width: 830px), 
(min-resolution: 144dpi) and (max-width: 830px) {
    .wrapper-bande-temoignages {
        background-image: url('i/bg-temoignages-mobile-2x.jpg');
    }
}


@media (max-width: 630px) {
    .deco-temoignages-mots {
        writing-mode: horizontal-tb;
        transform: none;
        top: auto;
        left: 0;
        bottom: 20px;
        width: 100%;

        font-size: 16px;
    }

    .wrapper-bande-temoignages {
        padding: 40px 50px 230px 25px;
    }

    .wrapper-bande-temoignages q {
        padding: 40px 0;
    }

    .wrapper-bande-temoignages q {
        font-size: 1.2em;
    }
}


/* LOGO CAROUSEL LINEAR INFINITE */
.wrapper-bande-marques {
    overflow: hidden;
    padding: 60px 0;
    background: #ffffff;
    white-space: nowrap;
    position: relative;
    z-index: 10;
    box-shadow: 0px 0px 23.6px 2px rgba(0, 0, 0, 0.24);
}

.marques-slide {
    width: max-content;
    animation: 35s slide infinite linear;
    animation-duration: calc(var(--nb-logos) * 3s); /* 3s par logo */
    /* min-width: 100vw; */
    display: inline-block;
    text-align: center;
}


.marques-slide img {
    margin: 0 40px;
}

@keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
}

@media (max-width: 550px) {
    .marques-slide img {
        margin: 0 30px;
    }
}




/* CARD POUR LES ACTUS, FICHES ETC */
.pix-card {
    position: relative;
    text-decoration: none;
    color: currentColor;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    
    background-color: #fff;
    box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.2);
    
    overflow: hidden;

    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.pix-card-image {
    width: 100%;
}
.pix-card-image img {
    vertical-align: top;
    aspect-ratio: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pix-card-content {
    font-size: 25px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;

    padding: 1.75em 1em 1em 1em;

    background: #54565A;

    position: relative;
}

.pix-card-content::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 0;
    width: 100%;
    height: 1em;
    background: #54565A;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    z-index: 0;
    transform: translateY(-100%);
}

.pix-card-title {
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    font-size: 1em;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}
.pix-card-subtitle {
    font-size: 0.8em;
    font-weight: 400;
    margin: 0;
    margin-bottom: 0.5em;
    margin-top: 0.1em;
    color: #fff;
}

.pix-card-description {
    font-size: 0.7em;
    margin: 0;
    margin-top: 0.4em;
}

.pix-card .voir-plus {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateY(-70%) translateX(-50%);
    text-transform: uppercase;

    margin-top: auto;

    background: #94C641;
    border-radius: 50%;
    width: 2em;
    height: 2em;
}
.pix-card .voir-plus img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 900px) {
    .pix-card-content {
        font-size: 22px;
    }
}

@media (max-width: 500px) {
    .pix-card-content {
        font-size: 20px;
    }
}

.pix-card.fiche .pix-card-price {
    font-size: 0.7em;
    font-weight: 700;
    margin: 0;
    margin-bottom: 1em;
    margin-top: 0.4em;
    color: #303030;
}



/* CARD QUAND ON EST EN MAP */
.pix-card.map-view {
    box-shadow: none;
}
.pix-card.map-view .pix-card-image img {
    width: 200px;
}
.pix-card.map-view .pix-card-content {
    padding: 0.3em;
    padding-top: 1em;
    font-size: 20px;
}

@media (max-width: 500px) {
    .pix-card.map-view .pix-card-content {
        font-size: 17px;
    } 
}






/* GRILLE LISTE DES FICHES */
.wrapper-liste-fiches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 980px) {
    .wrapper-liste-fiches {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .wrapper-liste-fiches {
        grid-template-columns: 1fr;
    }
}


/* FORMULAIRE DE RECHERCHE DES FICHES */
.form-search-fiches {
    display: flex;
    flex-direction: row;
    gap: 1em;
    padding: 1.5em 1em;
    background: rgba(148, 198, 65, 0.4);
}

.form-search-fiches .form-control {
    display: flex;
    flex-direction: column;
}


.form-search-fiches .form-control label {
    font-size: 16px;
    margin-bottom: auto;
}

@media (max-width: 700px) {
    .form-search-fiches {
        flex-direction: column;
        gap: 0.5em;
    }
    .form-search-fiches .form-group {
        width: 100%;
    }
}


/* PIX SELECT FORM */
.pix-select {
    position: relative;
    min-width: 15ch;
    max-width: 30ch;
    border: 1px solid #000;
    padding: 0;
    font-size: 1em;
    cursor: pointer;
    line-height: 1.1;
    background-color: #fff;
    display: inline-block;
}
.pix-select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    color: #000;
    font-weight: 400;
    border: none;
    padding: 0.25em 2em 0.25em 0.5em;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    cursor: inherit;
    line-height: inherit;
    z-index: 1;
    outline: none;
    width: 100%;
    font-size: 18px;
}

.pix-select select::-ms-expand {
    display: none;
}

.pix-select::after {
    content: "";
    display: inline-block;
    position: absolute;
    width: 0.8em;
    height: 0.5em;
    background-color: #000;
    -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    clip-path: polygon(100% 0%, 0 0%, 50% 100%);
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}




/* PARTENAIRES */
.pix-liste-partenaires {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.pix-liste-partenaires .pix-card-image {
    padding: 15px;
    aspect-ratio: 2 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 5px;
}
.pix-liste-partenaires .pix-card-image img {
    width: auto;
    height: auto;
    aspect-ratio: initial;
}

.pix-liste-partenaires .pix-card-content {
    padding-top:0px;
}


.pix-liste-partenaires .pix-card-description {
    text-align: center;
}

.pix-card .voir-plus {
    padding-top:0px;
}

.pix-liste-partenaires .pix-card-content {
    background: transparent;
}

.pix-liste-partenaires .pix-card-content::before {
    content: none;
}

.pix-liste-partenaires .voir-site {
    text-align: center;
    font-size: 0.8em;
    color: #545454;
    text-transform: uppercase;
    font-family: "Fira Sans", sans-serif;
    font-weight: 400;
}



@media (max-width: 750px) {
    .pix-liste-partenaires {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 450px) {
    .pix-liste-partenaires {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



/* TEMOIGNAGES */
.temoignagefull-content {
    margin-bottom: 30px;
    font-style: italic;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); 
    padding: 20px;
    background: #ffffff;
}
.temoignagefull-auteur {
    font-weight: 700;
    margin-top: 10px;
    font-style: normal;
}



.menu-actualites ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;
}

.menu-actualites ul li {
    margin: 0px;
}

.menu-actualites ul li a {
    display: inline-block;
    color: #000;
    background: transparent;
    border: 2px solid #000;
    border-radius: 8px;
    text-decoration: none;
    padding: 0.5em 0.75em;
    font-weight: 700;
    font-size: 0.8em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-align: center;
    transition: background-color 0.2s ease;
}
.menu-actualites ul li a.current {
    color: #fff;
    background: #000;
}




.wrapper-bande-accueil {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1920px;
    margin: 0 auto;
    margin-top: -90px;
    position: relative;
    z-index: 2;
}

.bande-accueil-inner {
    border-radius: 90px 90px 0 0;
}

.bande-accueil-inner h2 {
    margin-top: 0.2em;
    font-family: "Fira Sans", sans-serif;
    font-size: clamp(24px, 4vw, 50px);
}

.bande-accueil-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;

    padding: clamp(30px, 8vw, 70px) 20px;
    color: #fff;
}

.bande-accueil-inner.bande-terrains {
    background: #94C641 url('i/terrains.jpg') no-repeat center center / cover;
}
.bande-accueil-inner.bande-avant-projets {
    background: #54565A url('i/avant-projets.jpg') no-repeat center center / cover;
}

.bande-accueil-inner.bande-terrains h2 {
    text-shadow: 4px 4px 8px rgba(0,0,0,0.25);
}

@media 
(-webkit-min-device-pixel-ratio: 1.5), 
(min-resolution: 144dpi) {
    .bande-accueil-inner.bande-terrains {
        background-image: url('i/terrains-2x.jpg');
    }
    .bande-accueil-inner.bande-avant-projets {
        background-image: url('i/avant-projets-2x.jpg');
    }
}


.bande-accueil-content h2 {
    color: #fff;
    margin-bottom: 0.5em;
}

.bande-accueil-content span.dl {
    color: #fff;
}

.bande-accueil-content .bouton {
    margin-top: 2em;
}

.bande-accueil-content .icone {
    width: 190px;
}


@media (max-width: 1000px) {
    .wrapper-bande-accueil {
        grid-template-columns: 1fr;
    }

    .bande-accueil-inner.bande-terrains {
        padding-bottom: 90px;
    }
    .bande-accueil-inner.bande-avant-projets {
        margin-top: -90px;
    }

    .bande-accueil-content .icone {
        width: 140px;
    }
}

@media (max-width: 500px) {
    .bande-accueil-content .icone {
        width: 100px;
    }
}

@media (max-width: 400px) {
    .bande-accueil-inner {
        border-radius: 45px 45px 0 0;
    }
    .bande-accueil-inner.bande-terrains {
        padding-bottom: 45px;
    }
    .bande-accueil-inner.bande-avant-projets {
        margin-top: -45px;
    }

}





.wrapper-bande-realisations {
    position: relative;
    background: #333333 url('i/bg-realisations.jpg') no-repeat center center / cover;
    display: flex;
    flex-direction: row-reverse;
}

.wrapper-bande-realisations h2 {
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(-180deg);
    text-align: center;
    line-height: 1;
    z-index: 2;
    margin: 0;
    margin-right: 0.5em;
    padding-top: 0.4em;
    padding-bottom: 0.4em;
    padding-left: 0.3em;
    padding-right: 0.15em;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: clamp(30px, 6vw, 90px);
    color: #6F6F6F;
    border-left: currentColor 4px solid;


    font-family: "Fira Sans", sans-serif;
    font-weight: 700;
}

.wrapper-bande-realisations .swiper-realisations {
    width: 100%;
    padding: 30px 80px;
    overflow: hidden;
    align-self: center;
}


.wrapper-realisation {
    position: relative;
    vertical-align: top;
    color: #fff;
    text-decoration: none;

    aspect-ratio: 4 / 5;
    display: inline-block;

    max-width: 400px;
    margin: 0 auto;
}

.wrapper-realisation img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}

.wrapper-realisation .realisation-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    filter: drop-shadow(0 -2px 8px rgba(0,0,0,0.4));
}

.wrapper-realisation .realisation-content h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.1;
    color: #fff;

    background: #54565A;
    padding: 2em 1em 1em 1em;
    text-align: center;
    clip-path: polygon(0 1em, 100% 0, 100% 100%, 0 100%);
}

.wrapper-realisation .realisation-content .voir-plus {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 2.6em;
    height: 2.6em;
    border-radius: 50%;
    background: #94C641;
}
.wrapper-realisation .realisation-content .voir-plus img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



@media (max-width: 1600px) {
    .wrapper-bande-realisations .swiper-realisations {
        padding-inline: 40px;
    }
}
@media (max-width: 1150px) {
    .wrapper-bande-realisations .swiper-realisations {
        padding-inline: 20px;
    }
}

@media (max-width: 650px) {
    .wrapper-realisation {
        font-size: 16px;
    }
}




/* GRILLE LISTE DES ACTUS */
.wrapper-liste-actualites {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wrapper-liste-actualites .wrapper-actu {
    width: calc(1 / 3* 100% - 40px);
}
.wrapper-liste-actualites .wrapper-actu .actu {
    width: 100%;
    max-width: none;
}

@media (max-width: 960px) {
    .wrapper-liste-actualites {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .wrapper-liste-actualites {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.wrapper-fiche .fiche-map:empty {
    display: none;
}








/* BANDE CHIFFRES */
.wrapper-bande-chiffres {
    background: #54565a;
    color: #fff;

    display: flex;
    flex-direction: row;
}


.bande-chiffres-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;

    margin: 0 auto;
    padding: 20px 40px 20px 40px;
    width: 100%;

    overflow: hidden;
}

.bande-chiffres-inner .swiper-chiffres {
    width: 100%;
}

.bande-chiffres-inner > br {
    display: none;
}

.bande-chiffres-inner .wrapper-chiffre {
    margin: 0 auto;
    font-size: 20px;
    height: 100%;
}

.bande-chiffres-inner .wrapper-chiffre .chiffre-inner {
    max-width: 280px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bande-chiffres-inner .wrapper-chiffre .chiffre-inner img {
    width: 4em;
    height: 4em;
    vertical-align: top;
}

.bande-chiffres-inner .wrapper-chiffre .chiffre {
    font-style: normal;
    font-family: "Fira Sans", sans-serif;
    font-weight: 800;
    font-size: 2.5em;
    line-height: 1;
    color: #94C641;

}
.bande-chiffres-inner .wrapper-chiffre .chiffre span {
    font-variant-numeric: tabular-nums;
}
.bande-chiffres-inner .wrapper-chiffre h3 {
    font-weight: 400;
    font-size: 1em;
    color: #fff;
    margin-top: 0.5em;
    position: relative;
    line-height: 1.2;
    font-family: "Fira Sans", sans-serif;
    margin-bottom: 0;
}


@media (max-width: 1200px) {
    .bande-chiffres-inner {
        padding: 20px 20px 20px 20px;
    }

    .bande-chiffres-inner .wrapper-chiffre {
        font-size: 18px;
    }
}

@media (max-width: 700px) {
    .bande-chiffres-inner .wrapper-chiffre {
        font-size: 16px;
    }
}

@media (max-width: 520px) {
    .bande-chiffres-inner .wrapper-chiffre {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .bande-chiffres-inner {
        padding: 10px 20px;
    }
}


.wrapper-bande-extensions {
    background: url('i/bande-extensions.jpg') no-repeat bottom left;
    background-size: auto 100%;
}
.wrapper-bande-extensions .wrapper-boxed {
    background: none;
}

@media (max-width: 1000px) {
    .wrapper-bande-extensions {
        background-size: 130% auto
    }
}

@media 
(-webkit-min-device-pixel-ratio: 1.5), 
(min-resolution: 144dpi) {
    .wrapper-bande-extensions {
        background-image: url('i/bande-extensions-2x.jpg');
    }
}