* {
    -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: "Lato", sans-serif;
    font-size:18px; 
    background-color:#3a261b;
    color: #fff;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;

    overflow: hidden;
}

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


html {height:100%;}

.wrapper-header {
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
    z-index: 1000000000;
    margin: 0 auto;
    font-size: 20px;

    background: #DAD5CB;

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

/* HEADER LOGO */
.wrapper-header div.logo {
    height: 100%;
    position: relative;
    z-index: 4;

    display: flex;
    align-items: center;
}

.wrapper-header a.logo {
    text-decoration: none;
    color: currentColor;
    position: relative;
    display: inline-flex;
    vertical-align: top;
    align-items: center;
    padding: 1em;
}

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



.header-bottom {
    flex-direction: row;
    display: flex;
    background: #851b2d;
    padding-top: 10px;
    width: 100%;
}

/* MENU */
.wrapper-menu{
    text-align: center;

    width: 100%;
    margin: 0 auto;
}


.wrapper-menu .menu {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    height: 100%;

    z-index: 2;
    position: relative;
}
.wrapper-menu .menu > li{
    position: relative;
    z-index: 10;
    transform: translateZ(0);
}

.wrapper-menu .menu a,
.wrapper-menu .menu span{
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 1.2em 1em 1em;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    height: 100%;
    border-radius: 0.8em 0.8em 0 0;
    letter-spacing: -0.05em;

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



/* ON HOVER */
.wrapper-menu .menu .menu-item:hover > a,
.wrapper-menu .menu .menu-item:hover > span {
    background: #3a261b;
}

/* ON SELECTED */
.wrapper-menu .menu .menu-item.selected > a,
.wrapper-menu .menu .menu-item.selected > span {
    background: #3a261b
}

.wrapper-menu .menu .menu-item > a em,
.wrapper-menu .menu .menu-item > span em {
    font-style: normal;
}

.wrapper-menu .menu .menu-arrow {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0.7em;
} 
.wrapper-menu .menu .menu-arrow img{

}

.wrapper-menu .sousmenu{
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: top;
    min-width: 100%;
    list-style: none;
    padding: 0;
    background-color: #851b2d;
    z-index: -1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}


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

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

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

.wrapper-menu .sousmenu a .apple {
    width: 1em;
    height: 1em;
    vertical-align: top;
}

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



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

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

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

.header-langues {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5em;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-langues a img {
    vertical-align: top;
    width: 2.2em;
    height: auto;
}



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

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

@media (max-width: 1020px) {
    .wrapper-menu .menu a, .wrapper-menu .menu span {
        padding: 1.2em 0.7em 1em;
    }
}

@media (max-width: 860px) {
 
    .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;    
        font-size: 14px;
    } 

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

    .wrapper-header .wrapper-menu .menu {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 10px 70px 10px 10px;
        height: 100%;
        background: #851b2d;
        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;
        border-radius: 0;
    }
    
    .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: 14px;
        /* text-transform: none; */
    }

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


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


    .wrapper-menu .menu-item > a::before,
    .wrapper-menu .menu-item > span::before {
        bottom: 0;
        top: 50%;
        left: -10px;
        transform: translateY(-50%) scaleX(0);
        transform-origin: left center;
    }

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

}

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

@media (max-width: 580px) {
    .wrapper-header div.logo {
        font-size: 0.8em;
    }
}

@media (max-width: 420px) {
    .wrapper-header div.logo {
        font-size: 0.7em;
    }
}

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


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

    color: #928780;

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

    display: grid;
    grid-template-columns: 1fr auto;

    background: #2f1f16;
}

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

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

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

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

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;

    margin: 0 auto;

    z-index: 1;

    max-width: 1920px;

    padding-top: clamp(20px, 5vw, 50px);
    padding-inline: 20px;
}



.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: center;
    padding: 20px 10px;
    max-width: 400px;
    display: inline-block;
}

.wrapper-footer-inner .footer-inner h3 {
    color: #928780;
    margin: 0;
    margin-bottom: 0.5em;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    font-size: 30px;
    line-height: 1;
}

.wrapper-footer-inner .footer-inner h3:not(:first-child) {
    margin-top: 1em;
}


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

.footer-3 address {
    font-style: normal;
    margin-bottom: 10px;
}



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

.footer-inner ul ul a {
    font-weight: 300;
}

.footer-inner .footer-email {
    text-transform: none;
}



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

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: #928780;
    margin-top: 80px;

    padding: 0 20px 80px;
}


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




@media (max-width: 1200px) {
    .wrapper-footer-inner .footer-inner h3 {
        font-size: 26px;
    }
}

@media (max-width: 1050px) {
    .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 .footer-inner {
        padding-block: 20px;
    }
}
@media (max-width: 650px) {
    .wrapper-footer-inner :is(.footer-1, .footer-2, .footer-3) {
        width: 100%;
    }

    .wrapper-footer-inner .footer-inner h3 {
        font-size: 26px;
    }

    .wrapper-footer::before {
        height: 100%;
    }
}

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


    .wrapper-footer::before {
        width: 100%;
        height: auto;
        top: auto;
        bottom: 0;
        left: 0;
        transform: none;
    }
}





/* CONTENU */
input.form_submit,
a.bouton {
    display: inline-block;
    color: #fff;
    background: #851b2d;

    text-decoration: none;
    padding: 0.75em 1em;
    font-weight: 700;
    font-size: 1em;
    border: none;
    border-radius: 0;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 1;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
    transition: background-color 0.2s ease, color 0.2s ease;
}

a.bouton img {
    vertical-align: top;
}

a.bouton:hover,
input.form_submit:hover {
    background-color: #c42842;
}



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



.wrapper-contenu {
    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 60px 20px;
    }
}
@media (max-width:660px) {
    div.padding { 
        padding:30px 15px 60px 15px;
    }
}

.wrapper-bande-accueil {
    max-width: 1920px;
    margin: 0 auto;

    background: url(i/contenu.svg) bottom -20px left 5vw no-repeat;
    background-size: 350px auto;
}

@media (max-width: 500px) {
    .wrapper-bande-accueil {
        background-size: 250px auto;
    }       
}

.rouge {
    color: #ed1c24
}


h1,h2.h1 {
    font-size: clamp(26px, 4vw, 44px);
    font-family: "Lato", sans-serif;
    font-weight: 700;
    line-height: 1.05;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: -0.5rem;
    position: relative;
    letter-spacing: -0.03em;
}


h1 span.dl {
    display: block;
    font-size: max(0.6em, 20px);
    font-family: "Lato", sans-serif;
    font-weight: 300;
    line-height: 1.05;
    color: #928780;
    text-transform: uppercase;
    margin: 0;
    margin-top: 0.2em;
    margin-bottom: -0.5rem;
}

h2 {
    font-size: calc(clamp(26px, 4vw, 44px) * 28/44);
    font-family: "Lato", sans-serif;
    font-weight: 400;
    line-height: 1.05;
    color: #DAD5CB;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: -0.3em;
    padding-bottom: 0.5em;
    position: relative;
        letter-spacing: -0.03em;
}

h2 span.dl {
    display: block;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: max(0.8em, 20px);
    text-transform: none;
}

h2:not(.no-line)::after {
    content: '';
    display: inline-block;
    width: 2em;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: currentColor;
}

.centre h2:not(.no-line)::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {  
    font-size: 1.1em;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    line-height: 1.05;
    color: #DAD5CB;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: -0.5rem;
    position: relative;
}






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


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

a[href^="tel:"] {
    white-space: nowrap;
}

a.lien:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 5px;
}


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

.centre ul.puce > li {
    display: inline-block;
    margin: 0 auto;list-style: none;
}

.centre ul.puce > li::before {
    content:none;
}

em.puce img {vertical-align: 2px;margin-right:5px;}



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: #000;
  border: 1px solid #000;
  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:1100px) {
    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:#ec1c23; 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 #ec1c23 1px; font-size:15px;}
input.frmsubmit {  background-color:#ec1c23; border:#ec1c23 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: #DAD5CB;
    padding: 4px 20px!important;
    color:#2f1f16;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: #DAD5CB;
    margin-top: 20px;
    color: #2f1f16;
}

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

#form {
    color:#fff;
    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: #2f1f16 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-color: #2f1f16;
    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.5);
}



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








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





/* SLOGAN */
.slogan {
    padding: 20px;
    background: #DAD5CB;
    position: relative;
    z-index: 1;
    color: #2f1f16;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}



/* FORMULAIRES */
.formulaire {
    display: block;
    background-color: #2f1f16;
}
.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;
}



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



/* CAROUSEL ICONES */
.wrapper-bande-pages {
    position: relative;
    margin: 0 auto;

    margin-top: -1px;
}
.wrapper-bande-pages h2 {
    color: #fff;
    font-family: "Lato", sans-serif;
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 500;
    text-transform: uppercase;

    text-align: center;

    z-index: 2;
    margin: 0;
    padding: 0;
}
.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: #DAD5CB;

    transition: all 0.3s ease;
}

.wrapper-page-texte {
    text-align: center;
    padding: 1em;
}
.wrapper-page-texte h3 {
    margin: 0;
    line-height: 1.1;
    font-size: 1.2em;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    color: #2f1f16;

    transition: color 0.4s ease;
}

.wrapper-page-texte p {
    font-size: 0.8em;
    margin: 0;
    margin-top: 0.4em;
    color: #3a261b;
    font-weight: 400;
    font-style: italic;
}

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


/* GRILLE DES VOYAGES */
.pix-voyages-container{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pix-voyage-item {
    text-decoration: none;
    color: currentColor;
    background: #DAD5CB;
    text-align: center;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.5);
}

.pix-voyage-item img {
    width: 100%;
}

.pix-voyage-item h3 {
    margin: 0;
    line-height: 1.1;
    font-size: 1.2em;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    color: #2f1f16;

    padding: 0.5em 1em;
}

@media (max-width: 900px) {
    .pix-voyages-container{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pix-voyages-container{
        grid-template-columns: 1fr;
    }
}




/* TABLEAUX */
.tableau-container {
    overflow-x: auto;
    cursor: grab;
    position: relative;
}
.tableau-container::before {
    content: '';
    position: absolute;
    left: calc(var(--width) + var(--scroll-left) - 50px);
    top: 0;
    height: 100%;
    width: 50px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.50));
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
.tableau-container.not-scroll-end::before {
    opacity: 1;
}

.tableau {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    font-family: 'Lato', sans-serif;
}

.tableau td strong {
    display: inline-block;
    max-width: 200px;
}

.tableau thead {
    background-color: #851b2d;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}
.tableau thead tr{
    border: 1px solid #ddd;
}
.tableau thead th {
    margin: 0 auto;
    border: 1px solid #ddd;
}


.tableau tbody {
    width: 100%;
}

.tableau tbody tr {
    border: 1px solid #ddd;
    padding: .35em;
}

.tableau th,
.tableau td {
    padding: .625em;
    text-align: center;
    min-width: 140px;
}

.tableau td { border: 1px solid #ddd;}

.tableau th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
}


.tableau thead th em {
    font-size: 0.8em;
    line-height: 1.2;
    display: inline-block;
    font-weight: 400;
}

/* WEBKIT */
.tableau-container::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
.tableau-container::-webkit-scrollbar-track {
    background: #f1f1f1;border-radius: 5px;
}
.tableau-container::-webkit-scrollbar-thumb {
    background: #851b2d;border-radius: 5px;
}
/* FIREFOX */
.tableau-container {
    scrollbar-width: large;
    scrollbar-color: #851b2d #f1f1f1;
}

.tripadvisor {
    margin-top:20px;
    font-size:24px;
    font-weight: 600;
}