
:root {
    --color0: #ffffff;
    --color1: #76a273;
    --nuanceColor1: rgba(176, 75, 55, 0);
    --color2: #262626;
    --color3: #76a273;
    --color4: #141414;
    --color5: #76a273;
    --bg-facultatif: #f5f5f5;
    --font_family_1: 'Montserrat-Light',sans-serif;
    --font_family_3: 'Montserrat-SemiBold',sans-serif;
    --font_family_4: 'Montserrat-SemiBold',sans-serif;
    --taille_font: calc(1vw * 0.520833333333);
    --taille-font: calc(1vw * 0.520833333333);
    --border-radius: 0px;
    --border-radiusB: 0px;
    --border-radiusC: 0px;
    letter-spacing: 1px;
}

/************ Accordions **************/

    .container-accor{
        padding: 1em 10%;
    }
        
    .accordions-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        padding: 4em 0 1em;
    }
    
    .accordion-column {
        flex: 1 1 45%;
        min-width: 300px;
    }
    
    .accordion {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 5px;
        overflow: hidden;
    }
    
    .accordion-header {
        padding: 15px 20px;
        background-color: #f8f8f8;
        cursor: pointer;
        /* font-weight: bold; */
        position: relative;
        transition: background-color 0.3s;
        font-family: var(--font_family_1);
    }
    
    .accordion-header:hover {
        background-color: #eee;
    }
    
    .accordion-header::after {
        content: '+';
        position: absolute;
        right: 20px;
        font-size: 20px;
        top: 12px;
        transition: transform 0.3s;
    }
    
    .accordion-header.active::after {
        content: '-';
    }
    
    .accordion-content {
        padding: 0 20px;
        max-height: 0;
        overflow: hidden;
        /* transition: max-height 0.3s ease-out, padding 0.3s ease; */
        transition: all .3s ease;
    }
    
    .accordion-content.active {
        padding: 15px 20px;
        max-height: 500px;
    }

    @media (max-width: 768px) {
        .accordion-column {
            flex: 1 1 100%;
            min-width: auto;
        }
    }
/**********************************/


.mySwiper-etape.swiper-container-horizontal {
  width: 99%;
  overflow: hidden;
}
/********* section nos domaine d'expertise *******/

.expertise {
  padding: 5em 10% 8em;
}

.certificat {
  width: 80px;
  margin: 10px 0;
}

.description {padding: 1em 10%;}

.domaines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.domaine {
  width: 100px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expertise .domaine img {
  width: 55px;
  height: auto;
  margin: 1em 0 10px;
}

.domaine p {
  margin: 0;
  font-size: 14px;
  color: #333;
}
/****************************/

/********** Atout *****************/
/* 
* Atouts
 */
.Atout-AT {
    display: block;
    padding: 0;
    width: 100%;
    position: relative;
    padding: 7rem 10% 7rem;
}

.Atout-AT:before {
    /* content: ''; */
    /* position: absolute; */
    /* background: var(--color0); */
    /* top: 0; */
    /* left: 0; */
    /* width: 100%; */
    /* height: 100%; */
    /* z-index: 0; */
    /* opacity: 0.8; */
    /* backdrop-filter: blur(4px); */
}

.atoutsContainer {
    max-width: 1610px;
    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%);
}*/

.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-items .swiper-slide-next{
    filter: none;
    transform: none;
}
.atout-items .swiper-slide-prev{
    filter: none;
    transform: none;
}
.atout-items .swiper-slide-prev{
    filter: none;
    transform: none;
}
.atout-items:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #76a27354;
    top: 48%;
}

.atout-items  img {
    height: auto;
    width: 100px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
}

.atout-text p {
    font-size: 0.7vw;
    margin: 0;
}
.atout-icone {
    position: relative;
    padding: 3vh 3vh;
    width: 7vw;
    border: 1px solid var(--color1););
    height: 7vw;
    transition: all .3s ease;
    background: var(--color1);
    margin: 1.3vh 0;
    backdrop-filter: blur(10px);
}

.atout-icone:before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: var(--color1);
    bottom: -15px;
    left: 49%;
    opacity: 0;
    transform: translateX(-50%) rotate(179deg);
    transition: all .3s ease;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: -1;
}
.atout-item:hover .atout-icone:before{
    bottom: -20px;
    transition: all .3s ease;
    opacity: 1;
}

.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;
}

.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(--color1);
    transition: all .3s ease;
    border-color: var(--color1);
}

.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;padding: 0 5%;}
.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.9vh;
}

.swiper-slide:nth-child(6) .atout-item .atout-text span:before {
    top: -6vh;
}
.swiper-slide:nth-child(7) .atout-item .atout-text span:before {
    top: 10vh;
}
.swiper-slide:nth-child(1) .atout-item .atout-text span:before {
    top: 7.8vh;
    right: -1.0vw;
}
.atout-text h3 {
    margin: 0px 0 2.6vh;
    /*! font-size: 25px; */
    /*! height: 6.7vh; */
    font-family: var(--font_family_3);
    font-size: calc(var(--taille_font)* 2.1);
    /* color: var(--color0); */
}

.atout-text span {
    font-size: 1.8vw;
    font-family: var(--font_family_4);
    color: #01010166;
    position: relative;
}
.atout-text span:before{
    content: "";
    display: inline-block;
    position: absolute;
    width: 1px;
    height: 7.5vh;
    background: #26262654;
    right: -0.5vw;
    top: -8.7vh;
}
/***********************************/

.scroll-box {
      /*width: 10cm;*/
      max-height: 60vh;
      overflow: auto;
      /*border: 1px solid #ccc;*/
      padding: 10px;
    }

    /* Pour les navigateurs basés sur WebKit (Chrome, Safari) */
    .scroll-box::-webkit-scrollbar {
      width: 3px;
    }

    .scroll-box::-webkit-scrollbar-thumb {
      background-color: var(--color1); /* Couleur de la barre */
    }

    .scroll-box::-webkit-scrollbar-track {
      background-color: #f0f0f0; /* Couleur du fond */
    }


.corps .page-contenu h2:first-of-type, .corps .gallery h2:first-of-type , .corps .seo-content h2:first-of-type , .corps .newsItem h2:first-of-type {
    position: relative;
    padding: 3vh 2vw;
    /* font-size: calc(var(--taille_font) + .2rem); */
    line-height: calc(var(--taille_font) + 1rem);
    border: none;
    font-weight: 700;
    z-index: 1;
}

.corps .page-contenu h2:first-of-type:before, .corps .gallery h2:first-of-type:before , .corps .seo-content h2:first-of-type:before , .corps .newsItem h2:first-of-type:before {
    content: '';
    position: absolute;
    background: var(--color3);
    width: 100%;
    height: 100%;
    opacity: .2;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: var(--border-radius);
    /* background-image: url(../images/bg-att.jpeg); */
    /* background-size: 35%; */
    /* background-blend-mode: color; */
    /* background-color: #ffffff8f; */
}

.corps .page-contenu h2, .corps .gallery h2 , .corps .seo-content h2, .corps .newsItem h2 {
    margin-bottom: 2vh;
}

.corps blockquote {
    font-size: inherit;
    background: var(--bg-facultatif);
    border-radius: var(--border-radius);
    border: 0;
    padding: 3vh 2vw;
    margin: 3vh 0;
}

.alert.alert-warning.alert-dismissable {
    width: 100%;
}

.col-md-3.col-sm-4.nopad img {
    width: auto;
    height: 130px;
}
.pied .col-md-3.col-sm-4.nopad img{
    filter: brightness(0) invert(1);
}
.pied .bande2 .row {
    border-top: 1px solid var(--color4);
    padding-top: 17px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.body-temoignage  button.bouton-principal {
    width: calc(var(--taille-font) * 31);
    /* color: var(--color1); */
    border: 1px solid var(--color1);
}

.body-temoignage button.bouton-principal:before {
    left: -1%;
}

.video-header {
    position: absolute;
    inset: 0px;
}

.video-header video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/****************************SWIPER BAN MS***************************************/

.swiper-scale-effect .swiper-container {
  width: 100vw;
  height: 100vh;
}

.swiper-scale-effect {
  position: relative;
}

.swiper-scale-effect  .swiper-slide {
  background-color: #fcfcfc;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  color: #fcfcfc;
  font-size: 24px;
}

.swiper-slide > .swiper-slide-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: transparent no-repeat 50% 50% / cover;
}

/*.swiper-slide .slide-02 {
  background-image: url(../images/g13.jpg);
  transform-origin: 50% 50%;
}
.swiper-slide .slide-01 {
  background-image: url(../images/g11.jpg);
  transform-origin: 50% 50%;
}

.swiper-slide .slide-02 {
  background-image: url(../images/g6.jpg);
  transform-origin: 50% 50%;
}
*/

.swiper-scale-effect  .swiper-slide {
    transform-origin: 50% 50%;
}
.swiper-scale-effect .swiper-slide-cover {
  transition-timing-function: linear;
  transition-duration: 20s;
  transform: scale(1);
}

.swiper-scale-effect .swiper-slide.swiper-slide-active .swiper-slide-cover {
  transform: scale(1.3);
}

.swiper-scale-effect .swiper-lazy-preloader-white {
  color: #fcfcfc;
}

.swiper-scale-effect .swiper-lazy-preloader-black {
  color: #262626;
}

.swiper-scale-effect .swiper-button-prev,
.swiper-scale-effect .swiper-button-next {
  background: transparent;
  opacity: 0.55;
  color: rgba(252, 252, 252, 0.85);
  transition: opacity 0.3s ease, color 0.3s ease;
  width: calc(var(--taille-font) * 9);
  height: calc(var(--taille-font) * 9);
}

.swiper-scale-effect .swiper-button-prev {
  left: 0;
  right: unset;
}

.swiper-scale-effect .swiper-button-next {
  right: 1%;
  left: unset;
}

.swiper-scale-effect .swiper-button-prev svg,
.swiper-scale-effect .swiper-button-next svg {
  width: calc(var(--taille-font) * 9);
  height: calc(var(--taille-font) * 9);
  fill: #fff;
  display: none;
}

.swiper-scale-effect .swiper-button-prev:hover,
.swiper-scale-effect .swiper-button-next:hover {
  background: transparent;
  opacity: 0.85;
  color: #fcfcfc;
}

.swiper-scale-effect .swiper-pagination {
  flex-direction: column;
  /* right: 10px; */
  width: max-content !important;
  left: 49% !important;
  border: 0;
  bottom: 3%;
  display: flex;
  /* transform: translateY(50%) !important; */
  gap: var(--taille-font);
  opacity: 0.8;
  align-items: center;
  justify-content: center;
  height: auto;
  padding: 0;
  transform: rotate(90deg) !important;
  z-index: 3;
}

.swiper-scale-effect span.swiper-pagination-bullet {
  height: 2px;
  border-radius: 0;
  width: calc(var(--taille-font) * 3);
  opacity: 1;
  background: white;
  transition: 0.3s ease !important;
  margin: 8px 0 !important;
  z-index: 3;
}

.swiper-scale-effect
  span.swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-scale-effect span.swiper-pagination-bullet:hover {
  width: calc(var(--taille-font) * 6);
  background: #fff;
}

.before-ban {
  position: relative;
  z-index: 2;
}

.before-ban::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  z-index: 2;
}
/**************************** END SWIPER BAN MS***************************************/


/*********************SLOGAN MS*************************/

.sloganOne {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  color: #fff;
  font-size: 50px;
  z-index: 2;
  padding: 0px 8%;
}

.sloganOne .sloganMS {
  font-family: var(--font_family_1);
  font-weight: 400;
  font-style: normal;
  font-size: calc(var(--taille-font) * 8);
  /* letter-spacing: calc(var(--taille-font) * 0.5); */
  line-height: calc(var(--taille-font) * 10);
}

.ss-sloganMS {
  font-family: var(--font_family_1);
  font-style: normal;
  font-size: calc(var(--taille-font) * 6);
  line-height: calc(var(--taille-font) * 3.8);
}

/*********************END SLOGAN MS*************************/


/*********************PRESENTATION MS*************************/

.flex-head {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
   gap: 2%; 
}

.flex-head .text-center a.bouton-principal {
    margin: 0 !important;
}

.flex-head .text-center {
    text-align: left;
    margin-top: 1.5em;
}

.flex-head-img {
  width: 44%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.flex-head-img img {
  /* width: 94%; */
  width: calc(var(--taille-font) * 130);
  position: relative;
  /* top: calc(var(--taille-font) * -2.3); */
}
.flex-head-txt {
  width: 57%;
}

.flex-head-txt h1 {
    margin-bottom: 44px;
    text-align: left;
}

.flex-head-txt h1::before {
    margin-left: 0;
    left: 0;
}

.flex-head-txt .titre-secondaire {
    text-align: left;
}

/*********************END PRESENTATION MS*************************/
.corps .gallery h2 {
    letter-spacing: 0px !important;!i;!;
}

.corps .gallery h3 {
    letter-spacing: 0px;
}
.corps .gallery h2:first-of-type , .corps .seo-content h2:first-of-type , .corps .newsItem h2:first-of-type {
    position: relative;
    padding: 3vh 2vw;
    font-size: calc(var(--taille-font)*2);
    line-height: calc(var(--taille_font) + 1rem);
    border: none;
    font-weight: 700;
    z-index: 1;
}

.corps .gallery h2:first-of-type:before , .corps .seo-content h2:first-of-type:before , .corps .newsItem h2:first-of-type:before {
    content: '';
    position: absolute;
    background: #C8AD7F;
    width: 100%;
    height: 100%;
    opacity: .2;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: var(--border-radius);
}

.corps .page-contenu h2, .corps .gallery h2 , .corps .seo-content h2, .corps .newsItem h2 {
    margin-bottom: 2vh;
    color: var(--color1);
}

.corps .page-contenu h2 {
    font-size: calc(var(--taille-font) * 1.8);
    /* font-family: var(--font_family_1); */
}

.corps blockquote {
    font-size: inherit;
    background: var(--bg-facultatif);
    border-radius: var(--border-radius);
    border: 0;
    padding: 3vh 2vw;
    margin: 3vh 0;
}

.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;
}

.expertise img {
    max-width: 100%;
    object-fit: cover;
    width: 177px;
    margin: 1em auto 2em;
    display: block;
}

.special-banner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #f5f5f5; /* Changez la couleur selon vos préférences */
  padding: calc(var(--taille-font) * 2) 10%;
  /* border-radius: 8px; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: linear-gradient(115deg, #f27b3f, #ed4e33 50%, #ec4430);
}

.banner-title {
  font-size: calc(var(--taille-font) * 2.25);
  font-weight: bold;
  color: #fff;
   /* Permet à chaque section de s'adapter à l'espace disponible */
  width: 20%;
}

.banner-text {
  font-size: calc(var(--taille-font) * 1.8);
  color: #fff;
  text-align: center;
  padding: 0 calc(var(--taille-font) * 2); /* Pour éviter que le texte ne touche les autres sections */
  width: 60%;
}

.banner-logo img {
  max-width: calc(var(--taille-font) * 19.5);
  max-height: calc(var(--taille-font) * 9.5); /* Ajustez selon la taille du logo */
  flex: 1;
  /* filter: brightness(0) invert(1); */
}

.banner-logo {
    width: 20%;
    display: flex;
    justify-content: center;
}

ul {
    list-style-position: inside;
    list-style-type: none;
    list-style-image: none
}

ol li,ul li {
    padding-left: 0;
    position: relative
}
.gallery h1, .tarif h1, .flex-seoContain .seo-content h1, .copyright h1, .sitemap h1 {
    
display: none;
}

.body-service .gallery h1 {
    display: block;
}
ul li:before {
    display: inline-block;
    content: "\f054";
    position: absolute;
    font-weight: 700;
    font-family: 'Font Awesome 5 Free';
    left: calc(var(--taille-font) * -1.5);
    font-size: calc(var(--taille-font) * 1.4);
    color: var(--color3);
    top: 0;
    width: calc(var(--taille-font) * 1);
    height: calc(var(--taille-font) * 1.6);
}

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
}
.horaires .horaire-table{
    color: var(--color2) !important;
}

.pied .horaires .horaire-table {
    color: var(--color0) !important;
}
.tab-coordonnes .horaires .horaire-table{
    color: var(--color2) !important;
}
article,aside,footer,header,hgroup,main,nav,section {
    display: block
}

iframe {
    border: none
}

[data-anim] {
    opacity: 0
}

.row {
    margin-right: 0!important;
    margin-left: 0!important
}

/*************/


.row.recup-photos.gallery {
    position: relative;
}

.r-flex .titre-secondaire {
    text-align: left;
}


.images-f {
    width: 100%;
}

.row.r-flex {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    position: relative;
    justify-content: center;
    padding-top: 3em;
}

.corps .row.r-flex {
    gap: 3%;
}

.row.r-flex {}

.corps .row.r-flex .h3, .corps .row.r-flex h3, .body-gallery-2 .corps h3, .body-gallery-2 .corps .h3  {
    font-size: calc(var(--taille-font) * 2.2);
    /* font-weight: 800; */
    /* letter-spacing: 1px; */
}

.qsn-titles {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    left: 0;
    display: none;
}

.qsn-titles span {
    position: relative;
    font-size: 1.8vw;
    display: block;
    color: var(--color2);
    background: white;
    /* border-radius: 20px; */
    padding: 5px 30px 5px 0px;
    width: fit-content;
    border-radius: 0 20px 0 0;
}

.qsn-titles span:nth-child(2) {
    padding-right: 50px;
}

.qsn-titles span:before {
    content: '';
    position: absolute;
    height: 30px;
    width: 30px;
    /* background: var(--color0); */
    left: -1px;
    top: -30px;
    background-size: contain;
    border-radius: 39px;
    box-shadow: -10px -7px 0px var(--color0);
    transform: rotate(270deg);
}
.qsn-titles span:after {
    content: '';
    position: absolute;
    height: 30px;
    width: 40px;
    /* background: var(--color0); */
    right: -40px;
    bottom: 0px;
    background-size: contain;
    border-radius: 0 0 0 20px;
    box-shadow: -7px 9px 0px var(--color0);
}
.row.r-flex .text-center {
    text-align: left;
}

.row.r-flex h1 {
    text-align: left;
    margin: calc(var(--taille-font) * 1) 0;
    margin-bottom: 55px;
}

.row.r-flex h1:before {
    left: 0;
    margin-left: 0;
}






/*********/

.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: #000;
    font-family: var(--font_family_1);
    font-size: calc(var(--taille-font) * 1.5);
    background: var(--color0);
}

.ms-flex-2 {
    margin: auto;
    display: block;
    width: max-content;
}


@keyframes zoomAB {
  0% {
    scale: 1;
  }
    50% {
        scale:1.3;
    }

  100% {
    scale: 1;
  }
}

.bannSwiper .swiper-slide  img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    animation: 60s infinite ease zoomAB;
}


.swiper-slide .bannSlide {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}

[data-animate] {
  opacity: 0;
  transition: all 0.8s ease-out;
}
[data-animate="bottom"] {
  transform: translate3d(0, 15px, 0);
}
.swiper-slide-active [data-animate] {
  opacity: 1;
  transform: none;
}
.swiper-slide-active .animeslide-heading {
  transition-delay: 0.6s;
}

.body-page-1 .banniere {
    position: relative;
    height: 100vh !important;
}


.body-page-1 .slogan {
    position: absolute;
    top: 55% !important;
    transform: translate(-50%, -50%);
    transform-origin: bottom;
    color: white;
    left: 50%;
}

.bannSwiper  .swiper-wrapper {
        display: flex;
        padding:  0 0;
    }


/*end swipe ban**/


.tarif-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: flex;
    justify-content: center;
    padding: 0 0 3em;
}

.tarif-img img {
    width: 55%;
}

section.bg-x {
    position: relative;
    /* background: url(../images/bg-site.jpg) no-repeat center 50px; */
    background-color: var(--color0);
}

      .container-ms {
        margin: auto;
        background: white;
        padding: 20px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
      }

   
      .section-ms {
        margin-bottom: calc(var(--taille-font) * 4);
        padding-bottom: calc(var(--taille-font) * 4);
        border-bottom: 2px solid #ddd;
      }

.section-ms:last-child {
    border: navajowhite;
    margin-bottom: 0;
}

.section-ms ul li {
    font-size: calc(var(--taille-font) * 1.6);
    line-height: calc(var(--taille-font) * 3);
}

      .formula {
        margin-top: calc(var(--taille-font) * 3);
        padding: calc(var(--taille-font) * 1);
        background: #f9f9f9;
        border-left: 5px solid #007bff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: calc(var(--taille-font) * 1.9);
        margin-bottom: calc(var(--taille-font) * 1);
      }

      .formula strong {
        flex: 1;
      }

      .price {
        font-weight: bold;
        color: #d9534f;
        font-size: 1.2em;
        text-align: right;
        min-width: calc(var(--taille-font) * 10);
      }

      .formula ul {
        margin-top: 10px;
      }

     .container_ms {
        /* background: #fafafa; */
        padding: 6rem 0 8rem;
        /* border-radius: 10px; */
        /* display: flex; */
        /* gap: 20px; */
        /* justify-content: center; */
        /* align-items: center; */
        /* flex-direction: column; */
        /* max-width: 80%; */
        margin: auto;
        /* min-height: calc(var(--taille-font)*70); */
        /* position: relative; */
      }

.container_ms .flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2%;
    width: 100%;
}
      .card_ms {
        background: white;
        border-radius: 10px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        height: 41vh;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
      }

.card_ms a.bouton-principal:after {
    all: unset;
}
      .image_container_ms {
        height: calc(var(--taille-font)*20.6);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .image_container_ms img {
        max-height: 100%;
      }
      .card_ms h3 {
        font-size: calc(var(--taille-font)*1.8);
        margin-bottom: calc(var(--taille-font)*1);
      }
      .card_ms a {
        background: var(--color1);
        text-align: center !important;
      }
   

.performance-icon_wrapper {
    width: calc(var(--taille-font)*12);
    height: calc(var(--taille-font)*12);
    background-image: linear-gradient(315deg, rgb(206 206 206 / 0%), rgb(255 255 255 / 38%));
    border-top: 2px solid var(--color4);
    border-left: 2px solid var(--color1);
    border-radius: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    display: flex;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

img.performance-icon {
    width: calc(var(--taille-font)*7);
    height: calc(var(--taille-font)*7);
    object-fit: contain;
}

.performance-list {
    gap: 0rem;
    /* border: rgb(0 0 0 / 6%) solid 1px; */
    border-radius: 0.625rem;
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
    position: relative;
    overflow: hidden;
}

.performance-item {
    width: 30%;
    outline-offset: 0px;
    text-align: center;
    /* outline: rgb(0 0 0 / 6%) solid 1px; */
    flex-direction: column;
    flex: 1 1 auto;
    align-items: center;
    padding: 10rem 2rem;
    padding: 5rem 2rem;
    display: flex;
}

.performance p.sub-title {
    font-family: var(--font_family_2);
    font-size: var(--font-size);
    color: var(--color0transparent3);
    letter-spacing: 1px;
    text-transform: none;
    float: left;
    width: 100%;
}

h3.performance-h3 {
    object-fit: contain;
    color: var(--color4);
    margin-bottom: 0.75rem;
    font-family: var(--font_family_6);
    font-size: calc(var(--taille-font)*2);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: none;
    padding: 0 5%;
}


h3.performance-h3 .bfm-link {
    color: var(--color1);
}
.performance-icon_wrapper i {
    font-size: 5rem;
}

.title-performance {
    gap: 2rem 6rem;
    grid-template-rows: auto;
    grid-auto-columns: 1fr;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-bottom: 6rem;
}

.bloc1-performance p {
    color: var(--color0transparent3);
    font-size: var(--taille_font);
    letter-spacing: 1px;
}

.performance {
    padding: 5rem 10% 8rem;
    /* float: left; */
    width: 100%;
    position: relative;
}

a,a:link,a:visited {
    color: var(--color2);
    text-decoration: underline
}

a:hover {
    text-decoration: none
}

.corps a:hover {
    color: var(--color1);
    transition: all .4s ease;
}
.motif-banner {
    position: absolute;
    width: 66%;
    height: 100%;
    background: url(../images/banniere.svg);
    right: 0;
    top: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}
a:active {
    outline: 0
}

.h1,.h2,.h3,h1,h2,h3,h4,h5,h6 {
    color: var(--color1);););
    font-family: var(--font_family_3);
    font-weight: 200;
}

.h1,h1 {
    font-size: calc(var(--taille-font) * 3.2);
    /* line-height: 1.3; */
    color: var(--color1);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: calc(var(--taille-font) * 6);
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
    text-wrap: balance;
    font-family: var(--font_family_3);););
}

.h1:before,h1:before {
      content: "";
      width: 0.052vw;
      background: var(--color3);
      position: absolute;
      bottom: -2vh;
      left: 50%;
      height: 1px;
      width: 4vw;
      margin-left: -2vw;
}

.atouts .h1:before {
    background: var(--color0);
}

.h2,h2 {
    font-size: calc(var(--taille-font) * 2.7);
}

.h3,h3 {
    font-size: calc(var(--taille-font) * 2.4);
}

h4 {
    font-size: calc(var(--taille_font) * 1.8);
}

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: calc(var(--taille-font) *1.9);
    line-height: 30px;
    padding: 3px 0 0;
    margin: 0;
    font-weight: 200;
    color: var(--color4);
    text-align: center;
    margin-bottom: 0;
    display: block;
    font-family: var(--font_family_1);
    text-transform: initial;
    /* letter-spacing: 1px; */
    /* text-transform: uppercase; */
}

.atouts .titre-secondaire {
    color: var(--color0);
}

.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 {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0,0,0,0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    /* background-color: var(--color1); */
    /* -webkit-transition-property: color; */
    /* transition-property: color; */
    /* -webkit-transition-duration: .3s; */
    /* transition-duration: .3s; */
    background: linear-gradient(115deg, #438be3, #0d2b99 50%, #0f1958);
    background: transparent;
}

.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:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--nuanceColor1);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}
*/
.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);
}

.hvr-shutter-out-horizontal:active:before,.hvr-shutter-out-horizontal:focus:before,.hvr-shutter-out-horizontal:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
}

a.bouton-principal,button.bouton-principal {
    text-align: center;
    font-family: var(--font_family_1);
    color: var(--color0);
    text-decoration: none;
    padding: calc(var(--taille-font) * 1.6 ) calc(var(--taille-font) * 2) !important;
    font-size: calc(var(--taille-font) * 1.4);
    text-transform: uppercase;
    border: 1px solid var(--color1);
    padding-right: 50px;
    border-radius: var(--border-radiusB);
    /* overflow: hidden; */
    /* transition: all .3s ease; */
    min-width: calc(var(--taille-font) * 15);
    transition: all .3s ease;
    position: relative;
    background: var(--color1);
}

a.bouton-principal:hover, button.bouton-principal:hover {
    background: var(--nuanceColor1);
    color: var(--color1);
}

.services a.bouton-principal:hover,.services button.bouton-principal:hover {
    background: none;
    color: var(--color1);
}

.body-service-list .services a.bouton-principal:hover {
    background: var(--nuanceColor1);
}
.body-service .services a.bouton-principal:hover {
    background: var(--nuanceColor1);
}

.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:hover:after, .cta p.tel-header.bouton-principal:hover:before, .tete .infos .tel:hover:after, .tete .infos .tel:hover:before {
    /* width: 49.7% !important; */
}



a.bouton-principal,button.bouton-principal {
    text-align: center;
    font-family: var(--font_family_2);
    color: var(--color0);
    text-decoration: none;
    padding: 14px 20px;
    /* font-size: 14px; */
    border-radius: var(--border-radius);
    /* overflow: hidden; */
    transition: all 0.3s linear;
    /* letter-spacing: 3px; */
    /* border-top: 1px solid #cc9a3285;
    border-bottom: 1px solid #cc9a3285; */
    background: var(--color1);
}

a.bouton-principal:before, button.bouton-principal:before {
    content: "";
    position: absolute;
    width: 103%;
    height: 108%;
    border-right: 1px solid var(--color1);
    left: 0%;
    top: 0%;
    border-bottom: 1px solid var(--color1);
    border-radius: var(--border-radius);
}

.body-gallery-4 a.bouton-principal:before {
    left: -1.5%;
}

a.bouton-principal:after,button.bouton-principal:after {
    content: "\f105";
    right: 15px;
    top: 50%;
    font-family: 'Font Awesome 5 Free';
    font-size: 23px;
    color: var(--color0);
    -webkit-transform: translateY(-50%);
    font-weight: 700;
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 9900;
    position: absolute;
    display: none;
}

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_2);
    /* color: var(--color0); */
    text-decoration: none;
    padding: 13px 20px;
    font-size: 14px;
    /* text-transform: uppercase; */
    /* border: 0; */
}

.btn-service a.bouton-principal {
    text-align: center;
}

.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
}

.body-page-1 .corps a.bouton-principal,.body-page-1 .corps button.bouton-principal {
    width: 120px;
    margin: 15px 0 0px;
}

.main-page {
    position: relative;
    overflow: hidden
}

.tete {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9000;
    transition: .5s;
    /* background: #ffffff0d; */
    /* backdrop-filter: blur(3px); */
}

.header {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0 10% 0;
    transition: all .3s ease;
}


.fixed .header {
    padding: 0 10% 0.2% 10%;
}

@supports (-moz-appearance: none) {
    .fixed .header {
        padding: 0.2% 5% 0.2% 6%; 
    }
}

.tete .header .flex-logo {
    width: 15%;
}

.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: auto;
    width: calc(var(--taille-font) * 12);
    transition: all .3s ease;
    filter: brightness(0) invert(1);
}

.tete.fixed .logo-site a img {
    width: calc(var(--taille-font) * 10);
    filter: unset;
}


.tete .header .flex-infos .infos {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap
}

.tete .infos .tel {
    display: inline-block;
    vertical-align: top;
    font-size: calc(var(--taille-font) * 1.5);
    /* font-weight: 700; */
    color: var(--color0);
    padding: calc(var(--taille-font) * 1.1) calc(var(--taille-font) * 1.4) calc(var(--taille-font) * 1.1);
    margin: 0;
    font-family: var(--font_family_1);
    letter-spacing: 2px;
    /* background: var(--color1); */
    border-radius: var(--border-radiusB);
    margin-right: 1rem;
    /* transition: .5s; */
    white-space: nowrap;
    text-transform: inherit;
}

.fixed.tete .infos .tel {
    color: var(--color2);
}

.tete  .callTracker span {
    text-align: center;
}

.tete.fixed .infos .tel:hover {
    /* border: 1px solid var(--color0); */
    /* background: var(--nuanceColor1); */
    color: var(--color1) !important;
}

.cta p.tel-header.bouton-principal.hvr-shutter-out-horizontal a {
    color: var(--color0);
    text-align: center;
}

.cta {
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    align-items: stretch;
    column-gap: 10px;
    justify-content: start;
    height: 100%;
    margin: 0;
}

.body-page-1 .cta {
    justify-content: left;
    margin: calc(var(--taille-font) * 2.5) 0 0;
}


.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;
    margin: 0 0 0;
    display: inline-flex;
    text-transform: uppercase;
    border: 0;
    border-radius: var(--border-radiusB);
    overflow: hidden;
    align-content: center;
    justify-content: center;
    align-items: center;
    transition: all .3s ease;
    background: var(--color1);
    cursor: pointer;
    /* border: 1px solid #ffffff36; */
}

.cta p.tel-header.bouton-principal.hvr-shutter-out-horizontal:hover {
    background: var(--color1);
}

.cta p.tel-header.bouton-principal.hvr-shutter-out-horizontal:hover {
    background: #5a7e58;
    /* color: var(--color4); */
}

.cta p.tel-header.bouton-principal.hvr-shutter-out-horizontal span {
    font-size: 100%;
    text-align: center;
    min-width: auto;
    font-size: calc(var(--taille-font) * 1.4);
}

.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: calc(var(--taille-font) * 1.4);
    padding: calc(var(--taille-font) * 1.6 ) calc(var(--taille-font) * 2) !important;
    min-width: calc(var(--taille-font) * 21.3);
    transition: all .3s ease;
    color: var(--color0);
    background: var(--color1);
    /* backdrop-filter: blur(20px); */
    /* border: 1px solid #ffffff36; */
}

.cta a.bouton-principal:hover {
    background: #5a7e58;
    /* color: var(--color4); */
}

/*a.bouton-principal:before, .bouton-principal:before, .cta p.tel-header.bouton-principal:before{*/
    /* content: ""; */
    /* position: absolute; */
    /* width: 100%; */
    /* height: 100%; */
    /* top: 0; */
    /* left: 1px; */
    /* border: 1px solid var(--color1); */
    /* border-right: none; */
    /* -webkit-transition: all 0.3s linear; */
    /* -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear; */
    /* transition: all 0.3s linear; */
/*}*/

.cta a.bouton-principal:before, .cta a.bouton-principal:after {
    border-color: var(--color0);
    display: none;
}

.cta p.tel-header.bouton-principal:before, .cta p.tel-header.bouton-principal:after {
    border-color: var(--color0);
}

a.bouton-principal:after, .bouton-principal:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 1px;
    /* border: 1px solid var(--color1); */
    border-left: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.callTracker:not(.active) a:hover,.callTracker:not(.active):hover {
    color: var(--color3);
}

.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;
    min-width: 187px;
    padding: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .3s 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
}

.tete .callTracker.active .t_phone {
    text-align: center;
    font-size: calc(var(--taille-font) * 1.54);
}

.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(--color3);
    /* background: var(--nuanceColor1); */
}

.tete .widget-partage {
    display: none
}

.btn-partage .btnp {
    width: calc(var(--taille-font) * 3.6);
    height: calc(var(--taille-font) * 3.6);
    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: 60%
}

.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
}

.menu-item.active {
    color: var(--color1);
}

.fixed .menu-item.active a {
    color: var(--color1) !important;
}

.tete .menu-item.active a {
    /* color: var(--nuanceColor1) !important; */
}

.fixed .menu-item.active a:after {
    background: var(--color1) !important;
}

.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 {
    position: relative;
    color: var(--color0);
    display: block;
    font-size: calc(var(--taille-font) * 1.5);
    padding: calc(var(--taille-font) * 3.4) 0;
    /* font-weight: 700; */
    text-decoration: none;
    font-family: var(--font_family_1);
    text-transform: initial;
    letter-spacing: 1px;
    transition: all .4s ease
}

.fixed .navh .menu_principal a, .fixed .navh .menu_principal a:visited {
    color: var(--color2);
}

.body-page-1 .navh .menu_principal a, .body-page-1  .navh .menu_principal a:visited {
    /*! color: var(--color0); */
}

.menu_principal a:before, .fluid-collections .encart a.decouvrir:before {
    position: absolute;
    content: "";
    width: 0;
    height: 1px;
    left: 0;
    bottom: 3vh;
    background-color: var(--color0);
    transition: all .3s ease;
}

.fixed .menu_principal a:before {
    background-color: var(--color1);
}

.navh .menu_principal a:hover:before, .navh .menu_principal li.active > a:before, .fluid-collections .encart a.button:hover:before {
    opacity: 1;
    visibility: visible;
    width: 100%;
}

/* .navh .menu_principal a:after {
    content: '';
    position: absolute;
    width: 0px;
    height: 1px;
    background: var(--color0);
    left: 50%;
    top: 66%;
    transform: translateX(-50%);
    transition: all .4s ease;
}
.body-page-1 .navh .menu_principal a:after {
    color: var(--color1);
} */

.fixed .navh .menu_principal a:after {
    bottom: calc(var(--taille-font) * -0.8);
}



/* .navh .menu_principal a:hover:after,.navh .menu_principal li.active>a:after {
    width: 1px;
    height: calc(var(--taille-font) * 1.5);
}

.body-page-1 .navh .menu_principal a:hover:after,.body-page-1 .navh .menu_principal li.active>a:after {
    background: var(--color1);
} */
.navh .menu_principal a:hover, .navh .menu_principal li.active>a {
    color: var(--color0);
}

.fixed .navh .menu_principal a:hover {
    color: var(--color1);
}
/* .fixed .navh .menu_principal li.active>a:after {
    background: var(--color1);
}

.fixed .navh .menu_principal a:hover:after {
    background: var(--color1);
    opacity: .5;
} */

.icone-share {
    display: none
}

.btn-partage .icones {
    width: calc(var(--taille-font) * 1.6);
    margin: 0;
    height: calc(var(--taille-font) * 1.6);
    padding: 0;
    position: relative;
    left: 0;
    fill: var(--color0);
}

.fixed .btn-partage .icones {
    fill: var(--color1);
}

@media(max-width: 1530px) {
    .body-page-1 .fluid-contenu .corps:before{
    content: '';
    /* width: 52% !important; */
    /* height: 70%; */
    /* position: absolute; */
    /* background: var(--color3); */
    /* top: 25% !important; */
    /* right: 2% !important; */
    /* border-radius: 40px 5px 40px 5px; */
}
    .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
    }
}


/*laptops*/
@media (min-width: 1024px) and (max-width: 1440px) {
  :root {
    --taille-font: calc(1vw * 0.590833333333);
  }

.body-page-1 .fluid-contenu .corps {
    
padding: 3em 1% 4em 1% !important;
}

.corps .row.r-flex {
    gap: 2%;
}
 .tete .infos .tel {
     font-size: 12px;
 }
    .tete .header .flex-logo {
    width: 10%;
}
    .body-page-1 .header {
        padding: 0.8% 2.5% 0 2.5%;
    }

    .header, .fixed .header {
        padding: 0.8% 2.5% 0 2.5%;
    }
    .navh .menu_principal a, .navh .menu_principal a:visited {
        font-size: calc(var(--taille-font) * 1.6);
        letter-spacing: 1px;
    }
    .motif-banner {
        width: 71%;
    }
    .body-page-1 .slogan {
        /* width: 58% !important; */
    }
    .bloc-contenu.services.nbr-services- {
        padding: 1em 10% !important;
    }
}
.fixed.tete {
    background: linear-gradient(361deg, #f27b3f, #ed4e33 50%, #ec4430);
    background: #141414e0;
    /* backdrop-filter: blur(45px); */
    height: calc(var(--taille-font) * 10);
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slogan {
    position: relative;
    color: var(--color0);
    width: 100%;
    padding: 0px 8%;
    margin: 0;
    text-align: left;
    z-index: 2;
    top: 50px;
}

.slogan h1 {
    position: relative;
    color: var(--color0);
    width: 100%;
    margin: 0;
    text-align: left;
    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) * 5.4);
    font-family: var(--font_family_3);
    /* text-transform: uppercase; */
    line-height: calc(var(--taille-font) * 11);
    font-weight: 400;
}
.body-pageseo .slogan .titre {
    font-size: calc(var(--taille-font) * 5.4);
    font-family: var(--font_family_3);
    /* text-transform: uppercase; */
    line-height: calc(var(--taille-font) * 8);
    font-weight: 400;
}

.body-page-1 .slogan .titre {
    line-height: calc(var(--taille-font) * 10);
    font-size: calc(var(--taille-font) * 6.5);
    font-family: var(--font_family_3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
    text-align: center;
    text-shadow: 0 0 4px #0b0b0bb0;
    /* color: var(--color1); */
}

.slogan .titre span {
    font-size: 48px
}

.slogan .sous-titre {
    font-size: calc(var(--taille-font) * 2.5);
    font-family: var(--font_family_1);
    /* line-height: calc(var(--taille-font) * 6); */
    font-weight: 200;
    /* text-transform: uppercase; */
    text-shadow: 0 0 4px #0b0b0bb0;
}

.italic-ms {
    font-style: italic;
    color: var(--nuanceColor1);
}

.body-page-1 .slogan {
    top: calc(var(--taille-font) * 4.5);
    text-align: left;
    width: 100%;
    padding: 0 45% 0 10%;
    color: var(--color0);
}

.video-accueil {
    position: fixed;
    top: 0;
    left: 50%;
    width: 120%;
    width: 120vw;
    height: 100vh;
    margin-left: -60%;
    margin-left: -60vw
}

.video-accueil video {
    width: 100%;
    height: auto;
    vertical-align: top;
    z-index: 1;
    position: relative
}

.video-accueil .banniere {
    z-index: 0
}

.banniere {
    position: relative;
    top: 0 !important;!i;!;
    margin-left: 0;
    height: 100%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* background-position: center; */
}

.body-page-1 .banniere {
    height: 100vh;
    /* background: unset !important; */
    /* position: relative; */
}

.banniere:after {
    content: '';
    background: #0000002b;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block
}

.body-page-1 .banniere:after {
    all: unset;
}
.banniere::before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    pointer-events: none;
    background: linear-gradient(rgba(9, 34, 50, .8) 0, rgba(9, 34, 50, .71) 13%, rgb(255 255 255 / 0) 75%, rgb(255 255 255 / 0) 100%);
}

.banniere img {
    position: relative;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    object-position: top;
}

.body-page-1 .banniere::before {backdrop-filter: unset;background: #00000044;/*! opacity: .45; */background: linear-gradient(rgb(0 0 0 / 51%) 0, rgb(0 0 0 / 28%) 13%, rgb(255 255 255 / 0) 75%, rgb(255 255 255 / 0) 100%);}

@-moz-document url-prefix() {
    .banniere img {
        /*! filter: blur(4px); */
        width: 100%
    }

    .body-page-1 .banniere {
        filter: blur(0);
        width: 100%;
        left: 0
    }
}

.btn-descendre,a.btn-descendre {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 100px;
    margin-top: 23px
}

.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 {
    position: relative;
    z-index: 10;
    background: var(--color0);.body-page-1: .fluid-contenu;
    margin-top: 0 !important;
}

.body-page-1 .fluid-contenu {
    margin-top: 0vh !important;
}

main.fluid-contenu {}

.fluid-contenu .corps {
    padding: 4em 8% 3em;
}

.body-page-1 .fluid-contenu .corps {
    padding: 3em 8% 4em 8%;
    position: relative;
    /* background: aqua; */
}

.body-page-1 .fluid-contenu .corps:before {}
.body-page-1 .fluid-contenu .corps:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background-image: url(../images/bg-tissu-1.png); */
    /* background-size: 20%; */
    /* background-blend-mode: color; */
    /* background-color: #ffffffb5; */
    /* background-repeat: no-repeat; */
    /* background-position: 110% bottom; */
}
.page-contenu-home {
    position: relative;
    display: block;
    /* padding: 2rem 0% 0; */
    text-align: initial;
    line-height: 1.2;
}

.page-contenu-home p {
    margin-bottom: 7px;
}

.page-contenu-home span {
    line-height: 1.6;
}

.recup-photos .propor .propor-cont .imagecont {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    overflow: hidden;
}

.recup-photos .propor .propor-cont .imagecont img {
    object-fit: cover;
    -o-object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    flex: 1;
    height: 100%;
    border-radius: 0 0 0 0;
    -webkit-transition: all .4s cubic-bezier(.26,.62,.74,.9);
    -moz-transition: all .4s cubic-bezier(.26,.62,.74,.9);
    transition: all .4s cubic-bezier(.26,.62,.74,.9);
    will-change: transform;
    /* padding: 7px; */
}

.r-flex .recup-photos .propor .propor-cont .imagecont img {
    /* padding: 7px; */
}
.recup-photos .propor .propor-cont .imagecont:hover img {
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    transform: scale(1.03);
}
.realisations .recup-photos .propor .propor-cont .imagecont img {
    object-position: center;
}

.recup-photos .propor {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    /*! border-radius: var(--border-radiusB); */
    /* overflow: hidden; */
    /*! height: 700px; */
    background: var(--color0);
    /* overflow: hidden; */
}
.propor.pic-1 {
    /*! height: 610px; */
    height: calc(3vw * 12.5);
    width: 90%;
    margin: auto;
    position: relative;
    /* border: 1px solid var(--color1); */
    border-radius: var(--border-radius);
}

/* .propor.pic-1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    transform: scale(1.1);
    z-index: -1;
} */
.r-flex .recup-photos .propor {
    /*! border-radius: 5px; */
    /*! filter: grayscale(0.5); */
    transition: all .3s ease;
    /* border-radius: calc(var(--taille-font)* 1.5); */
}

.r-flex .recup-photos .propor:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 100%;
    border: 1px solid var(--color1);
    left: -10%;
    top: -5%;
}

.r-flex .recup-photos .propor:hover {
    filter: unset;
}

.recup-photos .propor:after {
    padding-top: 78%;
    display: block;
    content: '';
}

.recup-photos .propor .propor-cont {
    position: absolute;
    top: 0;
    bottom: 0;
    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;
    width: 100%;
    height: 100%;
    transition: .5s;
    background-color: #0000008c;
    /*! 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;
}

.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)
}

/*********/
/********/

.realisations .row.recup-photos.gallery {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas:
        "item1 item2 item3"
        "item4 item5 item6";
    grid-template-rows: calc(var(--taille-font) * 30) calc(var(--taille-font) * 30);
    grid-gap: 10px;
    margin-top: calc(var(--taille-font) * 8);
}
.realisations .row.recup-photos.gallery .col-md-3:first-child {
    grid-area: item1
}

.realisations .row.recup-photos.gallery .col-md-3:last-child,.realisations .row.recup-photos.gallery .col-md-3:nth-child(5) {
    grid-area: item5;
}

.realisations .row.recup-photos.gallery .col-md-3:nth-child(2) {
    grid-area: item2
}

.realisations .row.recup-photos.gallery .col-md-3:nth-child(3) {
    grid-area: item3
}



.realisations .row.recup-photos.gallery .col-md-3:nth-child(4) {
    grid-area: item4;
}

.realisations .row.recup-photos.gallery .col-md-3:nth-child(6) {
    grid-area: item6
}
.realisations .row.recup-photos.gallery .col-md-3:nth-child(7) {
    grid-area: item7
}
.realisations .row.recup-photos.gallery .col-md-3:nth-child(8) {
    grid-area: item8
}
.realisations .recup-photos .propor {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    height: 100%;
    /*! filter: grayscale(0.7); */
    transition: all .3s ease;
    border-radius: var(--border-radius);
}

.realisations .recup-photos .propor:hover {
    filter: unset;
}

.realisations .row.recup-photos.gallery .col-md-3 {
    width: 100%;
    margin: 0;
    padding: 0;
}
/********/
.certifs {
    display: inline-block;
    width: 100%;
    position: relative;
    z-index: 8000;
    background: var(--bg-facultatif);
    padding: 3em 10% 4em;
    /*! display: none; */
}

.certifs .cell.gauche {
    display: block
}

.certifs .cell.gauche .contenu {
    padding: 2em 13%
}

.certifs .cell.droite {
    position: relative;
    display: block;
    padding: 2em 7% 4em
}
.swiper-container-2 {
  overflow: hidden;
}
.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: 80% auto;
    -moz-background-size: 80% auto;
    background-size: 50% auto;
    background-color: transparent;
}

.certifs .swiper-slide img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    display: block;
    /*! box-shadow: 0 0 1px var(--color4) */
}

.certifs .swiper-button-prev {
    background-image: none;
    left: 0;
    margin-top: -22px;
    opacity: .8
}

.certifs .swiper-button-next {
    background-image: none;
    right: 0;
    margin-top: -22px;
    opacity: .8
}

.certifs .swiper-button-next i,.certifs .swiper-button-prev i {
    font-size: 23px;
    color: var(--color2)
}

.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: table;
    width: 100%;
    position: relative;
    z-index: 8000;
    background-color: var(--color0);
    padding: 6em 10% 6em;
}

.actualites article {
    display: table;
    width: 100%
}

.actualites:nth-child(even+1) {
    direction: rtl
}

.actualites .cell.photo {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    background-position: top center;
    border-radius: var(--border-radiusC);
    /*! filter: grayscale(.75); */
    transition: all .3s ease;
}

.actualites .cell.photo:hover {
    filter: unset;
}

.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;
    font-family: var(--font_family_1);
    text-underline-offset: 5px;
    color: var(--color1) !important;
    transition: all .3s ease;
}

.view-btn-all:hover {
    color: var(--color2) !important;
    text-decoration: underline;
}

.view-btn-all i {
    margin-left: 8px;
    font-size: calc(var(--taille-font) *1.5);
}

.actualites .date_post,.news .date-article {
    font-size: calc(var(--taille-font) *1.5);
    font-weight: 700;
    color: var(--color2)
}

.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{padding:0 7%}
.AvisClientsBg .contenu {/* max-width: calc(var(--taille-font) *145); */margin: 0 auto;position: relative;}
.AvisClientsBg .bx-prev{left:-2vw}
.AvisClientsBg .bx-prev:before{display:inline-block;content:"\f053";font-weight:700;font-family:'Font Awesome 5 Free';font-size:23px;color: var(--color1);}
.AvisClientsBg .bx-next{right:-2vw}
.AvisClientsBg .bx-next:before{display:inline-block;content:"\f054";font-weight:700;font-family:'Font Awesome 5 Free';font-size:23px;color: var(--color1);}
.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}
.AvisClientsBg .bx-next:hover,.AvisClientsBg .bx-prev:hover{opacity:1}
.AvisClientsBg .contenu .bx-viewport{padding: 28px 0 15px;display:block;height:auto!important}
.AvisClientsBg.bg-optionnel-gris .h1{color:var(--color0)}
.etoiles .fa{color:#fc0}
.AvisClientsList{margin:0;padding:0}
.bx-pager .bx-pager-item {margin: 0;}
.AvisClientsBg .contenu .AvisClientsList:hover {
    cursor: url(../images/slide-cursor.png) ;
}
.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: #f6f1ec;
  padding: 4rem 9% 6rem;
  text-align:center;
  min-height: 32vh;
  margin-top:0;
  display: block;
  text-decoration:none;
  border-radius: var(--border-radiusC);
  box-shadow: 0.2px 4.1px 14.8px rgb(0 0 0 / 8%);
  }

.AvisClients .icones {
    fill: var(--color1);
    margin: 0;
}
.AvisClients:active,.AvisClients:hover{background-color:var(--color0)}
.AvisClients .h{font-size: calc(var(--taille-font) *2.3);color: var(--color1);text-align:center;text-transform:uppercase;font-weight:600;margin-bottom:0}
.AvisClients p{font-size: calc(var(--taille-font) *1.6);margin-bottom:0;color: var(--color4);padding-top: calc(var(--taille-font) *1.5);}
.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}
.temoignageScroll{max-height: 220px;text-align:center;overflow:hidden}
.temoignageScroll .scrollbar-content{padding:0 10px 0 0;width:100%}
.temoignageScroll .scrollbar-path-vertical{right:0}
.date_post{font-size: calc(var(--taille-font) *1.5);padding:4px 0;color: var(--color1);}
.date_post i{margin-right:8px}

.AvisClientsBg .bx-controls.bx-has-pager{display:block;position:relative;height:70px}
.temoignageScroll {
    max-height: calc(var(--taille-font) *10.9);
    text-align: center;
    overflow: hidden
}

.temoignageScroll .scrollbar-content {
    padding: 0 10px 0 0;
    width: 100%
}

.temoignageScroll .scrollbar-path-vertical {
    right: 0
}


.livre-elements {
    padding: 0 4%;
    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: calc(var(--taille-font) * 2.1);
    color: var(--color1);
    text-align: center;
    text-transform: uppercase;
    font-weight: 600
}

.livre-elements .date {
    margin-bottom: 2px!important;
    color: var(--color1);
}

.livre-elements .etoiles {
    margin-bottom: 0!important
}

.livre-elements .temoignage {
    text-align: center;
    display: block;
    margin-top: 20px
}

.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: calc(var(--taille-font) * 2.5) calc(var(--taille-font) * 2.7);
    margin-bottom: 3rem;
    background-color: var(--color0);
    border-radius: var(--border-radiusC);
    width: 48%;
    box-shadow: 0.2px 4.1px 14.8px rgb(0 0 0 / 14%);
}

.btn-avis {
    margin-bottom: 30px
}

.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: 21px;
    color: var(--color2);
    opacity: .2;
    line-height: 1
}

.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%
}

#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
}

.centerservice2 {
    margin: 0 16%!important
}

.centerservice {
    margin: 0 33%!important
}

.services {
    /* display: table; */
    width: 100%;
    position: relative;
    z-index: 8000;
    /* background: var(--color0); */
    /* border-bottom: 2px solid var(--color0); */
    min-height: 55vh
}


/*******************SERVICES**********************/


/******/
.swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  text-align: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/****/
.liste-services {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  position: relative;
  /**display: grid;**/
  z-index: 11;
  border-radius: var(--border-radius);
  padding-bottom: 1em;
  padding-top: 1em;
}

.body-page-1 .services h2 {
  text-align: center;
}

.services .container {
  /*! max-width: calc(var(--taille-font) * 153) !important; */
  width: 100% !important;
  padding: 2em 0% 2em;
  margin: 0 auto;
}

.card-title h3 {
    font-size: calc(var(--taille-font) * 2.5);
    letter-spacing: 0;
    line-height: initial;
    /* margin-bottom: 21px; */
    font-family: var(--font_family_3);
    color: var(--color0);
    text-align: start;
    position: absolute;
    left: 40px;
    z-index: 3;
    bottom: calc(var(--taille-font) * 5);
    padding-right: 10px;
}

.btn-card:before ,.btn-card:after {
    display: none;
}

.card-body {
    /* padding: 0 2rem 0rem; */
    text-align: start;
    position: absolute;
    width: 100%;
    height: 100%;
}

.card-body a.btn-card {
    max-width: 95%;
}

a.btn-card.bouton-principal.service-all {
    height: 100%;
    width: 100%;
    z-index: 1;
    inset: 0;
}

a.btn-card.bouton-principal.service-all:before {
    all: unset;
}

a.btn-card {
    /* display: block; */
    transition: .15s;
    text-decoration: none;
    position: absolute;
    left: 40px;
    padding: 0 !important;
    z-index: 2;
    text-transform: initial;
    font-size: calc(var(--taille-font) * 1.6);
    width: fit-content;
    /* min-width: fit-content; */
    border: none;
    /* font-weight: bold; */
    background: none;
    color: var(--color0);
    margin: 0;
    bottom: calc(var(--taille-font) * 3.3);
    text-align: left;
    width: 100%;
}
.card-body a.btn-card:before {content: '';position: relative;width: 3%;height: 1px;background: var(--color0);margin-right: 11px;display: inline-block;top: -4px;transition: all .4s ease;border-bottom: 1px solid var(--color0);}

.service-card:hover .card-body a.btn-card:before {
    width: 15%;
}
.img-service:hover a.btn-card:before {
    width: 8% !important;
}

.bloc-contenu.services.nbr-services- {
  padding: 4em 10% 6em;
}
.bloc-contenu.services.nbr-services-:before{
    content: '';
    width: 22%;
    height: 50%;
    top: 15%;
    right: 5%;
    position: absolute;
    background-image: url(../images/bg-service.png);
    background-size: 100%;
    background-blend-mode: color;
    background-color: #ffffffb5;
    background-repeat: no-repeat;
    /* background-position: -3% bottom; */
}
.img-service {
  -ms-border-radius: 0;
  -o-border-radius: 0;
  -webkit-border-radius: 0;
  position: relative;
  background-image: url(../images/gear.svg);
  background-size: 80px auto;
  -ms-background-size: 80px auto;
  -o-background-size: 80px auto;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.2s linear 0;
  -webkit-transition: all 0.2s linear 0;
  -khtml-transition: all 0.2s linear 0;
  -o-transition: all 0.2s linear 0;
  /* width: 380px; */
  height: calc(var(--taille-font) * 56);
  transition: all 0.3s linear;
  /* border-radius: var(--border-radiusB); */
  overflow: hidden;
  display: block;
}

.img-service:hover {
  /* transform: translateY(-5px); */
  /* transform: scale(1.01); */
}

/*.img-service:hover {
  filter: brightness(1);
}*/

.img-service:hover span.svrAB {
    background: var(--color1);
    transform: rotate(45deg);
}

.img-service:hover span.svrAB svg path {
    fill: var(--color0);
}

.img-service:before {
  content: "";
  inset: 0;
  position: absolute;
  background: linear-gradient(10deg, #3e3c3f, transparent, transparent);
  transition: all 1s ease;
  /* bottom: -600px; */
}

.img-service:hover:before {
  opacity: .5;
}

div.title {
  position: absolute;
  bottom: calc(var(--taille-font) * -6.8);
  left: 50%;
  transform: translateX(-50%);
  /* padding: calc(var(--taille-font) * 1) 0 0; */
  width: 85%;
  height: calc(var(--taille-font) * 9.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-direction: row;
  gap: 5px;
  border-radius: 30px;
}
.plusAB {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

.ab-cntnt {
  color: var(--color0);
  opacity: 0;
  transition: all 0.3s ease;
}


.img-service:hover .ab-cntnt {
  opacity: 0.6;
}

div.title h3 {
  font-family: var(--font_family_5);
  color: var(--color2);
  margin: 0;
  transition: all 0.3s linear;
  font-size: calc(var(--taille-font) * 1.7);
  padding: 11px 5px 5px;
  text-align: center;
}


.nbr-services-3 .img-service.service-2 {
  left: 0;
  margin-bottom: -72.5px;
  bottom: 50%;
  margin-left: -72.5px;
}

.nbr-services-3 .img-service.service-3 {
  top: 50%;
  right: -72.5px;
  left: initial;
}

span.svrAB {
  /* margin: 5px 0 0; */
  color: #c9ad8c;
  /* border-top: 1px solid #d7d7d780; */
  /* padding-top: 10px; */
  display: block;
  width: fit-content;
  padding: calc(var(--taille-font) * 1);
  text-transform: uppercase;
  font-size: calc(var(--taille-font) * 1.4);
  letter-spacing: 1px;
  border: 1px solid var(--color1);
  border-radius: 50%;
  width: calc(var(--taille-font) * 4.5);
  height: calc(var(--taille-font) * 4.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s ease;
}

span.svrAB svg {
    width: calc(var(--taille-font) * 4);
    height: calc(var(--taille-font) * 4);
    fill: var(--color1);
}

span.svrAB svg path  {
    fill: var(--color1);
}

/*************/

.btns-servAB {
  display: flex;
  /* flex-direction: row-reverse; */
  justify-content: center;
  gap: calc(var(--taille-font) * 0);
  align-items: center;
  width: 100%;
  /* height: calc(var(--taille-font) * 5); */
  color: var(--color0);
  /* float: right; */
  background-color: transparent;
  margin-top: calc(var(--taille-font) * 3);
  border-radius: 3px;
}

.atouts .btns-servAB {
    flex-direction: row-reverse;
    gap: 1.2%;
    /* display: none; */
}

.btns-servAB .swiper-button-prev,
.btns-servAB .swiper-button-next {
  position: relative;
  display: flex;
  height: calc(var(--taille-font) * 4);
  width: calc(var(--taille-font) * 4);
  background: var(--color1);
  justify-content: center;
  align-items: center;
  border-radius: var(--border-radiusB);
  /* margin-left: calc(var(--taille-font) * -1); */
  transition: .3s;
}

.btns-servAB .swiper-button-prev:hover, .btns-servAB .swiper-button-next:hover {
    background: var(--color3);
}

.btns-servAB .swiper-button-next {
    right: calc(var(--taille-font) * -5);
}

.btns-servAB .swiper-button-prev {
    left: calc(var(--taille-font) * -5);
}
/* 
.btns-servAB .swiper-button-next:before, .btns-servAB .swiper-button-prev:before {
   content: "";
   position: absolute;
   width: 10px;
   height: 100%;
   top: 0;
   left: 1px;
   border: 1px solid var(--color1);
   border-right: none;
   -webkit-transition: all 0.3s linear;
   -moz-transition: all 0.3s linear;
   -ms-transition: all 0.3s linear;
   -o-transition: all 0.3s linear;
   transition: all 0.3s linear;
}

.btns-servAB .swiper-button-next:after, .btns-servAB .swiper-button-prev:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    top: 0;
    right: 1px;
    border: 1px solid var(--color1);
    border-left: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
} */

.btns-servAB .swiper-button-prev:hover:before, .btns-servAB .swiper-button-next:hover:before, .btns-servAB .swiper-button-prev:hover:after, .btns-servAB .swiper-button-next:hover:after {
    width: 50%;
}

/***/
/******************* END SERVICES**********************/

.btn-service {
    text-align: center;
    margin: 10px 0
}

.services .miettes {
    list-style-type: none;
    list-style-image: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center
}

.services .miettes li {
    display: inline-block;
    vertical-align: top;
    background: 0 0;
    padding: 0
}

.services .miettes li:before {
    content: none
}

.services .miettes li a {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: var(--color0);
    display: inline-block;
    opacity: .5
}

.services .miettes li a.active {
    opacity: 1
}

.AvisClientsBg,.realisations {
    position: relative;
    z-index: 8000;
    text-align: center;
    padding: 6em 10% 6em;
    overflow: hidden;
    background-image: url(../images/bg-att.jpeg);
    background-size: 35%;
    background-blend-mode: color;
    background-color: #ffffffb5;
}

.realisations:before{
    content: '';
    width: 22%;
    height: 50%;
    top: 15%;
    left: 5%;
    position: absolute;
    background-image: url(../images/bg-service.png);
    background-size: 100%;
    background-blend-mode: color;
    background-color: #ffffffb5;
    background-repeat: no-repeat;
    /* background-position: -3% bottom; */
}

.AvisClientsBg {
    /* background:var(--bg-facultatif); */
}


.realisations .titre-secondaire {
    letter-spacing: 1px;
}

.AvisClientsBg a.bouton-principal {
    /* width: calc(var(--taille-font) *30); */
}

.AvisClientsBg a.bouton-principal:before {
    width: 101.5%;
}


/*************/

.stepsAB {
    display: flex;
    padding: 2em 8% 2em;
    overflow: hidden;
    justify-content: space-between;
    position: relative;
    background-color: var(--color0);
    /* background-image: url(../images/bg-section-s.jpeg); */
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.stepsAB:before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: linear-gradient(115deg, #f27b3f, #ed4e33 50%, #ec4430);
 opacity: .7;
 background-size: cover;
}

.body-gallery-2 .stepsAB {
    justify-content: center;
    overflow: visible;
}

.stepsAB.atoAB {
    flex-direction: row-reverse;
}



.stp-txt {
    width: 48%;
    padding: 3%;
    position: relative;
    /* padding-left: 0; */
}


/* .stp-txt:before {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    background-image: url(../images/bg-home2.png);
    background-size: 780px;
    right: -100%;
    top: 0;
    opacity: 0.15;
    rotate: 338deg;
    scale: .9;
    z-index: -1;
    filter: invert(57%) sepia(43%) saturate(714%) hue-rotate(164deg) brightness(94%) contrast(87%);
} */

.atoAB .stp-txt:before {
    left: -100%;
    top: -70px;
    rotate: 338deg;
}

.atoAB .stp-txt {
    /* padding-left: 0; */
    /* padding-right: 0%; */
}

.atoAB .stp-txt .titre-secondaire {
    margin-left: 0;
    text-align: left;
}


.stp-txt h2 {
    text-align: left;
    margin-top: 0;
    margin-bottom: calc(var(--taille-font) * 5);
    color: var(--color0);
}

.stp-txt h2:before {left: 0;margin-left: 0;}

.stp-txt h2:after {
    display: none;
}

.stp-txt .stp-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--taille-font));
}

.stp-txt .stp-list p {
    font-size: calc(var(--taille-font) * 1.6);
    color: var(--color0);
}

.stp-list span:hover i {
    /* color: var(--color1); */
    /* background-color: transparent; */
}

.stp-list span {
    font-family: var(--font_family_2);
    font-size: calc(var(--taille-font) * 1.7);
    color: var(--color1);
    font-weight: 800;
}

.stp-list i {
    height: 45px;
    width: 45px;
    min-width: 40px;
    border-radius: 50%;
    text-align: center;
    padding-top: 10px;
    color: var(--color1);
    margin-right: 10px;
    /* border: 2px solid var(--color1); */
    transition: all .3s ease;
    font-size: 21px;
}

.att-p {
    font-size: calc(var(--taille-font) * 1.4) !important;
    margin-left: calc(var(--taille-font) * 5.5);
    font-style: italic;
    font-weight: 400;
    color: var(--color2);
}


.stp-bg-p {
    width: 50%;
    height: auto;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.stp-bg {
    /* width: 55%;
    height: auto; */
    height: 100%;
    width: 100%;
    background-image: url(../images/bg-section-s.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    border-radius: var(--border-radiusC);
}

.stp-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/Logo-QualiRepar-w.png);
    background-size: 22%;
    background-repeat: no-repeat;
}

/*.stp-bg::before { content: '';position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: var(--color4);opacity: 0.2;
*/



.stp-bg-pAtt{
    height: 440px;
    width: 20%;
}

.qsnAB-p1.stp-bg, .qsnAB-p2.stp-bg {
    height: 100%;
    width: 100%;
}

img.picto {
    width: calc(var(--taille-font) *5);
    height: auto;
    margin-right: 7px;
    position: relative;
    top: calc(var(--taille-font) * 0.5);
    filter: invert(34%) sepia(27%) saturate(4669%) hue-rotate(343deg) brightness(96%) contrast(93%);
}


/****/
.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)
}

/*.intervention {
    position: relative;
    z-index: 8000;
    background: url(../images/bg-intervention.jpg) no-repeat center center/cover;
    background-attachment: fixed;
    padding: 4em 10%
}

.intervention:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color2);
    opacity: .85;
    z-index: -1
}

.intervention .contenu {
    padding: 0 13%;
    color: var(--color0);
    font-size: 17px
}

.intervention .contenu a,.intervention .contenu a:link,.intervention .contenu a:visited {
    color: var(--color0)
}

.intervention h2 {
    color: var(--color0);
    margin-top: 0
}

.intervention h2:before {
    background: var(--color0)
}

.intervention ul {
    margin: 30px 0 0;
    column-count: 2;
    width: 60%
}
*/

.intervention{position:relative;z-index:8000;padding: 7em 10%;/* background: var(--color0) !important; *//* padding-bottom: calc(4em + 190px); */display: flex;justify-content: center;gap: 20px;/* flex-wrap: initial; */background-attachment: fixed;background-repeat: no-repeat;background-size: cover;}

.intervention .titre-secondaire {
    text-align: center;
}
.intervention:before{content:'';position:absolute;left:0;top:0;width:100%;height:100%;background: #0c0c0c;/* background-color: var(--color0); */opacity: 0.4;z-index:-1;}

.map {
    /*! margin-top: calc(var(--taille-font) *2); */
}
.intervention .map {
    width: 50%;
    /*! height: 100% !important; */
    height: calc(var(--taille-font) * 1.6 ) calc(var(--taille-font) * 2) !important;
}
.map iframe {
    width: 100%;
    /*! filter: grayscale(1); */
    transition: all .3s ease;
    /*! height: 100% !important; */
    height: 100% !important;
}

.map:hover iframe {
    filter: unset;
}
.intervention .contenu{padding: 4em 4%;font-size: calc(var(--taille-font) * 1.5 );position: relative;width: 50%;border-radius: var(--border-radiusB);/* overflow: hidden; */z-index: 9;text-align: justify;}

.intervention .contenu:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color4);
    opacity: .74;
}

.intervention .contenu:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/gb-inter.jpeg);
    background-size: cover;
    opacity: 1;
    z-index: -1;
    /*! background-attachment: fixed; */
    background-repeat: no-repeat;
    background-position: ;
}
.intervention .contenu a,.intervention .contenu a:link,.intervention .contenu a:visited{color:var(--color0)}
.intervention h2{color: var(--color3);margin-top:0;text-align: center;position: relative;}

.intervention p {
    position: relative;
    color: var(--color0);
}

.fd-avis_satisfaction {
    background: var(--color2) !important;
}
.intervention h2:before{/* margin: 0; *//* left: 0; */}


.intervention ul{margin: calc(var(--taille-font) * 1.5) 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 {
    position: relative;
    z-index: 9;
    background: var(--color0);
}


.pied .bande1 {
    padding: 5.5rem 10% 1rem;
    background: var(--color4);
}

.pied .bande1 .col-md-3:nth-child(3) {
    color: var(--color0);
}

.bande_contact_footer {
    padding: 70px 10% 140px;
}

.bande_contact_footer .row1 {
    position: relative;
    display: block;
    /* background: #ededed63; */
    padding: 5rem 28%;
    border-radius: var(--border-radiusC);
    background-image: url(../images/bg-att.jpeg);
    background-size: 35%;
    background-blend-mode: color;
    background-color: #ffffffb5;
}
/* 
.bande_contact_footer .row1::after {
    display: block;
    width: 232px;
    height: 1px;
    content: "";
    background: var(--color0);
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    margin-top: calc(var(--taille-font) * 4.9)
} */

.pied .bande2 {
    padding: calc(var(--taille-font) *2) 10%;
    background: var(--color4);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pied .title_footer {
    color: var(--color3);
    font-family: var(--font_family_3);););
    font-size: calc(var(--taille-font) * 2.3);
    text-transform: uppercase;
    padding: 0 0 calc(var(--taille-font) * 2);
    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(--color0);
    padding: calc(var(--taille-font) * 1.5 ) calc(var(--taille-font) * 2);
    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: calc(var(--taille-font) * 1.6);
    padding: 0 0 0;
    color: inherit;
    text-decoration: none
}

.pied .navf .menu_footer li a:hover {
    color: var(--color3);
}

.pied .navf .menu_footer li.active a {
    color: var(--color3);
}

.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: inherit;
    font-size: calc(var(--taille-font) * 1.6);
    text-decoration: none
}

.pied .menu_referencement li a:hover {
    color: var(--color1)
}

.pied .menu_referencement li.active a:hover {
    text-decoration: none
}

.pied address {
    margin: 0;
    padding: calc(var(--taille-font) * 1.5) 0 calc(var(--taille-font) * 2.5);
    color: var(--color0);
    font-size: calc(var(--taille-font) * 1.6);
    float: left;
    width: 100%;
    position: relative;
}

.pied address p {
    background-repeat: no-repeat;
    margin: 0;
    background-position: 0 0;
    padding: 0 0 calc(var(--taille-font) * 1) 0;
}

.flex-address {
    position: relative;
    display: flex
}

.flex-address i {
    margin-top: 3px!important
}

address i {
    margin: 0;
    margin-right: calc(var(--taille-font) * 1.2);
    font-size: calc(var(--taille-font) * 1.6);
    color: var(--color3);
    width: calc(var(--taille-font) * 1.6);
}

.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: calc(var(--taille-font) * 1.5) 0 0;
    height: calc(var(--taille-font) * 27);
    position: relative;
    float: left;
    width: 100%;
}

.pied .horaires {
    color: var(--color3);
    padding: calc(var(--taille-font) *1.) 0 calc(var(--taille-font) *3.5);
    margin: 15px 0 0;
    font-size: calc(var(--taille-font) *1.6);
    float: left;
    width: 100%;
}

.horaires {
    display: inline-grid
}

.horaires i {
    margin: 4px 0 0;
    margin-right: 12px;
    font-size: 16px;
    color: var(--color2);
    display: none;
}

.pied .copyright-footer {
    margin: 5px 0 0;
    text-align: center
}

#logoFD svg * {
    fill: var(--color3);
}

#logoFD svg {
    width: 210px
}

.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(--color3);
}

.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 {
    display: table;
    width: 100%;
    position: relative;
    z-index: 8000;
    /* background: var(--color3); */
    margin-bottom: 10rem;
    /* box-shadow: 0.2px 4.1px 14.8px rgb(0 0 0 / 14%); */
    border-radius: var(--border-radiusC);
    background-image: url(../images/bg-att.jpeg);
    background-size: 35%;
    background-blend-mode: color;
    background-color: #ffffffb5;
}

.prestation:nth-child(even) {
    direction: rtl
}

.prestation:nth-child(even) .cell.photo {
    border-top-right-radius: var(--border-radiusC);
    border-bottom-right-radius: var(--border-radiusC);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.prestation .cell.photo {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    background-position: center center;
     border-top-left-radius: var(--border-radiusC);
    border-bottom-left-radius: var(--border-radiusC);
}

.prestation .cell.texte {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    /* border-bottom: 2px solid var(--color0); */
}

.prestation:last-child .cell.texte {
    border-bottom: none
}

.prestation .cell.texte .contenu {
    padding: 90px 10%;
    text-align: center;
    direction: ltr
}

.prestation .cell.texte .contenu h2.h1 {
    font-size: calc(var(--taille-font) * 4);
    line-height: initial;
}

.prestation .cell.texte .contenu p {
    padding: 0 0 20px
}

.prestation .cell.texte .contenu ul {
    padding: 0;
    margin: 0
}

.prestation .cell.texte .contenu ul li {
    padding: 5px 0 5px 20px;
    background: url(../images/puce.svg) no-repeat 0 9px
}

.prestation .cell.texte .contenu ul li .bouton-principal {
    display: block
}

.body-contact h2 {
    /* color: var(--color2); */
    text-transform: none;
    position: relative;
    margin-bottom: calc(var(--taille-font) * 5.5);
    font-weight: 600
}

.body-contact h3 {
    color: #000;
    font-weight: 700;
}

.tab-coordonnes h2:before {
    content: "";
    width: calc(var(--taille-font) * 7.5);
    height: 2px;
    background: var(--color1);
    position: absolute;
    top: calc(var(--taille-font) * 5);
    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: 30%;
    border-top: 2px solid var(--color0)
}

.contact .tab-coordonnes .cell.gauche .contenu {
    padding: 3em 7% 0
}

.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: 65%;
}

.contact .tab-formulaire {
    display: block;
    width: 100%;
    position: relative;
    z-index: 8000;
    background: var(--bg-facultatif);
    padding: 5rem 28%;
    margin-top: 5em;
    margin-bottom: 5em;
    border-radius: var(--border-radius);
    background-image: url(../images/bg-att.jpeg);
    background-size: 35%;
    background-blend-mode: color;
    background-color: #ffffffb5;
}

.contact .tab-formulaire .contenu h2 {
    text-align: center
}

.contact .plan {
    font-size: 0
}

.contact .plan .block #googlemapapi,.contact .plan iframe {
    width: 100%!important;
    height: calc(var(--taille-font) * 82) !important;
}

.contact .coordonnees {
    padding: 0 0 20px
}

.contact .coordonnees h2 {
    margin-top: calc(var(--taille-font) * 2);
}

.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;
    text-align: center;
}

.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: #ffffff9e;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    width: 100%!important;
    font-size: inherit;
    color: var(--color2);
    border-radius: var(--border-radiusC);
    border: 1px solid #0000001c;
}

.form-control:focus {
    color: #000;
    background: var(--color0)
}

.contact .formulaire .form-group textarea.form-control {
    height: calc(var(--taille-font) * 10.9);
    position: static;
    padding-top: calc(var(--taille-font) * 1.5);
    border-radius: var(--border-radiusC);
}

.contact .formulaire .form-group input.form-control {
    height: calc(var(--taille-font) * 5);
    line-height: 1;
    line-height: 50px\9;
    padding: 0 calc(var(--taille-font) * 1.2);
}

.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: calc(var(--taille-font) * 7);
    border: 1px solid var(--color1);
}

.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: calc(var(--taille-font) * 1.5) calc(var(--taille-font) * 2);
    font-family: var(--font_family_1);
    text-transform: uppercase;
    background-color: var(--color1);
    color: var(--color0);
    text-align: left;
    border-radius: var(--border-radiusB);
    font-size: calc(var(--taille-font) * 1.4);
    border: none;
    text-decoration: none;
    transition: all .4s ease;
    background-size: calc(var(--taille-font) * 2.4)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(--nuanceColor1);
    filter: brightness(1.1);
    color: var(--color1);
}

.contact .formulaire input.btn-primary:hover {
    background-image: url(../images/ico-envoyer1.svg);
}

::-webkit-input-placeholder {
    color: var(--color2)!important
}

:-moz-placeholder {
    color: var(--color2)!important;
    opacity: 1!important
}

::-moz-placeholder {
    color: var(--color2)!important;
    opacity: 1!important
}

:-ms-input-placeholder {
    color: var(--color2)!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-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: 44%;
    padding: 1em 3% 3em;
    background: var(--bg-facultatif);
    border-radius: var(--border-radiusC);
}

.img-seo img {
    border-radius: var(--border-radius);
    width: 100%;
    height: 100%;
}

.flex-seoContain .seo-content img {
    width: 100%;
    height: 100%;
}

/* Atouts */
.btn-navs .button-next,.btn-navs .button-prev {
    border: 1px solid #f3c3ae75;
    /* width: 40px; */
    /* height: 40px; */
    height: calc(var(--taille-font) * 4);
    width: calc(var(--taille-font) * 4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s linear;
    color: var(--color0);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

.btn-navs .button-next:hover, .btn-navs .button-prev:hover {
    background: var(--color1);
    color: var(--color0);
    border-color: var(--color1);
}

.btn-navs {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2em;
    flex-direction: row-reverse;
    gap: 20px;
}

.atouts-cont {
    position: relative;
    overflow-x: clip;
}

.atouts {
    padding: 6em 10%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: url(../images/banner-photo-terea02.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.atouts .h1 {
    color: var(--color0);
}

.atouts:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000;
    z-index: 0;
    opacity: 0.4;
}

.atout {
    text-align: left;
    border: 1px solid #ffffff3d;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    padding: 20px 30px;
    /* text-wrap: balance; */
    color: var(--color0);
    background: #1010101f;
    backdrop-filter: blur(25px);
    transition: all .3s linear;
    gap: 25px;
    border-radius: var(--border-radius);
    padding: calc(var(--taille-font) * 3 ) calc(var(--taille-font) * 2) !important;
}

.titre-atout {
    color: var(--color0);
    font-size: calc(var(--taille-font) * 2);
}

.atout p {
    margin: 0;
}

.atout-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.atout-img {
    height: auto;
    width: 50%;
    filter: brightness(0) invert(1);
}

.atout:hover {
    transform: translateY(-2px);
    background: var(--color1);
    border-color: transparent;
}
/* */

.gallery .bas-galerie {
    text-align: center;
    padding: 40px 0 0
}

.gallery .description-galerie {
    padding: 0 0% 40px;
    text-align: justify
}

.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: 76%;
    display: block;
    content: ''
}

.gallery .ligne-photos .propor .propor-cont {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0
}

.body-gallery-4 .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.body-gallery-4 .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 60px;
}
.gallery .ligne-photos .propor .propor-cont:hover img {
    -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  transform: scale(1.03);
}
.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-radiusC);
    -webkit-transition: all .4s cubic-bezier(.26,.62,.74,.9);
    -moz-transition: all .4s cubic-bezier(.26,.62,.74,.9);
    transition: all .4s cubic-bezier(.26,.62,.74,.9);
    will-change: transform;
}

.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
}

.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: #0000008c;
    /*! background-image: url(../images/ico-zoom.svg); */
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: var(--border-radiusC);
}

.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;
    margin: 10px 0px 63px;
    padding-right: 10px;
}
.body-gallery-4 .swiper-wrapper
ul#myTabs {}

.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;
    border-radius: var(--border-radius);
    background: transparent;
    text-decoration: none
}
.gallery .nav li a.bouton-principal:before,.gallery .nav li a.bouton-principal:after {
    display: none;
}
.gallery .nav li a.bouton-principal {
    display: flex;
    text-transform: unset;
    font-size: 0.9vw;
    font-family: var(--font_family_4);
    text-align: center;
    text-decoration: none;
    color: var(--color4);
    font-weight: normal;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin-bottom: -20px !important; */
}
.nav-pills > li > a{
    height: 100%;
}
.gallery .nav li {
  /* display: flex; */
  width: max-content;
  margin: 0;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  /* background: url(../images/toque-1.png); */
  background-size: 95%;
  background-repeat: no-repeat;
  background-position: center;
  /* height: 200px; */
  /* width: 10vw; */
  padding: 0;
  background: var(--color3);
}

.gallery .nav li.active {
    /* background: var(--color1); */
}

.gallery .nav li a {
  background: var(--color4);
  display: block;
  color: var(--color0);
  padding: 10px 10px;
  text-align: center;
  border-radius: 0;
  text-decoration: none
}

.gallery .nav li a:hover,
.gallery .nav li.active a {
  background: var(--color1);
  color: var(--color0);
}

.gallery .nav li.active a {
  cursor: default
}

.gallery .tab-content {
  padding-top: 10px;
  padding-bottom: 10px;
}

.gallery .tab-content h2 {
  padding-left: 15px;
  margin-bottom: 20px
}

.gallery .nav li a.bouton-principal:after {
    /*! content: none */
}

.gallery .nav li.active a {
    background: var(--nuanceColor1);
    color: #fff;
}

.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 {
    padding-right: 60px;
    min-width: calc(var(--taille-font) * 28);
}



.header-sidebars,.sidebar-left,.sidebar-right {
    background-color: var(--color0);
    backdrop-filter: blur(5px);
}

.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: -1px;
    width: 100%;
    box-shadow: 0 2px 3px 1px rgba(0,0,0,.1);
}

.header-sidebars .header-top {
    display: table;
    height: 65px;
    width: 100%
}

.top-logo {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 9999;
    text-align: center;
    overflow-y: hidden
}

.top-logo img {
    position: absolute;
    left: 6px;
    top: 6px;
    max-height: 53px;
    max-width: 167px;
}

.body-page-1 .top-logo img {
    /* filter: brightness(0) invert(1); */
}

.deploy-right-sidebar {
    border-left: 1px var(--color0) solid;
    display: table-cell;
    background-color: var(--color1);
    height: 65px;
    width: 65px;
    background-position: center center
}

.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: var(--color0);););
}

.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(--color1)!important;
    background: var(--color0);
    /* opacity: .3; */
}

.submenu a:first-child {
    background-image: none!important
}

.submenu {
    display: none
}

.submenu-active {
    display: block
}

.sidebar-header-right {
    height: 65px;
    background-color: var(--color1);
    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: var(--color1);
}

.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: 16.2px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    color: var(--color0);
    height: 60px;
    padding-left: 29px;
    background-position: 6px 20.9px;
    font-family: var(--font_family_1);
}

.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;
    right: 10px;
    width: 44px
}

.remonter button {
    display: block;
    padding: 6px 9px;
    text-align: center;
    border: none;
    background: rgba(0,0,0,.05);
    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(--color1);opacity: 1;width: calc(var(--taille-font) * 0.6);height: calc(var(--taille-font) *1);transition: all 0.3s ease;}

.bx-pager.bx-default-pager a.active,.bx-pager.bx-default-pager a:hover{background-color:#000;width: calc(var(--taille-font) *1.6);height: calc(var(--taille-font) * 0.8);position: relative;top: 1px;}


.vegas-timer-progress {
    background: var(--color0)
}

.icones {
    width: calc(var(--taille-font) *3.2);
    margin: 16px 0 0 16px;
    height: calc(var(--taille-font) *3.2);
    fill: var(--color0);
}

.deploy-right-sidebar .icones {
    width: 29px;
    /*! fill: var(--color1); */
}

.body-page-1 .deploy-right-sidebar .icones {
    fill: var(--color0);
}

 .body-page-1 .fixed .deploy-right-sidebar .icones {
    fill: var(--color1);
}

.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(--color1)
}

.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;
    border-radius: var(--border-radiusC);
}

.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
    }
}
/*GalaxyTabS7*/
@media only screen and (min-width: 800px) and (max-width: 1280px) and (orientation: portrait) {
    .motif-banner {
        
width: 73%;
    }
    .body-page-1 .slogan .titre {
        font-size: calc(var(--taille-font) * 4.5) !important;
    }
}

@media (max-width: 991px) {
    .atout-text span:before{
        display:none;
    }
    .atout-text:before{
        display:none;
    }

    .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;
    position: absolute;
    bottom: 0;
    left: 0;
}
    .atouts-cards img {
    width: 60px;
    /* filter: brightness(0) invert(1); */
}
    .atout-text{
        display: block;
        position: relative;
        min-height: initial;
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .atoutsContainer {
        max-width: 1610px;
        margin: 0 auto;
    }
    .Am-atouts {
    display: block;
    padding: 0;
    width: 100%;
    position: relative;
    padding: 4rem 3% 0rem;
}
    .atout-card {
    position: relative;
    transition: all .2s linear;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    justify-content: center;
    padding: 30px 20px;
    align-items: center;
    border: 1px solid #14293a6b;
}
    .atouts-cards  img {
    height: auto;
    width: 100px;
}

.atout-text p {
    font-size: 16px;
    margin: 0;
}
.atout-picto {
    position: relative;
    width: fit-content;
    );
    transition: all .3s ease;
    padding: 10px 20px;
    border: none;
}
    atout-card{
        
    }
    .description{
        padding:0;
    }
    .r-flex .recup-photos .propor:before{
        left: -4%;
    }
    .body-page-1 .fluid-contenu .corps:before{
        display: none;
    }
    .btn-liens-rs.btn-rs-center{
        justify-content:center;
    }

    :root {
    --taille-font: calc(1vw * 1.05);
    }

    .page-contenu-home h3 {
        font-size: 16px !important;
    }
    .atouts .btns-servAB {
        display: flex;
        gap: 3.8%;
    }

.atout {
    padding: 2em 3vh 2em;
}
    .nbrAB1 {
        margin-bottom: 10px;
        width: 10vw;
        height: 10vw;
    }
.atouts:before {
    /* top: 39%; */
    /* opacity: .20; */
    /* left: 0; */
}
    .atouts h2 {
        margin-bottom: 20px;
    }
    .row.r-flex .text-center {
        text-align: center;
    }
    .tarif-img img {
        width: 100%;
    }
    h3.performance-h3 {
        line-height: 23px;
    }
    
     .body-page-1 .slogan .titre {
    /* font-size: calc(var(--taille-font) * 3) !important; */
}
    .actualites .cell.texte .contenu {
        padding: 0;
    }
    .actualites .cell.photo {
        height: 500px;
    }
    .pied .bande1 {
        padding: 5rem 6% 70px !important;
    }
    .actualites {
        padding: 5em 6% !important;
    }

.actualites article {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
}

.actualites .cell.texte, .actualites .cell.photo {
    width: 100%;
}
    
    .AvisClientsBg, .realisations {
        padding: 1em 6% 5em;
    }
    .card_ms:last-child {
        margin-top: 2%;
        height: 33vh;
        width: 91%;
    }
    .container_ms .flex {
        flex-wrap: wrap;
    }
    .performance {
        padding: 4rem 5% 1rem;
    }
    section.bg-x {
        background: url(../images/bg-site.jpg) no-repeat center -119px;
    }
    
    .bloc-contenu.services.nbr-services- {
        padding: 0 5%;
    }
    .r-flex .recup-photos .propor .propor-cont .imagecont, .r-flex .recup-photos .propor .propor-cont {
        all: unset;
        margin: auto;
        display: flex;
    }

.r-flex .recup-photos .propor .propor-cont .imagecont, .r-flex .recup-photos .propor .propor-cont {position: absolute;top: 0;left: 0;bottom: 0;right: 0;}
    .r-flex .recup-photos .propor .propor-cont .imagecont .masque {
        all: unset;
    }
    .body-page-1 .corps a.bouton-principal, .body-page-1 .corps button.bouton-principal {
        margin-bottom: 30px;
    }

    .row.r-flex h1 {
        margin-bottom: 50px;
    }
    .propor.pic-2 {
        width: 100% !important;
        position: static !important;
        height: auto !important;
        display: flex;
        justify-content: center;
    }

.propor.pic-2 img {
    border-radius: var(--border-radiusC);
    width: 90% !important;
    height: auto !important;
    min-width: unset !important;
    min-height: unset !important;
}
    .row.r-flex .col-md-5 {
        top: 0;
    }
  .propor.pic-1, .qsn-titles  {
      /* display: none; */
  } 
.row.r-flex {
       display: flex;
       flex-direction: column;
       gap: 30px !important;
    }

.row.r-flex article {
    padding: 0;
}

    
    .stp-txt {
        
width: 100%;
    }

.stp-bg-p {
    width: 100%;
    height: 360px;
}

.stp-bg {
    /* background-size: 100%; */
}

.stepsAB {
    padding: 2em 5% 2em;
    flex-direction: column-reverse !important;
}
    .pied::after {
        
height: 5%;
    }
    .body-page-1 .fluid-contenu .corps {
        padding: 0em 5% 3em;
    }
    .bloc-contenu.services.nbr-services- {
    /* padding: 0; */
    }
    .flex-head {
    flex-direction: column-reverse;
    }

.flex-head-txt {
    width: 100%;
}
    .pied .scrollbars {
        height: 150px;
    }
    .body-page-1 .pied::after, .body-pageseo .pied::after, .body-contact .pied::after {
        height: 8%;
    }
    .intervention .contenu{padding: 4rem 4%;width: 100%;}
       .intervention {
        padding: 4rem 4%;
        flex-direction: column;
    }

    .atouts-pseudo:before, .atouts-pseudo:after {
        height: 10%;
    }
    .icones {
        width: 32px;
        height: 32px;
    }
        .atouts-cards {grid-template-columns: 1fr 1fr;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 {
        padding: 5em 10% 5em;
    }
    .atouts-card:nth-child(3), .atouts-card:nth-child(4) {
        margin-top: 1rem;
    }
      .atouts-card:nth-child(3) {
        margin-left: 0;
    }
    .atouts-card:first-child {
    margin: 0;
    }
    .banniere:after {
       background: #000;
       opacity: .2;
    }
    .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
    }

    .contact .formulaire .form-group>label.focus {
        bottom: auto;
        font-size: var(--taille_font);
        padding-top: 5px
    }

    .container {
        max-width: none;
        width: auto;
    }

.services .container {
    width: unset !important;
    max-width: unset !important;
}

.container {}

    .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
    }

    .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
    }

    .lb-prev {
        opacity: 1!important;
        background: url(../images/lightbox-g.png) left 48% no-repeat
    }

    .lb-next {
        opacity: 1!important;
        background: url(../images/lightbox-d.png) right 48% no-repeat
    }

    .video-accueil {
        position: static;
        width: 100%;
        height: auto;
        margin-left: 0
    }

    .banniere {
        height: 25vh !important;
        position: relative
    }

.body-page-1 .banniere {
    height: 57vh !important;
}

.body-page-1 .banniere {
    top: -62px !important;
}
     /*********/


     .realisations .row.recup-photos.gallery {
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-areas:
            "item1 item2"
            "item3 item4" !important;
        grid-template-rows: 250px 250px !important;
        grid-gap: 10px !important;
    }
       .realisations .row.recup-photos.gallery .col-md-3:last-child {
        /* display: none; */
    }
    /********/
    .pied .bande1 {
        padding: 5rem 10% 70px
    }

    .prestation .cell.texte .contenu {
        padding: 50px 10%
    }

    .contact .tab-coordonnes .cell.gauche .contenu {
        padding: 50px 7% 30px
    }

    .certifs .logo-certif img {
        background-size: contain
    }

    .fluid-contenu {
        margin: 0!important;
    }

    .slogan {
        width: 100%;
        left: 0;
        padding: 0 15px;
        top: auto
    }

  .body-page-1 .slogan {
        text-align: center;
        width: 57%;
        top: 60% !important;
        padding: 0 5% 0 5%;
    }



    .slogan .titre {
        font-size: 32px;
        line-height: 60px;
    }

    .slogan .titre span {
        font-size: 29px
    }

    .slogan .sous-titre {
        font-size: 27px;
        line-height: 54px;
    }

    .gallery .description-galerie {
        padding: 0 0 40px;
        text-align: justify
    }

    .page-contenu-home {
        padding: 0 0;
        font-size: 16px;
    }

.page-contenu-home p {
    margin-bottom: 10px;
}

    .certifs .cell.gauche .contenu {
        padding: 0 0
    }

    .intervention .contenu {
        /* padding: 0 0; */
    }

.intervention .map {
    width: 100%;
    height: 300px !important;
}

    .actualites .cell.texte .contenu {
        /* padding: 0 0; */
    }

.actualites {
    padding: 8em 6%;
}

    .bande_contact_footer {
        padding: 0
    }

    .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) {
    .ms-flex-2 img{
        width: 160px;
    }

.ms-flex-2 {
    display: flex;
    flex-direction: column;
}

    .body-gallery-4 .grid-item {
  width: calc(50% - 10px) !important; 
  /*! padding: 10px; */
  box-sizing: border-box;
}
    .gallery .nav li {
  display: flex;
  width: auto;
  margin: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../images/toque-1.png) !important;
  background-size: 90% !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  height: 164px;
  width: 47%;
  padding: 7px 7px;
}
    .gallery .nav li a.bouton-principal {
    display: flex;
    text-transform: unset;
    font-size: 10px;
    font-family: var(--font_family_4);
    text-align: center;
    text-decoration: none;
    color: var(--color6);
    font-weight: normal;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: -20px !important;
}
    .pied .bande2 .row {
    border-top: 1px solid var(--color4);
    padding-top: 5px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding-bottom: 2em;
}
    .body-page-1 .fluid-contenu .corps:before{
    content: '';
    width: 100% !important;
    height: 74%;
    position: absolute;
    background: var(--color3);
    top: 18% !important;
    right: 0 !important;
    /* border-radius: 40px 5px 40px 5px; */
}
      :root {
    --taille-font: calc(1vw * 2);
          
  }

    .contact .formulaire .form-group input.btn-primary {
        text-align: center;
        background-image: none;
        padding: calc(var(--taille-font) * 1.5) calc(var(--taille-font) * 2);
    }


    .news .date_post {
        
font-size: 11px;
        
padding: 3px;
    }

.news .date_post .s1 {
    font-size: 24px;
}

 .newsList .col-lg-6 {
     padding: 0;
 }

.body-news-list .corps .col-lg-10 {
    padding: 0;
}   
    .atouts:before {
        /* top: 43.5%; */
        /* left: 0; */
    }
    .atout {
        padding: 2em 1vh 2em;
    }

.atouts .btns-servAB {
    gap: 6%;
}
    .atout p {
        font-size: 13px;
    }
    .nbrAB1 {
        font-size: 26px;
        height: 70px;
        width: 70px;
        margin-bottom: 11px;
    }
    .h1:before,h1:before {
        /* height: 18px; */
        bottom: -19px;
        margin-left: -4vw;
        width: 10vw;
    }
    .row.r-flex {
        gap: 0 !important;
        padding-top: 0;
        padding-bottom: 1em;
    }
.pied .copyright-footer {
    
margin-bottom: 28px;
}
    .body-page-1 .fluid-contenu {
        margin-top: -52px !important;
    }
    .formula {
        
font-size: 13px;
    }
    .row.r-flex .text-center {
        text-align: center;
    }

    .performance {
    padding: 4rem 2% 1rem;
}

    h3.performance-h3 {
        font-size: 14px;
    }
    .performance-icon_wrapper {
        width: 6rem;
        height: 6rem;
        margin-bottom: 0;
    }

     .performance-item, .body-gallery-1191 .performance-item {
        width: 50%;
        padding: 1rem;
    }

    

    .container_ms .flex {
        flex-wrap: unset;
        flex-direction: column;
        gap: 16px;
        padding: 0 5%;
    }

.card_ms {
    width: 100%;
    height: auto;
}

.card_ms:last-child {
    margin: 0;
    height: unset;
    width: 100%;
}
    .body-page-1 .slogan .titre {
        /* font-size: 19px; */
        font-size: calc(var(--taille-font) * 5.5);
        /* line-height: 28px; */
    }

.body-page-1 .slogan {
    width: 100%;
}
    .motif-banner {
        width: 83%;
        right: -9%;
    }
    .stepsAB {
    /* flex-direction: column !important; */
    }

.stp-bg-p, .stp-txt {
    width: 100%;
}
    .pied::after {
        
height: 2%;
    }

    .atouts-pseudo:before, .atouts-pseudo:after {
        height: 6%;
    }
    .AvisClientsBg a.bouton-principal {
        width: calc(var(--taille-font) *33);
    }

    .pied .scrollbars {
        height: 215px;
    }
.intervention {
    padding: 0rem 0%;
    border-radius: 0;
    gap: 0;
}
    .banner-title {
        font-size: 23px;
        width: 100%;
        text-align: center;
    }

.banner-text {
    width: 100%;
}
    .special-banner {
        flex-direction: column;
        gap: 18px;
        padding: 2rem 0;
    }
    .realisations .row.recup-photos.gallery .col-md-3:nth-child(3), .realisations .row.recup-photos.gallery .col-md-3:nth-child(4) {
    margin-top: 10px;
}
    .bloc-contenu.services.nbr-services- {
        padding: 0 5%;
    }
    div.title {
        width: 88%;
    }
div.title h3 {
    font-size: 13px;
}
.flex-head .text-center {
    text-align: center;
}    
.page-contenu-home {
    text-align: left;
    font-size: 13px;
}

.page-contenu-home h3, .page-contenu-home {
    font-size: 13px !important;
    text-align: justify;
}

.body-page-1 .corps .page-contenu h2:first-of-type {
    letter-spacing: 0;
    /*! font-size: 25px; */
}

.page-contenu-home li p, .page-contenu-home p {
    text-align: justify;
}


    ul li:before {
        
top: 2px;
    }

    .atouts {
        padding: 3em 5% 3em;
    }
    .atouts-cards {
    grid-template-columns: 1fr;
}

    .atouts-card {
    margin-left: 0;
    margin-top: 1rem;
}
    .flex-head-img img {
        display: none;
    }

    .corps {
        --taille_font:16px;
        font-size: var(--taille_font)
    }

    .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 {
        margin: 0!important
    }

    .nopad-xs {
        padding-left: 0!important;
        padding-right: 0!important
    }
    .body-gallery .nav-pills {
  margin-bottom: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
    .nopad-xs-l {
        padding-left: 0!important
    }

    .nopad-xs-r {
        padding-right: 0!important
    }

    .h1,h1 {
        font-size: 20px;
        line-height: 22px
    }

.prestation .cell.texte .contenu h2.h1 {
    font-size: calc(var(--taille-font) * 2);
}

.intervention h2 {
    text-align: center;
}

.intervention h2:before {
    left: 50%;
    margin-left: calc(var(--taille-font) * -3.7);
}

.flex-head-txt h1 {
    text-align: center;
}

.flex-head-txt h1::before {
    left: 50%;
    margin-left: calc(var(--taille-font) * -3.7);
}

    .titre-secondaire {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
    }

.intervention .titre-secondaire {
    text-align: center;
}

.flex-head-txt .titre-secondaire {
    text-align: center;
}

   /* .body-page-1 .slogan {
        position: absolute;
        background: var(--color1);
        width: 100%;
        text-align: center;
        padding: 15px;
        bottom: 0;
        top: auto
    }*/

    .slogan {
        text-align: center
    }

    .slogan .titre {
        font-size: 27px;
        line-height: 24px;
    }

.slogan h1 {
    text-align: center;
}

    .slogan .titre span {
        font-size: 23px
    }

    .slogan .sous-titre {
        font-size: 18px;
        line-height: 27px;
    }

.body-page-1 .slogan .sous-titre {
    position: relative;
    top: 5px;
    letter-spacing: 1px;
    font-size: 18px;
}

    .fluid-contenu .corps {
        padding: 20px 15px 40px;
    }

.body-page-1 .fluid-contenu .corps {}

.body-page-1 .fluid-contenu .corps {
    padding: 2em 4% 3em;
}

    .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: 5px
    }

    .certifs {
        display: block
    }

    .certifs .cell.gauche {
        display: block;
        width: 100%
    }

    .certifs .cell.gauche .contenu {
        padding: 30px 15px 40px
    }

    .certifs .cell.droite {
        display: block;
        width: 100%;
        padding: 0 15px 30px
    }

    .certifs .cell.droite .bg-noir {
        padding: 40px 0
    }

    .cont-slider .controls {
        bottom: -20px
    }

    .services {
        display: block
    }

    .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: 3em 5% 5em;
    }

.realisations .row.recup-photos.gallery {
    grid-template-rows: 150px 150px !important;
    gap: 0 !important;
}

    .realisations .propor {
        margin-bottom: 5px
    }

    .AvisClientsBg .contenu,.realisations .contenu {
        /* padding: 30px 15px 40px; */
    }

    a.bouton-principal,button.bouton-principal {
        /* padding: 13px 40px 13px 20px !important; */
    }

    .intervention .contenu {
        padding: 40px 15px 50px;
        border-radius: 0;
        font-size: 14px;
        line-height: 1.64;
    }

    .intervention ul {
        column-count: 1;
        width: 100%
    }

    .AvisClientsBg {
        padding: 40px;
        padding-bottom: 35px;
    }

    .temoignageScroll {
        max-height: 135px
    }

    .temoignageScroll {
        max-height: 135px
    }

    .note-avis {
        flex-wrap: wrap
    }

    .bande_contact_footer .row1 {
        padding: 2rem 8%
    }

    .divAvis {
        width: 100%
    }

    .pied .bande1 {
        padding: 70px 15px 30px;
    }

    .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 0 0
    }

    .contact .tab-coordonnes {
        display: block
    }

    .contact .tab-coordonnes .cell.gauche {
        display: block;
        width: 100%;
        border: none
    }

    .contact .tab-coordonnes .cell.gauche .contenu {
        padding: 0 15px 30px
    }

    .contact .tab-coordonnes .cell.centre {
        display: block;
        width: 100%
    }

    .contact .tab-coordonnes .cell.droite {
        display: block;
        width: 100%;
        height: 180px
    }

    .contact .plan .block #googlemapapi,.contact .plan iframe {
        height: 250px!important
    }

    .contact .tab-formulaire {
        display: block;
        padding: 5rem 8%
    }

    .contact .coordonnees {
        padding: 0
    }

    .gallery .description-galerie {
        padding: 0 15px 20px
    }

    .actualites,.prestation {
        display: block;
        padding: 1em 3% 3em !important;
    }

    .actualites .cell.photo,.prestation .cell.photo {
        display: block;
        width: 100%;
        height: 180px
    }

.actualites .cell.photo {
    height: 250px;
}

    .actualites .cell.texte,.prestation .cell.texte {
        display: block;
        width: 100%;
        clear: both
    }

    .actualites .content {
    font-size: 14px;
    }

    .actualites .cell.texte .contenu,.prestation .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
    }

    .gallery .nav li {
        margin-bottom: 0;
        background: 0 0;
    }

    .gallery .description-galerie {
        padding: 0 0 40px;
        text-align: justify
    }

    .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
    }

.body-service-list h1, .body-service h1 {
    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;
        margin-bottom: 53px;
    }

    .titre-secondaire {
        font-size: 17px;
        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%
    }
}

.swiper-slide > .hero-img {
    transition-duration: 0.8s;
    transform: scale(1.1);
    opacity: 0;
}

.swiper-slide-active > .hero-img {
    opacity: 1;
    transform: scale(1);
}

.hero {
    position: relative;
}

.hero .overlay-black {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: hsl(var(--clr-black), 0.75);
    z-index: 3;
}

.container-ms {
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.hero-img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
}

.hero-super {
    position: absolute;
    bottom: 88px;
    left: 40px;
    color: #fff;
    font-size: 44px;
    font-weight: 600;
    line-height: normal;
    z-index: 3;
    transition-delay: 0.2s;
}

.hero .nav-carousel .button-prev, .hero .nav-carousel .button-next {
    transition: transform 0.3s ease-in-out;
}

.hero .nav-carousel .button-prev:hover, .hero .nav-carousel .button-next:hover {
    transform: scale(1.1);
}

.hero .nav-carousel .pagination > .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: hsl(var(--clr-white), 0.5);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.hero .nav-carousel .pagination > .swiper-pagination-bullet-active {
    background-color: hsl(var(--clr-white));
    width: 48px;
    border-radius: 16px;
}

.hero .nav-carousel .pagination > .swiper-pagination-bullet:hover, .hero .nav-carousel .pagination > .swiper-pagination-bullet-active:hover {
    background-color: hsl(var(--clr-white));
}
.body-gallery-4 .grid-item {
  width: 24%; 
  /*! padding: 10px; */
  box-sizing: border-box;
}
.grid-item {
    width: calc(33.333% - 10px);
    overflow: hidden;
    margin: 5px;
    border: 5px solid var(--color0);
}
.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out;
    min-height: 200px;
    border-radius: 5px;
}

.grid-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .grid-item {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .grid-item {
        width: calc(50% - 10px);
    }
}
@media (min-width: 2000px) {
   .gallery .nav li{
           height: 342px;
   }
}

.body-gallery-4 .gallery-container {
  overflow: hidden;
}