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

:root {
    --header-offset: 135px;
}

img {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

html {
    overflow-y: scroll !important;
}

body {
    font-family: "Geologica", serif;
    font-size:20px; 
    color:#082944;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

@media (max-width:600px) {
    body {font-size:16px;}
    ul.puce > li::before {
        top: 8px;
    }
}


html {height:100%;}


/* LOGO */
div.logo {
}

div.logo img {
    vertical-align: top;
}

.wrapper-header{
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1000000000;
    margin: 0 auto;
    font-size: 24px;

    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* HEADER TOP */
.wrapper-header .header-top {
    background: #155452 url('i/bg-header-top.svg') center center;
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 4px 16px;
    gap: 16px;
}

.wrapper-header .header-top h3 {
    color: #54a8a5;
    font-weight: 400;
    font-size: 0.8em;
    line-height: 1.1;
    margin: 0;
    text-align: right;
    font-family: "Geologica", serif;
    text-transform: uppercase;
}

.wrapper-header .header-top a.bouton {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-bottom: 10px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);

}

/* HEADER BOTTOM */
.wrapper-header .header-bottom {    
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    height: var(--header-offset);
    padding: 0 2em;
}


/* HEADER LOGO */
.wrapper-header div.logo {
    width: 10em;
    align-self: center;
    flex-shrink: 0;
}

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


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

    width: 100%;
    margin: 0 auto;
}
.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", serif;
    font-weight: 500;
    font-size: 1em;
    line-height: 1.2;
    color: #185f9a;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 0.8em 0.7em;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 0.4em 0.4em 0 0;
    transition: color 0.2s ease, background 0.2s ease;
    overflow: hidden;
}


.wrapper-menu .menu .page-accueil {
    /* text-indent: -99999px!important; */
}
.wrapper-menu .menu .menu-icone {
    width: 100%;
    margin-bottom: 0.3em;
}
.wrapper-menu .menu .menu-icone img {
    vertical-align: top;
    width: 1.3em;
    height: 1.3em;
    filter: brightness(0) saturate(100%) invert(25%) sepia(77%) saturate(1547%) hue-rotate(187deg) brightness(87%) contrast(83%);
}

.wrapper-menu .menu .menu-item > a::before,
.wrapper-menu .menu .menu-item > span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.4em;
    border-radius: 0.2em 0.2em 0 0;
    background-color: currentColor;
    transform: translateY(40%);
    opacity: 0;

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

/* ON HOVER */
.wrapper-menu .menu .menu-item:hover > a,
.wrapper-menu .menu .menu-item:hover > span {
    color: #2c87d7;
}

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

.wrapper-menu .menu .menu-item:hover .menu-arrow {
    filter: none;
}

.wrapper-menu .menu .menu-item:hover .menu-icone img {
    filter: none;
}

/* ON SELECTED */
.wrapper-menu .menu .menu-item.selected > a,
.wrapper-menu .menu .menu-item.selected > span {
    color: #2c87d7;
}

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

.wrapper-menu .menu .menu-item.selected .menu-arrow {
    filter: none;
}

.wrapper-menu .menu .menu-item.selected .menu-icone img {
    filter: none;
}

.wrapper-menu .menu .menu-arrow {
    margin-left: 0.3em;
    filter: brightness(0) saturate(100%) invert(25%) sepia(77%) saturate(1547%) hue-rotate(187deg) brightness(87%) contrast(83%);
} 
.wrapper-menu .menu .menu-arrow img{
    vertical-align: middle;
    width: 0.6em;
}

.wrapper-menu .sousmenu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 140%;
    list-style: none;
    padding: 0;
    background-color: rgba(255, 255, 255, 1);
    z-index: -1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}


.wrapper-menu .sousmenu a{
    color: currentColor;
    text-decoration: none;
    padding: 0.7em 0.7em;
    text-transform: uppercase;
    text-align: left;
    display: block;
    line-height: 1.15;
    font-size: 0.9em;
    font-weight: 400;
    border-radius: 0;
}

.wrapper-menu .sousmenu a:hover{
    background: rgba(40, 40, 40, 0.1);
    /* color: #fff; */
}

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

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



/* BURGER */
.wrapper-header .burger-btn{
    position: absolute;
    bottom: calc(var(--header-offset) / 2);
    right: 10px;
    font-size: 1em;
    width: 40px;
    height: 40px;
    padding: 15px;
    background-color: #2c87d7;
    border-radius: 8px;
    border: none;
    display: none;
    cursor: pointer;
    z-index: 100000;
    align-self: center;
    transition: background 0.2s ease;
    transform: translateY(50%);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
.wrapper-header  .burger-btn .line{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: inline-block;
    width: 16px;
    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: 1480px) {
    .wrapper-header {
        font-size: 22px;
    }
    :root {
        --header-offset: 115px;
    }
}
@media (max-width: 1320px) {
    .wrapper-header {
        font-size: 20px;
    }
    :root {
        --header-offset: 105px;
    }
    .wrapper-menu .menu a, .wrapper-menu .menu span {
        padding: 0.8em 0.5em;
    }
    .wrapper-header .header-bottom {
        padding: 0 1.5em;
    }
}
@media (max-width: 1150px) {
    .wrapper-header {
        font-size: 18px;
    }
    :root {
        --header-offset: 95px;
    }
}
@media (max-width: 1050px) {
    .wrapper-menu .menu a, .wrapper-menu .menu span {
        padding-inline: 0.2em;
    }
    .wrapper-header .header-bottom {
        padding: 0 1em;
    }
}
@media (max-width: 950px) {
 
    .wrapper-menu {
        padding-right: 10px;
    }
    
    .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.5);
        width: 100%;
        opacity: 0;
        padding: 0;
        transition: opacity 0.2s ease;
        opacity: 0;
        pointer-events: none; 
        height: 100vh;      
        height: 100dvh;  
        margin-top: 0;    
    } 

    .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 60px 10px 10px;
        height: 100%;
        background: rgb(255, 255, 255);
        transform: translateX(100%);
        min-width: 240px;
        transition: transform 0.2s ease-out;
        transform-origin: top right;
        max-width: 350px;
        margin-left: auto; 
        overflow: hidden;
    }
    .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;
        overflow: visible;  
        justify-content: flex-start;
    } 

    .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-menu .menu .menu-item > a::before, 
    .wrapper-menu .menu .menu-item > span::before {
        bottom: auto;
        top: 10%;
        left: -10px;
        height: 80%;
        width: 0.3em;
        transform: scaleX(0);
        transform-origin: left center;
        border-radius: 0 1em 1em 0;
    }

    /* HOVER */
    .wrapper-menu .menu .menu-item:hover > a::before, 
    .wrapper-menu .menu .menu-item:hover > span::before {
        transform: scaleX(1);
    }
    
    /* SELECTED */
    .wrapper-menu .menu-item.selected > a::before, 
    .wrapper-menu .menu-item.selected > span::before {
        transform: scaleX(1);
    }

    .wrapper-menu .menu .menu-icone {
        width: auto;
        margin-bottom: 0;
        margin-right: 0.5em;
    }
}

@media (max-width: 580px) {
    .wrapper-header {
        font-size: 16px;
    }
    :root {
        --header-offset: 85px;
    }

    .wrapper-header .header-top {
        padding: 4px 10px;
    }

    .wrapper-header .header-bottom {
        padding: 0 10px;
    }
}





/* FOOTER */
.wrapper-full-footer {
    position: relative;
    z-index: 1;

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

    margin-top: clamp(40px, 5vw, 100px);
}

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

.wrapper-footer-citation {
    position: relative;
    background: url('i/footer-wave.svg') top center repeat-x;
    background-size: 700px auto;
    padding: 0 1em 2.5em;
}
.wrapper-footer-citation-inner {
    background: #c9ebfb url('i/pattern-footer-citation.svg') center center;
    background-size: 100px auto;
    background-repeat: repeat;
    color: #185f9a;
    text-align: center; 
    padding: 2.5em 1.5em;
    max-width: 1480px;
    margin: 0 auto;
    box-shadow: -2px 6px 10px rgba(24, 96, 154, 0.25);
    font-size: clamp(16px, 3vw, 32px);
    border-radius: 0.7em;
}

.wrapper-footer-citation blockquote {
    font-size: 1em;
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}
.wrapper-footer-citation blockquote::before {
    content: "«";
    display: inline-block;
}
.wrapper-footer-citation blockquote::after {
    content: "»";
    display: inline-block;
}

.wrapper-footer-citation cite {
    font-weight: 700;
    font-size: 1em;
    margin-top: 0.6em;
    font-style: normal;
    text-transform: uppercase;
    display: block;
}

.wrapper-footer {
    position: relative;
    font-weight: 400;
}


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

.wrapper-footer a:hover {
    color: #2c87d7;
}


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

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

    margin: 0 auto;

    z-index: 1;

    max-width: 1920px;
}


.wrapper-footer-inner :is(.footer-1, .footer-2, .footer-3) {
    width: 33.33%;
    position: relative;
    text-align: center;
}

.wrapper-footer-inner .footer-inner {
    margin: 0 auto;
    text-align: left;
    display: inline-block;
    padding: 40px 20px;
}

.wrapper-footer-inner .footer-inner h3 {
    font-family: "Chewy", serif;
    font-weight: 400;
    font-size: 30px;
    color: #185f9a;
    margin-bottom: 0.3em;
    text-transform: uppercase;
}

.footer-tel {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
}


.footer-1 .jour {
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
    display: inline-block;
}
.footer-1 .jour:first-of-type {
    margin-top: 0;
}

.footer-2 a {
    font-weight: 600;
}

.footer-2 address {
    font-style: normal;
}

.footer-2 .footer-facebook {
    display: inline-block;
    margin-top: 10px;
    filter: brightness(0);
}
.footer-2 .footer-facebook img {
    vertical-align: top;
}

.footer-2 .footer-facebook:hover {
    filter: none;
}

.footer-3 {
    text-transform: uppercase;
}
.footer-3 ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-3 a {
    font-weight: 600;
}



.wrapper-footer .mentions{
    color: #646464;
    margin-top: 20vw;
    padding-bottom: 25vw;
}

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: #646464;

    padding: 0 20px 40px;
}


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


@media (max-width: 1070px) {
    .wrapper-footer .mentions {
        margin-top: 5vw;
        padding-bottom: 50vw;
    }
}

@media (max-width: 980px) {
    .wrapper-footer-inner .footer-1 {
        width: 100%;
    }
    .wrapper-footer-inner .footer-1::before {
        content: none;
    }
    .wrapper-footer-inner :is(.footer-2, .footer-3) {
        width: 50%;
    }

    .wrapper-footer-inner div.logo {
        font-size: min(6vw, 60px);
    }
}
@media (max-width: 660px) {
    .wrapper-footer-inner div.logo {
        font-size: 30px;
    }
    .wrapper-footer-inner :is(.footer-1, .footer-2, .footer-3) {
        width: 100%;
    }
    .wrapper-footer-inner .footer-inner {
        max-width: 400px;
        width: 100%;
        padding: 20px 20px;
    }
}





/* CONTENU */
input.form_submit,
a.bouton {
    display: inline-block;
    color: #ffff;
    background: #2c87d7;
    text-decoration: none;
    padding: 0.75em 1em;
    font-weight: 700;
    font-size: 0.8em;
    border: none;
    border-radius: 0.9em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

a.bouton.bouton-blanc {
    color: #fff;
    border-color: #fff;
}

a.bouton:hover,
input.form_submit:hover {
    background-color: #378792;
    color: #fff;
}
a.bouton.bouton-blanc:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.formulaire-envoyer input.form_submit {
    padding: 8px 18px;
    font-size: 18px;
    cursor: pointer;
    background: #db0000;
    color: #fff;
}

a.bouton-goutte,
div.bouton-goutte {
    display: inline-flex;
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 0 12px;
    aspect-ratio: 1 / 1.5;
    align-items: center;
    justify-content: center;
    transition: color 0.1s 0.1s ease;
}

div.bouton-goutte img {
    transition: color 0.1s 0.1s ease;
}

a.bouton-goutte {
    margin-top: 20px;
}

a.bouton-goutte::before,
div.bouton-goutte::before {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    background: url(i/btn-goutte-border-white.svg) center center no-repeat;
    background-size: 100% auto;
    aspect-ratio: 1 / 1.5;
    z-index: -1;
}

div.bouton-goutte::before {
    background-image: url(i/btn-goutte-border-blue.svg);
}

a.bouton-goutte::after,
div.bouton-goutte::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    background: url(i/btn-goutte-fill-white.svg) left top -50% no-repeat;
    background-size: 200% auto;

    mask: url(i/btn-goutte-mask.svg) center center no-repeat;
    aspect-ratio: 1 / 1.5;

    z-index: -1;
    transition: all 0.4s ease;
}

div.bouton-goutte::after {
    background-image: url(i/btn-goutte-fill-blue.svg);
}

a.bouton-goutte:hover::after,
.pix-card:hover div.bouton-goutte::after {
    background-position: right top 0;
}

a.bouton-goutte:hover {
    color: #378792;
    transition: color 0.2s 0.1s ease;
}

.pix-card:hover div.bouton-goutte img {
    filter: brightness(0) invert(1);
    transition: filter 0.2s 0.1s ease;
}

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



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

.wrapper-oiseaux {
    position: relative;
}
.wrapper-oiseaux::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: url('i/oiseaux.svg') left center no-repeat;
    background-size: 300px auto;
}

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

.wrapper-boxed {
    position: relative;
}


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

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

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




h1,h2.h1 {
    font-size: clamp(30px, 5vw, 60px);
    font-family: "Chewy", serif;
    font-weight: 400;
    line-height: 1.05;
    color: #2c87d7;
    margin: 0;
    margin-bottom: -0.5rem;
}

span.dl {
    display: block;
    text-transform: none;
    color: #231c1b;
    font-size: 0.7em;
    line-height: 1;
    font-weight: 400;
    margin-top: 0.1em;
}

h2 {
    margin: 0;
    font-family: "Chewy", serif;
    font-weight: 400;
    color: #185f9a;
    position: relative;
    line-height: 1.1;
    font-size: max(calc(clamp(30px, 5vw, 60px) * 36/48), 24px);
    margin-bottom: -1rem;
}

h3 {  
    margin: 0;
    font-family: "Chewy", serif;
    font-weight: 400;
    color: #185f9a;
    position: relative;
    line-height: 1.1;
    font-size: max(calc(clamp(30px, 5vw, 60px) * 24/48), 20px);
    margin-bottom: -1rem;
}






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


a.lien:link,
a.lien:visited {
    color: #2c87d7;
    font-weight: 800;
    text-decoration: none;
}

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


a.lienpetit:link,a.lienpetit:visited {font-size:15px;color:currentColor; font-weight:800; text-decoration:none; }
a.lienpetit:hover{color:currentColor;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: 10px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 10px;
    background: url(i/puce.svg) center center no-repeat;
    background-size: contain;
    vertical-align: middle;
}



input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=date],
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,
input[type=date]: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:#000; background-color:#f4f7f8; border:solid #000 1px; font-size:15px;}

input.contact_pb,textarea.contact_pb {  color:#000; 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 #000 solid; }


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

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

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

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


.form_header {
    background: #185f9a;
    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: rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

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:#231c1b;
    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;
    border-radius: 8px;
    background: #2c87d7 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;
}



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: 0.1em 0.2em 0.4em rgba(0, 0, 0, 0.15);
}

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:#231c1b;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: 33.33%; }


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

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

@media (max-width:520px) {
    .isotope-grid-item { width: 100%; }
    .pix-masonry-photo {
        padding: 0;
        padding-bottom: 10px;
    }
}



.pswp {z-index: 150000000;}


.detail-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
}

.back-list a.lien,
.detail-pagination a.lien {
    color: #231c1b !important;
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    text-transform: uppercase;
    margin: 5px 0;
    display: inline-block;
    font-family: "Fira Sans Condensed", serif;
}

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

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

.back-list .lien,
.show-previous .lien {
    padding-left: 2px;
    transition: padding 0.2s ease;
    
}

.back-list .lien:hover,
.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:#231c1b !important;
    font-weight: normal;
    font-style: normal;
    font-family: "Fira Sans Condensed", serif;
    text-transform: uppercase;
    font-size: 15px;
}


@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;

    margin-top: calc(-1 * var(--header-offset));

    --swiper-navigation-top-offset: calc(50% + var(--header-offset) / 2);
    --swiper-navigation-size: 36px;

    overflow: hidden;
}

.pix-bandeau-swiper::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1vw;
    pointer-events: none;
    user-select: none;
    background: url('i/wave.svg') center center repeat-x;
    background-size: auto 100%;
    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 .swiper-slogan {
    position: absolute;
    bottom: 0;
    left: 50%;
    text-align: center;
    pointer-events: none;
    font-size: clamp(16px, 4vw, 55px);
    color: #fff;
    background: url('i/background-slogan.svg') center center no-repeat;
    background-size: 100% 100%;
    max-width: 90%;
    width: max-content;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    transform: translateX(-50%);
    padding: 1.5em 1em 1em;

    display: flex;
    flex-direction: column;
    gap: 0.3em;
}
.pix-bandeau-swiper .swiper-slogan h3 {  
    font-weight: 400;
    font-size: 1em;
    text-transform: none;
    line-height: 1;
    margin: 0;
    color: #fff;
    font-family: "Chewy", serif;
}

.pix-bandeau-swiper .swiper-slogan span {
    font-weight: 400;
    font-size: 0.7em;
    text-transform: none;
    line-height: 1;
    margin: 0;
    color: #fff;
    font-family: "Chewy", serif;
    margin-top: -0.3em;
}

.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: 36px;
    height: 36px;
    background: #fff url('i/arrow-right.svg') no-repeat left 14px center / 8px 12px;
    border-radius: 8px;
    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.5;
}
.pix-bandeau-swiper .swiper-button-prev:hover,
.pix-bandeau-swiper .swiper-button-next:hover {
    opacity: 1;
}


@media (max-width: 1000px) {
    .pix-bandeau-swiper {
        height: 437px;
        aspect-ratio: initial;
    }
}
@media (max-width: 700px) {
    .pix-bandeau-swiper {
        height: 375px;
        aspect-ratio: initial;
    }
}

@media (max-width: 580px) {
    .pix-bandeau-swiper {
        height: 300px;
        aspect-ratio: initial;
    }
}



/* Bande creations */
.wrapper-bande-creations {
    width: 100%;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0 clamp(35px, 5vw, 70px);
    margin-bottom: calc(clamp(30px, 5vw, 60px) * 2);
}


.swiper-creations {
    position: relative;
    padding: 0 60px;
}
.swiper-actualites .swiper-wrapper {
    height: auto;
}
.swiper-actualites .swiper-slide {
    height: auto;
}

@media (max-width: 1350px) {
    .swiper-creations {
        padding: 0 30px;
    }
}
@media (max-width: 900px) {
    .swiper-creations {
        padding: 0 15px;
    }
}


/* SLOGAN */
.slogan {
    padding: 20px;
    background: rgba(44, 135, 215, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.italic {
    font-variation-settings: "slnt" -12;
    font-style: normal;
}


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


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

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

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

/* CARD POUR LES ACTUS */
.pix-card {
    position: relative;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    width: 100%;
    
    font-size: 24px;

    background-color: #fff;

    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}

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

.pix-card .pix-card-content {
    padding: 2.5em 1em 1.5em;

    text-align: center;

    position: relative;
}


.pix-card .pix-card-title {
    font-family: "Geologica", serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    font-size: 1em;
    color: inherit;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
}

.pix-card .pix-card-description {
    font-size: 0.7em;
    line-height: 1.2;
    margin: 0;
    margin-top: 0.4em;
    font-weight: 400;
    color: inherit;
}
.pix-card .pix-card-description:empty {
    display: none;
}

.pix-card .voir-plus {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2em;
    height: 2.9em;
    margin-top: 0;
}

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

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



/* LISTE DES ACTUALITES */
.intro-actualites {
    margin-bottom: 2em;
}

/* DETAIL DES ACTUALITES */
.titre-actualite {
    margin-bottom: 0.5em;
}



/* CAROUSEL SERVICES */
.wrapper-carousel-pages {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: clamp(40px, 8vw, 80px) 0;
    margin: 0 auto;
}


.swiper-pages {
    position: relative;
}
.swiper-pages .swiper-wrapper {
    height: auto;
}
.swiper-pages .swiper-slide {
    height: auto;
    padding: 0 20px;
}


/* service */
.wrapper-carousel-pages .wrapper-page {
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 300px;
    font-size: 30px;
}

.wrapper-carousel-pages .wrapper-page a {
    color: currentColor;
    text-decoration: none;
    text-align: center;
    display: inline-flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    border-radius: inherit;
    transition: background 0.2s ease;
}

.wrapper-carousel-pages .wrapper-page .page-image {
    border-radius: 50%;
    overflow: hidden;
}
.wrapper-carousel-pages .wrapper-page .page-image img {
    width: 100%;
    vertical-align: top;
    transition: transform 0.2s ease;
}

.wrapper-carousel-pages .wrapper-page h3 {
    margin: 0;
    font-family: "Chewy", serif;
    color: #185f9a;
    font-size: 1em;
    margin-top: 0.5em;
}

.wrapper-carousel-pages .wrapper-page:hover .page-image img {
    transform: scale(1.05);
}



@media (max-width: 1350px) {
    .wrapper-carousel-pages .wrapper-page {
        font-size: 24px;
    }
}
@media (max-width: 1200px) {
    .wrapper-carousel-pages .wrapper-page {
        max-width: 250px;
    }

    .wrapper-carousel-pages {
        max-width: 1000px;
    }
}

@media (max-width: 800px) {
    .swiper-pages .swiper-slide {
        padding: 0 10px;
    }

    .wrapper-page .page-image {
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 500px) {
    .wrapper-carousel-pages .wrapper-page {
        font-size: 20px;
    }
}
@media (max-width: 400px) {
    .wrapper-carousel-pages .wrapper-page {
        font-size: 18px;
    }
}



/* BANDE */
.wrapper-bande {
    background: #155452 url('i/bg-bande.webp') center center no-repeat;
    background-size: cover;
    text-align: center;

    --padding-inline: clamp(40px, 8vw,150px);

    padding: var(--padding-inline) 0;
    clip-path: polygon(0 0, 100% calc(var(--padding-inline) / 2), 100% 100%, 0 calc(100% - var(--padding-inline) / 2));
    color: #fff;
}

.wrapper-bande .wrapper-bande-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.wrapper-bande h2 {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
}

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

}




/* BANDE ACTUS */
.wrapper-bande-actus {
    max-width: 1920px;
}
.wrapper-bande-actus h2.h1 {
    text-align: center;
    color: #419ca9;
    text-transform: uppercase;
    margin-bottom: -0.2em;
    font-size: clamp(28px, 6vw, 90px);
}
.wrapper-bande-actus .swiper-actus {
    background: linear-gradient(to bottom, #419ca9, #378691);
    padding-top: 7vw;
    padding-bottom: 5vw;
    padding-inline: 20px;
    overflow: hidden;
}

.wrapper-bande-actus .pix-card {
    max-width: 500px;
    margin: 0 auto;
}




/* FAQ */
.faq-container {
    /* max-width: 800px; */
}

.faq-question {
    margin: 0px;
    padding: 7px 40px 7px 10px;
    display: block;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    
    border: 2px solid #031320;
    border-bottom-color: transparent;
}

.faq-answer-container {
    height: 0px;
    overflow: hidden;
    border: 2px solid #031320;
    border-top-color: transparent;
    margin-top: -4px;
}

.faq-answer-inner {
    padding: 16px;
    padding-top: 0;
}

.faq.open .faq-question {
}

.faq-bouton {
    padding:7px 8px 0px 8px;
    text-decoration: none;
    display: inline-block;
    margin-top: 0px;
    transition: all 0.2s ease-in-out 0s;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 24px;
}

.faq.open .faq-bouton {
    transform: translateY(-50%) rotate(90deg);
}

.faq-bouton img {width:8px;height:calc(8px * 21 / 15);display: block;}





.wrapper-equipe {
    text-decoration: none;
    margin: 0 auto;
    width: 100%;
    max-width: 340px;
    height: 100%;

    font-size: 20px;

    color: #031320;

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

    transition: all 0.3s ease;

    position: relative;

    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.wrapper-equipe-image {
    position: relative;
    width: 100%;
}

.wrapper-equipe-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    vertical-align: top;
    position: relative;
    z-index: 1;
}

.wrapper-equipe-texte {
    padding: 1em;
}

.wrapper-equipe-texte h3 {
    margin: 0;
    line-height: 1.1;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 400;
    color: currentColor;
    transition: color 0.4s ease;
    font-style: normal;
}

.wrapper-equipe-texte p {
    margin: 0;
    color: #000;
}

.bande-equipe-bouton {
    margin-top: 40px;
    text-align: center;
}

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

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

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

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

    .bande-equipe-bouton {
        margin-top: 20px;
    }
}

@media (max-width: 650px) {
    .wrapper-equipe-texte {
        padding: 1em 0.5em;
    }
}

/* GRILLE EQUIPE */
.wrapper-grille-equipe {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .wrapper-grille-equipe {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

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

@media (max-width: 420px) {
    .wrapper-grille-equipe {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


