* {
    -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: "Josefin Sans", sans-serif;
    font-size:22px; 
    color:#1d1d1d;
    font-weight: 400;
    margin: 0;
    background-color:#ffffff;
    line-height: 1.4;
}

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

#menu, .slicknav_menu {
    display: none;
}

html {height:100%;}


:root { 
    --header-height: 230px;
    --swiper-pagination-bullet-size: 12px;
}
.wrapper-header{
    display: flex;
    flex-direction: row;

    position: relative;
    height: var(--header-height);
    position: relative;
    z-index: 1000000000;
    box-shadow: 0 14px 16px rgba(0, 0, 0, 0.15);
    
    width: 95%;
    max-width: 1850px;
    margin: 0 auto;
    
    border-radius: 0 0 100px 100px;
    background-color: #ffffff;
}

:not(.page-accueil) .wrapper-header {
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.15);
}


.wrapper-header div.logo {
    flex-shrink: 0;
    --scale: 1;
    z-index: 100000;
    align-self: center;
    margin-left: 40px;
}

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

.wrapper-header .wrapper-right {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.wrapper-header .wrapper-menu{
    text-align: center;
    padding-right: 100px;
}
.wrapper-header .menu{
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
}
.wrapper-header .menu > li{
    position: relative;
    z-index: 10;
}

.wrapper-header .menu a,
.wrapper-header .menu span{
    font-family: "Josefin Sans", sans-serif;
    letter-spacing: -1.5px;
    font-weight: 650;
    font-size: 22px;
    line-height: 1;
    color: #1d1d1d;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 35px 25px 30px;
    text-align: center;
    cursor: pointer;
    
    height: 100%;
    display: flex;
    align-items: center;

    border-radius: 10px 10px 0 0;

    /* background: linear-gradient(
        to top, 
        #A5998E 40%, 
        transparent 40%, 
        transparent 45%, 
        #e1dacf 45%, 
        #e1dacf 60%, 
        transparent 60%
    ); */
    background: linear-gradient(
        to top, 
        #e1dacf 50%,
        transparent 50%
    );
    background-size: 100% 200%;
    background-position: 0 0;

    transition: background-position 0.3s ease, color 0.2s ease;
}

.wrapper-header .menu-item > a::before,
.wrapper-header .menu-item > span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e1dacf;
    z-index: -1;
    border-radius: inherit;
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.3s ease;
}

.wrapper-header .menu a br, 
.wrapper-header .menu span br {
    display: none;
}

.wrapper-header .menu-item:hover > a,
.wrapper-header .menu-item:hover > span {
    /* background-position: 0 100%; */
    /* color: #fff; */
}
.wrapper-header .menu-item:hover > a::before,
.wrapper-header .menu-item:hover > span::before {
    transform: scaleY(1);
}

.wrapper-header .menu-item.selected > a,
.wrapper-header .menu-item.selected > span {
    background: #a5998e;
    color: #fff;
}

.wrapper-header .menu span .menu-arrow {
    margin-left: 7px;
    margin-top: -2px;
    display: inline-block;
}

/* .wrapper-header .menu-item:hover .menu-arrow, */
.wrapper-header .menu-item.selected .menu-arrow {
    filter: brightness(0) invert(1);
} 

.wrapper-header .sousmenu{
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    list-style: none;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: -1;
    box-shadow: 0 1px 10px rgba(38,38,38, 0.8);
    border-radius: 0 0 10px 10px;
}
.wrapper-header .sousmenu a{
    color: #1d1d1d;
    text-decoration: none;
    padding: 15px 15px;
    text-align: center;
    text-transform: uppercase;
    text-align: center;
    display: block;
    line-height: 1;
    font-size: 22px;
    font-weight: 500;
    border-radius: 0;
}

.wrapper-header .sousmenu li:last-child a {
    border-radius: 0 0 10px 10px;
}

.wrapper-header .sousmenu a:hover{
    background-position: 0 100%;
    /* color: #fff; */
}

.wrapper-header .sousmenu .selected a {
    background: #a5998e;
    color:#fff;
}

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



.wrapper-header .header-top {
    position: absolute;
    top: 20px;
    right: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    font-size: 20px;
}

.wrapper-header .header-top a img {
    vertical-align: top;
    width: auto;
    height: 25px;
}
.wrapper-header .header-top a:hover img {
    filter: brightness(0) saturate(100%) invert(50%) sepia(17%) saturate(1535%) hue-rotate(172deg) brightness(96%) contrast(85%);
}




@media (max-width: 1600px) {
    :root {
        --header-height: 210px;
    }
    .wrapper-header {
        border-radius: 0 0 85px 85px;
    }
    .wrapper-header .logo {
        width: 340px;
    }
    .wrapper-header .wrapper-menu {
        padding-right: 80px;
    }
    .wrapper-header .menu a, .wrapper-header .menu span {
        padding: 35px 22px 30px;
        font-size: 21px;
    }
    .wrapper-header .sousmenu a {
        padding: 15px 15px;
        font-size: 20px;
    }

    .wrapper-header .header-top a.bouton  {
        font-size: 20px;
    }
}
@media (max-width: 1450px) {
    :root {
        --header-height: 190px;
    }
    .wrapper-header {
        border-radius: 0 0 70px 70px;
    }
    .wrapper-header div.logo {
        margin-left: 30px;
    }
    .wrapper-header .logo {
        width: 300px;
    }
    .wrapper-header .wrapper-menu {
        padding-right: 70px;
    }
    .wrapper-header .menu a, .wrapper-header .menu span {
        padding: 35px 19px 30px;
        font-size: 20px;
    }
    .wrapper-header .sousmenu a {
        padding: 15px 15px;
        font-size: 19px;
    }

    .wrapper-header .header-top {
        top: 15px;
    }
}
@media (max-width: 1300px) {
    :root {
        --header-height: 180px;
    }
    .wrapper-header .logo {
        width: 270px;
    }
    .wrapper-header .menu a, .wrapper-header .menu span {
        padding: 35px 15px 30px;
        font-size: 19px;
    }
    .wrapper-header .sousmenu a {
        padding: 15px 15px;
        font-size: 18px;
    }

    .wrapper-header .header-top a.bouton  {
        font-size: 19px;
    }
}
@media (max-width: 1170px) {
    :root {
        --header-height: 150px;
    }
    .wrapper-header {
        border-radius: 0 0 60px 60px;
    }
    .wrapper-header div.logo {
        margin-left: 25px;
    }
    .wrapper-header .logo {
        width: 220px;
    }
    .wrapper-header .wrapper-menu {
        padding-right: 60px;
    }
    .wrapper-header .menu a, .wrapper-header .menu span {
        padding: 30px 18px 25px;
        font-size: 18px;
    }
    .wrapper-header .sousmenu a {
        padding: 15px 15px;
        font-size: 17px;
    }

    .wrapper-header .header-top {
        top: 10px;
        right: 25px;
    }
    .wrapper-header .header-top a.bouton  {
        padding: 10px 12px 4px;
    }
}
@media (max-width: 1080px) {
    :root {
        --header-height: 130px;
    }
    .wrapper-header .logo {
        width: 190px;
    }
    .wrapper-header div.logo {
        margin-left: 20px;
    }
    .wrapper-header .header-top {
        right: 20px;
    }
    .wrapper-header {
        border-radius: 0 0 50px 50px;
    }
    .wrapper-header .wrapper-menu {
        padding-right: 50px;
    }
    .wrapper-header .menu a, .wrapper-header .menu span {
        padding: 25px 14px 20px;
        font-size: 17px;
    }
    .wrapper-header .sousmenu a {
        padding: 15px 15px;
        font-size: 16px;
    }

    .wrapper-header .header-top a.bouton {
        padding: 7px 12px 4px;
    }
}

@media (max-width: 950px) {

    .wrapper-header .menu {
        display: none;
    }
    .slicknav_menu {
        display: block;
    }

    .slicknav_btn {
        position: absolute !important;
        top: 10px;
        right: calc(2.5% + 20px);
        z-index: 1000000001;
        background-color: transparent!important;
        border-radius: 0!important;
        margin: 0!important;
    }

    .wrapper-header .header-top {
        top: 55px;
        right: 20px;
    }
    .wrapper-header .header-top a.bouton {
        padding: 7px 6px 4px;
        font-size: 16px;
    }
}

@media (max-width: 620px) {
    .wrapper-header .header-top{
        top: 40px;
        right: 20px;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 420px) {
    .wrapper-header div.logo {
        margin-left: 10px;
    }
    .wrapper-header {
        border-radius: 0 0 35px 35px;
    }
    .wrapper-header .header-top {
        top: 37px;
        right: 20px;
    }
    .wrapper-header .header-top a.bouton {
        font-size: 13px;
    }
    .slicknav_btn {
        right: calc(2.5% + 10px);
    }
    .slicknav_nav a {
        margin: 2px 10px!important;
    }
    .wrapper-header .logo {
        width: 150px;
    }

    :root {
        --header-height: 110px;
    }
}
@media (max-width: 340px) {
    .wrapper-header .logo {
        width: 130px;
    }
}

 
.wrapper-footer {
    background:#897f76;
    color: #ffffff;
    position: relative;
}

.wrapper-footer a {
    color: currentColor;
    text-decoration: none;
    font-weight: 800;
    background: linear-gradient(to top, #e1dacf 50%, transparent 50%);
    background-size: 100% 200%;
    background-position: 0 0;
    transition: background-position 0.3s ease, text-shadow 0.2s ease;
    display: inline-block;
    padding: 4px 8px 0px;
    line-height: 1.2;
}
.wrapper-footer a:hover {
    background-position: 0 50%;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}



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

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

    z-index: 1;
    padding: clamp(30px, 6vw, 60px) 0 40px;

    background-color: #a5998e;
}
.footer-1, .footer-2, .footer-3, .footer-4 {
    width: 25%;
    z-index: 1;
}

.wrapper-footer-inner .footer-inner {
    max-width: 370px;
    margin: 0 auto;
    text-align: center;
    padding: 25px 25px 15px 25px;
    color: #fff;
    font-size: 20px;
}


.wrapper-footer-inner .footer-inner h3 {
    font-family: "Libre Baskerville", serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.1;
    margin: 0;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
}


.footer-inner address {
    font-style: normal;
}
.footer-inner .footer-tel,
.footer-inner .footer-email {
    margin-top: 10px;
    display: inline-block;
}
.footer-2 a {
    color: currentColor;
    font-weight: 700;
    text-decoration: none;
}

.footer-3 .jours {
    text-transform: uppercase;
}

.footer-4 ul {
    list-style: none;
    padding: 0;
    text-transform: uppercase;
}
.footer-4 ul a {
    font-weight: 400;
}

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


.logo-footer {
    margin: 0 auto;
    text-align: center;
    height: 200px;
    margin-top: -120px;
    width: auto;
    position: relative;
    z-index: 2;
    pointer-events: none;
    width: max-content;
}
.logo-footer::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #fefbf2;
    position: absolute;
    border-radius: 50%;
    filter: blur(25px);
    transform: scale(1);
    z-index: -1;

    animation: logo-footer 2.5s ease-in-out infinite alternate;
}

.wrapper-footer .bouton-footer {
    margin-bottom: 10px;
}

@keyframes logo-footer {
    0% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1.2);
    }
}

div.mentions {
    position: relative;
    margin: auto;
    text-align: center;
    padding: clamp(30px, 7vw, 80px) 35px 40px 35px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;color: #f5eadd;
}

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

@media (max-width: 1100px) {

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

}
@media (max-width: 700px) {

    .wrapper-footer .footer-1, .wrapper-footer .footer-2, .wrapper-footer .footer-3, .wrapper-footer .footer-4 {
        width: 100%;
    }
    .wrapper-footer-inner .footer-inner h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .wrapper-footer-inner {
        padding-bottom: 115px;
    }

}


input.form_submit,
a.bouton {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    color: #3f3a36;
    font-weight: 700;
    font-family: "Josefin Sans", sans-serif;
    font-size: 22px;
    background: linear-gradient(to top, #A5998E 50%, transparent 50%, transparent 60%, #e1dacf 60%, #e1dacf 75%, transparent 75%);
    background-size: 100% 200%;
    background-position: 0 0;
    padding: 17px 15px 10px;
    line-height: 1.4;
    border: none;
    outline: none;
    cursor: pointer;
    transition: background-position 0.3s ease, color 0.2s ease;
}

.bouton.bouton-footer {
    background-image: linear-gradient(to top, #f3e8db 50%, transparent 50%, transparent 60%, #e1dacf 60%, #e1dacf 75%, transparent 75%);
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

a.bouton:hover,
input.form_submit:hover {
    background-position: 0 100%;

    color: #fff;
}


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

@media (max-width: 720px) {

}




.wrapper-site {
    overflow: hidden;
}
.wrapper-contenu {
    background:#ffffff;
    z-index: 1;
    position: relative;
}
.wrapper-boxed-contenu {
    max-width:1180px;
    margin:auto;}
.wrapper-boxed {}
.boxed {
    max-width:1480px;
    margin:auto;
}



h1,h2.h1 {
    font-family: "Libre Baskerville", serif;
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 700;
    line-height: 1;
    color: #3f3a36;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 0.3em;
}


span.dl {
    font-family: "Josefin Sans", sans-serif;
    display: block;
    text-transform: none;
    color: #1d1d1d;
    font-size: calc(clamp(30px, 6vw, 48px) * 30/48);
    line-height: 1.1;
    font-weight: 400;
    margin-top: 0.2em;
}



h2 {
    font-family: "Josefin Sans", sans-serif;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
    color: #a4988d;
    position: relative;
    line-height: 1.1;
    font-size: clamp(22px, 5vw, 40px);
    margin-bottom: 10px;
}

h3 {
    font-family: "Libre Baskerville", serif;
    font-size: clamp(24px, 4vw, 30px);
    font-weight: 700;
    color: #3f3a36;
    margin: 0;
    line-height: 1;
    margin-bottom: 10px;
}




div.padding { padding:50px 20px 50px 20px;}



@media (max-width:900px) {
    div.padding { padding-top:50px;}
}
@media (max-width:660px) {
    div.padding { padding-top:40px;}
}
@media (max-width:500px) {
    div.padding { padding-top:30px;}
}



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

/*.cadrephoto {border:1px solid #929292;}*/

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

a.lien:hover {
    color: #3f3a36;
    border-bottom-color: #3f3a36;
    text-decoration: none;}


a.lienpetit:link,a.lienpetit:visited {font-size:15px;color:#a1998e; font-weight:700; text-decoration:none; }
a.lienpetit:hover{color:#3f3a36;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;
    overflow: auto;
    padding-left: 19px;
}
ul.puce > li::before{
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 8px;
    background: url(i/puce.svg) center center no-repeat;
    background-size: contain;
    vertical-align: middle;
}



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

ul.images li {
    float:left;
}

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

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

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


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




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



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



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

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

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


@media (max-width:1000px) {
    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.right-responsive.logo-marque {
        text-align: left;
        padding-bottom: 0;
    }
}


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


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

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

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

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

.sousmenu_bg {background-image:url(i/sousmenu_bg.gif);background-repeat:repeat-y;background-position:right;background-color:#D1D5D6;border-top:1px solid #fff;border-bottom:1px solid #fff;}

a.liennewsticker:link,a.liennewsticker:visited,a.liennewsticker:hover,a.liennewsticker:active {font-size:15px; color:#000; font-weight:normal; font-style:normal; text-decoration:none; }
a.liennewsticker:focus {outline:none;}


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

div.pagination {
    background-color: transparent;
    padding: 6px;
    overflow: hidden;
}
div.detail-pagination {background-color:transparent;padding:6px 10px;overflow:hidden;}

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

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



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



div.map {
}

.form_header {
    background: #a1998e;
    padding: 4px 4px 2px 4px !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;*/
}

.formulaire-message-envoye {
    padding: 20px;
    background: linear-gradient(to left, #a5998e, #948374);
    margin-top: 20px;
    color: #fff;
}

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

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

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

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

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

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

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

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

#menu {
    display:none;
}

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

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

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


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: 2px 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

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

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

a[href^="tel"]{
    color:inherit;
    text-decoration:none;
}

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

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

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

.isotope-filter {margin-bottom: 30px;}
.isotope-filter a {position: relative;cursor: pointer;text-transform: uppercase;display: inline-block;padding:4px 20px;}

.isotope-filter a.active {color:#b87d2a;}

.isotope-filter a.active:after {    position: absolute;
    content:" ";
    display: block;
    height:3px;
    background-color: #b87d2a;
    width:100%;
    left:50%;
    transform: translateX(-50%);
    margin:auto;
    margin-top:10px;
}

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


.pswp {z-index: 150000000;}


.detail-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.detail-pagination a.lien {
    color: #000 !important;
    font-weight: normal;
    font-style: normal;
    font-size: 15px;
    text-transform: uppercase;
    margin: 10px 0;
    display: inline-block;
}

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

.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:#000 !important;
    font-weight: normal;
    font-style: normal;
}


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






.form_label {
    font-family: "Fira Sans Condensed", sans-serif;
    font-weight: 500;
}


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


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



.wrapper-listes-actus {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.liste-actu {
    margin-bottom: 40px;
}

.liste-actu a{
    color: currentColor;
    text-decoration: none;
}

.liste-actu .actu-content {
    margin-top: 15px;
}
.liste-actu img {
    width: 100%;
}
.liste-actu .actu-titre {
    margin: 0;
    margin-bottom: 15px;
    font-family: "Libre Baskerville", serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #3f3a36;
    text-transform: none;
    margin: 0;
    margin-bottom: 10px;
}
.liste-actu .actu-titre a {
    color: currentColor;
    text-decoration: none;
}
.liste-actu .actu-texte {
    margin: 0;
    line-height: 1.2;
}

.liste-actu .actu-lien {
    margin-top: 10px;
}

.actu-detail h1 {
    margin-bottom: 10px;
    font-size: calc(clamp(24px, 6vw, 48px) * 40 / 48);
}

.actu-detail-premiere-image {
    text-align: center;
}

@media (max-width: 980px) {
    .wrapper-listes-actus {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 700px) {
    .liste-actu .actu-titre {
        font-size: 21px;
    }
}

@media (max-width: 530px) {
    .wrapper-listes-actus {
        grid-template-columns: 1fr;
    }
}

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






.faq-container {
    background-color: #000;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}

.faq-question {
    margin: 0px;
    padding: 14px 10px;
    display: block;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    transition: all 0.3s ease 0s;
}
 
.faq-answer-container {
    height: 0px;
    overflow: hidden;
    
}

 
.faq-answer {
   
}

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

.faq.open .faq-question {
    background-color:#e5dccf;color: #121212;
    
}

.faq-question:hover {
    box-shadow: 0px 0px 24px rgba(0,0,0,0.22);
}

.faq-bouton {
    background-color: #151515;
    color: #fff;
    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;}



.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: 1;
    transition: opacity 0.3s ease-out;
}
.tableau-container.scroll-end::before {
    opacity: 0;
}

.tableau {
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 2px solid #000;
}

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

.tableau thead {
    background-color: #000;
    color: #e5dccf;
    text-transform: uppercase;
    font-weight: 700;
    border-collapse: collapse;
}
.tableau thead tr{
    background-color: #000;
    color: #e5dccf;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    position: sticky;
    left: 0;
    text-align: center;
    width: var(--width);
}
.tableau thead th {
    display: block;
    margin: 0 auto;
}

.tableau tbody {
    display: table;
    width: 100%;
}

.tableau tbody tr {
    padding: .25em;
}

.tableau tbody tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.03);
}

.tableau th,
.tableau td {
    padding: 0.5em .625em;
   
}

.tableau td {
}

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


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

.tableau tr:first-of-type td{
    background-color: #000;
    color: #e5dccf;
    text-transform: uppercase;
}


/* BANDEAU SWIPER */
.pix-bandeau-swiper {
    aspect-ratio: 1920 / 1050;
    position: relative;
    user-select: none;

    margin-top: calc( -1  * var(--header-height) );
}
.pix-bandeau-swiper::before {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    background: url('i/deco-bandeau-photos.svg') no-repeat bottom right / 100% auto;
}


.pix-bandeau-swiper .swiper-slide .swiper-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920 / 1050;
    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: 7%;
    left: 0;
    right: 0;
    margin-right: 30px;
    text-align: left;
    width: fit-content;
    padding: clamp(20px, 5vw, 50px);
    pointer-events: none;
    font-size: 30px;
    color: #fff;
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    transform: translateY(10px);

    background: rgba(255, 255, 255, 0.8);
    border-radius: 0 10px 10px 0;
    box-shadow: 2Px 2px 30px rgba(0, 0, 0, 0.3);
}
.pix-bandeau-swiper .swiper-slide-active .swiper-slogan {
    opacity: 1;
    transform: translateY(0px);
}
.pix-bandeau-swiper .swiper-slogan h3 {
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-size: clamp(20px, 4vw, 48px);
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    color: #a4988d;
}
.pix-bandeau-swiper .swiper-slogan span {
    display: block;
    font-family: "Josefin Sans", sans-serif;
    color: #1d1d1d;
    font-weight: 400;
    font-size: clamp(16px, 0.8em, 28px);
    text-transform: none;
    margin-top: 0.2em;
}


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


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

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


/* Bande icones icones */
.wrapper-bande-icones {
    overflow: hidden;
    width: 100%;
    
    position: relative;
    z-index: 2;
    background: #f3eadd;
}
.swiper-icones {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}

.swiper-icones .swiper-slide {
    padding: 0 10px;
    height: auto;
}

.wrapper-icone {
    position: relative;
    text-decoration: none;
    color: currentColor;
    text-align: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 280px;
    height: 100%;
    margin: 0 auto;

    padding: 50px 10px 50px;

    margin-top: 10px;
    border-radius: 999px 999px 0 0;

    transition: background 0.3s ease;

}

.wrapper-icone .icone {
    position: relative;
}

.wrapper-icone img {
    display: inline-block;
    margin: auto;
    width: 100px;
    height: 100px;
    object-fit: contain;
    vertical-align: top;
}
.wrapper-icone h3 {
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
    color: #1d1d1d;
    text-align: center;
    margin-top: 15px;
}
.wrapper-icone p {
    margin: 0;
    line-height: 1.2;
    margin-top: 5px;
    color: #a5998e;

    transition: color 0.3s ease;
}

.wrapper-icone:hover {
    background: #e4dccf;
}
.wrapper-icone:hover p {
    color: #1d1d1d;
}


@media (max-width: 900px) {
    .wrapper-icone {
        max-width: 250px;
        padding: 30px 10px 30px;
    }
    .wrapper-icone img {
        width: 80px;
        height: 80px;
    }
    .wrapper-icone h3 {
        font-size: 22px;
    }
    .wrapper-icone p {
        font-size: 19px;
    }
}
@media (max-width: 580px) {
    .wrapper-icone {
        max-width: 230px;
        padding: 20px 10px 20px;
    }
    .wrapper-icone img {
        width: 60px;
        height: 60px;
    }
    .wrapper-icone h3 {
        font-size: 20px;
    }
    .wrapper-icone p {
        font-size: 17px;
    }
}
@media (max-width: 450px) {
    .wrapper-icone {
        max-width: 170px;
        padding: 10px 10px 20px;
    }
    .wrapper-icone img {
        width: 45px;
        height: 45px;
    }
    .wrapper-icone h3 {
        font-size: 18px;
    }
    .wrapper-icone p {
        font-size: 16px;
    }
}

@media (max-width: 390px) {
    .wrapper-icone h3 {
        font-size: 16px;
    }
    .wrapper-icone p {
        font-size: 14px;
    }
}



/* SLOGAN */
.slogan {
    padding: 20px;
    background: #a1998e;
    color: #fff!important;

    position: relative;
    z-index: 1;
}
.slogan h1, .slogan h2, .slogan h3 {
    color: #fff;
}
.slogan a {
    color: #fff!important;
}
.slogan ul.puce > li::before {
    filter: brightness(0) invert(1);
}



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



/* LOGO CAROUSEL LINEAR INFINITE */
.wrapper-bande-marques {
    overflow: hidden;
    padding: 40px 0;
    background: white;
    white-space: nowrap;
    position: relative;

    margin: 0 auto;
    max-width: 1920px;

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

.marques-slide {
    width: max-content;
    animation: 35s slide infinite linear;
    /* min-width: 100vw; */
    display: inline-block;
    text-align: center;
}


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

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

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

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




@media (max-width: 500px) {
    a.lien[href^="mailto:"] {
        letter-spacing: -1px;
        overflow-wrap: break-word;
    }
}



.wrapper-bande-photo-texte {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #fff;
}

.wrapper-bande-photo-texte .bande-photo,
.wrapper-bande-photo-texte .bande-texte {
    width: 100%;
    flex-grow: 1;
}

.wrapper-bande-photo-texte .bande-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: top;
}
.wrapper-bande-photo-texte .bande-photo {
    position: relative;
}
.wrapper-bande-photo-texte .bande-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('i/logo-filigrane.svg') center center no-repeat;
    background-size: 100% auto;
    z-index: 2;
}

.wrapper-bande-photo-texte .bande-texte {
    justify-self: center;
    align-self: center;
    text-align: center;
}

.wrapper-bande-photo-texte .bande-texte-inner {
    max-width: 700px;
    margin: auto;
    padding: 60px 30px;
}

@media (max-width: 800px) {
    .wrapper-bande-photo-texte {
        flex-direction: column;
    }
    .wrapper-bande-photo-texte .bande-texte-inner {
        padding: 30px 20px;
    }
}






/* Témoignages */
.wrapper-bande-temoignages {
    background: #f5eadd url(i/bg-temoignages.webp) no-repeat right center / cover;
    background-size: auto 100%;
    position: relative;
    text-align: center;
    padding: clamp(50px, 7vw, 100px) 20px calc(clamp(50px, 7vw, 100px)* 70 / 100);
}

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

.boxed-bande-temoignages {
    max-width: 1300px;
    margin: 0 auto;
}

.wrapper-bande-temoignages h3 {
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #a5998e;
    font-weight: 700;
    font-family: "Josefin Sans", sans-serif;
    font-size: calc(clamp(24px, 6vw, 48px) * 66/48);
}

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

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


/* BANDE RESEAUX */
.wrapper-bande-reseaux {
    background: #f3e8db;
    padding: 35px 20px 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    text-align: center;
    position: relative;
    z-index: 3;
}
.wrapper-bande-reseaux a {
    text-decoration: none;
    color: currentColor;
}
.wrapper-bande-reseaux img {
    width: auto;
    height: 32px;
    vertical-align: top;
}
.wrapper-bande-reseaux span {
    text-transform: uppercase;
    font-weight: 300;
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1;
    margin-top:4px;
}

@media (max-width: 500px) {
    .wrapper-bande-reseaux {
        padding: 25px 20px 20px;
    }
}



/* TARIF */
.bloc-tarifs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.pix-tarif {
    /* width: calc(50% - 10px); */
    /* display: inline-block; */
    /* background: #fcf7f0; */
    box-shadow: 0 0 4px rgba(0,0,0,0.15);
    padding: 10px 20px;
    /* margin-bottom: 20px; */
    vertical-align: top;
}
.bloc-tarifs .pix-tarif:nth-of-type(odd) {
    /* margin-right: 20px; */
}

.pix-tarif .tarif-titre {
    font-family: "Libre Baskerville", serif;
    font-size: clamp(19px, 3vw, 23px);
    line-height: 1.1;
}
.pix-tarif .tarif-prix-duree {
    color: #a1998e;
    font-size: 18px;
}
.pix-tarif .tarif-description {
    line-height: 1.1;
    margin: 0;
    margin-top: 10px;
    color: #a5998e;
}
.pix-tarif .tarif-description:empty {
    display: none;
}

@media (max-width: 850px) {
    .bloc-tarifs {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    /* .bloc-tarifs  .pix-tarif:nth-of-type(odd) {
        margin-right: 0;
    } */
}





.bande-resa {
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}