* {
    -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: "Barlow", sans-serif;
    font-size:18px; 
    color: #1a1a1a;
    font-weight: 400;
    margin: 0;
    background-color: #fdf3e9;
    line-height: 1.4;
}

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


.pix-bandeau-spacer {
    width: 100%;
    height: 70px;
}

.pix-bandeau-swiper-spacer {
    width: 100%;
    height: 150px;
}



#menu, .slicknav_menu {
    display: none;
}

html {height:100%;}



.wrapper-encart {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap:0px;
    flex-wrap: wrap;
}

.encart-inner {    background-color: rgba(255, 255, 255);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px 30px;
    border-radius: 30px 5px 30px 5px; 
height:100% }

.encart {    
    padding:20px;
    max-width: 50%;
    text-align: center;
}

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

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

    font-size: 20px;
}


@media (max-width:900px) {
    .encart {    
        max-width: 100%;}
}




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

.wrapper-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.8vw;
    background: url('i/bg-menu-bottom.svg') repeat-x bottom left;
    background-size: 50% auto;
    filter: brightness(0) saturate(100%) invert(92%) sepia(8%) saturate(668%) hue-rotate(342deg) brightness(91%) contrast(92%);
    pointer-events: none;
}
.wrapper-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: -1;
    background: url('i/bg-menu-bottom.svg') repeat-x top left;
    background-size: 50% auto;
    transform: translateY(100%);
    pointer-events: none;
    filter: drop-shadow(0px -4px 4px rgba(0, 0, 0, 0.5));
}



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

    margin: 0 0 -5em 3.5em;
}

.wrapper-header a.logo {
    text-decoration: none;
    color: currentColor;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;

    background: #fdf3e9;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    padding: 1em 1em 1.5em;
    border-radius: 0 0 1.5em 1.5em;
}

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

.wrapper-header div.logo .stephanie-javogue { 
    font-family: "PT Serif", serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1em;
    line-height: 1;
}
.wrapper-header div.logo .logo-activite {
    font-family: "Barlow", sans-serif;
    font-weight: 300;
    line-height: 1;
    font-size: 0.9em;
    margin-top: 0.2em;
}

/* 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 BOTTOM */
.wrapper-header .header-bottom {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    background-color: inherit;
}

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

    width: 100%;
    margin: 0 auto;

    padding-right: 1.5em;
    padding-bottom: 0.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: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-size: 1.2em;
    line-height: 1.2;
    color: #4b4b4b;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 0.5em 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;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(100%) scale(0.8);
    width: 0.9em;
    height: 0.9em;
    background: url('i/menu-s-2x.png') center center no-repeat;
    background-size: 100% 100%;
    opacity: 0;
    z-index: -1;

    transition: opacity 0.2s ease;
}


/* ON HOVER */
.wrapper-menu .menu-item:hover > a,
.wrapper-menu .menu-item:hover > span {
}

.wrapper-menu .menu-item:hover > a::before,
.wrapper-menu .menu-item:hover > span::before {
    opacity: 0.5;
}

/* ON SELECTED */
.wrapper-menu .menu-item.selected > a,
.wrapper-menu .menu-item.selected > span {

}

.wrapper-menu .menu-item.selected > a::before,
.wrapper-menu .menu-item.selected > span::before{
    opacity: 1;
    transform: translateX(-50%) translateY(100%) scale(1);
}



.wrapper-menu .menu span div.menu-arrow {
    margin-left: 4px;
}

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


.wrapper-menu .sousmenu a{
    color: #4b4b4b;
    text-decoration: none;
    padding: 0.7em 0.7em;
    text-align: center;
    text-transform: uppercase;
    text-align: center;
    display: block;
    line-height: 1.15;
    font-size: 1em;
    border-radius: 0;
    white-space: nowrap;
}

.wrapper-menu .sousmenu a:hover{
    background-color: rgba(197, 115, 48, 0.2);
}

.wrapper-menu .sousmenu .selected a {
    background-color: #c57230;
    color: #fff;
}

.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: #c57230;
    border-radius: 50%;
    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: 20px;
    height: 2px;
    background: #fff;

    transition: transform 0.2s ease;
}


.wrapper-header .burger-btn .line:first-child{
    transform: translate(-50%, -8px); /* 8px + 2px de la hauteur*/
}
.wrapper-header .burger-btn .line:last-child{
    transform: translate(-50%, 6px);
}
.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: 1450px) {
    .pix-bandeau-swiper-spacer {height: 145px;}
    .pix-bandeau-spacer {height: 65px;}
    .wrapper-header {
        font-size: 19px;
    }
}

@media (max-width: 1390px) {
        .pix-bandeau-swiper-spacer {height: 140px;}
    .pix-bandeau-spacer {height: 60px;}
    .wrapper-header {
        font-size: 18px;
    }
}
@media (max-width: 1300px) {
            .pix-bandeau-swiper-spacer {height: 135px;}
    .pix-bandeau-spacer {height: 55px;}
    .wrapper-header {
        font-size: 17px;
    }

    .wrapper-header div.logo {
        margin-left: 3em;
    }
}

@media (max-width: 1230px) {
                .pix-bandeau-swiper-spacer {height: 120px;}
    .pix-bandeau-spacer {height: 55px;}


    .wrapper-header div.logo {
        font-size: 15px;
        margin-left: 2em;
    }

    .wrapper-menu {
        padding-right: 1em;
    }

    .wrapper-menu .menu a, .wrapper-menu .menu span {
        padding: 0.5em 0.7em;
    }


}

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

@media (max-width: 1080px) {

.wrapper-contenu::after, .wrapper-contenu::before {
    background-size: 80% auto !important;
}

.wrapper-header::before {
        height: 26px;
    background-size: 70% auto;
}

.wrapper-header::after {
    background-size: 70% auto;
}



    .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;
        padding-left: 1.2em;
        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;
    }

    .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 {
        left: 0;
        top: 50%;
        transform: translateY(-50%)!important;
    }

}

@media (max-width: 870px) {
    .wrapper-header .header-top {
        align-items: flex-start;
        font-size: 13px;
    }
    .header-top h3 br {
        display: initial;
    }
    .wrapper-contenu::after, .wrapper-contenu::before {
    background-size: 60% auto !important;
}
}


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


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

    .wrapper-contenu::after, .wrapper-contenu::before {
        background-size: 50% auto !important;
    }
}

@media (max-width: 400px) {
    .wrapper-header::before, .wrapper-header::after {
        background-size: 90% auto;
    }
    
            .pix-bandeau-swiper-spacer {height: 110px;}
    .pix-bandeau-spacer {height: 45px;}

    .wrapper-header div.logo {
        font-size: 13px;
    }

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

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


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


                .pix-bandeau-swiper-spacer {height: 100px;}
    .pix-bandeau-spacer {height: 40px;}

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

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


.footer-bottom {
    width: 100%;
    height: 25px;
    background: #e1cfbb;
}

/* FOOTER */
.wrapper-full-footer {
    position: relative;
    background: #fdf3e9 url('i/bg-footer.jpg') no-repeat top center;
    background-size: auto 100%;
}

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

.wrapper-footer {
    color: #4b4b4b;
    position: relative;
    font-weight: 400;
}


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


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

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

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

    z-index: 1;
}


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

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

.footer-inner h3 {
    text-align: center;
    color: #c57230;
    font-family: "PT Serif", serif;
    text-transform: none;
    font-size: 1.5em;
    margin-bottom: 1em;
    font-weight: 700;
}

.footer-inner .stephanie-javogue {
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
}

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


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

.footer-reseaux a {
}

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

.footer-reseaux a:hover img {
    filter: brightness(0) saturate(100%) invert(47%) sepia(85%) saturate(409%) hue-rotate(345deg) brightness(90%) contrast(90%);
}

.wrapper-footer .mentions{
    color: #4b4b4b;
}

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: #4b4b4b;
    margin-top: 100px;
    padding: 0 20px 80px;
}


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


.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: linear-gradient(to top, #c57230 40%, #edbd8f);
    border: none; 
    border-radius: 0.5em;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    padding: 0.8em 1.4em;
    font-weight: 600;
    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::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 147px;
    height: 612px;
    background:url(i/contenu-left-2x.png)   no-repeat left top;
    background-size: 100% auto;
    z-index: -1;
}

.wrapper-contenu::after {
    content: '';
    position: absolute;
    top: 500px;
    right: 0;
    width: 246px;
    height: 538px;
    background:url(i/contenu-right-2x.png)   no-repeat right top;
    background-size: 100% auto;
    z-index: -1;
}

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

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

.wrapper-boxed {
    position: relative;
}

.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(30px, 4vw, 46px);
    line-height: 1.05;
    color: #c57230;
    text-transform: none;
    margin: 0;
    position: relative;
    font-family: "PT Serif", serif;
    font-weight: 700;
}

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

span.dl {
    display: block;
    text-transform: none;
    color: currentColor;
    font-family: "Dancing Script", cursive;
    font-size: 0.7em;
    line-height: 1;
    font-weight: 700;
    margin-top: 0.1em;
}
span.dl .fin {
    font-weight: 400;
}

h2 {
    margin: 0;
    font-weight: 700;
    font-family: "PT Serif", serif;
    color: #c57230;
    position: relative;
    line-height: 1.1;
    font-size: calc(clamp(30px, 4vw, 46px) * 36/46);
    margin-bottom: -1rem;
    text-transform: none;
}

h3 {  
    font-size: calc(clamp(26px, 4vw, 46px) * 0.7);
    font-weight: 600;
    font-family: "Dancing Script", cursive;
    color: #c57230;
    margin: 0;
    line-height: 1;
    margin-bottom: -1rem;
}






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


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

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


a.lienpetit:link,a.lienpetit:visited {font-size:15px;color:#c57230; font-weight:700; text-decoration:none; }
a.lienpetit:hover{color:#c57230;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: #e0ceba;
    margin-top: 20px;
    color: #000000;
    font-size: 22px;
}

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);
}
img.round {
    border-radius: 50%;
    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 / 850;
    position: relative;
    user-select: none;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
}

.pix-bandeau-swiper .swiper-wrapper .swiper-slide::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url('i/deco-bandeau.svg') no-repeat center bottom;
    background-size: 100% auto;
    z-index: 2;
}

.pix-bandeau-swiper .swiper-slide .swiper-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920 / 850;
    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;
    border-radius: 10px;
    background: #c57230 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;
    bottom: 16%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
    z-index: 10;
}
.pix-bandeau-swiper .swiper-slogan  h3 {
    font-family: "Dancing Script", cursive;
    text-transform: none;
    line-height: 1;
    font-size: clamp(20px, 2.6vw, 42px);
    color: #222;
}
.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;
    }
}

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


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



/* 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) 20px 0;
}
.wrapper-bande-temoignages::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('i/bg-temoignages.webp') no-repeat top center;
    background-size: 100% auto;
}




.boxed-bande-temoignages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    background: url('i/quote.svg') no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 5;
        opacity: 0.5;
        transform: translateX(-10px);
}

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

    background-color: rgba(255, 255, 255);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 40px 30px;
    border-radius: clamp(150px, 14vw, 200px) 10px clamp(150px, 14vw, 200px) 10px;
}

.wrapper-bande-temoignages h2 {
    color: #c57230;
    font-size: clamp(24px, 4vw, 50px);
    margin-bottom: 0.6em;
}
.wrapper-bande-temoignages h2 span.dl {
    color: #4b4b4b;
}

.wrapper-bande-temoignages .swiper-pagination {
    position: static;
    margin: 0 auto;
    transform: none!important;
    margin-top: 20px;
    --swiper-theme-color: #c57230;
    --swiper-pagination-bullet-inactive-color: #c57230;
    --swiper-pagination-bullet-inactive-opacity: 0.5;
}

.wrapper-bande-temoignages a {
    color: currentColor;
    text-decoration: none;
}
.wrapper-bande-temoignages q {
    position: relative;
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1.2em, 2vw, 1.4em);
    color: #4b4b4b;
    display: inline-block;
    padding: 0 clamp(50px, 4vw, 100px);
}







.wrapper-bande-temoignages .temoignage-auteur {
    font-weight: 600;
    margin-top: 20px;
    font-size: 1.3em;
    color: #4b4b4b;
}



.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::before,
    .wrapper-bande-temoignages q::after {
        width: 60px;
        height: 60px;
    }

    .deco-temoignages-mots {
        font-size: 20px;
        left: 20px;
    }
    


    .wrapper-bande-temoignages {
        padding: 70px clamp(30px, 4vw, 50px) 70px clamp(30px, 4vw, 50px);
    }
}





@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 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: #fff;

    position: relative;
}

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

.pix-card-title {
    font-weight: 700;
    line-height: 1;
    margin: 0;
    font-size: 1.3em;
    color: #c57230;
    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: #c57230;
}

.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: #c57230;
    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: #ffffff42;
    border-radius: 20px;
}
.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');
    }
}




.wrapper-bande-icones-padding {
    padding: 0 20px;
}

/* CAROUSEL ICONES */
.wrapper-bande-icones {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 auto;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);

    max-width: 1470px;
    border-radius: 80px;
    background: #405784 url('i/bg-icones.jpg') no-repeat center center / cover;

    padding: 40px 0 0;

    box-shadow: 3px 3px 10px rgba(150, 150, 150, 0.5);
}

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

.wrapper-bande-icones h2 {
    font-family: "Dancing Script", cursive;
    color: #fff;
    text-transform: none;
    text-align: center;

    font-size: calc(clamp(26px, 4vw, 46px) * 60/46);
    line-height: 1;

    margin-bottom: 0.2em;
}

.swiper-icones {
    position: relative;

    padding: max(3vw, 20px) 80px;
    
    width: 100%;
    margin: 0 auto;

    overflow: hidden;

    text-align: center;
}

.wrapper-icone {
    text-decoration: none;
    max-width: 18em;
    margin: 0 auto;
    width: 100%;

    font-size: 20px;

    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    transition: all 0.3s ease;

    position: relative;
}

.wrapper-icone-image {
    position: relative;
    margin-bottom: 1em;
}

.wrapper-icone-image img {
    width: 10em;
    object-fit: contain;
    vertical-align: top;
    position: relative;
    z-index: 1;

   
    opacity: 0.5;
    transition: opacity 0.2s ease; 
}

.wrapper-icone-texte h3 {
    margin: 0;
    line-height: 1.1;
    font-size: 1em;
    font-weight: 400;
    color: #fff;
    font-family: "Barlow", sans-serif;
    transition: color 0.4s ease;
}

.wrapper-icone-texte p {
    margin: 0;
    font-size: 0.9em;
    line-height: 1.2;
    margin-top: 0.5em;
}

.wrapper-icone:hover .wrapper-icone-image img {
    opacity: 1;
}

@media (max-width: 1670px) {
    .swiper-icones {
        padding-inline: 40px;
    }
}

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

@media (max-width: 900px) {
    .wrapper-icone {
        font-size: 15px;
    }

    .swiper-icones {
        padding-inline: 20px;
    }
}

@media (max-width: 480px) {
    .wrapper-icone {
        font-size: 13px;
    }
}





/* BANDE PAGES */
.wrapper-bande-pages {
    position: relative;
    margin: 0 auto;
    margin-top: 150px;
}
.wrapper-bande-pages h2 {
    text-align: center;
    padding: 0 20px;
    margin-bottom: 0.3em;
    color: #c57230;
}
.swiper-pages {
    position: relative;
    
    max-width: 1920px;
    padding: 0 40px;

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

    overflow: hidden;
}
.swiper-pages .swiper-slide {
    height: auto;
}

.wrapper-page {
    text-decoration: none;
    max-width: 400px;
    margin: 0 auto;
    height: 100%;
    
    font-size: 20px;

    color: #000000;

    display: flex;
    flex-direction: column;
    align-items: center;
    
    background-color: #fff;
    border-radius: 500px 500px 10px 10px;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);

    transition: all 0.3s ease;
}

.wrapper-page-texte {
    text-align: center;
    padding: 1.2em 1em 1em 1em;
    position: relative;
}

.wrapper-page-texte::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url('i/clou-card-2x.png') no-repeat center center / contain;
    width: 22px;
    height: 22px;
}

.wrapper-page-texte h3 {
    margin: 0;
    line-height: 1.1;
    font-size: 1.5em;
    text-transform: none;
    font-family: "PT Serif", serif;
    font-weight: 400;
    color: #c57230;

    transition: color 0.4s ease;
}

.wrapper-page-texte p {
    font-size: 1em;
    margin: 0;
    margin-top: 0.4em;
    color: #3a261b;
    font-weight: 500;
}

@media (max-width: 500px) {
    .wrapper-page {
        font-size: 17px;
    }
}













.pix-bandeau-icones-rs {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: fixed;
    top: 170px;
    right: 0;
    z-index: 100000000;
    font-size: 20px;
    gap: 0.5em;
}




.pix-bandeau-icones-rs a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(2.5em + 4px);
    padding-right: 4px;
    height: 2.5em;
        background: linear-gradient(to top, #c57230 40%, #edbd8f);
    border-radius: 8px 0 0 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    text-decoration: none;

    transform: translateX(4px);

    transition: background 0.2s ease, transform 0.2s ease;
}

.pix-bandeau-icones-rs a span {
    font-size: 0.4em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

.pix-bandeau-icones-rs img {
    height: 1.6em;
    width: auto;
    filter: brightness(0) invert(1);
}

.pix-bandeau-icones-rs a:hover {
    background-color: #77d232;
    transform: translateX(0);
}


@media (max-width: 1560px) {
    .pix-bandeau-icones-rs {
        font-size: 17px;
    }
}

@media (max-width: 1300px) {
    .pix-bandeau-icones-rs {
        font-size: 16px;
        top:160px;
    }
    
}

@media (max-width: 1230px) {
    .pix-bandeau-icones-rs {
        font-size: 16px;
        top:145px;
    }
    
}


@media (max-width: 1100px) {
    .pix-bandeau-icones-rs {
        font-size: 15px;
    }
}

@media (max-width: 900px) {
    .pix-bandeau-icones-rs {
        font-size: 13.5px;
    }
}

@media (max-width: 700px) {

    .pix-bandeau-icones-rs {
        font-size: 12px;
        gap: 0.5em;
    }

}
