:root {
    --color0: #ffffff;
    --color1: #2f3336;
    --nuanceColor1: #001d25;
    --color2: #3E1F2B;
    --color3: #2F4F3A;
    --color4: #3E1F2B;
    --color5: #2F4F3A;
    --noir: #2f3336;
    --blanc: #F2EFEA;
    --gris: #b3b1ae;
    --prune: #3E1F2B;
    --vert: #2F4F3A;
    --bg-facultatif: #fbf7f0;
    --font_family_1: Montserrat-Light;
    --font_family_2: Jost-Regular;
    --font3: 'Jost-Regular', sans-serif;
    --font_family_3: Jost-Medium;
    --border-radius: 0;
    --taille_font: clamp(1.4rem, 0.9vw, 1.55rem);
}
.page.services {
    background: var(--blanc);
    position: relative;
    z-index: 10000;
}
  .page-hero-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 24px 0 10vh;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s forwards;
  }
  .page-hero-line-bar {width: 50px;height: 1px;background: var(--blanc);}
 
.page-hero-line span {font-family: var(--font_family_2);font-style: italic;color: var(--blanc);font-size: calc(var(--taille_font) * 1.2);}

.cursor { position: fixed; width: 8px; height: 8px; background: #7e495d; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: transform 0.1s ease; }
  .cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid #7e495d; border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%);
   transition: width 0.3s ease, height 0.3s ease, border-color 0.3s; }
   .galerie {
    background: var(--noir);
  }
  .galerie-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    margin-bottom: 56px;
  }
  .galerie-header h2 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 400;
    color: var(--blanc);
    line-height: 1.1;
  }
  .galerie-header h2 em { font-style: italic; color: rgba(242,239,234,0.38); }
  .galerie-filter {
    display: flex;
    gap: 4px;
  }
  .galerie-btn {
    padding: 8px 18px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242,239,234,0.5);
    border: 1px solid rgba(242,239,234,0.15);
    background: transparent;
    cursor: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
  }
  .galerie-btn.active, .galerie-btn:hover {
    background: rgba(242,239,234,0.08);
    color: var(--blanc);
    border-color: rgba(242,239,234,0.3);
  }
  .galerie-masonry {
    display: flex;
    flex-wrap: wrap;
  }
  .galerie-item {
    overflow: hidden;
    position: relative;
    cursor: none;
    height: 40vh;
    margin-bottom: 15px;
  }

  .galerie-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: saturate(0.65) brightness(0.8);
    transition: filter 0.5s, transform 0.8s ease;
    transform: scale(1.04);
  }
  .galerie-item:hover .galerie-img {
    filter: saturate(0.9) brightness(0.95);
    transform: scale(1.1);
  }
  .galerie-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,11,11,0);
    transition: background 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .galerie-item:hover .galerie-item-overlay { background: rgba(11,11,11,0.2); }
  .galerie-zoom {
    width: 44px; height: 44px;
    border: 1px solid rgba(242,239,234,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s, transform 0.3s;
    font-size: 1.2rem;
  }
  .galerie-item:hover .galerie-zoom { opacity: 1; transform: scale(1); }

  /* LIGHTBOX */
  
.modal-body {
    padding: 30px 30px;
    position: fixed;
    background: #00000080;
    z-index: 10000;
    width: 100%;
    height: 100%;
    text-align: center;
    display: none;
}

.modal-body:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}

.modal-body1 {
    display: table;
    position: relative;
    height: 100%;
    width: 100%;
}

.contents2 {
    display: table-cell;
    vertical-align: middle;
}

.contents2 p {
    position: relative;
    font-family: var(--font_family_1);
    font-size: 37px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    user-select: none;
    margin: 0 0 60px;
    display: block;
}

.btn-fermer, .btn-hidden {
    -moz-background-size: 100% 100%;
    padding: 10px;
    border-top: 1px solid;
    text-decoration: none;
    border-bottom: 1px solid;
    font-size: 16px;
    margin: 0 10px;
    text-decoration: none !important;
    color: var(--color0) !important;
}

.btn-fermer:hover, .btn-hidden:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    background: var(--color0);
    color: #000000 !important;
    border-color: var(--color0);
}

.modal-content {
    background: transparent;
    top: 184px;
}

.modal-content p {
    text-align: center;
    font-size: 19px;
}

.modal-title {
    margin: 0;
    line-height: 1.42857143;
    text-align: center;
    font-size: 25px;
    color: #007d0c;
    font-family: 'HelveticaNeueLTStd-Th';
    font-weight: bold;
}

.modal {
    z-index: 999999 !important;
    padding: 0 15px !important;
    background: #020202e6;
    float: left;
    width: 100%;
}

.close {
    font-size: 29px;
    opacity: 0.5;
}
.swiper-container .swiper-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
    .gallery .description-galerie {
        padding: 0 0 40px;
        column-count: 2;
        column-gap: 10%;
    }
div.h1 {}
  #map { width: 100%; height: 500px; }
.header-x p.adresse {
    margin-right: 2vw;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  z-index: 999999;
}
.loader-wrapper:after {content: "";position: absolute;width: 3vh;height: 100%;background: url(../images/regle1.png) right repeat-y;top: 0px;left: 0;animation: 80s linear 0s infinite normal none running Anim;opacity: 0.2;z-index: 100;background-size: 100%;filter: invert(1);transform: rotate(
180deg);}

.loader-wrapper:before {content: "";position: absolute;width: 3vh;height: 100%;background: url(../images/regle1.png) right repeat-y;top: 0px;right: 0;animation: 80s linear 0s infinite normal none running Anim;opacity: 0.2;z-index: 100;background-size: 100%;filter: invert(1);}
#preloader .preloader {
  width: 50px;
  height: 50px;
  display: inline-block;
  padding: 0px;
  text-align: left;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -25px;
}
.swiper.avisSwiper {
    margin-top: 2em;
}
#preloader .preloader span {
  position: absolute;
  display: inline-block;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background-color: var(--color5);
  border: 14px solid var(--color3);
  -webkit-animation: preloader 1.3s linear infinite;
  animation: preloader 1.3s linear infinite;
}

#preloader .preloader span:last-child {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}
.flex {
    display: flex;
}
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }
  .page-hero-breadcrumb a {text-transform: uppercase;color: var(--gris) !important;text-decoration: none !important;font-size: 70%;transition: color 0.3s;}
  .page-hero-breadcrumb a:hover { color: var(--blanc); }
  .page-hero-breadcrumb span {color: rgb(255 255 255 / 40%);font-size: 74%;}
  .page-hero-breadcrumb strong {font-size: 70%;letter-spacing: 0.22em;text-transform: uppercase;color: var(--blanc);font-weight: 300;}
  
.header-x {
    float: left;
    background: var(--color4);
    padding: 1vh 10vw;
    width: 100%;
    z-index: 1000;
    display: flex;
    place-content: center space-between;
    align-items: center;
    flex-wrap: wrap;
    transition: 400ms;
    font-size: var(--taille_font);
}

.fixed .header-x {
    display: none;
}
.header-x .flex-address {
    float: left;
    color: var(--color0);
    display: flex;
    gap: 0vw;
    font-size: var(--taille_font);
}
.col-md-3.nopad.navf.col-sm-3.col-xs-12 img {
    width: 200px;
}
.header-x i {
    color: var(--orange);
    height: 18px;
    margin-right: 12px;
    margin-top: 3px;
}
.horaire-infos {
    color: #d9d9d9 !important;
}
.header-x p {
    margin-bottom: 0px !important;
}

.header-x p.tel.tel1.callTracker {
    margin-left: 30px;
    float: left;
    color: var(--color0);
    text-transform: none;
}
@-webkit-keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes preloader {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
.modal {
  display: none; 
  position: fixed; 
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}
.atouts {background: var(--noir);position: relative;overflow: hidden;}
  .atouts::before {content: 'LES PIERRES MESLIERES';position: absolute;font-family: var(--font_family_2);font-size: 23vw;color: rgba(242,239,234,0.02);top: 50%;left: 50%;transform: translate(-50%, -50%);white-space: nowrap;pointer-events: none;}
  .atouts-header {display: flex;gap: 1%;margin-bottom: 5vh;align-items: center;}
  .atouts-header h2 {color: var(--blanc);color: var(--color0);width: 90%;margin-bottom: 35px;position: relative;text-wrap: balance;font-family: var(--font_family_2);text-transform: none;width: 50%;font-size: calc(var(--taille_font) * 3.8);line-height: 1.2;letter-spacing: 0;}
.atouts-header h2 span.last-word {
}

  .atouts-header p {color: var(--gris);}
  .atouts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
  .atout-card { background: rgba(242,239,234,0.03); padding: 50px 42px; border: 1px solid rgba(242,239,234,0.06); transition: background 0.4s, border-color 0.4s; position: relative; overflow: hidden; }
  .atout-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--vert); transform: scaleX(0); transition: transform 0.4s ease; transform-origin: left; }
  .atout-card:hover { background: rgba(242,239,234,0.055); border-color: rgba(242,239,234,0.1); }
  .atout-card:hover::before { transform: scaleX(1); }
  .atout-number {font-family: var(--font_family_3);font-size: calc(var(--taille_font) * 2);color: #c89a63;display: block;margin-bottom: 32px;opacity: .7;}
  .atout-card h3 {font-family: var(--font_family_2);font-weight: 400;color: var(--blanc);margin-bottom: 16px;line-height: 1.3;}
  .atout-card p {color: var(--gris);}

.swiper-slide:nth-child(odd) .atout-item .atout-icone:before {top: -15px;transform: rotate(360deg);transition: all .3s ease;left: 45%;}

.swiper-slide:nth-child(odd) .atout-item:hover .atout-icone:before {
    top: -19px;
    transition: all .3s ease;
    opacity: 1;
}
.cta-final {
    background: var(--prune);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
  }
  .cta-final::before, .bande_contact_footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/bg3.jpg') center/cover;
    opacity: 0.12;
    filter: saturate(0.3);
  }
  .cta-final-inner {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .cta-final h2 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 400;
    color: var(--blanc);
    line-height: 1.1;
    margin-bottom: 20px;
  }
  .cta-final h2 em {font-style: normal;color: rgb(200 154 99);font-family: var(--font_family_3);padding-left: 20%;margin-top: -1vh;display: block;}
  .cta-final p {
    color: rgba(242,239,234,0.65);
    margin-bottom: 4vh;
  }.cta-final-btns p {
    margin: 0 0 0 !important;
}

  .cta-final-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-white {
    background: var(--blanc);
    color: var(--prune) !important;
    padding: 15px 38px;
    font-size: 80%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.35s;
    border: 1px solid var(--blanc);
    cursor: none;
  }
  .btn-white:hover {background: transparent;color: var(--blanc) !important;}
  .btn-outline-white {
    background: transparent;
    color: var(--blanc) !important;
    padding: 15px 38px;
    font-size: 80%;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.35s;
    border: 1px solid rgba(242,239,234,0.4);
    cursor: none;
  }
  .btn-outline-white:hover { border-color: var(--blanc); background: rgba(242,239,234,0.07); }
  
.atout-item {
    position: relative;
    padding: 0;
    transition: all .2s linear;
    overflow: unset;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
}

.atout-item:hover .atout-icone {
    background: var(--color4);
    transition: all .3s ease;
    border-color: var(--color4);
}

.atout-item:hover .atout-icone img {
    filter: brightness(0) invert(1);
    transition: all .3s ease;
}

.atout-item:hover span {
    color: var(--color4);
    transition: all .3s ease;
}

.swiper-slide:nth-child(2n+1) .atout-item {
    flex-direction: column-reverse;
}

.atout-item:nth-child(even) .atout-text {
    margin-top: 45px;
    padding: 0;
}

.atout-text {display: flex;position: relative;text-align: start;margin: 2.5vh 0;min-height: 28.6vh;flex-direction: column;align-items: flex-start;justify-content: center;}
.atout-text:before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  /*! background-color: var(--color6); */
  pointer-events: none;
  top: 0.5px;
  left: -100px;
  right: -100px;
  bottom: auto;
}

.swiper-slide:nth-child(2n+1) .atout-item .atout-text:before {
    top: auto;
    bottom: -0.5px;
}
.swiper-slide:nth-child(2n+1) .atout-item .atout-text span:before {
    top: 6.1vh;
}

.swiper-slide:nth-child(6) .atout-item .atout-text span:before {
    top: -7.4vh;
}
.swiper-slide:nth-child(1) .atout-item .atout-text span:before {
    top: 6.2vh;
    right: -1vw;
}
.atout-text h3 {
    margin: 0px 0 2.6vh;
    /*! font-size: 25px; */
    /*! height: 6.7vh; */
    font-family: var(--font_family_1);
    font-size: calc(var(--taille_font)* 1.3);
    color: var(--color1);
}

h3.att-title {}

.atout-text span {
    font-size: 1.8vw;
    font-family: var(--font_family_1);
    color: var(--color4);
    position: relative;
}
.atout-text span:before{
    content: "";
    display: inline-block;
    position: absolute;
    width: 1px;
    height: 4.1vh;
    background: #0000007d;
    right: -0.5vw;
    top: -9vh;
}
/* ****** */
.atots-items {
    /* padding-top: 30px; */
    position: relative;
}

.nos-atots {
    padding: 4em 10.3% 6em;
    /* background-color: var(--color0); */
    position: relative;
    z-index: 2;
    background: url(../images/bg-att.jpg) no-repeat center center/cover !important;
}

.nos-atots h2 {
    color: var(--color0);
}

.nos-atots:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: url(../images/plus-bg.png); */
    opacity: 0.7;
    left: 0;
    top: 0;
    background: var(--color5);
}
.swiper.mySwiper.swiper-container-horizontal {
    overflow: hidden;
}

.video-accueil{position:absolute;top:0;left:0;width:100%;height:100vh;margin-left:0;overflow: hidden;}
.video-accueil video{z-index:1;width:100%;height:100%;object-fit:cover;position:absolute;top:0;left:0}
.video-accueil .banniere{z-index:0}
.video-accueil:after{content:'';background: linear-gradient(rgba(9, 34, 50, .6) 0, rgba(9, 34, 50, .41) 13%, rgb(0 0 0 / 51%) 75%, rgb(255 255 255 / 0) 100%);width:100%;height:100%;position:absolute;top:0;left:0;z-index: 100;display:block}

.swiper-slide:nth-child(2n+5) .atout-item .atout-text span:before {
    top: 7.7vh;
}
.atout-items .swiper-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: unset;
}
  
.atots-items .swiper-slide .swiper-att {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    /* color: #624c70; */
    transition: all .3s ease;
    width: 280px;
    height: 300px;
    margin-top: 40px;
    border: 1px solid #eeeeee73;
    padding: 25px;
    position: relative;
    backdrop-filter: blur(3px);
}

.swiper-att:hover .attnbr {
    background-color: var(--color1);
    color: var(--color0);
    border-color: var(--color1);
}

.swiper-att:hover {/* transform: translateY(-20px); */border-color: #cac8c8 !important;}

.swiper-att img {
    width: 75px !important;
    height: auto !important;
    /* filter: invert(42%) sepia(69%) saturate(906%) hue-rotate(157deg) brightness(90%) contrast(103%); */
    filter: invert(1);
}

.swiper-att span {
    font-family: var(--font_family_3);
    font-size: 20px;
    margin-top: 10px;
}

span.attnbr {
    position: absolute;
    top: -25px;
    right: 20px;
    height: 35px;
    width: 35px;
    background-color: var(--color0);
    border: 1px solid #ffffff8a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-family: var(--font_family_1) !important;
    transition: all .3s ease;
    color: var(--color4);
}

.swiper-att p {
    font-size: 14px;
    opacity: 0.7;
    /* margin-top: 14px; */
    margin: 0;
}

.atots-items .swiper-slide:hover {
    /* color: var(--color1); */
}

.atots-items .swiper-slide i {
    font-size: 45px;
}

    .atout-items .swiper-slide img {
      /* display: block; */
      /* width: 100%; */
      /* height: 100%; */
      /* object-fit: contain; */
    }

f {}

.atout img {
    height: auto;
    width: 65px;
}

.atout:hover {
}

.atout:hover:before {
    width: 100%;
}

.atout:before {
    content: "";
    position: absolute;
    bottom: 0px;
    height: 4px;
    width: 0;
    background: var(--color1);
    left: 0;
    transition: all .3s linear;
}

.atout p.legend {
    text-align: left;
    color: var(--color0);
    font-family: var(--font_family_1);
    font-weight: 100;
    line-height: 1.7;
    font-size: 16px;
}

.atout:hover p.legend {
    color: #ffffff;
}

.atouts .picto {
    font-family: var(--font_family_2);
    font-size: 20px;
    font-weight: 700;
    margin: 15px 0;
    color: var(--color1);
    letter-spacing: 0.03em;
}

.atout:before {
    content: "";
    position: absolute;
    bottom: 0px;
    height: 4px;
    width: 0;
    background: var(--color1);
    left: 0;
    transition: all .3s linear;
}

.atots-items .swiper-button-next {
    right: 0;
}

.atots-items .swiper-button-prev {
    left: 0;
}

.atots-items .swiper-button-next, .atots-items .swiper-button-prev {
    background: none;
    color: var(--color1);
}

.modal-body {
    padding: 17px 0 0;
}
.modal-content {
  background-color: var(--color0);
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  width: 94%;
  max-width: 601px;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}

.gallery.node-2 {
    position: relative;
    z-index: 100;
}



.corps .page-contenu h2, .corps .gallery h2 , .corps .seo-content h2, .corps .newsItem h2 {
    margin-bottom: 2vh;
}
.corps blockquote::before {
  content: "“";
  position: absolute;
  left: 3%;
  top: -20px;
  font-size: 80px;
  color: #3e1f2b45;
}

 
.corps blockquote {
    font-size: inherit;
    background: var(--bg-facultatif);
    border-radius: var(--border-radius);
    border: 1px solid #3e1f2b14;
    padding: 3vh 2vw;
    margin: 3vh 0;
    position: relative;
}

.alert.alert-warning.alert-dismissable {
    width: 100%;
}

body,html {
    height: 100%
}

body {
    width: 100%;
    margin: 0;
    padding: 0
}

a {
    -webkit-transition: color .3s ease-out;
    -moz-transition: color .3s ease-out;
    -o-transition: color .3s ease-out;
    transition: color .3s ease-out
}

a img {
    border: none
}

img {
    max-width: 100%;
    object-fit: cover
}

img.att-img {}

ul {
    list-style-position: inside;
    list-style-type: none;
    list-style-image: none
}

ol li,ul li {
    padding-left: 0;
    position: relative
}

ul li:before {
    display: inline-block;
    content: "\f054";
    position: absolute;
    font-weight: 700;
    font-family: 'Font Awesome 5 Free';
    left: -15px;
    font-size: 13px;
    top: 4px;
    width: 9px;
    height: 16px
}

ul.menu_footer li:before {
    color: var(--color0);
    display: none;
}

ol li::marker {
    color: var(--color1)
}

ol li.niveau2,ul li.niveau2 {
    margin-left: 30px
}

dir,menu {
    padding-left: 15px
}

blockquote p {
    font-size: inherit
}

table,table td,table th {
    font-size: inherit;
    border: 1px solid #7c7c7c
}

footer .horaires .horaire-table {
    color: var(--color0) !important;
}

article,aside,footer,header,hgroup,main,nav,section {
    display: block
}

iframe {
    border: none
}
button.lire-plus-btn {
    color: var(--color1) !important;
    text-transform: uppercase;
    position: relative;
    background: transparent;
    border: transparent;
    padding: 0 0;
}
.lire-plus-btn:hover:after, .lire-plus-btn:hover:after { transform: scaleX(1) translateZ(0);transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;}
.lire-plus-btn:after {content: '';position: absolute;left: 0;border-bottom: 1px dotted;bottom: -3px;width: 100%;transform-origin: left;transform: scaleX(0) translateZ(0);transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);}
.lire-plus-btn:before {content: '';position: absolute;left: 0;border-bottom: 1px dotted;bottom: -3px;width: 100%;transform-origin: right;transform: scaleX(1) translateZ(0);transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s;}
.lire-plus-btn:hover:before { transform: scaleX(0) translateZ(0);  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);}

[data-anim] {
    opacity: 0
}

.row {
    margin-right: 0!important;
    margin-left: 0!important
}

.nopad {
    padding-left: 0;
    padding-right: 0
}

.nopad-l {
    padding-left: 0
}

.nopad-r {
    padding-right: 0
}

.nomargin {
    margin: 0
}

.hide {
    display: none
}

.center {
    text-align: center
}

.right {
    text-align: right
}

.justify {
    text-align: justify
}

.clear:after {
    content: '';
    display: block;
    clear: both
}

.bold {
    font-weight: 700
}

.underline {
    text-decoration: underline
}

.relative {
    position: relative
}

.inline-block {
    display: inline-block;
    vertical-align: top
}

.noflicker {
    -webkit-transform: translateZ(0)
}

.retrait {
    margin-left: -15px!important;
    margin-right: -15px!important
}

.transition {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transform: translateZ(0)
}

.cover {
    -webkit-background-size: cover!important;
    -moz-background-size: cover!important;
    -o-background-size: cover!important;
    background-size: cover!important
}

hr.trait {
    height: 1px;
    margin: -.5em 0;
    padding: 0;
    color: var(--color3);
    background-color: var(--color3);
    border: 0;
    opacity: .4
}

.page-contenu img {
    margin: 10px
}

body {
    color: var(--color1);
    font-family: var(--font3);
    font-size: var(
    --taille_font);
    background: url(../images/bg11.png);
}

.text-prst {
    padding-right: 4%;
}

a,a:link,a:visited {
    color: var(--color3);
    text-decoration: underline
}

a.btnp .icones {
    transition: .3s ease;
}
.prestation:hover span.svg svg {
    transform: rotate(0deg);
}
.fixed .btn-liens-rs .btnrs svg {
    fill: var(--color1);
}

a:hover {
    text-decoration: none
}

.corps a:hover {
    color: var(--color1)
}

a:active {
    outline: 0
}
.news  h1 {
    text-align: center;
}
.h1,.h2,.h3,h1,h2,h3,h4,h5,h6 {
    color: var(--prune);
    font-family: var(--font_family_2);
    font-weight: 200
}
section.background .section-inner {
    padding: 60px 5vw;
    color: var(--color0);
}

.zone-grid h1.sans-image {
    color: var(--color0);
    margin: 0 0 0;
}

.contact .formulaire .form-group .col-md-12 {
    padding: 0 0;
}
.h1,h1 {
    font-size: calc(var(--taille_font) * 3.8);
    line-height: 1;
    color: var(--color1);
    margin-bottom: 35px;
    position: relative;
    text-wrap: balance;
    font-family: var(--font_family_3);
    text-transform: none !important;
}

.titre-secondaire:before {
    content: "";
    width: 58px;
    position: relative;
    left: 0;
    top: 16px;
    height: 1px;
    background: var(--color4);
}

.h2,h2 {
    font-size: calc(var(--taille_font) * 1.8);
}

.h3,h3 {
    font-size: calc(var(--taille_font) * 1.6);
    color: var(--color4);
}

h4 {
    font-size: calc(var(--taille_font) * 1.4);
    color: var(--color4);
}

h5 {
    font-size: calc(var(--taille_font) * 1.2)
}

h6 {
    font-size: calc(var(--taille_font) * 1)
}

.h1 a,.h1 a:link,.h1 a:visited,.h2 a,.h2 a:link,.h2 a:visited,.h3 a,.h3 a:link,.h3 a:visited,h1 a,h1 a:link,h1 a:visited,h2 a,h2 a:link,h2 a:visited,h3 a,h3 a:link,h3 a:visited,h4 a,h4 a:link,h4 a:visited,h5 a,h5 a:link,h5 a:visited,h6 a,h6 a:link,h6 a:visited {
    font-size: inherit;
    color: inherit;
    text-decoration: none
}

.h1 a:hover,.h2 a:hover,.h3 a:hover,h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover {
    text-decoration: underline
}

.titre-secondaire {
    position: relative;
    font-size: var(--taille_font);
    line-height: 30px;
    display: flex;
    padding: 12px 0 0;
    margin: 0;
    font-weight: 200;
    gap: 10px;
    letter-spacing: 2px;
    color: var(--color2);
    margin-bottom: 0;
    text-transform: math-auto;
    font-family: var(--font3);
    justify-content: flex-start;
}
  .section-label {display: flex;align-items: center;gap: 14px;}
  .section-label-line { width: 32px; height: 1px; background: var(--vert); }
  .section-label span {font-size: var(--taille_font);text-transform: uppercase;color: #c89a638a !important;letter-spacing: 2px;}

.badge-optionnel {
    position: absolute;
    top: 0;
    right: 0;
    display: none;
    background: url(../images/badge-optionnel.png) no-repeat top right;
    width: 139px;
    height: 139px
}

.bg-optionnel {
    background: url(../images/bg-optionel.svg) repeat top center;
    background-size: 60px auto
}

.bg-optionnel-gris {
    background: var(--color2);
    background-size: 60px auto
}

.hvr-shutter-out-horizontal {
     background: transparent;
     color: var(--color0);
     padding: 15px 30px;
     backdrop-filter: blur(3px);
     border-color: #b7b7b75e;
     letter-spacing: 2px;
     font-size: 16px;
     position: relative;
     /* overflow: hidden; */
     transition: all .3s linear;
     border: 1px solid #ffffff52;
}




.hvr-shutter-out-horizontal.dark {
    background-color: var(--color2);
    color: var(--color0)
}

.hvr-shutter-out-horizontal.active {
    background-color: var(--color1)
}



.hvr-shutter-out-horizontal.dark:before {
    background-color: var(--color2)
}

.hvr-shutter-out-horizontal:active,.hvr-shutter-out-horizontal:focus,.hvr-shutter-out-horizontal:hover,a.hvr-shutter-out-horizontal:active,a.hvr-shutter-out-horizontal:focus,a.hvr-shutter-out-horizontal:hover {
    color: var(--color0);
    background: var(--vert);
}

.hvr-shutter-out-horizontal:active:before,.hvr-shutter-out-horizontal:focus:before,.hvr-shutter-out-horizontal:hover:before {
}

a.bouton-principal,button.bouton-principal {
    display: inline-block;
    overflow: hidden;
    transform: perspective(0) translateZ(0);
    background: var(--color4);
    border-color: transparent;
    color: #ffffff;
    border-radius: 0;
    text-decoration: none;
    padding: 13px 27px;
    text-transform: uppercase;
    border: 0;
    font-family: var(--font_family_1);
    border-style: solid;
    box-shadow: none;
    cursor: pointer;
    z-index: 1;
    letter-spacing: 1px;
    position: relative;
    transition: .5s;
}

a.bouton-principal:hover:after, button.bouton-principal:hover:after {
    color: var(--color0);
}

.btn-news a.bouton-principal,.btn-news button.bouton-principal,.btn-service a.bouton-principal,.btn-service button.bouton-principal {
    text-align: left;
    font-family: var(--font_family_1);
    color: var(--color0);
    text-decoration: none;
    padding: 13px 20px;
    font-size: 14px;
    text-transform: uppercase;
    /* border: 0; */
}

.btn-news a.bouton-principal:hover, .btn-news button.bouton-principal:hover, .btn-service a.bouton-principal:hover, .btn-service button.bouton-principal:hover {
    color: var(--color0) !important;
}

.btn-news a.bouton-principal:after,.btn-service a.bouton-principal:after {
    content: none
}

.btn-news a.bouton-principal::after,.btn-service a.bouton-principal::after {
    background-image: none
}
.container-service h2 {
    margin: 0 0 2vh;
}

.container-service p {
    text-align: center;
    color: var(--color1);
    margin: 0 0 3vh;
}
.certifs h2.h1{
    color: #c99b64;
}
p.texte-service {
    text-align: center;
    margin: 0 0 9vh;
    opacity: .5;
}

.atouts-bloc h2 {
    color: var(--color2);
}



.img-att {
    position: relative;
    width: 120px;
    height: 120px;
}
.body-page-1 .corps a.bouton-principal,.body-page-1 .corps button.bouton-principal {
}
header.hide-print.tete.hidden-xs.hidden-sm .btn-liens-rs .btnrs svg {
    fill: var(--color3);
}

.main-page {
    position: relative;
    overflow: hidden
}

.tete {
    position: relative;
    left: 0;
    right: 0;
    height: 109px;
    z-index: 9000;
    transition: .5s;
    background: var(--color0);
}

.header {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
    padding: .5vh 2%;
    transition: all 0.3s ease;
}

.fixed .row.relative.header {
    transition: .3s ease;
}

.tete .header .flex-logo {
    width: 22%;
}

.tete .header .flex-infos {
    width: 25%;
    height: 100%
}

.tete .logo-site {
    margin: 0
}

.tete .logo-site a {
    font-size: 15px;
    color: var(--color1);
    text-decoration: none;
    font-family: var(--font_family_1)
}

.tete .logo-site a:focus,.tete .logo-site a:hover {
    color: var(--color1);
    text-decoration: none
}

.tete .logo-site a img {
    height: 100px;
    width: auto;
}

.fixed.tete .logo-site a img {max-height: 82px;}

.tete .header .flex-infos .infos {
    display: flex;
    width: 100%;
    gap: 8%;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap
}

.tete .infos .tel {
    display: inline-block;
    padding: 14px 20px;
    margin: 1em 0px;
    text-align: center;
    overflow: hidden;
    font-size: 79%;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 400ms;
    background: transparent;
    color: var(--color1);
    font-family: var(--font_family_1);
    border-radius: var(--border-radius);
    border: 1px solid #0000009c;
    text-decoration: none !important;
}

.tete .infos .tel:before {
    position: absolute;
    content: "";
    inset: 0;
    background: transparent;
    z-index: -1;
    /* right: 100%; */
    transition: all .3s ease;
    top: calc(0px - 4px);
    right: calc(0px - 4px);
    bottom: calc(0px - 4px);
    left: calc(0px - 4px);
    border: 2px solid var(--color1);
    transform: translateZ(-5px) scale(1);
}


.tete .infos .tel.callTracker a, .tete .infos .tel.callTracker span {
    text-align: center;
}

.cta p.tel-header.bouton-principal.hvr-shutter-out-horizontal a {
    color: var(--color0);
    text-align: center;
}
 
.cta {
       margin: 3em 0 1em;
       display: flex;
       gap: 20px;
       align-items: center;
       opacity: 0;
       animation: fadeUp 1s 1.2s forwards;
}

.body-page-1 .cta {
    display: flex;
    justify-content: flex-start;
}

.cta a.bouton-principal:after {
    display: none;
}

.cta p.tel-header.bouton-principal.hvr-shutter-out-horizontal {
    text-align: left;
    font-family: var(--font_family_1);
    color: var(--color0);
    text-decoration: none;
    background: var(--color2);
    margin: 0 0 0;
    display: inline-flex;
    text-transform: uppercase; border: 0;
    border-radius: var(--border-radius);
    align-content: center;
    justify-content: center;
    align-items: center;
    transition: .3s ease;
}

  .reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }
  .floating-cta {position: fixed;bottom: 40px;right: 20px;z-index: 80;display: flex;flex-direction: column;gap: 10px;align-items: flex-end;opacity: 0;animation: fadeIn 1s 2s forwards;}
  .floating-btn {background: var(--prune);color: var(--blanc) !important;padding: 12px 10px;font-size: 80%;letter-spacing: 0.1em;min-width: 198px;text-transform: uppercase;text-decoration: none !important;display: flex;align-items: center;gap: 5px;transition: all 0.3s;cursor: none;white-space: nowrap;margin: 0 0;justify-content: center;}
  .floating-btn:hover { background: var(--vert); }
  .floating-btn svg { width: 14px; height: 14px; }
p.floating-btn i {
    transform: rotate(90deg);
}

a.floating-btn.vert {
    background: var(--vert);
}
.cta p.tel-header.bouton-principal.hvr-shutter-out-horizontal span {
    font-size: 100%;
    text-align: center;
    min-width: auto;
    font-size: 14px;
}

.cta a.bouton-principal, button.bouton-principal, .cta .tel-header {
    display: inline-flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    line-height: 1.74em;
    font-size: 14px;
    cursor: pointer;
}

.cta a.bouton-principal {
    background: transparent;
    transition: .3s ease;
    color: var(--color0);
    border: 2px solid var(--color2);
}

.cta a.bouton-principal:hover {
    background: var(--color2);
    border: 2px solid var(--color2);
}

.callTracker:not(.active) a:hover,.callTracker:not(.active):hover {
    /* color: var(--color0); */
}
.newsletter {background: var(--prune);}
  .newsletter-inner {display: flex;gap: 80px;align-items: center;justify-content: center;}
  .newsletter-text h2 {color: var(--blanc);margin-bottom: 10px;}
  .newsletter-text p {color: rgba(242,239,234,0.7);line-height: 1.8;}
  .newsletter-form {width: 100%;}
  .newsletter-form input {background: transparent;border: 1px solid rgba(242,239,234,0.25);border-right: none;padding: 16px 24px;color: var(--blanc);width: 70%;outline: none;transition: background 0.3s;}
  .newsletter-form input::placeholder { color: rgba(242,239,234,0.4); }
  .newsletter-form input:focus { background: rgba(242,239,234,0.15); }
  .newsletter-form button { background: var(--prune); border: none; color: var(--blanc); padding: 16px 30px; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; font-family: 'Inter', sans-serif; cursor: none; transition: background 0.3s; }
  .newsletter-form button:hover { background: #2e1520; }
form#newsletter_form label {
    display: none;
}

.tete .infos .tel a {
    color: inherit;
    text-decoration: none
}

.header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.header-phone .icones {
    margin: 0 8px 0 0;
    fill: var(--color1);
    width: 25px;
    height: 25px
}

.imagecont.noflicker.img1 {
    display: block;
    margin: 1vh 0 2vh;
    height: 30vh;
    overflow: hidden;
}

.sidebar-scroll-right .callTracker {
    width: 100%;
    height: 50px
}

.callTracker {
    position: relative
}

.callTracker a,.callTracker span {
    display: inline-block;
    text-align: left;
    padding: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    height: 100%;
    text-decoration: none
}

.callTracker .t_phone {
    opacity: 0;
    display: none
}

.callTracker .t_affiche {
    cursor: pointer
}

header .callTracker a,header .callTracker span {
    top: 5px
}

.callTracker.active .t_phone {
    opacity: 1;
    display: inline-block
}

.callTracker.active .t_affiche {
    opacity: 0;
    display: none
}

.coordonnees .callTracker a,.pied .callTracker a {
    position: relative;
    left: 0
}

.tete .infos .callTracker:not(.active) a:hover,.tete .infos .callTracker:not(.active):hover {
    color: var(--color0);
    background: var(--vert);
    border-color: var(--vert);
}

.tete .widget-partage {
    display: none
}

.btn-partage .btnp {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    transition: all .4s ease;
    text-align: center;
    justify-content: center;
    align-items: center
}

.tete .infos.infos_small .btn-partage .btnp {
    width: 29px;
    height: 29px
}

.btn-partage .btnp:hover {
    transform: rotate(360deg);
    background-color: var(--color1)
}

.copyright {
    text-align: justify
}

.tete .btn-partage {
    padding: 0;
    display: flex
}

.tete .header .flex-menuP {
    width: 74%;
}

.navh .menu_principal {
    margin: 0 auto;
    padding: 0;
    display: table
}

.navh .menu_principal>li {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 0 2rem;
    background: 0 0
}

li.menu-item.menu-item-external.menu-item-42 {
    display: none;
}

.navh .menu_principal>li:before {
    content: none
}

.navh .menu_principal>li:last-child {
    background: 0 0
}

.navh .menu_principal a, .navh .menu_principal a:visited {
    color: var(--color1);
    display: inline-flex;
    font-size: calc(var(--taille_font) - .1em);
    height: 100%;
    margin-right: 1px;
    font-family: var(--font_family_1);
    position: relative;
    text-decoration: none;
    transition: 400ms;
    align-items: center;
    text-transform: uppercase;
}

.fixed .navh .menu_principal a,.fixed .navh .menu_principal a:visited {
    color: var(--color3);
    opacity: .7;
}

.fixed .navh .menu_principal li.active>a, .fixed .navh .menu_principal li a:hover {
    color: var(--color1);
}

.navh .menu_principal a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--color1);
    left: 0;
    bottom: 0;
    transition: .5s
}

.navh .menu_principal a:hover:after,.navh .menu_principal li.active>a:after {
    width: 100%
}

.fixed .navh .menu_principal a:hover:after, .fixed .navh .menu_principal li.active>a:after {
    background: var(--color1);
}

.icone-share {
    display: none
}

.btn-partage .icones {
    width: 16px;
    margin: 0;
    height: 16px;
    padding: 0;
    position: relative;
    left: 0;
    fill: var(--color0);
}

.fixed .btn-partage .icones {
    fill: var(--color1);
}

@media(max-width: 1530px) {
    .header {
        padding:0 1.5%
    }
}

@media(max-width: 1376px) {
    .flex-infos {
        display:none
    }

    .fluid-infos .infos p.tel {
        display: none;
    }

    .btn-liens-rs {
        display: none;
    }

    .tete .header .flex-menuP {
        width: 80%
    }

    .fluid-infos {
        position: fixed;
        top: 20vh;
        right: 0;
        z-index: 9999
    }

    .fluid-infos .infos p.tel {
        margin: 0;
        position: relative;
        left: 155px;
        transition: .5s;
        background: var(--color1);
        line-height: 1;
        padding: 9px 9px;
        display: table;
        color: var(--color0)
    }

    .fluid-infos .infos p.tel span {
        height: initial;
        line-height: 1;
        top: 7px;
        position: relative
    }

    .fluid-infos .infos .tel .icones {
        margin: 0 15px 0 0;
        width: 26px;
        height: 26px;
        float: left
    }

    .fluid-infos .infos p.tel:hover {
        left: 0
    }

    .fluid-infos .infos .btn-partage {
        position: relative;
        margin: 8px 0 0;
        display: flex;
        left: 155px;
        transition: .5s;
        background: var(--color1);
        line-height: 1;
        padding: 7px 9px;
        align-items: center
    }

    .fluid-infos .infos .btn-partage .icones {
        fill: var(--color0)
    }

    .fluid-infos .infos .btn-partage .icones.icone-partage {
        width: 25px;
        height: 25px;
        top: 5px;
        margin-right: 14px;
        fill: var(--color0)
    }

    .fluid-infos .infos .btn-partage:hover {
        left: 0
    }

    .fluid-infos .icone-share {
        display: block;
        width: 34px;
        height: 22px;
        fill: var(--color0);
        padding-right: 10px
    }

    .tete .header .btn-partage .icone-partage {
        display: block
    }
}

.fixed.tete {
    background: var(--color0);
    box-shadow: 0 0 16px #00000029;
    position: fixed;
}

.slogan {
    position: relative;
    color: var(--color0);
    width: 100%;
    padding: 0 4%;
    margin: 0;
    text-align: left;
    z-index: 100;
    top: inherit;
}

.slogan h1 {
    position: relative;
    color: var(--color0);
    width: 100%;
    margin: 0;
    text-align: center;
    z-index: 2;
}

.h1.slogan:before,.slogan h1:before {
    content: "";
    width: 0;
    height: 0;
    background: 0 0;
    position: inherit;
    bottom: inherit;
    left: inherit;
    display: none;
}

.slogan .titre {
    font-size: calc(var(--taille_font) * 3);
    font-family: var(--font_family_2);
    text-transform: uppercase;
    line-height: 40px
}

.slogan .titre span {
    font-size: 48px
}
.line {
    position: relative;
    display: block;
    margin: 0 0 1vh;
}

.line b {
    font-size: 70%;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #f2efea9c;
    padding-left: 59px;
}

.line:before {
    position: absolute;
    width: 43px;
    height: 1px;
    background: var(--color0);
    left: 0;
    content: '';
    top: 13px;
    opacity: .5;
}
b.titre-accent {
      color: #c99b64;
      font-weight: normal;
}
.body-page-1 .slogan .titre {
    letter-spacing: 1px;
    color: var(--blanc);
    font-family: var(--font_family_2);
    font-size: calc(var(--taille_font) * 6);
    line-height: 1.05;
    margin-bottom: 10px;
    opacity: 0;
    animation: fadeUp 1s 0.8s forwards;
    display: block;
    margin-bottom: 3vh;
    font-weight: normal;
}
.slogan .sous-titre {
    font-size: calc(var(--taille_font) * 1.1);
    font-family: var(--font_family_1);
    color: #ffffffd6;
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeUp 1s 1s forwards;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.body-page-1 .slogan {
   bottom: 2vh;
   z-index: 1000;
   left: 0;
   text-align: left;
   width: 80%;
   top: initial;
   padding: 0 2%;
   position: absolute;
   color: var(--color0);
}
.btn-primary {background: var(--prune);color: var(--blanc) !important;padding: 15px 36px;font-size: 85%;letter-spacing: 0.1em;text-transform: uppercase;text-decoration: none !important;font-family: 'Inter', sans-serif;font-weight: 400;transition: all 0.35s;border: 1px solid var(--prune);cursor: pointer;}
  .btn-primary:hover { background: transparent; border-color: rgba(242,239,234,0.4); }
  .btn-ghost {color: rgba(242,239,234,0.7) !important;letter-spacing: 0.1em;text-transform: uppercase;text-decoration: none !important;display: flex;font-size: 80%;align-items: center;gap: 10px;transition: color 0.3s, gap 0.3s;cursor: pointer;}
  .btn-ghost:hover { color: var(--blanc); gap: 16px; }
  .btn-ghost-arrow { width: 28px; height: 1px; background: currentColor; position: relative; }
  .btn-ghost-arrow::after { content: ''; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }
  .hero-scroll {position: absolute;right: 60px;bottom: 21vh;z-index: 2;text-decoration: none !important;display: flex;flex-direction: column;align-items: center;gap: 12px;padding: 12px;cursor: pointer;opacity: 0;animation: fadeIn 1s 1.6s forwards;}
  .hero-scroll span {font-size: 70%;letter-spacing: 0.28em;text-transform: uppercase;color: var(--gris);writing-mode: vertical-rl;}
  .scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--gris), transparent); animation: scrollLine 2s 2s ease-in-out infinite; }
 
  @keyframes scrollLine { 0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; } 50% { transform: scaleY(0.5) translateY(20px); opacity: 0.4; } }
  @keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  section { position: relative; }


.video-accueil .banniere {
    z-index: 0
}
.body-page-1 .banniere:after {content: '';position: absolute;width: 100%;height: 100%;position: absolute;background: black;top: 0;left: 0;opacity: .5;z-index: 1;}
.banniere {
    position: ABSOLUTE;
    top: 0;
    margin-left: 0;
    height: 100%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    background-position: center;
    background: var(--color3);
    background-attachment: fixed;
    background-position: center;
  }
  @keyframes heroZoom { to { transform: scale(1); } }

.body-page-1 .hide-print.banniere.cover {
    position: relative;
    background-attachment: inherit;
}
@keyframes zoomAB {
  0% {
    scale: 1;
  }
    50% {
        scale:1.3;
    }

  100% {
    scale: 1;
  }
}
.banniere .mySwiper-bann img {
    animation: 30s infinite ease zoomAB;
}

.banniere::before {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     background-size: cover;
     left: 0;
     z-index: 0;
     top: 0;
     background: linear-gradient(180deg, rgba(11, 11, 11, 0.3) 0%, rgba(11, 11, 11, 0) 30%, rgba(11, 11, 11, 0.7) 75%, rgba(11, 11, 11, 1) 100%);
     z-index: 1;
}
.body-page-1 .banniere::before {display:none}
.banniere img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.body-page-1 .banniere::before {
    content: none
}

@-moz-document url-prefix() {
    .banniere img {
        
        width: 100%
    }

    .body-page-1 .banniere {
        filter: blur(0);
        width: 100%;
        left: 0
    }
}
/**************/
.swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
   .mySwiper-bann.swiper {
      width: 100%;
      height: 100%;
      overflow: hidden;
      position: relative;
    }

    .swiper-wrapper {
        display: flex;
    }
.swiper-slide i {
    font-size: 70px;
    color: var(--color5);
}
.swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

/********/
.body-page-1 .services ,.body-pageseo .services {
    color: var(--color0);
    position: relative;
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s;
    padding: 10vh 10vw;
}


.bloc-contenu.services:before {
    content: "";
    position: absolute;
    background-image: url(../images/cork.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 315px;
    height: 635px;
    right: -7%;
    opacity: 1;
    z-index: -2;
    bottom: 0;
    }



.body-page-1 .services h2, .body-pageseo .services h2 ,.body-page-1 .services h2 span, .body-pageseo .services h2 span {
}

.body-page-1 .services h2:before, .body-pageseo .services h2:before, .certifs h2.h1:before {background: var(--color0);}

.btn-service {
    text-align: center;
    margin: 10px 0
}

.card-img,.img-service img,.liste-services,.swiper-container3 {
    width: 100%;
    position: relative;
}

.card-img:before {
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .1%) 1%, #000000b5);
    position: absolute;
    height: 100%;
    width: 100%;
    content: '';
    z-index: 1;
    left: 0;
}

.liste-services {
}

.liste-services .swiper-container {
    overflow-x: clip;
    overflow-y: visible;
}

@media(min-width: 1200px) {
    .container-service {
    }
}

.card-body {
    padding: 0 2rem 0rem;
    text-align: start;
    position: relative;
}

.card-body a.btn-card {
    max-width: 80%;
}

a.btn-card {
    /* display: block; */
    transition: .15s;
    text-decoration: none;
    position: absolute;
    left: 21px;
    padding: 0 !important;
    z-index: 2;
    text-transform: initial;
    font-size: 16px;
    width: fit-content;
    /* min-width: fit-content; */
    border: none;
    background: none;
    color: var(--color0);
    margin: 0;
    bottom: 20px;
    text-align: left;
    width: 100%;
}

.service-card:hover .card-body a.btn-card:before {
    width: 15%;
}
.card-body:hover a.btn-card:before {
    width: 36px;
}
a.btn-card.bouton-principal.service-all {
    height: 100%;
    width: 100%;
    z-index: 6;
    inset: 0;
}
.card-title h3 small {
    display: block;
    font-size: var(--taille_font);
    color: #ffffffb8;
    margin: 1vh 0;
    font-family: var(--font_family_1);
    line-height: 1.2;
}
.btn-card:hover:before {
    background: none;
}

a.btn-card:hover {
    /* color: var(--color4); */
}

.card-title h3 {
    font-size: calc(var(--taille_font) * 1.5);
    letter-spacing: 0;
    line-height: initial;
    /* margin-bottom: 21px; */
    font-family: var(--font_family_2);
    color: var(--color0);
    text-align: start;
    position: absolute;
    left: 19px;
    z-index: 3;
    bottom: 50px;
    padding-right: 10px;
}

.btn-card:before ,.btn-card:after {
    display: none;
}

.btn-card:before {
    display: none;
}

.navigation_box {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 70px;
    margin: 15px auto 0;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 10px 5px;
}

.service-card:hover {
    box-shadow: 0 14px 28px rgb(0 0 0 / 4%);
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
    transition: .4s
}
.swiper-container1 ,.swiper-container3 {
    margin: 0 auto;
    overflow-x: clip;
    list-style: none;
    padding: 0;
    z-index: 1;
    height: 100%;
    overflow-y: visible;
    width: 100%;
    overflow: hidden;
}

.img-service img {
    height: 580px;
    border-radius: 0;
    border: none;
    object-fit: cover;
}

.liste-services .swiper-wrapper {
    padding: 10px 0;
    width: 100%;
}

.service-card {
    display: block!important;
    width: 100%;
    height: fit-content!important;
    /* background: var(--color0) !important; */
    overflow: hidden;
    border-radius: var(--border-radius);
    margin: 0;
    position: relative;
    z-index: 0;
    border: none;
    transform: translateY(0);
    transition: .3s!important;
    /* border: 1px solid #dbd5d5; */
}

.service-card:before {
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, .1%) 1%, #000000b5);
    position: absolute;
    height: 100%;
    width: 100%;
    content: '';
    /* z-index: 1; */
}

.service-card:hover:before {
    background: -webkit-linear-gradient(top,rgba(255,255,255,.1%) 1%,#000000d1);
}
.page-hero {
  height: 72vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,11,11,0.25) 0%,
    rgba(11,11,11,0)    35%,
    rgba(11,11,11,0.72) 78%,
    rgba(11,11,11,1)    100%
  );
  z-index: 1;
}
.page-hero-image {
  position: absolute;
  inset: 0;
  background: url('/images/hero-services.jpg') center / cover no-repeat;
  transform: scale(1.06);
  animation: heroZoom 12s ease-out forwards;
  filter: saturate(0.7);
}
@keyframes heroZoom {
  to { transform: scale(1); }
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 80px;
  width: 100%;
}

.page-hero-breadcrumb a:hover { color: var(--blanc); }

.page-hero h1.visible-h1 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--blanc);
}
.page-hero h1.visible-h1 em {
  font-style: italic;
  color: rgba(242,239,234,0.45);
}
.page-hero-sub {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.page-hero-sub-line {
  width: 50px;
  height: 1px;
  background: var(--vert);
}
.page-hero-sub span {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gris);
}


/* ============================================================
   INTRO PAGE
   ============================================================ */
.page-intro {
  background: var(--blanc);
  padding: 70px 0 0;
}
.page-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(11,11,11,0.07);
}
.page-intro h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--noir);
  line-height: 1.12;
  margin-top: 14px;
}
.page-intro h2 em {
  font-style: italic;
  color: var(--prune);
}
.page-intro-right p {
  font-size: 0.87rem;
  line-height: 1.9;
  color: #4a4a48;
  font-weight: 300;
  margin-bottom: 14px;
}


/* ============================================================
   .page.services — structure principale
   ============================================================ */


.page.services {
  background: var(--blanc);
}


/* ── .prestation ── */
.prestation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(11,11,11,0.05);
}

/* Alternance gauche / droite */
.prestation:nth-child(odd)  { background: var(--blanc); }
.prestation:nth-child(even) {background: var(--color0);direction: rtl;}
.prestation:nth-child(even) > * { direction: ltr; }


/* ── .full-link ── */
.full-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  cursor: pointer;          /* curseur normal en prod (retirer cursor:none du body si besoin) */
}


/* ── .cell.photo ── */
.cell.photo {
  position: relative;
  overflow: hidden;
}
.cell.photo.cover {
  background-size: cover;
  background-position: center;
  transition: transform 0.9s ease, filter 0.5s;
  transform: scale(1.04);
  filter: saturate(0.78);
}
.prestation:hover .cell.photo.cover {
  transform: scale(1.1);
  filter: saturate(0.92);
}

/* Dégradé latéral subtil sur la photo */
.cell.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(11,11,11,0) 60%, rgba(242,239,234,0.04) 100%);
}
.prestation:nth-child(even) .cell.photo::after {
  background: linear-gradient(270deg, rgba(11,11,11,0) 60%, rgba(247,244,239,0.04) 100%);
}


/* ── Vegas slideshow (multi-images) ── */
.cell.photo[class*="slidebg"] {
  position: relative;
  min-height: 500px;
}
ul.miettes {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.miette {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(242,239,234,0.35);
  border: 1px solid rgba(242,239,234,0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.miette.active {
  background: var(--blanc);
  transform: scale(1.3);
}


/* ── .cell.texte ── */
.cell.texte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 72px;
  position: relative;
  z-index: 2;
}
.contenu {
  width: 100%;
}

/* Numéro visuel (01, 02…) */
.service-num {
  display: inline-block;
  font-family: var(--font_family_2);
  font-size: calc(var(--taille_font) * 2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vert);
  margin-bottom: 4px;
  margin-top: 18px;
}

/* .blocservice */
.blocservice {
  margin-bottom: 0;
}

/* h2.h1 — $service['title'] */
.cell.texte h2.h1 {
  font-family: var(--font_family_2);
  font-size: calc(var(--taille_font) * 2.5);
  font-weight: 400;
  color: var(--noir);
  line-height: 1.12;
  margin-bottom: 20px;
  text-align: left;
}
.cell.texte h2.h1 b {
  font-weight: 400;
  display: block;
}


/* p — str_get_paragraph($service['body']) */
.cell.texte p {
  color: #4a4a48;
  margin-top: 18px;
  margin-bottom: 0;
}

/* ── Flèche SVG (.svg) ── */
.svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(11,11,11,0.14);
  margin-top: 32px;
  transition: background 0.3s, border-color 0.3s, transform 0.35s;
}
.svg svg path {
  fill: var(--noir);
  transition: fill 0.3s;
}
.prestation:hover .svg {
  background: var(--prune);
  border-color: var(--prune);
  transform: translateX(8px);
}
.prestation:hover .svg svg path {
  fill: var(--blanc);
}

/********/
.the-third {
    display: flex;
    gap: 20px;
}

.the-third .service-card {
    width: 33%;
}
/******/


 
.swiper-navigation {
    position: relative;
    display: flex;
    width: 10px;
    margin: 0 auto 0;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 45px 8px;
}

.swiper-button-prev i, .swiper-button-next i {
    font-size: 22px;
    color: var(--color0);
}

.banniere .swiper-button-prev i, .banniere .swiper-button-next i {
    color: var(--color0);
}
.container-service .swiper-navigation .swiper-button-next {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    right: 50%;
    margin-right: -73.5px;
}

.container-service  .swiper-navigation .swiper-button-prev {
    left: 50%;
    margin-left: -41.5px;
    height: 45px;
    width: 45px;
    border-radius: 50%;
}

.swiper-button-prev, .swiper-button-next {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #d1cbcbb3;
    backdrop-filter: blur(5px);
    height: 45px;
    width: 45px;
    position: absolute;
}
/***/

.mySwiper-bann .swiper-pagination {
    width: max-content;
    left: unset;
    bottom: 0;
    bottom: 0%;
    display: flex;
    transform: translateY(-50%);
    gap: 8px;
    opacity: 0.8;
    align-items: end;
    justify-content: center;
    height: 10%;
    padding-bottom: 40px;
    padding-right: 10%;
    right: 35%;
}
.mySwiper-bann span.swiper-pagination-bullet {
    height: 3px;
    border-radius: 0;
    width: 54px;
    opacity: 1;
    background: var(--color0);
    transition: .3s ease;
    margin: 0 !important;
    margin: 8px 0 !important;
}

.mySwiper-bann span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 84px;
    background: var(--color2);
}
.mySwiper-bann .swiper-button-next,.mySwiper-bann .swiper-button-prev {
    width: 40px;
    height: 40px;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: .6;
    transition: .4s ease;
    display: none;
}

.mySwiper-bann .swiper-button-next:after, .mySwiper-bann .swiper-button-prev:after {
    color: white;
    font-size: 20px;
}
.arrowsAB .swiper-button-prev1, .arrowsAB .swiper-button-next1 {
    background: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid rgba(238, 238, 238, 0.22);
    opacity: 1;
    color: var(--color0);
    height: 2.344vw !important;
    width: 2.344vw !important;
}

.swiper-pagination-custom {
    color: var(--color1);
    padding: 2vh 2vw;
    text-align: right;
}

.arrowsAB .swiper-button-next1 i, .arrowsAB .swiper-button-prev1 i {
    color: var(--color0);
}

.arrowsAB {
    position: absolute;
    bottom: 5vh;
    width: auto;
    right: 5vw;
    height: 100px;
    z-index: 9000;
}
/***/
.btn-descendre,a.btn-descendre{width:60px;height:60px;position:relative;display:flex;text-decoration:none;color: var(--bg-facultatif);align-items:center;text-decoration: none !important;justify-content:center;border-radius:100px;margin-top:23px;border: 1px solid rgba(238, 238, 238, 0.22);}
.btn-descendre:after{content:"";position:absolute;z-index:0;left:0;top:0;transform:translateX(-50%) translateY(-50%);display:block;width:60px;height:60px;border-radius:50%;animation:pulse-border 1.5s ease-out infinite;background:#fff;z-index:-1}
@keyframes pulse-border{
0%{transform:scale(1);opacity:1}
100%{transform:scale(1.8);opacity:0}
}
.btn-descendre i {
    font-size: 30px
}
.fluid-contenu .corps h2 {font-size: calc(var(--taille_font) * 2.2);line-height: 1.2;color: var(--prune);margin-bottom: 2vh;font-weight: normal;position: relative;text-wrap: balance;font-family: var(--font_family_2);margin-top: 0;}
.fluid-contenu {
    position: relative;
    z-index: 10;
    background: var(--color0)
}
.fluid-contenu .corps:after {content:'';background-image: url(../images/grapes.png);background-repeat: no-repeat;background-size: 100%;width: 364px;height: 100%;left: 0;top: 58px;position: absolute;opacity: .5;z-index: 0;}
.fluid-contenu .corps {
    padding: 6em 13% 5em;
    background: url(../images/bg11.png);
}

.body-service-list .corps {
    padding: 7em 10% 5em;
}

.page-contenu-home {
    position: relative;
    display: block;
    padding: 13px 0;
}

.body-page-1 .page-contenu-home {
}

.recup-photos .propor .propor-cont .imagecont {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.recup-photos .propor .propor-cont .imagecont img {
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    flex: 1;
    height: 100%;
    object-position: center;
}

.recup-photos .propor {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    overflow: hidden
}

.recup-photos .propor:after {
    padding-top: 100%;
    display: block;
    content: ''
}

.recup-photos .propor .propor-cont {
    position: absolute;
    top: 0;
    bottom: 0;
    border-radius: 10px;
    right: 0;
    left: 0
}

.recup-photos .propor .propor-cont .imagecont .imagefond {
    image-rendering: optimizeQuality;
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat
}

.recup-photos .propor .propor-cont .imagecont .masque {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    transition: .5s;
    background-color: var(--color1);
    background-image: url(../images/ico-zoom.svg);
    background-repeat: no-repeat;
    background-position: center center
}

.recup-photos .propor .propor-cont .imagecont:hover .masque {
    opacity: .7;
    filter: alpha(opacity=70)
}

.recup-photos .propor .propor-cont .imagecont:hover .imagefond {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -o-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15)
}
/*************/

.actualites:before {
    content: "";
    position: absolute;
    background-image: url(../images/vector.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 315px;
    height: 635px;
    right: 0;
    top: 58px;
    opacity: 0.2;
    z-index: -2;
}

.r-flex .row.recup-photos.gallery {
    position: relative;
}

.r_name {
    width: 159px;
    height: 150px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color2);
    box-shadow: 0px 16px 32px 0px rgba(0,0,0,.04);
    position: absolute;
    color: var(--color6);
    right: 95px;
    top: -40px;
    z-index: 99;
    text-align: center;
    padding: 5px;
    border-radius: var(--border-radius);
    display: none;
}

.r_name:before {
    content: "";
    position: absolute;
    left: -15px;
    right: -15px;
    top: -15px;
    bottom: -15px;
    /* border: 2px dashed var(--color0); */
    border-radius: inherit;
    /* animation: cspine 20s linear infinite; */
}
@keyframes cspine {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(359deg)
    }
}

.r-flex .row.recup-photos.gallery:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 140px;
    /* border: 1px solid var(--color1); */
    left: 183px;
    /* bottom: -40px; */
    top: -33px;
    /* z-index: 1; */
    border-radius: var(--border-radius);
    background-color: var(--color1);
    display:none;
}img.wine {
    position: absolute;
    z-index: 1;
    bottom: 0px;
    height: 667px;
}
.images-f {
    width: 100%;
    overflow: hidden;
}.body-service span.last-word {
    text-align: right;
    padding-right: 4%;
}

span.last-word {
    font-family: var(--font_family_3);
    color: #c99b64;
}
.row.r-flex {
    display: flex;
    flex-direction: row;
    /* gap: 30px; */
    position: relative;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 1000;
}

.row.r-flex .text-center {
    text-align: left;
    margin: 3em 0;
}

.row.r-flex h1,.row.r-flex h1 .titre-secondaire {
    text-align: left;
}

.row.r-flex h1:before {
    left: 0;
    margin: 0;
}

.row.r-flex .col-md-5 {
    right: 0;
    top: 0;
}

.propor.pic-1 {
    width: 86% !important;
    height: 620px;
    overflow: visible;
    border-radius: 10px;
    left: 26%;
}



.propor.pic-2 {
    position: absolute !important;
    height: 223px !important;
    bottom: -7vh;
    left: 0;
    border-style: solid;
    border-width: 10px;
    border-color: #FFFFFF;
    border-radius: 0px 0px 0px 0px;
    width: 50%;
    aspect-ratio: 1 / 1;
}


/*********/
.certifs {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 8000;
    padding: 3em 10% 4em
}

.certifs .cell.gauche {
    display: block
}
.swiper-button-disabled {
    opacity: .5;
}

.certifs .cell.gauche .contenu {
    padding: 1em 0;
    color: var(--color1);
}

.certifs .cell.droite {
    position: relative;
    display: block;
    padding: 2em 7% 0;
}

.certifs .logo-certifs {
    position: relative;
    padding: 30px 13% 20px
}

.certifs .swiper-slide {
    text-align: center
}

.certifs .swiper-slide .img-swiper {
    position: relative;
    display: inline-block;
    border-radius: var(--border-radius);
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: 64% auto;
    -moz-background-size: 64% auto;
    background-size: 64% auto;
    background-color: var(--color0);
    border: 1px solid #eee;
}

.certifs .swiper-slide img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    display: block;
}




.swiper-button-next:hover,.swiper-button-prev:hover {
    opacity: 1
}

.certifs .logo-certifs .row-certifs {
    position: relative;
    display: table;
    width: 100%
}

.certifs .logo-certifs .row-certifs .certif-inline {
    position: relative;
    display: table-cell
}

.certifs .logo-certifs .row-certifs .certif-inline>div {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 60% auto;
    -moz-background-size: 60% auto;
    background-size: 60% auto;
    text-align: center
}

.certifs .logo-certifs .row-certifs .certif-inline>div img {
    position: relative;
    overflow: hidden
}

.actualites .cell.photo a {
    display: block
}

.actualites .cell.photo.cover img {
    object-fit: cover;
    -o-object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    flex: 1;
    height: 100%
}

.actualites {
    display: flex;
    width: 100%;
    position: relative;
    z-index: 800;
    padding: 98px 10%;
    flex-direction: row;
    flex-wrap: wrap;
}

.actualites article {
    display: flex;
    width: 100%;
    gap: 3%;
    align-items: stretch;
}

.actualites:nth-child(even+1) {
    direction: rtl
}

.actualites .cell.photo {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    background-position: center center;
    border-radius: var(--border-radius)
}

.actualites .cell.photo:hover {
    opacity: .95;
    filter: alpha(opacity=95)
}

.actualites .cell.texte {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    border-bottom: 2px solid var(--color0)
}

.actualites:last-child .cell.texte {
    border-bottom: none
}

.actualites .cell.texte .contenu {
    padding: 3em 10%;
    text-align: justify;
    direction: ltr
}

.actualites .cell.texte .contenu ul {
    padding: 0;
    margin: 0
}

.actualites .cell.texte .contenu ul li {
    padding: 5px 0 5px 20px;
    background: url(../images/puce.svg) no-repeat 0 9px
}

.actualites .cell.texte .contenu ul li .bouton-principal {
    display: block
}

.view-btn-all {
    position: relative;
    display: table;
    margin: 20px auto
}

.view-btn-all i {
    margin-left: 8px;
    font-size: 14px
}

.actualites .date_post,.news .date-article {
    font-size: 15px;
    font-weight: 700;
    color: var(--prune) !important;
    margin: 0 0 2vh !important;
    display: block;
}

.news .ligne-actus .date-article {
    margin-top: 18px;
    margin-bottom: 0
}

.news .ligne-actus .contenu-article {
    margin-top: 0
}

.news .contenu-article {
    margin-top: 21px
}

.AvisClientsBg {
    position: relative;
    z-index: 8000;
    text-align: center;
    padding: 5em 5% 5em;
    background: var(--color0);
}

.AvisClientsBg .bx-prev {
    left: -5vw;
}

.AvisClientsBg .bx-prev:before {
    display: inline-block;
    content: "\f053";
    font-weight: 700;
    font-family: 'Font Awesome 5 Free';
    font-size: 23px;
    color: var(--color0);
}

.AvisClientsBg .bx-next {
    right: -5vw;
}

.AvisClientsBg .bx-next:before {
    display: inline-block;
    content: "\f054";
    font-weight: 700;
    font-family: 'Font Awesome 5 Free';
    font-size: 23px;
    color: var(--color0);
}

.AvisClientsBg .bx-next,.AvisClientsBg .bx-prev {
    text-indent: initial;
    font-size: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-top: -55px;
    justify-content: center;
    opacity: .7;
    transition: .5s;
    color: var(--color0);
}

.AvisClientsBg .bx-next:hover,.AvisClientsBg .bx-prev:hover {
    opacity: 1
}

.AvisClientsBg .contenu .bx-viewport {
    padding: 28px 0 45px;
    display: block;
    height: auto!important
}

.AvisClientsBg.bg-optionnel-gris .h1 {
    color: var(--color0)
}

.etoiles .fa {
    color: #fc0;
    font-size: 18px;
}

.AvisClientsList {
    margin: 0;
    padding: 0
}

.AvisClientsList li {
    list-style: none;
    background: 0 0
}

.AvisClientsList li:before {
    content: none
}

.avisClientsBg .h {
    text-align: center
}

.AvisClients,.AvisClients:link,.AvisClients:visited {
    position: relative;
    background-color: var(--bg-facultatif);
    padding: 5rem 9% 3rem;
    height: 42vh;
    text-align: center;
    margin-top: 0;
    display: block;
    text-decoration: none;
    box-shadow: 0 0 20px #00000014;
    border-radius: calc(var(--border-radius) * 2);
}

.AvisClients:active,.AvisClients:hover {
    background-color: var(--bg-facultatif);
}
a.transition.AvisClients:before {
    color: rgb(0 0 0);
    left: 50%;
    content: "❞";
    font-size: calc(var(--taille_font) * 5 );
    height: 130px;
    line-height: 130px;
    margin-left: -65px;
    position: absolute;
    text-align: center;
    text-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px;
    top: 2vh;
    width: 130px;
    opacity: .4;
}
.AvisClientsBg {
}

.AvisClients .h {
    font-size: 21px;
    color: var(--color2);
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0
}

.AvisClients p {
    padding-top: 15px;
    text-align: center;
    font-size: var(--taille_font);
    font-weight: 200;
    font-style: normal;
    letter-spacing: 1px;
    color: #241c10;
    font-family: var(--font_family_2);
}

.AvisClients .blazy {
    font-size: 16px;
    color: var(--color0);
    width: 128px;
    margin: 0 auto;
    border-radius: 50%;
    margin-bottom: 20px;
    position: absolute;
    top: -70px;
    left: 50%;
    margin-left: -64px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: var(--color0)
}

.AvisClientsBg .bx-pager {
    bottom: 17px
}

.avisContent:before {
    content: '\00AB';
    display: inline-block;
    margin-right: 5px
}

.avisContent:after {
    content: '\00BB';
    display: inline-block;
    margin-left: 5px
}

.illus-wrap {
    width: 100%;
    position: relative;
  }

  /* Animation SVG */
  .float { animation: floatY 4s ease-in-out infinite; }
  .float-slow { animation: floatY 6s ease-in-out infinite; }
  .float-rev { animation: floatY 5s ease-in-out infinite reverse; }
  @keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
  }

  .draw {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: drawLine 2s ease forwards;
  }
  @keyframes drawLine {
    to { stroke-dashoffset: 0; }
  }

  .fade-in { opacity: 0; animation: fadeIn .8s ease forwards; }
  @keyframes fadeIn { to { opacity: 1; } }

  /* Légende */
  .caption {
    text-align: center; margin-top: 1.5rem;
  }
  .caption p {
    font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
    color: rgba(255,255,255,.25); font-weight: 300;
  }
  .caption em { color: #a38f56; font-style: normal; }

  /* Version intégration */
  .integration-note {
    background: rgba(163,143,86,.1); border: 1px solid rgba(163,143,86,.2);
    padding: 1.5rem 2rem; max-width: 560px; width: 100%;
  }
  .integration-note h2 {
    font-family: 'Playfair Display', serif; font-size: 1rem; color: #a38f56;
    font-weight: 400; margin-bottom: .8rem;
  }
  .integration-note p {
    font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.7; font-weight: 300;
  }
  .integration-note code {
    background: rgba(255,255,255,.06); padding: 2px 6px;
    font-size: .72rem; color: #c4ae7a; border-radius: 2px;
  }
.temo-card.reveal.d1.up.swiper-slide {
    opacity: .5;
}

.temo-card.reveal.up.swiper-slide.swiper-slide-active {
    opacity: 1;
}
#temoignages  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
#temoignages .reveal.up { opacity: 1; transform: none; }
#temoignages .reveal.d1 { transition-delay: .15s; }
#temoignages  .reveal.d2 {transition-delay: .28s;}
#temoignages .reveal.d3 { transition-delay: .42s; }
#temoignages {padding: 70px 10%;background: var(--blanc);}
.temo-header {display: flex;align-items: center;justify-content: space-between;margin-bottom: 56px;}
.temo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.temo-card {padding: 2.5rem 2rem;position: relative;border: 1px solid #00000024;transition: border-color .3s, background .3s;}
.temo-card:hover {}
.temo-quote { font-family: 'Playfair Display', serif; font-size: 4rem; color: var(--or); opacity: .3; line-height: 1; position: absolute; top: 1.2rem; right: 1.8rem; }
.stars-row {color: var(--vert);margin-bottom: 1.2rem;}
.temo-text {color: var(--color1);font-weight: 300;font-style: italic;margin-bottom: 1.5rem;}
.temo-author {display: flex;align-items: center;gap: .9rem;padding-top: 1.2rem;border-top: 1px solid rgba(255,255,255,.08);text-decoration: none !important;}
.temo-av {width: 45px;height: 45px;border-radius: 50%;background: rgb(201 155 100);display: flex;align-items: center;justify-content: center;font-family: var(--font_family_1);color: var(--color4);text-decoration: none !important;}
.temo-name {color: var(--prune);text-decoration: none;}
.temo-city {color: rgb(0 0 0 / 30%);font-weight: 300;margin-top: 0;margin-bottom: 0;}
.temoignageScroll {
    max-height: 109px;
    text-align: center;
    overflow: hidden;
    margin: 52px 0 0;
}

.temoignageScroll .scrollbar-content {
    padding: 0 10px 0 0;
    width: 100%
}

.temoignageScroll .scrollbar-path-vertical {
    right: 0
}

.date_post {
    font-size: 15px;
    padding: 4px 0
}

.date_post i {
    margin-right: 8px;
    font-size: 22px;
}

.AvisClientsBg .bx-controls.bx-has-pager {
    display: block;
    position: relative;
    height: 70px
}

.livre-elements {
    padding: 0 0;
    margin-bottom: 40px;
    text-align: center
}

.livre-elements .livre-ligne {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between
}

.livre-elements .blazy {
    margin: 0 auto 10px;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: var(--color0);
    width: 115px;
    height: 115px
}

.livre-elements .pseudo {
    margin-bottom: 6px;
    font-size: 21px;
    color: var(--color3);
    text-align: left;
    text-transform: uppercase;
    font-weight: 600
}

.livre-elements .date {
    margin-bottom: 2px!important;
    color: var(--color2)
}

.livre-elements .etoiles {
    margin-bottom: 0!important
}

.livre-elements .temoignage {
    text-align: left;
    display: block;
    margin-top: 20px;
    font-size: calc(var(--taille_font) * 1.15);
}

.livre-elements .temoignage:before {
    content: '\00AB';
    display: inline-block;
    margin-right: 5px
}

.livre-elements .temoignage:after {
    content: '\00BB';
    display: inline-block;
    margin-left: 5px
}

.divAvis {
    padding: 25px 27px;
    margin-bottom: 3rem;
    background-color: #f3f3f3;
    border-radius: var(--border-radius);
    width: 100%;
    text-align: left;
}

.btn-avis {
    margin-bottom: 30px;
    min-width: 280px !important;!i;!;
}

.modal-content a,.modal-content a:link,.modal-content a:visited {
    color: var(--color2)
}

.modal-header .h1 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color2);
    font-size: 1.6vw;
    font-weight: 700;
    text-shadow: none
}

.modal {
    display: none;
    overflow: auto;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    z-index: 9999;
    font-size: 16px;
    color: var(--color0)
}

.modal-backdrop.in {
    z-index: 0
}

.modal-open .modal {
    z-index: 99997;
    background: rgb(0 0 0 / 20%);
    color: var(--color2);
    text-shadow: none;
    font-family: Arial,Helvetica,sans-serif
}

.modal-content .btn-close {
    border: 0;
    background: 0 0;
    padding: 0;
    font-size: 24px;
    color: var(--color2);
    opacity: .5;
    line-height: 1;
    margin-top: -26px;
}

.modal-content .form-control {
    min-height: 44px;
    border-radius: 2px
}

.modal-content .btn-close:focus,.modal-content .btn-close:hover {
    opacity: .5
}

.modal-content .submit-review {
    padding-right: 60px!important
}

.modal-content label.control-label {
    display: none;
    padding-top: 0!important
}

.modal-content label.control-label.label-note,.modal-content label.control-label.label-photo {
    display: block;
    padding-top: 14px!important
}

#add-review {
    text-align: center
}

#add-review .form-group {
    text-align: left
}

#add-review input[type=file] {
    display: block;
    width: 100%;
    height: 50px
}

#add-review #stars-existing {
    margin: 0 auto 10px;
    display: block;
    text-align: left;
    padding-top: 15px
}

#add-review .form-group #captcha {
    height: 46px!important
}

.formulaire #add-review .form-group .form-control,.formulaire #add-review .form-group input,.formulaire #add-review .form-group textarea {
    background: var(--color0);
    border: 1px solid #ccc;
    color: var(--color2);
    border-radius: 2px
}

.modal-content .form-control::placeholder {
    color: var(--color2)!important;
    opacity: 1
}

#add-review .submit-review {
    margin: 15px auto!important;
    padding: 14px 15px!important;
    float: none;
    display: block;
    background-image: none
}

#add-review .body-review {
    height: 100px
}

#add-review .form-group.form-group-1 .col-md-10,#add-review .form-group.form-group-2 .col-md-10,#add-review .form-group.form-group-4 .col-md-10 {
    width: 100%;
    padding: 0;
}

#add-review .conditions,.modal-content .email-block {
    font-size: 10px;
    font-weight: 400;
    font-style: italic;
    text-align: justify;
    opacity: .6;
    display: block;
    clear: both;
    color: var(--color2)!important
}

.cont-slider {
    position: relative
}

.sudo-slider {
    width: 100%;
    z-index: 8999999
}

.sudo-slider .slide {
    text-align: center;
    height: 135px;
    line-height: 135px
}

.sudo-slider .slide img {
    max-height: 100%
}

.cont-slider .controls {
    z-index: 9002;
    display: inline-block;
    position: absolute;
    bottom: -70px;
    left: 0;
    right: 0;
    text-align: center
}

.cont-slider .controls ol {
    margin: 0;
    padding: 0;
    list-style-type: none
}

.cont-slider .controls ol li {
    display: inline-block;
    background: 0 0;
    padding: 0
}

.cont-slider .controls ol li a {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--color2);
    margin: 0 5px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    opacity: .5
}

.cont-slider .controls ol li.current a {
    opacity: 1
}

.cont-slider .controls ol li a span {
    display: none
}


.realisations .titre-secondaire, .realisations h2 {color: var(--color0);text-align: left;width: 47%;}
.temoignages .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    position: absolute;
    left: 0;
}
p.date i {
    font-size: 15px;
}

.date_post {
    padding: 4px 0px;
    text-align: left;
    font-size: 80%;
}

.date_post i {
    margin-right: 8px;
}

.divAvis .fa-solid {
    font-size: calc(var(--h1-size) * 2);
    opacity: .2;
    position: absolute;
    top: 0;
}
.swiper-pagination {
    position: relative;
    text-align: center;
    display: flex;
    width: 100%;
    margin: 4vh 0 2vh;
    -webkit-transition: opacity .3s;
    -o-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
    align-items: center;
    gap: 6px;
    justify-content: center;
    align-content: center;
}

.temoignage1 {
    text-align: center;
    width: 100%;
    margin: 4vh 0 0;
}

.swiper-pagination-bullet {
    width: 44px;
    height: 7px;
    border: 1px solid;
    border-radius: var(--border-radius);
    -webkit-transform: scale(1);
    transform: scale(1);
    position: relative;
    background: var(--color2);
    border: 0px;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.realisations .h1:before, .bloc-contenu:before, .AvisClientsBg .h1:before {
}

.realisations .titre-secondaire, .bloc-contenu .titre-secondaire, .AvisClientsBg .titre-secondaire, .certifs h2.h1 .titre-secondaire {
    color: var(--color2);
}
.realisations {
    position: relative;
    z-index: 800;
    text-align: center;
    padding: 70px 10%;
    background: var(--color4);
}

.news .propor,.realisations .galerie .propor {
    width: 100%;
    position: relative;
    margin-bottom: 10px
}

.news .propor:after,.realisations .galerie .propor:after {
    padding-top: 78%;
    display: block;
    content: ''
}

.news .propor .propor-cont,.realisations .galerie .propor .propor-cont {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0
}

.news .propor .propor-cont .imagecont,.realisations .galerie .propor .propor-cont .imagecont {
    height: 100%;
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transform: translateZ(0)
}

.news .propor .propor-cont .imagecont .imagefond,.realisations .galerie .propor .propor-cont .imagecont .imagefond {
    image-rendering: optimizeQuality;
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat
}

.news .propor .propor-cont .imagecont .masque,.realisations .galerie .propor .propor-cont .imagecont .masque {
    transition: all .4s ease;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    height: 100%;
    background-color: var(--color1);
    background-image: url(../images/ico-zoom.svg);
    background-repeat: no-repeat;
    background-position: center center
}

.news .propor .propor-cont .imagecont:hover .masque,.realisations .galerie .propor .propor-cont .imagecont:hover .masque {
    opacity: .8;
    filter: alpha(opacity=80)
}

.news .propor .propor-cont .imagecont:hover .imagefond,.realisations .galerie .propor .propor-cont .imagecont:hover .imagefond {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -o-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15)
}
/*******/
/********/



/********/
.zone-iframe {
    width: 100%;
    position: relative;
    height: 504px;
}

.zone-iframe iframe {
    width: 100%;
    height: 100%;
}
/* ZONE D'INTERVENTION */
.newsletter-form input[type="submit"] {
    background: #c89a63;
    border: 1px solid #c89a63;
    width: 30%;
}

form#newsletter_form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.newsletter-text {
    width: 95%;
}
  .section-inner {padding: 70px 10vw;}
  .zone {
    background: var(--noir);
    position: relative;
    overflow: hidden;
  }
  .zone::before {
    content: 'ACCÈS';
    position: absolute;
    font-family: 'EB Garamond', serif;
    font-size: 16vw;
    font-weight: 500;
    color: rgba(242,239,234,0.02);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
  }.zone-map {
    margin-top: 6vh;
}
  .zone-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .zone-left h2 {
    color: var(--blanc);
    /* width: 72%; */
  }
.zone-left .titre-secondaire, .realisations .titre-secondaire ,  .galerie-header .titre-secondaire{
    color: var(--color0);
    opacity: .5;
}

.zone-left .titre-secondaire:before, .realisations .titre-secondaire:before,  .galerie-header .titre-secondaire:before {
    background: var(--color0);
}
h2.h1 {}
  .zone-left h2 em { font-style: italic; color: rgba(242,239,234,0.4); }
  .zone-left p {
    color: var(--gris);
    margin-bottom: 16px;
  }
  .zone-access-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(242,239,234,0.06);
  }
  .zone-access-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 28px;
    border-bottom: 1px solid rgba(242,239,234,0.06);
    transition: background 0.3s;
  }
  .zone-access-item:last-child { border-bottom: none; }
  .zone-access-item:hover { background: rgba(242,239,234,0.03); }
  .zone-access-icon {
    width: 40px;
    height: 40px;
    background: #c89a63;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .zone-access-text strong {
    display: block;
    font-size: 80%;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blanc);
    font-weight: 400;
    margin-bottom: 5px;
  }
  .zone-access-text span {
    color: var(--gris);
  }
  .zone-right {
    position: relative;
  }
  .zone-map-wrap {
    position: relative;
    border: 1px solid rgba(242,239,234,0.08);
    overflow: hidden;
  }
  .zone-map-wrap iframe {
    width: 100%;
    height: 73vh;
    display: block;
    border: none;
    /* filter: grayscale(1) invert(0.85) brightness(0.65) contrast(0.9); */
  }
  .zone-map-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(62,31,43,0.12) 0%, transparent 50%);
    mix-blend-mode: multiply;
  }
  .zone-map-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--prune);
    color: var(--blanc);
    padding: 14px 20px;
    z-index: 2;
  }
  .zone-map-badge strong {
    display: block;
    font-size: calc(var(--taille_font) * 1.5);
    font-family: var(
    --font_family_2);
    margin-bottom: 2px;
  }
  .zone-map-badge span {
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(242,239,234,0.65);
    font-size: 80%;
  }
  .zone-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 2px;
  }
  .zone-highlight {
    background: rgba(242,239,234,0.03);
    border: 1px solid rgba(242,239,234,0.06);
    padding: 20px 18px;
    text-align: center;
    transition: background 0.3s;
  }
  .zone-highlight:hover { background: rgba(242,239,234,0.06); }
  .zone-highlight-num {
    font-family: var(--font_family_2);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--blanc);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
  }
  .zone-highlight-label {
    font-size: 80%;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gris);
  }
/********/
.intervention {
    position: relative;
    z-index: 8000;
    background-attachment: fixed;
    padding: 6em 17% 6em;
    color: var(--color5);
    background: var(--color3);
}


.intervention .contenu {
    padding: 0;
    color: var(--color0);
    font-size: 17px
}

.intervention .contenu a,.intervention .contenu a:link,.intervention .contenu a:visited {
    color: var(--color0)
}

.intervention h2 {
    margin-top: 0;
    color: var(--bg-facultatif);
}

.intervention h2:before {
    background: var(--color0)
}

.intervention ul {
    margin: 30px 0 0;
    column-count: 2;
    width: 60%
}

.note-avis {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 2rem
}

.nbr-note {
    font-size: 40px;
    margin-right: 4rem
}
.pied .abus {
    text-align: center;
    margin: 0;
    margin: 29px 0 0
}

.pied .abus span {
    display: inline-block;
    background: url(../images/ico-abus.png) no-repeat 0 0;
    padding: 0 0 20px 40px;
    color: #c6c6c6;
    font-size: 10px
}

.pied {
    position: relative;
    z-index: 9;
    /* background: var(--color1); */
}

.pied .bande1 {
    padding: 4rem 10% 2rem;
    background: var(--color1);
    float: left;
    position: relative;
    width: 100%;
}
.pied .bande2 .row {
    border-top: 1px solid #ffffff36;
}
.bande_contact_footer {
    padding: 70px 28% 50px;
    background: var(--color2);
    position: relative;
    float: left;
    width: 100%;
    color: var(--color0);
}.formulaire.contact-footer .h1 {
    color: var(--color0);
}


.bande_contact_footer .row1 {
    position: relative;
    display: block;
    padding: 0rem 0%;
    border-radius: var(--border-radius);
    z-index: 1000;
}

.pied .bande2 {
    padding: 10px 10%;
    background: var(--color1);
    float: left;
    position: relative;
    width: 100%;
}.pied .bande2 .row {
    border-top: 1px solid #ffffff29;
}

.pied .title_footer {
    color: var(--color0);
    font-family: var(--font_family_1);
    text-transform: uppercase;
    padding: 0 0 4px;
    position: relative;
    font-weight: 200;
    float: left;
    width: 100%;
}

.pied .title_footer::before {
    content: "";
    width: 75px;
    height: 10px;
    background: var(--color1);
    position: absolute;
    bottom: 3px;
    left: 0;
    height: 2px
}

.pied .navf .menu_footer {
    color: var(--color3);
    padding: 15px 0;
    list-style-type: none;
    margin: 0;
    position: relative;
    float: left;
    width: 100%;
}

.pied .navf .menu_footer li {
    display: block;
    padding: 0 0 4px;
    background: 0 0;
    position: relative
}

.pied .navf .menu_footer li:last-child {
    border: none
}

.pied .navf .menu_footer li a,.pied .navf .menu_footer li a:visited {
    font-size: var(--taille_font);
    padding: 0 0 0;
    color: var(--color0);
    text-decoration: none;
    opacity: .6;
}

.pied .navf .menu_footer li a:hover {
    color: var(--color0);
    opacity: .7;
}

.pied .navf .menu_footer li.active a {
    color: var(--blanc);
}

.pied .navf .menu_footer li.active a:hover {
    text-decoration: none
}

.pied .menu_referencement {
    color: var(--color0);
    list-style-image: none;
    list-style-type: none;
    margin: 0;
    text-align: justify;
    padding: 0
}

.pied .menu_referencement li {
    display: inline;
    padding: 0;
    background: 0 0
}

.pied .menu_referencement li:before {
    content: none
}

.pied .menu_referencement li:after {
    content: " - "
}

.pied .menu_referencement li:last-child:after {
    content: ""
}

.pied .menu_referencement li a,.pied .menu_referencement li a:visited {
    color: var(--color0);
    text-decoration: none;
    opacity: .6;
}

.pied .menu_referencement li a:hover {
    color: var(--color0);
    opacity: .7;
}

.pied .menu_referencement li.active a:hover {
    text-decoration: none
}

.pied address {
    margin: 0;
    padding: 15px 0 25px;
    color: var(--color0);
    font-size: var(--taille_font);
    float: left;
    width: 100%;
    position: relative;
    opacity: .6;
}

.pied address p {
    background-repeat: no-repeat;
    margin: 0;
    background-position: 0 0;
    padding: 0 0 10px 0
}

.flex-address {
    position: relative;
    display: flex;
}

.flex-address i {
    margin-top: 3px!important
}

address i {
    margin: 0;
    margin-right: 12px;
    font-size: 16px;
    color: var(--color1);
    width: 16px
}

footer address i {
    color: var(--color0);
}

.pied address p.tel a {
    color: inherit;
    text-decoration: none
}

.pied address p a {
    text-decoration: none;
    color: inherit
}

.pied address p a:hover {
    text-decoration: underline
}

.pied .scrollbars {
    margin: 15px 0 0;
    height: 260px;
    position: relative;
    float: left;
    width: 100%;
}

.pied .horaires {
    color: var(--color0);
    padding: 15px 0 25px;
    /* margin: 15px 0 0; */
    font-size: 16px;
    float: left;
    width: 100%;
}

.horaires {
    display: inline-grid
}

.horaires i {
    margin: 4px 0 0;
    margin-right: 12px;
    font-size: 16px;
    color: var(--color2)
}

.pied .copyright-footer {
    margin: 5px 0 0;
    text-align: left;
}

#logoFD svg * {
    fill: var(--color0);
}

#logoFD svg {
    width: 210px;
    opacity: .5;
}

.pied .btn-like {
    padding: 20px 0 0
}

.pied .btn-partage {
    text-align: right;
    padding: 10px 0 0;
    display: flex;
    justify-content: flex-end
}

.scrollbars {
    width: 100%;
    height: 28vh
}

.scrollbar-path-horizontal,.scrollbar-path-vertical {
    position: absolute;
    background-color: #ececec;
    z-index: 100
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: var(--color4);
}

.scrollbar-path-horizontal {
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 5px
}

.scrollbar-path-vertical {
    right: 5px;
    top: 0;
    height: 100%;
    width: 5px;
    box-shadow: inset 1px 0 1 rgba(0,0,0,.1)
}

.scrollbar-path-horizontal {
    box-shadow: inset 0 1px 1 rgba(0,0,0,.1)
}

.scrollbar-handle {
    position: relative;
    top: 0;
    left: 0;
    background-color: var(--color1)
}

.scrollbar-path-vertical .scrollbar-handle {
    height: 20%;
    width: 100%
}

.scrollbar-path-horizontal .scrollbar-handle {
    width: 20%;
    height: 100%
}

.scrollbar-handle,.scrollbar-path-horizontal,.scrollbar-path-vertical {
    border-radius: 5px
}

.scrollbar-content {
    padding: 0 30px 0 0;
    float: none!important
}
.prestation .full-link {
    position: absolute;
    inset: 0; /* top:0 right:0 bottom:0 left:0 */
    z-index: 5;
}.prestation:hover span.svg {
    color: var(--color1);
    background-color: var(--color4);
    fill: var(--color2);
    transition: all .4s 
ease;
}


.item-news.prestation .bloc-photo {
    position: relative;
    height: auto
}

.item-news.prestation .bloc-photo.photo-empty,.item-news.prestation .photo {
    height: 29.5rem
}

.item-news.prestation .contenu {
    background: var(--color0);
    padding: 5.0rem 4.0rem 5rem;
    position: relative;
    min-height: 17.0rem
}

.item-news.prestation .contenu .text-liste-serive {
    min-height: 8.6rem;
    height: 8.6rem;
    overflow: hidden
}

.item-news.prestation .contenu .lire-suite {
    padding: 1.0rem 0 0
}

.item-news.prestation .bloc-titre {
    display: block;
    width: 100%;
    text-align: left;
    position: absolute;
    z-index: 11;
    left: 0;
    bottom: -2.5rem
}

.item-news.prestation .bloc-photo.sans-photo .bloc-titre {
    position: relative
}

.item-news.prestation .bloc-titre .titre-news {
    display: table;
    background: var(--color0);
    border-radius: 0  10px 10px 0;
    box-shadow: 0 0.3rem 1.0rem rgba(0,0,0,0.2);
    -ms-box-shadow: 0 0.3rem 1.0rem rgba(0,0,0,0.2);
    -o-box-shadow: 0 0.3rem 1.0rem rgba(0,0,0,0.2);
    -webkit-box-shadow: 0 0.3rem 1.0rem rgba(0,0,0,0.2);
    padding: 1.5rem 3.5rem;
    font-size: 1.8rem;
    max-width: 97%;
}

.item-news.prestation .miettes {
    list-style: none;
    margin: 0;
    padding: 0
}

.gallery .ligne-photos.centerservice {
    margin: 0 33%!important
}

.btn-service {
    text-align: center;
    margin: 1.0rem 0
}

.btn-service a.btn-show-more {
    display: inline-block;
    padding: 1.5rem 2.5rem 1.5rem 2.0rem
}
.office-item {
    padding: 16px;
    background: var(--bg-facultatif);
    border-radius: 5px;
    color: #35596a;
    margin: 0 0 1vh;
    width: 33%;
}

.other-offices {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.other-offices strong {
    font-family: var(--font_family_1);
    color: var(--color5);
}

.body-contact h2 {
}

.tab-coordonnes h2:before {
    content: "";
    width: 75px;
    height: 2px;
    background: var(--color1);
    position: absolute;
    top: 50px;
    left: 0
}

.body-contact .tab-formulaire .cell.droite h2 {
    text-align: center;
    margin-bottom: 70px;
    font-size: 24px
}

.body-contact .tab-formulaire .cell.droite h2:before {
    content: "";
    width: 75px;
    height: 2px;
    background: var(--color1);
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -37px
}

.contact .tab-coordonnes {
    display: table;
    width: 100%;
    position: relative;
    z-index: 8000;
    background: var(--color0)
}

.contact .tab-coordonnes .cell.gauche {
    display: table-cell;
    vertical-align: top;
    width: 40%;
    border-top: 2px solid var(--color0)
}

.contact .tab-coordonnes .cell.gauche .contenu {
    padding: 3em 7% 0 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.contact .tab-coordonnes .cell.centre {
    display: table-cell;
    vertical-align: top;
    width: 50%
}

.contact .tab-coordonnes .cell.droite {
    display: table-cell;
    vertical-align: top;
    width: 60%;
}
.textcontact h1:before {
    left: 0;
    margin-left: 0;
}
.contact .tab-formulaire {
    width: 100%;
    position: relative;
    z-index: 8000;
    margin-top: 0vh;
    float: left;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
}

.contact .tab-formulaire .contenu h2 {
    text-align: center
}

.contact .plan {
    font-size: 0;
    border-radius: var(--border-radius);
}

.contact .plan .block #googlemapapi,.contact .plan iframe {
    width: 100%!important;
    height:54vh;
    border-radius: var(--border-radius);
}

.contact .coordonnees {
    padding: 0 0 20px
}

.contact .coordonnees h2 {
}

.contact .coordonnees address p {
    padding: 0 0 10px 0
}

.contact .coordonnees address p.tel a {
    color: inherit;
    text-decoration: none
}

.contact .coordonnees address p span.intitule {
    font-weight: 700
}

.contact .coordonnees address p a {
    text-decoration: none;
    color: inherit
}

.contact .coordonnees address p a:hover {
    text-decoration: underline
}

.contact .description-contact {
    padding: 0 0 10px;
    font-size: 21px;
    line-height: 34px;
    font-family: var(--font_family_2);
    margin: 1em 0px;
    color: var(--color0transparent2);
    text-align: left;
}.textcontact {
    flex-basis: 55%;
    margin: 0px;
}

.contenu.formulaire {
    margin: 0px;
    display: block;
    position: relative;
    z-index: 8000;
    background-color: rgb(255 255 255 / 0%);
    box-shadow: 0 32px 50px rgb(0 0 0 / 10%);
    padding: unset;
}

.textcontact h1.sans-image {
    text-align: left;
}

.contact .formulaire .form-group label.col-md-4 {
    padding-left: 0!important;
    padding-right: 0!important
}

.contact .formulaire .form-group div.col-md-8 {
    padding-left: 0!important;
    padding-right: 0!important
}

.contact .formulaire .form-group .col-md-4 {
    display: none
}

.contact .formulaire .form-group .col-md-8 {
    width: 100%!important
}

.form-group .label-rgpd strong,.info-rgpd a,.info-rgpd a:visited,.info-rgpd strong {
    color: var(--color1)
}

.contact .formulaire .control-label {
    text-align: left!important;
    font-weight: 400
}

.contact .formulaire .form-group {
    margin-bottom: 8px;
    padding: 0!important;
    margin-left: 0!important;
    margin-right: 0!important
}

.contact .formulaire .form-group .form-control {
    background: #0d0d0d5c;
    border: 1px solid;
    box-shadow: none;
    border-radius: 0;
    width: 100%!important;
    font-size: inherit;
    color: var(--color0);
    border-radius: var(--border-radius)
}

.form-control:focus {
    color: #000;
    background: var(--color0)
}

.contact .formulaire .form-group textarea.form-control {
    height: 173px;
    position: static
}

.contact .formulaire .form-group input.form-control {
    height: 50px;
    line-height: 1;
    line-height: 50px\9;
    padding: 0 12px
}

.contact .formulaire .form-group .form-control:active,.contact .formulaire .form-group .form-control:focus {
    border: 1px solid var(--color2)
}

.contact .formulaire .form-group select.form-control {
    height: 50px;
    line-height: 50px;
    padding: 5px 12px
}

@media screen and (-webkit-min-device-pixel-ratio: 0),screen and (-moz-images-in-menus:0) {
    .form-horizontal select.form-control {
        -webkit-appearance:none!important;
        -moz-appearance: none!important;
        appearance: none;
        background-image: url(../images/image-select.svg)!important;
        background-repeat: no-repeat!important;
        background-position: right 15px center!important;
        line-height: normal!important;
        background-size: 22px auto!important
    }

    .form-horizontal select.form-control option {
        color: inherit
    }
}

.contact .formulaire .form-group input[name=captcha] {
    width: 31%!important;
    height: 50px!important;
    display: inline-block;
    float: none!important;
    margin-right: 2%!important;
    vertical-align: top
}

.contact .formulaire .form-group input[name=captcha]+a {
    width: 35%;
    display: inline-block;
    margin-right: 2%;
    vertical-align: top
}

.contact .formulaire .form-group #captcha {
    width: 100%;
    height: 50px!important;
    border-radius: 0;
    padding: 0
}

.contact .formulaire .form-group input.btn-primary {
    display: inline-block;
    position: relative;
    float: right;
    padding-right: 70px
}

.contact .formulaire .form-actions {
    font-size: 12px
}

.contact a.btn.btn-default {
    float: right
}

.body-error404 a.btn.btn-default,.contact .formulaire input.btn-primary,.contact a.btn.btn-default {
    padding: 15px 20px;
    font-family: var(--font_family_1);
    text-transform: uppercase;
    background-color: var(--vert);
    color: var(--color0);
    text-align: left;
    border-radius: var(--border-radius);
    border: none;
    text-decoration: none;
    transition: all .4s ease;
    background-size: 24px auto;
    background-position: left 90% center;
    background-image: url(../images/ico-envoyer.svg);
    background-repeat: no-repeat
}

.body-error404 a.btn.btn-default {
    background-image: none
}

.body-error404 a.btn.btn-default:active,.body-error404 a.btn.btn-default:hover,.contact .formulaire input.btn-primary:active,.contact .formulaire input.btn-primary:hover,.contact a.btn.btn-default:active,.contact a.btn.btn-default:hover {
    background-color: var(--color2);
}

::-webkit-input-placeholder {
    color: var(--color0)!important
}

:-moz-placeholder {
    color: var(--color0) !important;
    opacity: 1!important
}

::-moz-placeholder {
    color:var(--color0)!important;
    opacity: 1!important
}

:-ms-input-placeholder {
    color: var(--color0) !important
}

.pageseo .formulaire .form-group input[name=captcha] {
    width: 100%!important;
    margin-right: 0!important;
    text-align: left!important
}

.pageseo .formulaire .form-group input[name=captcha]+a {
    position: absolute;
    width: 140px;
    top: 0;
    right: 0;
    margin-right: 0!important
}

.flex-seoContain {
    position: relative;
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap
}

.flex-seoContain .seo-content {
    width: 55%;
    padding-top: 1em
}
.flex-seoContain .seo-form h2.h1 {
    color: var(--blanc);
}
.flex-seoContain .seo-content h1,.flex-seoContain .seo-form h2.h1 {
    text-align: left;
}

.flex-seoContain .seo-content h1:before,.flex-seoContain .seo-form h2.h1:before {
    left: 0;
    margin-left: 0
}

.flex-seoContain .seo-form {
    width: 41%;
    margin: 0px;
    display: block;
    position: relative;
    z-index: 8000;
    border-radius: 0;
    box-shadow: 0 32px 50px rgb(0 0 0 / 10%);
    background: var(--noir);
    padding: 4vh 2vw;
    color: var(--blanc);
}

.img-seo img {
    border-radius: var(--border-radius);
    width: 100%;
    height: 100%;
}

.flex-seoContain .seo-content img {
    width: 100%;
    height: 100%;
}

.panel-body ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top: 1px solid #eeeeee36;
}
h4.panel-title a {
    padding: 3vh 0;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

span.titre-11 {
    float: left;
    display: block;
}
.faq-icon svg path {
    fill: var(--color0);
}

h4.panel-title {
    width: 100%;
    margin-top: 0px;
    column-gap: 2rem;
    color: var(--color0);
    cursor: pointer;
    align-items: flex-start;
    padding: 0px;
    display: flex;
    font-size: calc(var(--taille_font) * 1.8);
    background: transparent;
    background-color: transparent;
    text-transform: none;
    justify-content: space-between;
    font-family: var(--font_family_2);
    margin-bottom: 0px !important;
}

.panel-default>.panel-heading {
    background: transparent;
    background-color: transparent;
    padding: 0 0;
}

.panel-group .panel {
    background-color: transparent;
    border-bottom: 1px solid #ffffff1c !important;
    border: 0;
}

.panel-body {
    color: var(--color0);
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.atout2:before, .intervention:before {
    content: "";
    position: absolute;
    width: 4vh;
    height: 100%;
    background: );
    top: 0px;
    right: 0;
    animation: 80s linear 0s infinite normal none running Anim;
    opacity: 0.5;
    0% 0% / 78%
    background: repeat-x;
    z-index: 100;
    background-size: 100%;
}

@keyframes Anim {
    0% {
        background-position: right top;
    }

    100% {
        background-position: right  top 1000px;
    }
}



/***************/

.atouts-container {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: row-reverse;
}

.demarche .atouts-container {
    display: flex;
    flex-direction: row-reverse;
}

.atout-img {
    position: relative;
    width: 40%;
    box-shadow: 0 0 20px #0000001c;
}

.atout-img:before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    left: -5%;
    top: -5%;
    background: var(--color5);
    opacity: .1;
}
.atout2 .flex {
    display: flex;
    justify-content: space-between;
    gap: 0;
}

div#accordion {
    width: 57%;
}
.atout-img img {
    width: 100%;
    height: 100%;
}

.atouts-bloc {
    position: relative;
}

.atouts-bloc .titre-secondaire {
}

.demarche span.titre-secondaire {
    color: var(--color1);
}

img.att-img {max-width: max-content;width: 100%;}

.demarche img.att-img {
    filter: brightness(0);
    filter: brightness(0) saturate(100%) invert(29%) sepia(51%) saturate(522%) hue-rotate(342deg) brightness(96%) contrast(90%);
}p.legend-att b {
    color: var(--color5);
}

.att-1.atout-image {
    width: 18%;
}

p.legend-att {
    font-size: calc(var(--taille_font) * 1.2);
    color: var(--color4);
    font-family: var(--font_family_1);
}p.legend-att b {
    color: var(--color5);
}
.bloc-att {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    flex-direction: row;
}
.att-cont {
    display: flex;
    gap: 16px;
    border: 1px solid #23232329;
    padding: 36px 15px 20px;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.att-1 {width: 25%;margin: 0 0 5vh;}

.att-1.dem-1 {
    color: var(--color3);
}

.att-1.dem-1 .legend-att {
    color: var(--color1);
}

p.text-att {
    opacity: .7;
    color: var(--color1);
}
.atout-image {
    position: relative;
}

.img-atout-wrapper {
    position: relative;
    overflow: hidden;
}

.img-atout-wrapper:hover {
}

.img-atout {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    opacity: .5;
}

/* Adaptation mobile - masquer les images */
@media (max-width: 768px) {
    .atout-image {
        display: none;
    }
}

/* Grille desktop 4 colonnes */
@media (min-width: 1200px) {
    .bloc-att {
        /* grid-template-columns: repeat(4, 1fr); */
        /* gap: 25px; */
    }
}

/* Grille tablet/desktop petit 2 colonnes */
@media (min-width: 769px) and (max-width: 1199px) {
    .bloc-att {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Sur 2 colonnes, on pourrait vouloir masquer les images ou les adapter */
    .atout-image {
        grid-column: span 2;
    }
}

/***********/

.gallery .bas-galerie {
    text-align: center;
    padding: 40px 0 0
}

.gallery .description-galerie {
    padding: 0 0% 40px;
    column-count: 2;
    column-gap: 6%;
}

.gallery .multiple .ligne-photos .col-md-1,.gallery .multiple .ligne-photos .col-md-2,.gallery .multiple .ligne-photos .col-md-3,.gallery .multiple .ligne-photos .col-md-4,.gallery .multiple .ligne-photos .col-md-6 {
    padding-left: 10px!important;
    padding-right: 10px!important;
    margin-bottom: 20px
}

.gallery .multiple .ligne-photos {
    margin-left: 0!important;
    margin-right: 0!important
}

.gallery .ligne-photos .propor {
    width: 100%;
    position: relative;
    margin-bottom: 15px
}

.gallery .multiple .ligne-photos .propor {
    margin-bottom: 0;
}

.custom-object-fit {
    position: relative;
    background-size: cover;
    background-position: center center
}

.custom-object-fit img {
    opacity: 0
}

.gallery .ligne-photos .propor:after {
    padding-top: 100%;
    display: block;
    content: ''
}

.gallery .ligne-photos .propor .propor-cont {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0
}

.gallery .ligne-photos .propor .propor-cont img {
    object-fit: cover;
    -o-object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    flex: 1;
    height: 100%;
    border-radius: var(--border-radius)
}

.gallery .ligne-photos .propor .propor-cont .imagecont {
    -webkit-transform: translateZ(0);
    justify-content: center;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.gallery .ligne-photos .propor .propor-cont .imagecont .imagefond {
    image-rendering: optimizeQuality;
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    transition: .3s ease;
}

.gallery .ligne-photos .propor .propor-cont .imagecont .masque {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    height: 100%;
    background-color: var(--color1);
    background-image: url(../images/ico-zoom.svg);
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: var(--border-radius)
}

.gallery .ligne-photos .propor .propor-cont .imagecont:hover .masque {
    opacity: .7;
    filter: alpha(opacity=70)
}

.gallery .ligne-photos .propor .propor-cont .imagecont:hover .imagefond {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -o-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

.gallery .nav {
    margin: 10px 0;
    text-align: center;
}

.gallery .nav li {
    display: inline-block;
    margin-bottom: 10px;
    background: 0 0;
    padding: 0 3px 0 5px
}

.gallery .nav li:before {
    content: none
}

.gallery .nav li a.bouton-principal {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-family: var(--font_family_1);
    text-align: center;
    background: var(--color1);
    text-decoration: none
}

.gallery .nav li a.bouton-principal:after {
    content: none
}

.gallery .nav li.active a {
    background: var(--nuanceColor1)
}

.gallery .tab-content {
    padding-top: 10px;
    padding-bottom: 10px
}

.gallery .tab-content h2 {
    padding-left: 15px;
    margin-bottom: 20px
}

.gallery .bas-galerie {
    text-align: center;
    padding: 40px 0 0
}

.gallery .bas-galerie a.bouton-principal {
}


/************/

/*************/.mySwiperGalAB .swiper-button-prev,
.mySwiperGalAB .swiper-button-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color1);
  color: var(--color0);
  border-radius: 50%;
  top: 40%;
  border: 5px solid var(--color0);
  font-size: 13px;
  transition: all 0.3s ease;
}

.mySwiperGalAB .swiper-button-prev:hover,
.mySwiperGalAB .swiper-button-next:hover {
  background-color: #424b5c;
}

.mySwiperGalAB .swiper-button-prev {
  left: -19px;
}

.mySwiperGalAB .swiper-button-next {
  right: -20px;
}
.swiper-wrapper {
  display: flex;
}
.gallery .nav li.active a:before {
  background-color: #ffffff00;
}
.gallery .nav li a:hover:before {
  /* background-color: #e8dcca75; */
}
.gallery .nav li {
  display: inline-block;
  margin-bottom: 10px;
  background: 0 0;
  width: 15%;
  height: 30vh;
  padding: 0 3px 0 5px;
  position: relative;
}
.gallery .nav li a {
  display: block;
  text-transform: uppercase;
  font-family: var(--font_family_1);
  text-align: center;
  border-radius: var(--border-radius);
  background: var(--color1);
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  text-shadow: 0 0 9px #000;
  border: none;
  color: #fff;
  overflow: hidden;
  z-index: 10;
}

.nav-pills > li.active > a {
}

.nav-pills a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: #6c4832;
  width: 100%;
  height: 100%;
  opacity: .5;
}

.gallery .nav li:before {
  content: none;
}
.tab-content  .h1.tittre {
    font-size: calc(var(--taille_font) * 3);
    text-align: left;
}

.h1.tittre {}
.gallery .nav li a.bouton-principal {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  text-align: center;
  border-radius: 0;
  text-decoration: none;
  font-size: calc(var(--taille_font) *1.5);
}

.gallery .nav li a.bouton-principal::before {
    border: unset;
}

.gallery .nav li::after {
  position: absolute;
  font-size: 20px;
  right: 0;
  top: 18px;
  width: 5px;
  height: 5px;
  background: #23232363;
  border-radius: 5px;
  display: block;
  content: " ";
  opacity: 0;
}

.gallery .nav li a.bouton-principal:before {
  /* background: none; */
}

.gallery .nav li {
  /* background: var(--color1); */
}

.gallery .nav li a.bouton-principal:after {
  content: none;
}

/*.gallery .nav li a:hover,.gallery .nav li.active a{}*/
.gallery .nav li.active {
  /* background: var(--nuanceColor1); */
}
.gallery .tab-content {
  padding: 3vh 2vw;
  padding-bottom: 0;
  background: #fbf6f2;
}
.panel-title {
    font-size: calc(var(--taille-font) * 2);
}

.panel-heading {
    padding: 2vh 0;
}
.gallery .tab-content h2 {
  padding-left: 15px;
  margin-bottom: 20px;
}

.gallery .bas-galerie {
  text-align: center;
  padding: 40px 0;
  text-align: center;
}

.gallery .bas-galerie a.bouton-principal {
  padding-left: 15px;
  padding-right: 60px;
  display: inline-block;
}


.view-first .imagefond {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
    width: 100%;
    height: auto;
}

.view-first:hover .imagefond {
    -webkit-transform: scale(1.1,1.1);
    -moz-transform: scale(1.1,1.1);
    -o-transform: scale(1.1,1.1);
    -ms-transform: scale(1.1,1.1);
    transform: scale(1.1,1.1);
}

.view-first .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.34);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    display: table;
    table-layout: fixed;
}

.view-first:hover .mask {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
}

.view-first .mask em {
    display: table-cell;
    vertical-align: middle;
    font-style: normal;
    position: relative;
    width: 100%;
    height: 100%;
}

.view-first .titre-mask {
    text-transform: uppercase;
    color: #fff;
    font-family: 'Montserrat-Light';
    text-align: center;
    display: block;
    font-size: 20px;
    padding: 0 10px 10px;
    margin: 0 0 0 0;
    /* -webkit-transform: translateY(-100px); */
    -moz-transform: translateY(-100px);
    -o-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    /* transform: translateY(-100px); */
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-weight: normal;
    font-family: var(--font_family_1);
}

.view-first .small-txt {
    font-family: 'Montserrat-Light';
    display: block;
    font-weight: normal;
    text-transform: uppercase;
    position: relative;
    color: #c6c6c6;
    font-size: 17px;
    padding: 0 40px 10px;
    text-align: center;
    /* -webkit-transform: translateY(100px); */
    -moz-transform: translateY(100px);
    -o-transform: translateY(100px);
    -ms-transform: translateY(100px);
    /* transform: translateY(100px); */
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.view-first .small-txt:after {
    content: '';
    background: url(../images/ico-zoom.png);
    width: 40px;
    height: 23px;
    position: absolute;
    bottom: -17px;
    left: 50%;
    margin-left: -20px;
}

.view-first:hover .titre-mask, .view-first:hover .small-txt {
    -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.view-first:hover .small-txt {
    -webkit-transition-delay: 0.1s;
    -moz-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    -ms-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

#x {
    content: "";
    background-image: url('../images/x.png');
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    display: block;
    position: relative;
    border-radius: 6px;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
}
a.btn_fermer {
    position: absolute;
    top: 17px;
    left: 0;
    z-index: 1;
    font-size: 24px;
    color: #fff;
    padding: 2px 9px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

a.btn_fermer:hover {
    text-decoration: none;
    color: #fff;
    right: 10px;
}

.gallery .nav-pills .contain-nav a {
    height: 100%;
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transform: translateZ(0);
}

.gallery .nav-pills .contain-nav a span.imagefond {
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

.gallery .nav-pills .contain-nav a span.masque {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    height: 100%;
    background: rgba(151, 183, 33, 0.7);
}

.gallery .nav-pills .contain-nav a:hover span.masque {
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.body-gallery-4 .description-galerie {
    padding: 0 0;
    margin: 0 -5px 3vh !important;
    column-count: 1;
    column-gap: 0;
}

.r-flex .row.recup-photos.gallery {
    display: flex;
    flex-direction: column;
}

.r-flex .row.recup-photos.gallery {
    margin: 0;
}

.r-flex .row.recup-photos.gallery iframe {
    border-radius: var(--border-radius);
}
.number-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 11px;
}

span.title {
    color: #ffffff78;
    text-transform: uppercase;
    font-size: 80%;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.fun-fact-inner {
    position: absolute;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    right: -1vw;
    top: 6vh;
    background: var(--prune);
    padding: 17px;
    color: var(--color0);
    justify-content: center;
}

.number-wrapper .super {
    color: var(--color2);
    top: 0;
    left: 8px;
    vertical-align: baseline;
    font-size: 26px;
}.number-wrapper .number {
    color: var(--color0);
    font-family: var(--font_family_2);
    font-size: 50px;
}


/***********/
.header-sidebars,.sidebar-left,.sidebar-right {
    background-color: var(--color1);
}

.contactButton,.nav-item-active,.sidebar-bottom-controls a,.sidebar-divider-text,.sidebar-form label,.sidebar-left a,.sidebar-right a,.sidebar-send-button {
    color: var(--color0)!important
}

.header-sidebars {
    height: 65px;
    z-index: 9999;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 3px 1px rgba(0,0,0,.1)
}

.header-sidebars .header-top {
    display: table;
    height: 65px;
    width: 100%;
    background: var(--color0);
}

.top-logo {
    vertical-align: middle;
    position: relative;
    z-index: 9999;
    text-align: center;
    display: flex;
    width: 50%;
}

.top-logo img {
    position: relative;
    left: 5px;
    top: 7px;
    height: 53px;
}

.deploy-right-sidebar {
    border-left: 1px var(--color0) solid;
    display: table-cell;
    background-color: var(--color1);
    height: 65px;
    width: 65px;
    background-position: center center;
    top: 0;
    position: absolute;
    right: 0;
}

.deploy-right-mail {
    border-left: 1px var(--color0) solid;
    display: table-cell;
    background-color: var(--color1);
    background-repeat: no-repeat;
    height: 65px;
    width: 65px;
    background-position: center center;
    position: absolute;
    right: 65px;
    top: 0
}

.deploy-right-call {
    display: table-cell;
    background-color: var(--color1);
    background-size: auto 49%;
    height: 65px;
    width: 65px;
    background-position: center 16px;
    position: absolute;
    right: 130px;
    top: 0
}

.sidebar-scroll-right {
    width: 275px;
    overflow: auto!important;
    overflow-x: hidden!important;
    height: 100%;
    background-color: #000000;
}

.sidebar-right {
    font-family: var(--font_family_2)!important;
    background-repeat: repeat;
    position: fixed;
    overflow: hidden;
    z-index: 99999;
    right: -280px;
    top: 0;
    bottom: 0;
    width: 270px;
    margin-right: 10px;
    box-shadow: -2px 0 2px 0 rgba(0,0,0,.1)
}

.sidebar-right a {
    text-decoration: none;
    display: block;
    overflow: hidden;
    position: relative;
    color: var(--color0)!important;
    z-index: 1
}

.sidebar-right-logo {
    margin-left: 84px;
    top: 14px;
    right: 1px;
    max-width: 180px;
    float: inherit;
    max-height: 37px;
    position: relative
}

.sidebar-divider-text {
    font-size: 20px;
    padding-top: 15px;
    padding-left: 20px;
    padding-bottom: 15px;
    margin-bottom: 0;
    color: var(--color0)!important;
    background: #21282c;
    opacity: 1;
}

.submenu a:first-child {
    background-image: none!important
}

.submenu {
    display: none
}

.submenu-active {
    display: block
}

.sidebar-header-right {
    height: 65px;
    background-color: #000000;
    position: relative
}

.close-sidebar-right {
    height: 65px;
    width: 65px;
    margin-left: 0;
    display: block
}

.sidebar-right .close-sidebar-right {
    position: absolute!important
}

.menu-mobile-dynamique {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-position: inside;
    list-style-image: none
}

.menu-mobile-dynamique li {
    width: 100%;
    margin-bottom: 1px;
    background: 0 0;
    padding-left: 18px;
    background: #42414100;
}

.menu-mobile-dynamique li.active {
    background: var(--color2);
}

.menu-mobile-dynamique .sub-menu li {
    background-color: transparent;
    margin-bottom: 0
}

.menu-mobile-dynamique .sub-menu li a {
    height: 42px;
    text-transform: none
}

.menu-mobile-dynamique .sub-menu {
    background-image: linear-gradient(to bottom,var(--color1),var(--color1));
    padding-top: 18px;
    padding-bottom: 18px
}

.menu-mobile-dynamique li.parent {
    background-image: url(../images/gopage.svg);
    background-position: 241px 26.2px;
    background-repeat: no-repeat;
    background-size: 9px auto
}

.menu-mobile-dynamique li a {
    display: table-cell;
    width: 270px;
    vertical-align: middle;
    line-height: 18px;
    font-size: 20.2px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    color: var(--color0);
    font-family: 'Montserrat-Light';
    height: 60px;
    padding-left: 29px;
    background-position: 6px 20.9px
}

.menu-mobile-dynamique ul {
    list-style-image: none;
    list-style-position: inside;
    list-style-type: none;
    padding-left: 0
}

.menu-mobile-dynamique ul li a {
    background: 0 0
}

.menu-mobile-dynamique input {
    -webkit-appearance: none;
    border-radius: 0
}

.menu-mobile-dynamique label {
    display: block;
    overflow: hidden;
    position: relative;
    border: 0;
    vertical-align: baseline;
    outline: 0
}

.no-bottom {
    margin-bottom: 0!important
}

.menu-mobile-dynamique .sub-menu {
    display: none
}

.remonter {
    position: fixed;
    z-index: 9999;
    display: none;
    bottom: 10px;
    left: 10px;
    width: 44px
}

.remonter button {
    display: block;
    padding: 6px 9px;
    text-align: center;
    border: none;
    background: #c99b64;
    border-radius: 3px
}

.remonter button:hover {
    opacity: .8;
    filter: alpha(opacity=80)
}

.deprecated-ie {
    text-align: center;
    color: #000;
    background: #eee
}

.deprecated-ie p {
    line-height: 30px;
    margin: 0
}

.deprecated-ie a {
    line-height: 30px;
    font-family: Helvetica,arial,sans-serif;
    font-size: 13px;
    color: #000;
    text-decoration: underline
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: var(--color1)
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: var(--color1)
}

.bx-pager.bx-default-pager a {
    background-color: var(--color2)
}

.bx-pager.bx-default-pager a.active,.bx-pager.bx-default-pager a:hover {
    background-color: var(--color2)
}

.vegas-timer-progress {
    background: var(--color0)
}

.icones {
    width: 27px;
    /* margin: 16px 0 0 16px; */
    height: 27px;
    fill: var(--color0)
}

.sidebar-scroll-right .icones {
    margin: 16px 0 0 16px;
}

.header-top .icones {
    margin: 16px 0 0 16px;
}

.fixed .icones {
    fill: var(--color1);
}

.btnp:hover .icones {
    fill: var(--color1);
}
.btn-btn {
    display: flex;
    gap: 9px;
}

.deploy-right-sidebar .icones {
    width: 23px;
}

.menu-mobile-dynamique li a::before {
    display: block;
    content: "\f105";
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    left: 5px;
    font-weight: 700;
    font-size: 15px;
    color: var(--color0);
}

.pied .btn-partage .icones {
    fill: var(--color3)
}

.remonter .icones {
    margin: 0 0 -5px;
    fill: var(--color0);
}

.tete .tel .icones, .tel-header .icones {
    width: 19px;
    margin: -2px 10px -3px 0;
    height: 17px;
    fill: var(--color0)
}

.btn-partage .btnp:hover .icones {
    fill: var(--color0)
}

.tete .infos.infos_small .btn-partage .icones {
    top: 5px;
    left: 0
}

.newsList {
    float: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    width: 100%
}

.newsList .ligne-actus {
    flex: 0 0 auto;
    margin: 0 0 30px;
    float: none
}

.news .date_post {
    text-align: center;
    color: var(--color0);
    font-weight: 800;
    font-size: 14px;
    font-size: clamp(12px,.5vw,14px);
    line-height: 18px;
    text-transform: uppercase;
    display: block;
    background-color: var(--color1);
    position: absolute;
    left: 0;
    top: 0;
    padding: 7% 4% 4%;
    z-index: 50;
    margin: 0;
    border-top-left-radius: var(--border-radius)
}

.news .date_post span {
    display: block;
    line-height: 13px;
    min-width: 84px
}

.news .date_post .s1 {
    font-size: 50px;
    line-height: 35px;
    padding-bottom: 5px;
    font-size: clamp(40px,2vw,50px)
}

.newsList .propor .propor-cont .imagecont .masque {
    background-color: rgba(250,250,250,.2);
    background-image: none
}

.news .propor .propor-cont .imagecont:hover {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -o-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15)
}

.newsList .propor {
    overflow: hidden
}

.newsList .item .h3 {
    color: var(--color1);
    padding: 5px 0 25px;
    margin: 0;
    font-weight: 200;
    font-family: var(--font_family_1)
}

.newsList .item:hover .h3 {
    color: var(--nuanceColor1)
}

.newsList .item .h3 a:hover {
    text-decoration: none
}

.item-news {
    position: relative
}

.newsItem .photo img {
    object-fit: cover;
    -o-object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    flex: 1;
    width: 100%;
    height: 100%;
    overflow-x: hidden
}

.newsItem .photo {
    width: 100%;
    height: 33vw;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: clamp(300px,40vw,650px);
    background-position: center!important;
    background-repeat: no-repeat!important;
    background-color: #f2f2f2;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    image-rendering: optimizeQuality
}

.newsItem .contenu-article {
    padding: 15px 0 0;
    min-height: 200px;
    margin: 0
}

.newsItem .div-rs {
    margin: 0 auto 40px;
    display: flex;
    align-content: center;
    align-items: center
}

.newsItem .div-rs .btn-partage {
    display: flex;
    overflow: hidden;
    height: 36px;
    position: relative;
    top: 0;
    margin-left: 2rem
}

.newsItem .div-rs .btn-partage .icones {
    fill: var(--color1)
}

.newsItem .div-rs .btn-partage .btnp {
    background-color: var(--color0)
}

.newsItem .div-rs .btn-partage .btnp:hover {
    background-color: var(--color1)
}

.newsItem .div-rs .btn-partage .btnp:hover .icones {
    fill: var(--color0)
}

.newsItem .date_post {
    padding: 5% 3% 3%
}

.news_avant_apres {
    display: table;
    width: 100%;
    text-align: center;
    margin: 0;
    height: 100%
}

.news_avant_apres>div {
    display: table-cell;
    float: none;
    padding: 0;
    height: 100%
}

.news_avant_apres a,.news_avant_apres a:visited {
    padding: 15px 30px;
    color: var(--color1);
    text-decoration: none;
    border: 1px solid var(--bg-facultatif);
    display: block;
    height: 100%;
    font-family: var(--font_family_1);
    text-transform: uppercase;
    border-radius: var(--border-radius)
}

.news_avant_apres a:focus,.news_avant_apres a:hover {
    border-color: var(--color1);
    text-decoration: none
}

.news_avant_apres>div:last-child {
    right: -5px
}

.news_avant_apres a:focus b,.news_avant_apres a:hover b {
    text-decoration: none;
    color: var(--color1)
}

.navButtons,.navButtons:visited {
    padding: 0 0 10px;
    color: var(--color2);
    transition: .8s;
    text-decoration: none;
    display: block
}

.news_avant_apres a:focus span,.news_avant_apres a:hover span {
    color: var(--color2);
    text-decoration: none
}

.pagination>li {
    background: 0 0;
    padding-left: 0
}

.pagination>li>a,.pagination>li>span {
    color: var(--color1);
    border-color: var(--color3)
}

.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover {
    color: var(--color0);
    background-color: var(--color1);
    border-color: var(--color1)
}

.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover {
    color: var(--color1);
    background-color: var(--color0)
}

@media (min-width: 768px) {
    .dispaly_flex {
        display:flex
    }

    .flex_child_2 {
        flex: 2
    }

    .flex_child_1 {
        flex: 1
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .lightboxOverlay {
        overflow:scroll
    }

    .lightboxOverlay::-webkit-scrollbar {
        width: 0
    }
}

@media (max-width: 991px) {
    .body-page-1 .slogan .titre {
    font-size: 33px;
}
.zone-access-text a.t_phone {
    color: white;
}
.btn-liens-rs {
    text-align: center !important;
    padding: 0rem 0 0;
    display: flex;
    justify-content: center !important;
    position: relative;
    gap: 16px !important;
    align-items: center;
    margin: 2vh 0;
}
.body-page-1 .slogan .titre {
    text-align: left;
    margin: 15px 0;
}


.body-page-1 .fluid-contenu .corps:after {
    width: 164px;
   display: block !important ;
}

.fluid-contenu .corps:after {display: none;}
.contact .formulaire .form-group>label.control-label { display:block; -webkit-transition: all .4s ease; -moz-transition: all .4s ease; -ms-transition: all .4s ease; -o-transition: all .4s ease; transition: all .4s ease; -webkit-transform: translateZ(0); bottom: 11px; opacity: .5; position: relative; font-size: 0 }
.intervention {padding: 4vh 4%;} 
.contact .formulaire .form-group>label.focus { bottom: auto; font-size: var(--taille_font); padding-top: 5px }
.container { max-width: none; width: auto } .centerservice2 { margin: 0!important } 
.centerservice { margin: 0 25%!important } .contact .formulaire .form-group .col-md-4 { width: 100%!important } .contact .formulaire .form-group .col-md-8 { width: 100%!important } 
    .contact .formulaire .form-group input[name=captcha] {
        width: 100%!important;
        margin-right: 0!important;
        text-align: left!important
    }
.bande_contact_footer:before {
    width: 3vh;
}
    .contact .formulaire .form-group input[name=captcha]+a {
        position: absolute;
        width: 140px;
        top: 1px;
        right: 1px;
        margin-right: 0!important
    }

    .contact .formulaire .form-group input.btn-primary {
        width: 100%;
        margin-top: 8px;
        float: none
    }
.galerie-item {
    height: 18vh;
}

.galerie-header {
    margin-bottom: 9px;
}

    .video-accueil {
        position: static;
        width: 100%;
        height: auto;
        margin-left: 0
    }

    .banniere {
        height: 41vh;
        position: relative;
        width: 100%;
        display: flex;
        background-attachment: inherit;
        align-items: flex-end;
    }
.banniere::before {
    content: '';
}
    .pied .bande1 {
        padding: 5rem 10% 70px
    }

    .prestation .cell.texte .contenu {
        padding: 35px 3%;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: flex-start;
        margin: 0 0 6vh;
    }
.prestation span.svg {
    display: flex;
    position: absolute;
    right: initial;
    left: 13px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    float: left;
    bottom: 2vh;
}
    .contact .tab-coordonnes .cell.gauche .contenu {
        padding: 50px 7% 30px
    }

    .certifs .logo-certif img {
        background-size: contain
    }

    .fluid-contenu {
        margin: 0!important
    }
.atout2 {
    padding: 4vh 4%;
}

.atout2 .flex {
    display: block;
}

div#accordion {
    width: 100%;
}

a span.faq-icon {
        width: 26px;
        height: 22px;
    }

span.titre-11 {
    font-size: 16px;
}

    span.faq-icon svg {
        width: 14px !important;
        height: 15px !important;
 }
.row.r-flex {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.text-prst {
    padding-left: 15px;
}

main.fluid-contenu {}

.img-service img {
    height: 370px;
}

img.att-img {
    width: auto;
    filter: invert(1);
}

.atout {
    min-height: 363px;
}

.atouts.demarche .atout {
    box-shadow: none;
    border: 1px solid var(--color1);
}

.atouts {
    padding: 1em 5% 3em;
}


.Am-atouts {
    display: block;
    padding: 0;
    width: 100%;
    position: relative;
    padding: 4rem 3% 0rem;
    background: var(--color0);
    background: url(../images/footer-plac.jpeg);
    background-size: cover;
    background-attachment: fixed;
    background-color: #000000ab;
    background-blend-mode: soft-light;
}

.Am-atouts:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    backdrop-filter: blur(4px);
    background: #ededed;
}

.Am-atouts h2 {
}

.atoutsContainer {
    margin: 0 auto;
}

.atouts:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 70%;
    height: 90%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.atouts-cards {
    display: flex;
    flex-direction: row;
    position: relative;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 6px;
    justify-content: space-between;
    margin: 80px 0 30px;
}

.atouts-cards:before {
    content: '';
    position: absolute;
    width: 100%;
    height: .1px;
    background: #14293a5e;
    top: 50%;
    transform: translateY(-50%);
}

.atouts-cards  img {
    height: auto;
    width: 100px;
}

.atout-text p {
    font-size: 16px;
    margin: 0;
}
.atout-picto {
    position: relative;
    padding: 50px 60px;
    width: fit-content;
    border: 1px solid #14293a5e;);
    /* margin-bottom: 60px; */
    /* height: 200px; */
    transition: all .3s ease;
    /* background: var(--color0); */
}

.atout-picto:before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: var(--color2);
    bottom: 0;
    left: 49%;
    transform: translateX(-50%) rotate(179deg);
    transition: all .3s ease;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: -1;
}
.atout-card:hover .atout-picto:before{
    bottom: -15px;
    transition: all .3s ease;
}

.atout-card:nth-child(odd) .atout-picto:before {top: 0;transform: rotate(360deg);transition: all .3s ease;left: 45%;}

.atout-card:nth-child(odd):hover .atout-picto:before {
    top: -15px;
    transition: all .3s ease;
}

.atout-card {
    position: relative;
    width: 14%;
    padding: 0;
    transition: all .2s linear;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
}

.atout-card:hover .atout-picto {
    background: var(--color2);
    transition: all .3s ease;
}

.atout-card:hover .atout-picto img {
    /* filter: brightness(0) invert(1); */
    transition: all .3s ease;
}

.atout-card:hover span {
    color: var(--color2);
    transition: all .3s ease;
}

.atout-card:nth-child(odd) {
    flex-direction: column-reverse;
}

.atout-card:nth-child(even) .atout-text {
    margin-top: 45px;
    padding: 0;
}

.atout-text {display: block;position: relative;text-align: start;padding-bottom: 60px;}

.atout-text h3 {
    margin: 0px 0 15px;
    font-size: 25px;
}

.atout-text span {
    font-size: 50px;
    font-family: var(--font_family_2);
    color: #14293a47;
}



/************/
     .atout-card{
        width:100%;
        justify-content: left;
        padding: 30px 20px;
        display: flex;
        text-align: left;
        align-items: flex-start;
        border: 1px solid #14293a6b;
    }

.atout-text span ,.propor.pic-2:before {
    display: none;
}

.atout-card:nth-child(odd) {
    flex-direction: column;
    text-align: left;
}

.atout-picto {
    padding: 10px 20px;
    border: none;
}

.atout-card:hover .atout-picto {
    background: none;
}

.atout-card:hover .atout-picto img {
    filter: initial;
}

.atout-text {
    text-align: center;
    padding: 0;
    margin: 0;
}

.atout-card:nth-child(even) .atout-text {
    margin: 0;
}
.atouts-cards img {
    width: 60px;
}



    /******/
     .atout-text span {
    font-size: 6.6vw;
}.atout-text p {
    font-size: 3vw;
}
    .nkitem {
  text-align: left;
  text-align: start;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: ;
}
    .swiper-slide:nth-child(odd) .atout-item .atout-icone:before {
    bottom: -15px !important;
    top: auto !important;
    transform: rotate(180deg);
}
    .swiper-slide:nth-child(2n+1) .atout-item {
    flex-direction: column;
}
     .swiper-slide:nth-child(2n+1) .atout-item .atout-text span:before {
    top: 196px;
}
    .atout-text span:before{
    content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: 70px;
  background: var(--color5);
  right: -40px;
  top: -193px;
    display: none;
}
    .atout-items {
    display: flex;
    flex-direction: row;
    position: relative;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 20px;
    justify-content: center;
    margin: 80px 0% 30px;
    overflow: hidden;
}
     .atout-icone:before {
    bottom: -15px !important;
}
    
.atout-item .atout-icone img {
    filter: brightness(0) invert(1);
}
    .atout-text {display: block;position: relative;/* text-align: start; */margin: 3vh 0;min-height: initial;/* flex-direction: column; *//* align-items: flex-start; *//* justify-content: center; */}

    .atout-icone {
    position: relative;
    padding: 63px 63px;
    width: 210px;
    border: 1px solid #14293a5e;);
    height: 210px;
    transition: all .3s ease;
    background: var(--color0);
    margin: 40px 0;
    background: var(--color4);
    transition: all .3s ease;
    border-color: var(--color4);
}
     .atout-icone {
         margin: 0;
}
     .atout-text {
         margin: 0;
}
    .atout-item{
        gap: 50px;
    }
     .swiper-slide:nth-child(2n+1) .atout-item {
    flex-direction: column;
}

    
    .body-service-list .slogan h1{
        text-align:center;
    }
    .atout{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 300px;
    }
p.legend-att {
    font-size: 20px;
    color: var(--color2);
}

.demarche p.legend-att {
    color: var(--color1);
}

p.text-att {
    font-size: 14px;
    min-height: 11vh;
}
.section-inner {
    padding: 10px 2vw;
}

.atouts-header {
    display: flex;
    flex-direction: column;
}

.atouts-header h2 {
    width: 100%;
}

.atouts-grid {
    grid-template-columns: repeat(2, 1fr);
}

.atout-number {
    left: 0;
}

span.atout-number {
    margin: 0 0;
}
.actualites .cell.photo {
    overflow: hidden;
    min-height: 180px;
}

.cell.texte {
    padding: 0 0;
}

.actualites {
    padding: 12px 3vw;
}

.temo-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

#temoignages {
    padding:30px 2%;
}.temo-grid {
    display: block;
}.temo-card {
    min-height: 281px;
}


.zone-grid {
    display: flex;
    padding: 11px 5%;
    flex-direction: column;
    gap: 12px;
}

.zone-right {
    margin: 0;
    padding: 0;
    width: 100%;
}

.zone-map-wrap iframe {
    height: 44vh;
}

.newsletter-inner {
    display: flex;
    padding: 21px 5%;
    flex-direction: column;
    gap: 10px;
}
.bloc-contenu.services:before {
    width: 122px;
    opacity: .5;
    top: 0;
}
.actualites.view.view-2 article {
    display: flex;
    flex-direction: column-reverse;
}


   
    .div-parts:before{
        display:none;
    }
    .slogan {
        width: 100%;
        left: 0;
        display: flex;
        padding: 0 15px;
        top: inherit;
        flex-direction: column;
        flex-wrap: wrap;
        bottom: 0;
        justify-content: flex-end;
    }.page-hero-line {
    margin: 17px 0 0;
    text-align: left;
}

.slogan h1 {
    text-align: center;
}

    .body-page-1 .slogan {
        text-align: center;
        width: 100%;
        left: 0;
    }

    .slogan .titre {
        font-size: 32px;
        line-height: 30px;
        text-align: left;
    }

li.menu-item.menu-item-external.menu-item-42 {
    display: block;
}

    .slogan .titre span {
        font-size: 29px
    }

    .slogan .sous-titre {
        font-size: 20px;
        line-height: 20px
    }

    .gallery .description-galerie {
        padding: 0 0 40px;
        column-count: 1;
        column-gap: 0;
    }

    .page-contenu-home {
        padding: 0 0;
    }
.certifs .swiper-button-next, .certifs .swiper-button-prev {
    border: 1px solid #939090;
}
.body-page-1 .page-contenu-home {padding: 0 0 32px;}

.propor.pic-1:before {
    left: -4%;
    top: -5%;
}

    .certifs .cell.gauche .contenu {
        padding: 0 0
    }

    .intervention .contenu {
        padding: 0 0
    }

    .actualites .cell.texte .contenu {
        padding: 0 0
    }

    .bande_contact_footer {
        padding: 0
    }
.contenu.formulaire {
    width: 100%;
}

    .flex-seoContain {
        flex-wrap: wrap
    }

    .flex-seoContain .seo-content {
        width: 100%;
        background: 0 0
    }

    .flex-seoContain .seo-form {
        width: 100%
    }

    .img-seo img {
        width: 100%;
        height: auto
    }

    .bande_contact_footer .row1 {
        padding: 5rem 11%
    }

    .contact .tab-formulaire {
        padding: 5rem 10%
    }

    .livre-elements {
        padding: 0 0
    }
}

@media (max-width: 767px) {
    .corps {
        --taille_font:14px;
        font-size: var(--taille_font)
    }.zone-iframe {
    width: 100%;
    position: relative;
    height: 304px;
}
.prestation {
    display: flex;
    flex-direction: column;
}
.office-item {
    width: 49%;
}
.prestation .cell.photo {
    display: block;
    width: 100%;
    height: 25vh;
}
    .pad-xs {
        padding-left: 15px!important;
        padding-right: 15px!important
    }

    .pad-xs-l {
        padding-left: 15px!important
    }

    .pad-xs-r {
        padding-right: 15px!important
    }

    .centerservice2 {
        margin: 0!important
    }

    .centerservice, .gallery .ligne-photos.centerservice {
        margin: 0!important
    }

    .nopad-xs {
        padding-left: 0!important;
        padding-right: 0!important
    }

    .nopad-xs-l {
        padding-left: 0!important
    }

    .nopad-xs-r {
        padding-right: 0!important
    }

    .h1, h1, .atouts-header h2 {
        font-size: 35px;
        line-height: 33px;
        width: 100%;
    }

.atouts.demarche .atout {
    min-height: 319px;
}

.modal-header .h1 {
    font-size: 20px;
}

.swiper-navigation {
    margin: 1px auto 0;
}

    .titre-secondaire {
        font-size: 18px;
        line-height: 18px;
        margin: 0 0 9px;
    }

.item-news.prestation .bloc-titre .titre-news .titre-secondaire {
    font-size: 15px;
    line-height: 16px;
}
.att-1 {
    width: 100%;
}

.bloc-att {
    display: flex;
    flex-direction: column;
}.atout2:before, .intervention:before {
    background: url(../images/regle1.png) right repeat-y;
    display: none;
}
    .body-page-1 .slogan {
        position: absolute;
        background: var(--color4);
        width: 100%;
        text-align: center;
        padding: 22px;
        left: 0;
        bottom: 0;
        top: auto;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
    }

    .slogan {
        text-align: center;
        padding: 30px 15px;
    }

.banniere {
}

.body-page-1 .hide-print.banniere.cover {
    height: 78vh !important;
    position: relative;
    
    0:
    AUTO 100PX;
}

    .slogan .titre {
        font-size: 23px;
        line-height: 24px
    }

    .slogan .titre span {
        font-size: 23px
    }

    .slogan .sous-titre {
        font-size: 17px;
        line-height: 17px;
        text-align: left;
        margin: 0 0 0;
    }

    .fluid-contenu .corps {
        padding: 20px 15px 0;
    }

    .recup-photos .col-md-4 {
        padding-left: 5px!important;
        padding-right: 5px!important
    }

    .recup-photos {
        margin-left: -5px!important;
        margin-right: -5px!important
    }

    .newsList .recup-photos {
        margin-left: 0!important;
        margin-right: 0!important
    }

    .recup-photos .propor {
        margin-bottom: 10px;
        height: 250px;
    }

    .certifs {
        display: block;
        padding: 3em 2%;
    }

    .certifs .cell.gauche {
        display: block;
        width: 100%
    }

    .certifs .cell.gauche .contenu {
        padding: 30px 15px 40px
    }

    .certifs .cell.droite {
        display: block;
        width: 100%;
        padding: 0 0 0;
    }

    .certifs .cell.droite .bg-noir {
        padding: 40px 0
    }

    .cont-slider .controls {
        bottom: -20px
    }

    .services {
        display: block
    }

.body-page-1 .services, .body-pageseo .services {
    padding: 44px 5%;
}

.atout {
}

    .services .cell.gauche {
        display: block;
        width: 100%;
        height: 180px
    }

    .services .cell.droite {
        display: block;
        width: 100%
    }

    .services .cell.droite .contenu {
        padding: 30px 15px 40px
    }

    .realisations {
        display: block
    }

    .realisations .titre-secondaire {
        display: inline-block;
        width: 100%
    }

    .realisations .col-md-3 {
        padding-left: 5px!important;
        padding-right: 5px!important
    }

    .realisations {
        margin-left: -5px!important;
        margin-right: -5px!important;
        padding: 1em 6% 1em;
    }

.atouts-cont {
    padding: 1em 7%;
}

    .realisations .propor {
        margin-bottom: 10px;
    }

    .AvisClientsBg .contenu,.realisations .contenu {
        padding: 30px 0 40px;
    }.realisations .titre-secondaire, .realisations h2 {
    width: 100%;
}

    a.bouton-principal,button.bouton-principal {
        padding: 13px 40px 13px 20px
    }

.temoignages button.bouton-principal {min-width: 280px;}

    .intervention .contenu {
        padding: 40px 0 50px;
    }

    .intervention ul {
        column-count: 1;
        width: 100%
    }

    .AvisClientsBg {
        padding: 0
    }

    .temoignageScroll {
        max-height: 135px
    }

    .temoignageScroll {
        max-height: 48vh;
    }

    .note-avis {
        flex-wrap: wrap
    }

    .bande_contact_footer .row1 {
        padding: 2rem 8%
    }

    .divAvis {
        width: 100%
    }

    .pied .bande1 {
        padding: 30px 15px
    }

    .pied .btn-like {
        padding: 0 0 15px;
        text-align: center
    }

    .pied .btn-partage {
        text-align: center;
        padding: 20px 0 0;
        justify-content: center
    }

    .pied .btn-partage a {
        text-align: center
    }

    .body-contact .fluid-contenu .corps,.body-gallery-4 .fluid-contenu .corps {
        padding: 30px 5% 0;
    }

    .contact .tab-coordonnes {
        display: block;
        FLOAT: LEFT;
        margin: 0 0 6vh;
        height: auto;
    }

    .contact .tab-coordonnes .cell.gauche {
        display: block;
        width: 100%;
        border: none
    }

    .contact .tab-coordonnes .cell.gauche .contenu {
        padding: 0 15px 30px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .contact .tab-coordonnes .cell.centre {
        display: block;
        width: 100%
    }
div#map {
    height: 350px;
}
    .contact .tab-coordonnes .cell.droite {
        display: block;
        width: 100%;
        height: auto;
    }

    .contact .plan .block #googlemapapi,.contact .plan iframe {
        height: 250px!important
    }

    .contact .tab-formulaire {
        display: block;
        padding: 0 1% 4px;
    }

    .contact .coordonnees {
        padding: 0
    }

  
    } 

    .actualites .wine {
    margin-left: -6vw;
    top: 0;
    height: 94%;
    margin-bottom: 7vh;
    }
.actualites article {
}
    .actualites .cell.photo {
        display: block;
        width: 100%;
    }

    .actualites .cell.texte,.prestation .cell.texte {
        display: flex;
        width: 100%;
        clear: both;
        flex-direction: column;
    }

    .actualites .cell.texte .contenu {
        padding: 30px 15px
    }

    .gallery .ligne-photos .col-md-1,.gallery .ligne-photos .col-md-2,.gallery .ligne-photos .col-md-3,.gallery .ligne-photos .col-md-4,.gallery .ligne-photos .col-md-6 {
        padding-left: 5px!important;
        padding-right: 5px!important
    }

    .gallery .ligne-photos {
        margin-left: -5px!important;
        margin-right: -5px!important
    }

    .gallery .ligne-photos .propor {
        margin-bottom: 10px;
        border: 1px solid var(--color2);
    }

    .gallery .nav li {
        margin-bottom: 0;
        background: 0 0;
    }



    .services .cell.droite .contenu {
        clear: both
    }

    .scrollbars {
        width: 100%;
        height: auto
    }

    .news_avant_apres>div:last-child {
        right: 0
    }

    .news_avant_apres>div {
        display: block;
        margin: 0 0 5px
    }

    .news_avant_apres,.news_avant_apres>div {
        display: block
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .pad-sm {
        padding-left:15px!important;
        padding-right: 15px!important
    }

    .pad-sm-l {
        padding-left: 15px!important
    }

    .pad-sm-r {
        padding-right: 15px!important
    }

    .nopad-sm {
        padding-left: 0!important;
        padding-right: 0!important
    }

    .nopad-sm-l {
        padding-left: 0!important
    }

    .nopad-sm-r {
        padding-right: 0!important
    }

    .slogan {
        text-align: center
    }

    .scrollbars {
        height: 240px
    }

    .body-contact .fluid-contenu .corps,.body-gallery-4 .fluid-contenu .corps {
        padding: 30px 0 0
    }

    .h1,h1 {
        font-size: 26px;
        line-height: 26px
    }

    .titre-secondaire {
        font-size: 23px;
        line-height: 24px
    }

    .gallery .description-galerie {
        padding: 0 0 40px;
        text-align: justify
    }
}

@media (min-width: 991px) and (max-width:1199px) {
    .slogan .sous-titre {
        font-size:20px;
        line-height: 20px
    }

    .services a.bouton-principal {
        font-size: 11px
    }

    .body-error404 a.btn.btn-default,.contact .formulaire input.btn-primary,.contact a.btn.btn-default {
        padding: 16px 20px;
        font-size: 12px
    }

    .contact .coordonnees {
        padding: 0
    }

    .contact .formulaire .form-group input.btn-primary {
        width: 100%;
        margin-top: 8px;
        float: none
    }
}

.infinite-scroll .chargement {
    background: rgba(0,0,0,0) url(../images/chargement.gif) no-repeat scroll center top;
    bottom: 0;
    display: none;
    height: 32px;
    left: 50%;
    margin-left: -16px;
    position: absolute;
    width: 32px
}

.g-recaptcha {
    float: left
}

#g-recaptcha-response {
    left: 12px;
    position: relative;
    display: block!important;
    top: -45px;
    opacity: 0!important;
    margin: 0!important;
    height: 10px!important
}

@media print {
    @page {
        size: portrait;
        margin: 2cm
    }

    body {
        background-color: var(--color0);
        font-family: Serif;
        font-size: 10pt
    }

    a:after {
        content: " [" attr(href) "] "
    }

    h1,h2,h3 {
        font-family: verdana,serif
    }

    .hide-print {
        display: none
    }

    .hide {
        display: none
    }

    .clear {
        clear: both
    }

    div[class^=col-] {
        width: 100%
    }

    .gallery .ligne-photos div[class=col-md-2] {
        width: 16.666666666667%
    }

    .gallery .ligne-photos div[class=col-md-3] {
        width: 25%
    }

    .gallery .ligne-photos div[class=col-md-4] {
        width: 33%
    }

    .gallery .ligne-photos div[class=col-md-6] {
        width: 50%
    }
}
