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

html {
    overflow-y: scroll !important;
}

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

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


html {height: 100%;}

.wrapper-header{
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1000000000;
    margin: 0 auto;
    font-size: 22px;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* HEADER LOGO */
.wrapper-header div.logo {
    font-size: 1em;
    flex-shrink: 0;

    position: absolute;
    top: 0.7em;
    left: 2em;
    z-index: 5;
}

.wrapper-header a.logo {
    text-decoration: none;
    color: currentColor;
    position: relative;
    display: inline-block;
    vertical-align: top;
    clip-path: polygon(28% 0, 72% 0, 72% 70%, 100% 70%, 100% 100%, 0 100%, 0 70%, 28% 70%);
}

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

.header-top {
    background: url('i/header-top.svg'), linear-gradient(to left, #4c4c4c, #545454);
    background-size: auto 100%, 100% 100%;
    background-repeat: repeat-x, no-repeat;
    padding: 0.5em;
}

.header-top-inner {
    position: relative;
    z-index: 8;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: fit-content;
    margin-left: auto;
    gap: 1em;
}

.header-bottom {
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
    height: 8em;
    background: #fff;
    position: relative;
}



/* HEADER TOP */
.header-top-reseaux img {
    height: 1.6em;
    width: auto;
    vertical-align: top;
}
.header-top-reseaux:hover {
    filter: brightness(0) saturate(100%) invert(63%) sepia(80%) saturate(2489%) hue-rotate(306deg) brightness(101%) contrast(101%);
}

.header-top-bouton {
    display: inline-block;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
    padding: 0.5em 1em;
    border-radius: 0.5em;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
}

.header-top-bouton:hover {
    background-color: #fff;
    color: #545454;
}



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

    width: 100%;
    height: 100%;

    max-width: 1780px;
    padding-right: 20px;
}
.wrapper-menu .menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
}
.wrapper-menu .menu > li{
    position: relative;
    z-index: 10;
}

.wrapper-menu .menu a,
.wrapper-menu .menu span{
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 1em;
    line-height: 1.2;
    color: #545454;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    padding: 1.2em 1em 1.2em;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;

    transition: color 0.2s ease;
}

.wrapper-menu .menu-item > a::before,
.wrapper-menu .menu-item > span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 1.2em;
    height: 1.2em;
    background: url('i/menu-s.svg') center center no-repeat;
    background-size: 100% 100%;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.wrapper-menu .menu-item > a::after,
.wrapper-menu .menu-item > span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 0.4em;
    background: linear-gradient(175deg, #ff6c90, #fe8995, #fe668a, #ed467a);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}


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


.wrapper-menu .menu-item.selected > a::after,
.wrapper-menu .menu-item.selected > span::after {
    opacity: 1;
}

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


.wrapper-menu .menu .menu-arrow {
    position: absolute;
    bottom: 0.5em;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
} 
.wrapper-menu .menu .menu-arrow img{
    vertical-align: middle;
    margin-left: 0.15em;
    width: 0.6em;
}

.wrapper-menu .sousmenu{
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 100%;
    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.25);

}


.wrapper-menu .sousmenu a{
    color: #545454;
    text-decoration: none;
    padding: 1em 0.7em;
    text-align: center;
    text-transform: uppercase;
    text-align: center;
    display: block;
    line-height: 1.15;
    font-size: 0.8em;
    font-weight: 700;
    border-radius: 0;
}

.wrapper-menu .sousmenu a:hover{
    background: rgba(245, 220, 224, 0.25);
}

.wrapper-menu .sousmenu .selected a {
    background: #f5dce0;
}

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


.wrapper-menu .sousmenu a em {
    font-size: 0.8em;
    font-weight: 300;
    font-style: normal;
}


/* BURGER */
.wrapper-header .burger-btn{
    position: absolute;
    top: 50%;
    right: 1em;
    font-size: 1em;
    width: 40px;
    height: 40px;
    padding: 15px;
    background: transparent;
    border-radius: 50%;
    border: 2px solid #545454;
    display: none;
    cursor: pointer;
    z-index: 100000;
    align-self: center;
    transition: background 0.2s ease;
    transform: translateY(-50%);
}
.wrapper-header  .burger-btn .line{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    display: inline-block;
    width: 16px;
    height: 2px;
    background: #545454;

    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: 1500px) {
    .wrapper-header {
        font-size: 20px;
    }
}
@media (max-width: 1350px) {
    .wrapper-header {
        font-size: 18px;
    }
}
@media (max-width: 1180px) {
    .wrapper-header {
        font-size: 17px;
    }
}
@media (max-width: 1100px) {
    .wrapper-header {
        font-size: 16px;
    }
    .wrapper-header div.logo img {
        width: 15em;
    }
    .header-bottom {
        height: 6.5em;
    }
}
@media (max-width: 1000px) {
    .wrapper-menu .menu a, 
    .wrapper-menu .menu span {
        padding-inline: 0.7em;
    }
}
@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: #fff;
        transform: translateX(100%);
        min-width: 240px;
        transition: transform 0.2s ease-out;
        transform-origin: top right;
        max-width: 350px;
        margin-left: auto; 
        overflow: auto;
    }
    .wrapper-header.open .wrapper-menu .menu {
        transform: translateX(0);
        counter-reset: menu-item;
    }

    


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

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

    .wrapper-header .wrapper-menu .sousmenu{
        position: static;
        box-shadow: none;
        display: none;
        background: transparent;
        padding-left: 10px;
        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: 400;
        padding: 10px 10px;
        text-align: left;
        font-size: 1em;
        color: #545454;
    }

    .wrapper-header .wrapper-menu .sousmenu a:hover {
   
    }

    .wrapper-header .wrapper-menu .sousmenu-item.selected a {
        color: inherit;
    }

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


    .wrapper-menu .menu-item > a::before,
    .wrapper-menu .menu-item > span::before {
        bottom: auto;
        top: 50%;
        left: -8px;
        transform: translateY(-50%) translateX(-100%);
        transform-origin: left center;
        border-radius: 0 50px 50px 0;
        width: 1em;
    }

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



    .wrapper-menu .menu-item > a::after, 
    .wrapper-menu .menu-item > span::after {
        left: 35px;
        width: 50px;
        height: 4px;
    }


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


@media (max-width: 490px) {
    .wrapper-header div.logo img {
        width: 13em;
    }
    .header-bottom {
        height: 5.3em;
    }
    .header-top {
        font-size: 14px;
    }
}
@media (max-width: 375px) {
    .header-top-inner {
        gap: 0.5em;
    }
    .wrapper-header div.logo img {
        width: 12em;
    }
    .header-bottom {
        height: 4.8em;
    }
}
@media (max-width: 345px) {
    .header-top-reseaux {
        display: none;
    }
}





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

    background: #505051 url('i/footer.webp') no-repeat bottom center;
    background-size: cover;

    padding: clamp(100px, 10vw, 140px) 0 clamp(60px, 10vw, 140px);
}

.wrapper-full-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('i/footer-motif.svg') repeat-x top center;
    background-size: auto 120%;
    pointer-events: none;
    opacity: 0.1;
    mix-blend-mode: luminosity;
}

.wrapper-full-footer .footer-logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(100px, 10vw, 150px);
}

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

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


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


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

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    position: relative;
    font-size: 20px;

    margin: 0 auto;

    z-index: 1;

    max-width: 1820px;
}


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

.wrapper-footer-inner :is(.footer-1, .footer-2)::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 100%;
    transform: translateX(50%);
    background: url('i/footer-sep.svg') no-repeat center center;
    background-size: auto 100%;
}

.wrapper-footer-inner .footer-inner {
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    padding: 20px 10px;
    color: #fff;
    max-width: 370px;
}


.wrapper-footer-inner .footer-inner h3 {
    font-weight: 700;
    color: #fff;
    margin: 0;
    margin-bottom: 0.5em;
    font-size: 26px;
    font-family: "Lato", sans-serif;;
    position: relative;
    padding-bottom: 0.5em;
    line-height: 1.2;
}

.wrapper-footer-inner .footer-inner h3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: linear-gradient(175deg, #ff6c90, #fe8995, #fe668a, #ed467a);
    transition: opacity 0.2s ease;
    pointer-events: none;
}

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

.footer-reseaux a img {
    width: auto;
    height: 28px;
    vertical-align: top;
}
.footer-reseaux a:hover img {
    filter: brightness(0) saturate(100%) invert(63%) sepia(80%) saturate(2489%) hue-rotate(306deg) brightness(101%) contrast(101%);
}


.footer-1 .footer-inner {
    padding-inline: 30px;
}

.footer-1 address {
    font-style: normal;
    letter-spacing: -0.4px;
}

.footer-1 a {
    font-weight: 700;
    margin-bottom: 5px;
    display: inline-block;
}


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

.footer-gite-plus {
    border: 2px solid #fff;
    display: inline-flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    border-radius: 99px;
}

.footer-gite-plus:hover {
    background-color: #fff;
}

.footer-gite-plus:hover img {
    filter: brightness(0) saturate(100%) invert(33%) sepia(0%) saturate(0%) hue-rotate(213deg) brightness(91%) contrast(87%);
}

.wrapper-footer .mentions{
    color: #dfdfdf;
}

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: #dfdfdf;
    margin-top: clamp(60px, 10vw, 140px);

    padding: 0 20px;
}


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



@media (max-width: 1300px) {
    .wrapper-footer-inner {
        padding: 0 20px;
        row-gap: 50px;
        max-width: 1000px;
    }
    .wrapper-footer-inner .footer-inner {
        display: block;
        padding: 0;
    }

    .wrapper-footer-inner :is(.footer-1, .footer-2) {
        width: 50%;
    }

    .wrapper-footer-inner .footer-3 {
        width: 100%;
    }

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

@media (max-width: 450px) {
    .wrapper-footer-inner .footer-inner h3 {
        font-size: 22px;
    }
    .wrapper-footer-inner  {
        font-size: 16px;
        row-gap: 30px;
    }
}





/* CONTENU */
input.form_submit,
a.bouton {
    display: inline-block;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
    padding: 0.5em 1em;
    border-radius: 0.5em;
    border: none;
    border: 2px solid #545454;
    color: #545454;
    text-decoration: none;

    background: transparent;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;

}

input.form_submit:hover,
a.bouton:hover {
    background: #545454;
    color: #fff;
}

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

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

body:not(.page-accueil, .page-contact) .wrapper-contenu {
    padding-bottom: calc(clamp(100px, 10vw, 150px) / 2);
}

.page-accueil .wrapper-contenu {
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

.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(27px, 4vw, 50px);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: #545454;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: -0.3em;
}

span.dl {
    display: block;
    text-transform: none;
    color: #545454;
    font-family: "Bodoni Moda", serif;
    font-size: 0.7em;
    line-height: 1;
    font-weight: 500;
    margin-top: 0.1em;
    font-style: italic;
    font-optical-sizing: none;
}

h2 {
    margin: 0;
    font-family: "Bodoni Moda", serif;
    font-weight: 700;
    color: #545454;
    position: relative;
    line-height: 1.1;
    font-size: calc(clamp(24px, 3.5vw, 35px));
    margin-bottom: -0.5em;
    padding-bottom: 0.2em;
    overflow: hidden;
    font-optical-sizing: none;
}

h3 {  
    font-size: clamp(22px, 4vw, 26px);
    font-family: "Bodoni Moda", serif;
    font-weight: 500;
    color: #545454;
    margin: 0;
    line-height: 1;
    margin-bottom: -0.5em;
    text-transform: uppercase;
    font-optical-sizing: none;
}


h1.realisations {
    margin-bottom: 0;
}



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


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

a.lien:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}


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: 8px;
    height: 8px;
    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],
textarea {
  width: 90%;
  width: 100%;
  background: rgb(255, 255, 255);
  border: none;
  padding: 5px;
  color: #545454;
  border: 1px solid #545454;
  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; padding-bottom: 16px;max-width:100%;}
div.left-responsive {float:left; padding-right:16px; padding-bottom: 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:#545454; background-color:#f4f7f8; border:solid #545454 1px; font-size:15px;}

input.contact_pb,textarea.contact_pb {  color:#545454; 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:#545454; font-weight:bold;  text-decoration:none;}

.cadresubmit { border:1px #545454 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: url(i/header-top.svg), linear-gradient(to left, #4c4c4c, #545454);
    background-size: auto 100%, 100% 100%;
    background-repeat: repeat-x, no-repeat;
    padding: 4px 20px !important;
    color: #ffffff;
    text-align: left;
    text-align: center;
    font-weight: 500;
    font-family: "Bodoni Moda", serif;
    font-optical-sizing: none;
}
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;
    margin-top: 20px;
    color: #fff;
    font-size: 23px;
    text-align: center;
    background: url(i/header-top.svg), linear-gradient(to left, #4c4c4c, #545454);
    background-size: auto 100%, 100% 100%;
    background-repeat: repeat-x, no-repeat;
}

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:#545454;
    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;
    left:50%;
    transform: translateX(-50%);
    bottom: 20px;
    border-radius: 8px;
    background: url("i/arrow-up.svg") no-repeat center center, #545454;
    background-size: 20px 20px, 100% 100%;
    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, 100% 100%;
}



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, img.ronde {
    box-shadow: 1em 1em 2em rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
    img.cadrephoto, img.ombre, ul.images img, img.ronde {
        box-shadow: 0.5em 0.5em 1em rgba(0, 0, 0, 0.2);
    }
}

img.ronde {
    border-radius: 50%;
}

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

.wrapper-flex-columns .wrapper-col.fit-content {
    flex: 0;
}



.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:#545454;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: #545454 !important;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    text-transform: uppercase;
    margin: 5px 0;
    display: inline-block;
}

.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:#545454 !important;
    font-weight: normal;
    font-style: normal;
    font-family: "Lato", sans-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;}




div.lc {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: clamp(80px, 8vw, 140px);
    z-index: 9999;
    transform: translate(-50%, 22%);}

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

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

.pix-bandeau-swiper .swiper-slide .swiper-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920 / 860;
    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;
}
.pix-bandeau-swiper .swiper-slogan {
    position: absolute;
    bottom: 0;
    left: 50%;
    text-align: center;
    pointer-events: none;
    font-size: clamp(16px, 3vw, 40px);
    color: #161616;
    width: 80%;
    max-width: 1100px;
    transform: translateX(-50%);

    background: rgba(255, 255, 255, 0.9);
    border-radius: 1em 1em 0 0;
    padding: 1.5em 1em 1.3em;
}
.pix-bandeau-swiper .swiper-slogan h3 {  
    font-family: "Lato", sans-serif;
    font-weight: 800;
    font-size: 1em;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
    color: currentColor;
}

.pix-bandeau-swiper .swiper-slogan span.dl {
    display: block;
    font-family: "Bodoni Moda", serif;
    font-optical-sizing: none;
    font-weight: 500;
    font-size: 0.8em;
    line-height: 1;
    margin-top: 0.2em;
}

.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;
    --swiper-navigation-size: 36px;
    background: #c52b59 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;
    background-color: #c52b59;
}

@media (pointer: coarse) {
    .pix-bandeau-swiper .swiper-button-prev,
    .pix-bandeau-swiper .swiper-button-next {
        display: none;
    }
}


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

    .pix-bandeau-swiper .pix-bandeau-icones {
        gap: 8px;
    }
    .pix-bandeau-swiper .pix-bandeau-icones a {
        width: 38px;
        height: 36px;
    }
    .pix-bandeau-swiper .pix-bandeau-icones a img {
        width: 16px;
        height: 16px;
    }
}
@media (max-width: 600px) {
    .pix-bandeau-swiper {
        height: 250px;
        aspect-ratio: initial;
    }
}

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

    .pix-bandeau-swiper .pix-bandeau-icones {
        gap: 8px;
    }
    .pix-bandeau-swiper .pix-bandeau-icones a {
        width: 30px;
        height: 28px;
    }
    .pix-bandeau-swiper .pix-bandeau-icones a img {
        width: 14px;
        height: 14px;
    }
}






/* SLOGAN */
.slogan {
    padding: 20px;
    background: rgba(245, 220, 224, 0.25);
    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;
}


/* 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: #545454;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    
    width: 100%;
    height: 100%;
    
    font-size: 20px;

    background-color: #fff;
    border-radius: 5em 5em 0 0;
    overflow: hidden;
    
    max-width: 500px;
    margin: 0 auto;

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

    transition: box-shadow 0.2s ease;
}

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

.pix-card .pix-card-content {
    padding: 2em 1.5em;
    position: relative;
    width: 100%;
    text-align: center;
}


.pix-card .pix-card-title {
    font-family: "Bodoni Moda", serif;
    font-weight: 500;
    font-optical-sizing: none;
    line-height: 1;
    margin: 0;
    font-size: 1.3em;
    color: inherit;
    position: relative;
    z-index: 1;
    transition: color 0.2s ease;
    text-transform: none;
}

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

.pix-card .voir-plus {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    outline: 3px solid #fff;
    border: 2px solid #545454;
    box-sizing: content-box;
    width: 2em;
    height: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 99px;
    transition: background 0.2s ease;
}

.pix-card .voir-plus img {
    filter: brightness(0) saturate(100%) invert(33%) sepia(0%) saturate(12%) hue-rotate(187deg) brightness(90%) contrast(87%);
    width: 0.8em;
    height: 0.8em;
}

.pix-card:hover .voir-plus {
    background-color: #545454;
}
.pix-card:hover .voir-plus img {
    filter: brightness(0) invert(1);
}

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

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



em.pix-masonry-photo-titre {font-style: normal;display: block;font-size:16px;}
em.pix-masonry-photo-commentaire {font-style: normal;display: block;font-size:14px;color:#999;}




/* PARTENAIRES */
.pix-liste-partenaires {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pix-liste-partenaires .pix-card-image {
    padding: 15px;
    aspect-ratio: 3 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pix-liste-partenaires .pix-card-image img {
    width: 200px;
    height: 100px;
    object-fit: contain;
    aspect-ratio: initial;
}

.pix-liste-partenaires .pix-card .pix-card-content {
    text-align: center;
    padding: 1em;
}

.pix-liste-partenaires .pix-card .voir-plus {
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
}


@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 */
.wrapper-bande-temoignages {
    position: relative;
    text-align: center;
    padding: clamp(70px, 9vw, 120px) clamp(24px, 5vw, 40px) clamp(70px, 9vw, 120px);
}

.boxed-bande-temoignages {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.wrapper-bande-temoignages h2 {
    margin: 0;
    font-family: "Bodoni Moda", serif;
    text-transform: none;
    color: #545454;
    font-weight: 400;
    font-size: clamp(24px, 5vw, 50px);
    margin-bottom: 0.3em;
    padding: 0;
    border: none;
    font-optical-sizing: none;
    line-height: 1.3;
}

.wrapper-bande-temoignages .swiper-pagination {
    position: static;
    margin: 0 auto;
    transform: none!important;
    margin-top: 0;
    --swiper-theme-color: #545454;
    --swiper-pagination-bullet-size: 10px;
}

.wrapper-bande-temoignages a {
    color: currentColor;
    text-decoration: none;
}
.wrapper-bande-temoignages q {
    font-style: italic;
}
.wrapper-bande-temoignages q::before {
    margin-right: 5px;
}
.wrapper-bande-temoignages q::after {
    margin-left: 5px;
}
.wrapper-bande-temoignages .temoignage-auteur {
    font-weight: 700;
    margin-top: 10px;
    text-align: center;
}



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





/* BANDE ACCUEIL */
.wrapper-bande-accueil {
    display: flex;
    flex-direction: row;
    position: relative;
}

.wrapper-bande-accueil::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 100%;
    background: url('i/ligne-bande-accueil.svg');
    background-position: top center;
    background-size: 100% auto;
}

.wrapper-bande-accueil .bande-accueil-contenu {
    width: 100%;
    flex-grow: 1;
    text-align: right;
    padding-right: 50px;
    align-self: center;
}

.wrapper-bande-accueil .bande-accueil-image {
    width: 100%;
    flex-grow: 1;
    padding-left: 50px;
}

.wrapper-bande-accueil .bande-accueil-image .wrapper-image {
    position: relative;
    display: inline-block;
}
.wrapper-bande-accueil .bande-accueil-image .wrapper-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    aspect-ratio: 1 / 1;
    background: url('i/deco-img-accueil.svg') center center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0.5;
    transform: translate(50%, 10%);
    pointer-events: none;
}

@media (max-width: 1000px) {
    .wrapper-bande-accueil .bande-accueil-contenu {
        padding-right: 35px;
    }
    .wrapper-bande-accueil .bande-accueil-image {
        padding-left: 35px;
    }
}
@media (max-width: 830px) {
    .wrapper-bande-accueil {
        flex-direction: column;
        padding-left: 35px;
        gap: 20px;
    }    
    .wrapper-bande-accueil::before  {
        left: 0;
        transform: none;
    }
   .wrapper-bande-accueil .bande-accueil-contenu  {
        text-align: left;
        padding: 0;
    }
    .wrapper-bande-accueil .bande-accueil-image {
        padding: 0;
    }
}


/* BANDE LOGOS FOOTER */
.wrapper-logos {
    display: flex;
    flex-direction: row;
    gap: 100px;
    justify-content: center;
    align-items: center;
    padding:clamp(30px, 5vw, 50px) clamp(30px, 5vw, 50px);
}


.boxed-logos {
    max-width: 1680px;
    margin: 0 auto;
}

.wrapper-logos img {
    vertical-align: top;    
}

@media (max-width:1000px) {

    .wrapper-logos {
        gap: 60px;
    }
}




@media (max-width:800px) {
.wrapper-logos {flex-wrap: wrap;gap:0px;padding-top:10px;padding-bottom:30px;}

.wrapper-logos > div {
    width: 50%;
    padding:30px 10px;
    text-align: center;
    box-sizing: border-box;
}
.wrapper-logos > div.cotentin-unique-par-nature {
    padding: 30px 18px;
}
}

@media (max-width:500px) {
    .wrapper-logos > div {padding:10px 10px;}
    .wrapper-logos {padding-left:15px;padding-right:15px;}
    .wrapper-logos > div.adap {
        padding: 30px 14px;
    }
}





/* BANDE ACTUS */
.wrapper-bande-actus {
    max-width: 1920px;
    margin: 0 auto;
    background: #545454 url('i/actus.svg') center center / cover;

    padding: clamp(50px, 8vw, 100px) 40px clamp(30px, 4vw, 70px); 
    overflow: hidden;

}
.wrapper-bande-actus h2 {
    text-align: center;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: clamp(25px, 4vw, 60px);
    margin-bottom: 0.4em;
    position: relative;
    border: none;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    margin-bottom: 1em;
}


.wrapper-bande-actus h2 span.dl {
    display: initial;
    font-size: 1em;
    font-weight: 300;
    color: #f3c3ca;
    text-transform: uppercase;
    font-style: normal;
    text-shadow: none
}
.wrapper-bande-actus .swiper-actus .swiper-slide {
    height: auto;
}
.wrapper-bande-actus .wrapper-actualite {
    height: 100%;
}
.wrapper-bande-actus .pix-card {
    /* max-width: 500px; */
    margin: 0 auto;
}

@media (max-width: 1250px) {
    .wrapper-bande-actus {
        padding-inline: 30px;
    }
}
@media (max-width: 640px) {
    .wrapper-bande-actus {
        padding-inline: 20px;
    }
}




/* FAQ */
.faq-container {
    background-color: #fff;
    /* max-width: 800px; */
}

.faq-question {
    margin: 0px;
    padding: 7px 40px 7px 10px;
    display: block;
    cursor: pointer;
    font-weight: 400;
    font-family: "Bodoni Moda", serif;
    font-optical-sizing: none;
    position: relative;
    
    border: 2px solid rgb(204, 204, 204);
    border-bottom-color: transparent;
}

.faq-answer-container {
    height: 0px;
    overflow: hidden;
    border: 2px solid rgb(204, 204, 204);
    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;filter: brightness(0.02);}

