:root {
    --color0: #ffffff;
    --color2: #183431;
    --color1: #d2ab76;
    --color3: #f1ece5;
    --color4: #eef1f7;
    --font_family_1:
    'Inter-Regular',sans-serif;
    --font_family_2:
    'Playfair Display',sans-serif;
    --taille_font: clamp(1.3rem, 0.8vw, 2.2rem);
    --border-radius: 0rem;
}

.corps .page-contenu h2:first-of-type {
    color: var(--color0)
}

.flex-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.flex-contact iframe {
    width: 50%;
}

.formulaire.contact-footer {
    padding: 5em 0;
}

/***service**/

.service-bloc {
    position: relative;
    overflow: hidden;
    width: 100%
}

.bloc-contenu.services {
    padding: 10vh 10%;
}

.bloc-contenu.services .container {
    overflow: hidden;
    width: 100%;
}

/* SWIPER LISTE SERVICES */
.liste-services {
    margin-top: 40px;
}

.service-card {
    height: 50vh;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.service-card-inner {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-card-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, var(--color2), var(--color2));
    opacity: 0;
    transition: opacity 1s ease;
}

.service-card-inner:hover {
    transform: translateY(-5px);
}

.service-card-inner:hover::before {
    opacity: 0.5;
}

/*  --- CONTENT: TITRE + BOUTON -- */
.card-body {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 9vh;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.card-title {
    position: absolute;
    left: 1vw;
    bottom: 7vh;
    z-index: 3;
    font-size: calc(var(--taille_font) * 1.3);
    font-family: var(--font_family_2);
    color: var(--color0);
    text-align: start;
}

.btn-card {
    position: absolute;
    left: 1vw;
    bottom: 3vh;
    padding: 0 !important;
    margin: 0;
    width: 100% !important;
    background: none;
    border: none;
    text-decoration: none;
    text-transform: initial;
    color: var(--color0);
    transition: 0.3s ease;
    z-index: 2;
}

.btn-card::before {
    content: "";
    width: 4%;
    height: 1px;
    background: var(--color0);
    display: inline-block;
    margin-right: 11px;
    position: relative;
    top: -4px;
    transition: width 0.4s ease;
}

.service-card:hover .btn-card::before {
    width: 15%;
}

/* --- SWIPER NAVIGATION --- */
.btns-swipper {
    margin-top: 2vh;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    background: transparent;
    color: var(--color1);
    gap: .7em;
    justify-content: center;
}

.btns-swipper .swiper-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--color2);
    color: var(--color2);
    border-radius: var(--border-radius);
    transition: 0.3s ease;
}

.AvisClientsBg .btns-swipper .swiper-button {
    /* border: 1px solid var(--color0); */
    /* color: var(--color0); */
}

.btns-swipper .swiper-button.next {
    right: 0;
}

.btns-swipper .swiper-button.prev {
    left: 0;
}

.btns-swipper .swiper-button i {
    font-size: var(--taille_font);
}

.btns-swipper .swiper-button:hover {
    border: 1px solid var(--color1);
    color: var(--color1);
}

.modal-content {
    background-color: var(--color2);
}

.formulaire #add-review .form-group .form-control, .formulaire #add-review .form-group input, .formulaire #add-review .form-group textarea{
    background: var(--color2) !important;
}

.flex-row {
    display: flex;
    flex-direction: row;
    gap: 2em;
}

.flex-row .map {
    width: 60%;
}
.text-logo a {
    text-decoration: none !important;
    font-size: 6vh;
    font-family: var(--font_family_2);
}

.top-logo p.text-logo {
    text-align: left;
    padding: 0 1em;
    font-size: 20px;
    font-family: var(--font_family_2);
}

a.top-logo {
    text-decoration: none !important;
}

.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 3.5vw;font-size: calc(var(--taille_font) + .7rem);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(--color1);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;} 
.corps blockquote {font-size: inherit;background: var(--color4);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 } img { max-width: 100% }
ol,ul { list-style-position: inside; list-style-type: none; list-style-image: none }
ol li,ul li { background: url(../images/ico-puce.svg) no-repeat 0 center; padding-left: 1.5rem; background-size: 0.7rem auto }
ol li.niveau2,ul li.niveau2 {margin-left: 3.0rem}
dir,menu { padding-left: 1.5rem}

blockquote p {
    font-size: inherit
}

table,table td,table th {
    font-size: inherit;
    border: 0.1rem solid #7c7c7c
}

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
}

.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;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.right {
    text-align: right
}

.left {
    text-align: left
}

.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: -1.5rem!important;
    margin-right: -1.5rem!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: 0.1rem;
    margin: -.5em 0;
    padding: 0;
    color: var(--color4);
    background-color: var(--color4);
    border: 0
}

.page-contenu img {
    margin: 1.0rem
}

body {
    color: var(--color2);
    font-family: var(--font_family_1);
    font-size: var(--taille_font);
    background: var(--color0)
}

.formulaire h2 {
    color: var(--color1);
    text-transform: uppercase;
}

.pageTitle {
    padding: 8.0rem 0 6.0rem;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
}

.pageTitle strong {
    position: relative;
    font-size: 1.563vw;
    font-family: var(--font_family_2);
    color: var(--color0);
}

.pageTitle:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    opacity: .5;
    background: var(--color2);
}

a,a:link,a:visited {
    color: var(--color2);
    text-decoration: underline
}

a:hover {
    text-decoration: none
}

.corps a:hover {
    color: var(--color1)
}

a:active {
    outline: 0
}

.h1,.h2,.h3,h1,h2,h3,h4,h5,h6 {
    color: var(--color2);
    font-family: var(--font_family_2);
}

.h1,h1 {
    font-size: 2.2vw;
    line-height: 1;
    color: var(--color1);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 6.0rem;
    position: relative;
    font-family: var(--font_family_2);
}

.h1:before,h1:before {
    content: "";
    width: 7.5rem;
    height: 0.2rem;
    background: var(--color1);
    position: absolute;
    bottom: -2.0rem;
    left: 50%;
    margin-left: -3.7rem
}

.h2,h2 {
    font-size: calc(var(--taille_font) + .7rem)
}

.h3,h3 {
    font-size: calc(var(--taille_font) + .5rem)
}

h4 {
    font-size: calc(var(--taille_font) + .3rem)
}

h5 {
    font-size: calc(var(--taille_font) + .1rem)
}

h6 {font-size:var(--taille_font); }

.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: .83vw;
    line-height: 1.6;
    padding: 0.8rem 0 0;
    margin: 0;
    color: var(--color2);
    font-family: var(--font_family_1);
    text-align: center;
    margin-bottom: 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: .1vw;
}

.hvr-shutter-out-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 0.1rem rgba(var(--color2),0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    background-color: transparent;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: .3s;
    transition-duration: .3s
}

.hvr-shutter-out-horizontal.active {
    background-color: var(--color1)
}

.hvr-shutter-out-horizontal:before {
    content: "";
    position: absolute;
    transition-duration: .8s;
    width: 200%;
    height: 200%;
    top: 110%;
    left: 39%;
    background: var(--color2);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}

.AvisClientsBg .hvr-shutter-out-horizontal:before {
    background-color: var(--color0);
}

.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_2);
    font-weight: 400;
    color: var(--color0);
    text-decoration: none;
    text-transform: uppercase;
    line-height: 2.3rem;
    font-size: 1.4rem;
    -webkit-user-select: none;
    user-select: none;
    -moz-user-select: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 1.8rem 2.4rem;
    transition: all .3s ease-out 0s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
    background: var(--color1);
}

.AvisClientsBg .bouton-principal:hover {
    color: var(--color2);
}

.body-page-1 .corps a.bouton-principal,.body-page-1 .corps button.bouton-principal {
    margin: 1.5rem 1em 5.0rem
}

a.bouton-principal:hover:before {
    top: -40%;
    left: -21%;
}

.main-page {
    position: relative;
    overflow: hidden
}

.tete {
    position: relative;
    background: var(--color3);
    z-index: 9999;
    width: 100%;
    top: 0;
    left: 0;
    right: 0
}

.tete .header {
    display: inline-block;
    width: 100%;
    position: relative;
    background: var(--color3);
    text-align: center;
    -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)
}

.fixed-menu.header {
    position: fixed;
    top: 0;
    padding: 0;
    -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);
    background: var(--color3);
    /* box-shadow: 0 1.0rem 1.5rem rgba(25,25,25,.1); */
    border-bottom: 1px solid #0e104b0f;
}

.fixed-menu.header .contain-row-fixed {
    display: table;
    width: 100%
}

.fixed-menu .contain-row-fixed {
    padding: 0 9%
}

.fixed-menu.header .row-fixed {
    position: relative;
    display: table-cell;
    vertical-align: middle
}

.fixed-menu.header .row-fixed:nth-child(1) {
    text-align: left
}

.fixed-menu.header .row-fixed:nth-child(2) {
    text-align: right
}

.fixed-menu.header .row-fixed .logo-site {
    padding: 1.1rem 0;
}

.fixed-menu.header .row-fixed .logo-site img {
    width: 10.0rem;
    height: auto
}

.tete .header:after {
    content: '';
    position: absolute;
    bottom: -4.0rem;
    left: 0;
    width: 100%;
    height: 4.2rem;
    -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);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.2rem 50vw 0;
    border-color: var(--color3) transparent transparent
}

.tete .fixed-menu.header:after {
    z-index: -1;
    bottom: 0;
    -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);
    border-color: var(--color3) transparent transparent;
    /* opacity: 0; */
}

.tete .before-menu {
    position: relative;
    display: inline-block;
    width: 100%;
    border-bottom: 0.1rem solid var(--color3);
    padding: 0 7%;
    background-color: var(--color2);
}

.tete .before-menu .cell-infos {
    display: inline-block;
    padding: 1.0rem 0 0
}

.tete .before-menu .tel_info .tel {
    position: relative;
    font-family: var(--font_family_1);
    color: var(--color0);
    font-size: 0.729vw;
    cursor: pointer;
    -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);
    background-size: 1.6rem auto!important
}

.tete .before-menu .tel_info .tel.active {
    cursor: inherit
}

.imagecont.noflicker.img1 {
    margin-bottom: 2vh;
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 100%;
    position: relative;
    display: block;
    height: 28vh;
}

.tete .before-menu .tel_info .tel:hover span.t_affiche {
    color: var(--color3)
}

.tete .before-menu .d_devis a {
    position: relative;
    display: block;
    font-family: var(--font_family_1);
    color: var(--color0);
    text-decoration: none;
    font-size: 0.729vw;
    -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)
}

.tete .before-menu .d_devis a:hover {
    color: var(--color3)
}

.tete .logo-site {
    margin: 0;
    padding: 2.4rem 0 2.3rem;
}

.tete .logo-site a {
    font-size: 1.5rem;
    text-decoration: none
}

.tete .logo-site a:focus,.tete .logo-site a:hover {
    color: var(--color1);
    text-decoration: none
}

.tete .logo-site a img {
    height: 9.0rem;
    width: inherit
}

.tete .infos {
    background: #f0f0f0;
    display: inline-block;
    height: 9.0rem;
    padding: 2.5rem 3.0rem 0
}

.tete .infos.infos_small {
    display: block;
    width: 120%;
    padding: 0.3rem;
    height: 3.8rem;
    position: relative;
    left: -20%
}

.tete .infos .tel {
    display: inline-block;
    vertical-align: top;
    font-size: 1.8rem;
    color: var(--color1);
    padding: 0.5rem 2.0rem 0 3.0rem;
    margin: 0;
    font-weight: 900
}

.tete .infos .tel a {
    color: inherit;
    text-decoration: none
}

.sidebar-scroll-right .callTracker {
    width: 100%;
    height: 5.0rem
}

.callTracker {
    position: relative
}

.callTracker a,.callTracker span {
    display: inline-block;
    text-align: left;
    min-width: 7.552vw;
    padding: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    height: 100%;
    line-height: 1.64em;
    text-decoration: none
}

.callTracker .t_phone {
    opacity: 0;
    display: none
}

.callTracker .t_affiche {
    cursor: pointer
}

header .callTracker a,header .callTracker span {
    top: 0.5rem;
    color: var(--color0);
}

header .callTracker .t_affiche:hover {
    color: var(--color1)
}

.callTracker.active .t_phone {
    opacity: 1;
    display: inline-block
}

.callTracker.active .t_affiche {
    opacity: 0;
    display: none
}

.coordonnees .callTracker a,.pied .callTracker a {
    position: relative;
    left: 0
}

.pied .callTracker:not(.active) span.t_affiche:hover {
    color: var(--color1)
}

.tete .widget-partage {
    display: none
}

.btn-partage .btnp {
    width: 3.6rem;
    height: 3.6rem;
    display: flex;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all .4s ease;
    text-align: center;
    border-radius: 0.7rem;
    align-content: center;
    justify-content: center;
    align-items: center;
    float: left;
}

.tete .infos.infos_small .btn-partage .btnp {
    width: 2.9rem;
    height: 2.9rem
}

.tete .before-menu {
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.tete .before-menu .small-menu {
    position: relative;
    margin-top: -5.0rem
}

.tete .before-menu.hide-small-menu {
    margin-top: -4.5rem;
    display: block
}

.tete .before-menu.show-small-menu {
    margin-top: 0;
}

.btn-partage .btnp:hover {
    transform: rotate(360deg)
}

.copyright {
    
}

.tete .btn-partage {
    padding: 0.4rem 0 0;
    display: inline-block;
    text-align: center
}

.navh {
    margin: 0;
    z-index: 8000;
    display: inline-block
}

.navh .menu_principal {
    margin: 0;
    padding: 0;
    list-style: outside none;
    display: table;
    width: 100%
}

.navh .menu_principal>li {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 0;
    background: 0 0
}

.navh .menu_principal li:after {
    /* content:'/'; */
    position: absolute;
    right: 0;
    top: 0;
    color: var(--color0)
}

.navh .menu_principal li:last-child:after {
    display: none
}

.navh .menu_principal a,.navh .menu_principal a:visited {
    color: var(--color2);
    display: block;
    font-size: var(--taille_font);
    padding: 0 2.2rem;
    font-size: .9vw;
    text-decoration: none;
    font-family: var(--font_family_2);
    transition: all .4s ease
}

.navh .menu_principal a:hover,.navh .menu_principal li.active>a {
    color: var(--color1)
}

.navh .menu_principal li.active>a:hover {
    cursor: default
}

.fluid-contenu {
    position: relative;
    z-index: 10;
    background: var(--color0)
}

.body-page-1 .fluid-contenu {
}

.fluid-contenu .corps {
    padding: 7.0rem 0
}
.body-pageseo .fluid-contenu .corps {
    padding: 7.0rem 7% 7.0rem  !important;
}
.body-pageseo .fluid-contenu .corps .container {
    width: 100%;
}
.body-page-1 .fluid-contenu .corps {
    padding: 16.0rem 14% 11.0rem  !important;
    background: var(--color2);
}

.body-page-1 .fluid-contenu .corps .page-contenu, .body-page-1 .fluid-contenu .corps h3 {
    color: var(--color0);
    
}

.body-page-1 .fluid-contenu .corps .page-contenu {
    padding: 0 1em;
}

.body-page-1 .fluid-contenu .corps .page-contenu ul br {
    display: none
}

.body-service-list .fluid-contenu .corps {
    padding: 7.0rem 0 0
}

.banniere {
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: var(--border-radius);
}

.banniere img {
    object-fit: cover;
    -o-object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    flex: 1;
    height: 100%;
    border-radius: var(--border-radius);
}

.block-texte {
    position: relative;
    display: table;
    width: 100%
}

.block-texte .cell-banniere {
    position: relative;
    display: table-cell;
    vertical-align: top;
    width: 21%;
}

.block-texte .cell-article {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 1rem 3% 0;
}

.block-texte .cell-article h1,.block-texte .cell-article h1 .titre-secondaire {
    text-align: left
}

.block-texte .cell-article h1:before {
    left: 0;
    margin: 0
}

.cta {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.0rem;
    justify-content: center;
    height: 100%;
    margin: 2em 0;
    font-weight: 700;
    align-content: center;
}

p.tel-header.bouton-principal.hvr-shutter-out-horizontal {
    margin: 0 0 0;
    font-family: var(--font_family_2);
    color: var(--color0);
    text-decoration: none;
    text-transform: uppercase;
    line-height: 2.3rem;
    font-size: 1.4rem;
    -webkit-user-select: none;
    user-select: none;
    -moz-user-select: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 1.8rem 2.4rem;
    transition: all .3s ease-out 0s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
    background: var(--color1);
}

.cta a.bouton-principal {
    margin: 0 0;
}

p.tel-header.bouton-principal.hvr-shutter-out-horizontal:hover:before {
    top: -40%;
    left: -21%;
}

p.tel-header.bouton-principal.hvr-shutter-out-horizontal:hover {
    color: var(--color0);
}

p.tel-header.bouton-principal span {
    min-width: 12.4rem;
    text-align: center;
}

.certifs {
    display: block;
    width: 100%;
    position: relative;
    z-index: 8000;
    background: var(--color0);
    padding: 4.5rem 0
}

.certifs .texte-certifs .contenu p {
    
}

.certifs .logo-certifs {
    position: relative;
    padding: 3.0rem 12% 2.0rem;
}

.certifs .swiper-slide {
    text-align: center;
}

.certifs .swiper-slide .img-swiper {
    position: relative;
    display: inline-block;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: 60% auto;
    -moz-background-size: 60% auto;
    background-size: 60% auto;
    background-color: var(--color0);
    padding: 1.0rem;
    border-radius: var(--border-radius);
    border: 0.1rem solid var(--color1);
}

.certifs .swiper-slide img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    display: block;
}

.certifs .swiper-button-prev, .certifs .swiper-container-rtl .swiper-button-next, .atouts .swiper-button-prev, .atouts .swiper-container-rtl .swiper-button-next {
    background-image: url(../images/dd2.svg);
    left: 0;
    margin-top: -2.2rem;
    filter: contrast(0) brightness(0);
    opacity: .8
}

.certifs .swiper-button-next, .certifs .swiper-container-rtl .swiper-button-prev, .atouts .swiper-button-next, .atouts .swiper-container-rtl .swiper-button-prev {
    background-image: url(../images/gg2.svg);
    right: 0;
    margin-top: -2.2rem;
    filter: contrast(0) brightness(0);
    opacity: .8
}

.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
}

.slogans-accueil {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 9.0rem 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed
}

.slogans-accueil .container:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--color2);
    opacity: 0.5;
    z-index: 0;
}

.slogans-accueil .slogan {
    position: relative;
    display: block;
    line-height: 3.0rem;
    background: url(../images/icon-logo.svg) no-repeat center top;
    padding-top: 5.5rem
}

.slogans-accueil .slogan .titre {
    display: block;
    font-family: var(--font_family_2);
    font-weight: 400;
    font-size: 2.302vw;
    color: var(--color0);
    margin: 0 0 .5em;
}
.slogans-accueil .container {
    width: 100%;
}

.slogans-accueil .slogan .sous-titre {
    display: block;
    line-height: 3.1rem;
    font-family: var(--font_family_1);
    font-weight: 400;
    font-size: 2.8rem;
    color: var(--color0);
}

.actualites-contain {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 7.0rem 0;
}

.actualites {
    display: table;
    width: 100%;
    position: relative;
    z-index: 8000
}

.actualites h2.h1 {
    margin: 0 0 7.5rem
}

.actualites article {
    display: table;
    width: 100%;
}

.actualites:nth-child(even+1) {
    direction: rtl
}

.actualites .cell.photo img {
    object-fit: cover;
    -o-object-fit: cover;
    min-width: 100%;
    min-height: 50%;
    width: auto;
    flex: 1
}

.actualites .cell.photo {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    background-position: center center;
    position: relative;
    border-radius: var(--border-radius);
}

.actualites .cell.photo:hover {
    opacity: .95;
    filter: alpha(opacity=95)
}

.actualites .cell.texte {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    border-bottom: 0.2rem solid var(--color4)
}

.actualites:last-child .cell.texte {
    border-bottom: none
}

.actualites .cell.texte .contenu {
    padding: 4vh 10%;
    
    direction: ltr
}

.actualites .cell.texte .contenu .titre-secondaire {
    color: var(--color2);
    font-family: var(--font_family_2);
    display: inline-block;
    text-align: left;
    padding: 0 0 1.5rem;
    border-bottom: 0.1rem solid #b3b3b3;
    margin-bottom: 1.0rem
}

.actualites .cell.texte .contenu .titre-secondaire a {
    text-decoration: none;
    color: var(--color2)
}

.actualites .cell.texte .contenu ul {
    padding: 0;
    margin: 0
}

.actualites .cell.texte .contenu ul li {
    padding: 0.5rem 0 0.5rem 2.0rem;
    background: url(../images/ico-puce.svg) no-repeat 0 0.9rem;
    background-size: 0.7rem auto
}

.actualites .cell.texte .contenu ul li .bouton-principal {
    display: block
}

.actualites a.bouton-principal,.news a.bouton-principal {
    min-width: fit-content;
    margin: 2.5rem 0
}

.actualites .date_post,.news .date-article {
    font-size: 1.5rem;
    color: var(--color3);
    font-family: var(--font_family_2);
    /* box-shadow: 0 0 0.5rem #bfbfbf; */
    padding: 0.5rem 1.5rem;
}

.actualites .cell.photo a {
    display: inline-block;
    text-decoration: none;
    background: var(--color0);
    margin: 1.0rem;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: var(--border-radius);
}

.actualites a.bouton-principal.all-actus {
    font-family: var(--font_family_1);
    color: var(--color3);
    background-image: url(../images/fleche-btn.svg);
    background-repeat: no-repeat;
    background-position: 1.0rem 50%;
    background-color: transparent;
    padding-left: 6.0rem;
    border: 0;
    font-size: 1.6rem;
    margin: 4.0rem 0 3.0rem;
    -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)
}

.actualites a.bouton-principal.all-actus:hover {
    background-position: 3.0rem 50%
}

.actualites a.bouton-principal.all-actus:before {
    display: none
}

.actualites .cell.texte .contenu .date-noimg {
    position: relative;
    display: inline-block;
    width: 100%
}

.actualites .cell.texte .contenu .date-noimg .titre-secondaire {
    float: left
}

.actualites .cell.texte .contenu .date-noimg .date_post {
    float: right
}

.actualites .cell.texte .contenu .date-noimg .date_post span {
    display: inline-block
}

.news .date-article,.news .ligne-actus .date-article {
    position: absolute;
    margin: 1.0rem;
    z-index: 10;
    background: #ffffff;
    padding: 0.7rem 1.0rem;
    /* box-shadow: 0 0 0.5rem #bfbfbf; */
    border-radius: var(--border-radius);
    backdrop-filter: blur(0.5rem);
}

.date-article span {
    position: relative;
    display: block;
    text-align: center
}

.date-article .time_day {
    color: var(--color2)
}

.date-article .time_month {
    color: var(--color2);
    text-transform: uppercase;
    font-size: 1.3rem;
}

.date-article .time_year {
    color: var(--color1);
}

.news .date-noimg .date-article {
    position: relative;
    float: left;
    margin: 0
}

.news .date-noimg .date-article span {
    display: inline-block
}

.news .date-noimg .btn-partage {
    float: right
}

.news .contenu-article {
    display: block;
    margin-top: 1.0rem;
    
}

.news .detail-actu {
    position: relative;
    display: block
}

.news .detail_actu-img {
    position: relative;
    width: 50%;
    float: left;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem
}
.div-rs b {
    margin-right: 2rem;
    float: left;
}
.news .detail_actu-txt {
    position: relative;
    display: block
}

.news .detail_actu-txt .btn-partage {
    display: flex;
    text-align: left;
    position: relative;
    top: -0.4rem;
    align-content: center;
    column-gap: 1px;
}

.div-rs {
    margin-top: 2.0rem;
    margin-bottom: 2.0rem;
}

.news .detail_actu-txt .btn-partage .btnp,.news .detail_actu-txt .btn-partage .btnp:hover {
    background-color: var(--color1)
}

 a.retour-news {
    font-family: var(--font_family_1);
    color: var(--color0) !important;
    /* background: 0 0; */
    padding-left: 6.0rem;
    border: 0;
    font-size: 1.6rem;
    margin: 4.0rem 0 3.0rem;
    -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);
    position: relative
} 

a.retour-news::before {
    content: "";
    position: absolute;
    width: 2.2rem;
    background-image: url(../images/fleche-btn.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    height: 2.9rem;
    top: 0.8rem;
    left: 2.5rem;
    transform: rotate(180deg);
    background-color: transparent;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    filter: brightness(0) invert(1);
}

a.retour-news:active,a.retour-news:focus,a.retour-news:hover {
    color: inherit
}

a.retour-news:active::before,a.retour-news:focus::before,a.retour-news:hover::before {
    left: 1.5rem;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 0.8rem;
}

.AvisClientsBg.bg-optionnel-gris .h1 {
    color: var(--color0)
}

.etoiles .fa {
    color: var(--color1)
}

.AvisClientsList {
    margin: 0;
    padding: 0
}

.AvisClientsList li {
    list-style: none;
    background: 0 0
}

.avisClientsBg .h {
    text-align: center
}

.AvisClients,.AvisClients:link,.AvisClients:visited {
    position: relative;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    text-align: left
}

.AvisClients .h {
    font-size: 1.5rem;
    color: var(--color0);
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 0
}

.bx-controls-direction a.bx-prev {
    background: url(../images/dd2.svg) no-repeat left center;
    left: -5.0rem
}

.bx-controls-direction a.bx-next {
    background: url(../images/gg2.svg) no-repeat left center;
    right: -5.0rem
}

.AvisClients p {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--color0);
    font-style: italic;
    
}

.AvisClients .blazy {
    border-radius: 50%;
    position: relative;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    margin-top: 7.0rem
}

.AvisClientsBg .bx-pager {
    bottom: 1.7rem
}

.avisContent:before {
    content: '\00AB';
    display: inline-block;
    margin-right: 0.5rem
}

.avisContent:after {
    content: '\00BB';
    display: inline-block;
    margin-left: 0.5rem
}

.temoignageScroll {
    max-height: 10.9rem;
    text-align: left;
    overflow: hidden
}

.temoignageScroll .scrollbar-content {
    padding: 0 1.0rem 0 0;
    width: 100%
}

.temoignageScroll .scrollbar-path-vertical {
    right: 0
}

.date_post {
    font-size: 1.5rem;
    padding: 0;
    font-family: var(--font_family_1);
    color: var(--color3);
    margin: 0;
}

.AvisClientsBg .bx-controls.bx-has-pager {
    display: block;
    position: relative;
    height: 7.0rem
}

.livre-elements {
    padding: 0;
    margin-bottom: 4.0rem;
    text-align: center
}

.livre-elements .blazy {
    margin: 0 auto 1.0rem;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-color: var(--color4);
    width: 11.5rem;
    height: 11.5rem
}

.livre-elements .pseudo {
    margin-bottom: 1.0rem
}

.livre-elements .date {
    margin-bottom: 1.0rem!important
}

.livre-elements .etoiles {
    margin-bottom: 0!important
}

.livre-elements .temoignage {
    
}

.livre-elements .temoignage:before {
    content: '\00AB';
    display: inline-block;
    margin-right: 0.5rem
}

.livre-elements .temoignage:after {
    content: '\00BB';
    display: inline-block;
    margin-left: 0.5rem
}

.divAvis {
    padding: 3.0rem 2.0rem;
    margin-bottom: 3.0rem;
    background-color: var(--color0);
    border-radius: 0.2rem;
    box-shadow: 0 0 0.5rem #9c9c9c;
    display: table;
    width: 100%
}

.divAvis .cell-img-avis {
    position: relative;
    display: table-cell;
    width: 30%;
    vertical-align: middle
}

.divAvis .cell-text-avis {
    position: relative;
    display: table-cell;
    width: 70%;
    vertical-align: middle
}

.btn-avis {
    margin-bottom: 3.0rem
}

.modal-content a,.modal-content a:link,.modal-content a:visited {
    color: var(--color3)
}

.modal-header .h1 {
    text-align: center;
    margin-bottom: 4.0rem;
    color: var(--color3);
    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: 1.6rem;
    color: var(--color0)
}

.modal-backdrop.in {
    z-index: 0
}

.modal-open .modal {
    z-index: 99997;
    background: rgba(var(--color2),.8);
    color: var(--color3);
    text-shadow: none;
    font-family: Arial,'Trebuchet MS',Helvetica,sans-serif
}

.modal-content .btn-close {
    border: 0;
    background: 0 0;
    padding: 0;
    font-size: 2.1rem;
    color: var(--color2);
    opacity: .2;
    line-height: 1
}

.modal-content .form-control {
    min-height: 4.4rem;
    border-radius: 0.2rem
}

.modal-content .btn-close:focus,.modal-content .btn-close:hover {
    opacity: .5
}

.modal-content .submit-review {
    padding-right: 6.0rem!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: 1.4rem!important
}

#add-review {
    text-align: center
}

.formulaire #add-review .form-actions {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

#add-review .form-group {
    text-align: left
}

#add-review input[type=file] {
    display: block;
    width: 100%;
    height: 5.0rem
}

#add-review #stars-existing {
    margin: 0 auto 1.0rem;
    display: block;
    text-align: left;
    padding-top: 1.5rem
}

#add-review .form-group #captcha {
    height: 4.6rem!important
}

.formulaire #add-review .form-group .form-control,.formulaire #add-review .form-group input,.formulaire #add-review .form-group textarea {
    background: var(--color0);
    border: 0.1rem solid var(--color4);
    color: var(--color3);
    border-radius: 0.2rem
}

.modal-content .form-control::placeholder {
    color: var(--color3)!important;
    opacity: 1
}

#add-review .submit-review {
    margin: 1.5rem auto!important;
    padding: 1.4rem 1.5rem!important;
    float: none;
    display: block;
    background-image: none
}

#add-review .body-review {
    height: 10.0rem
}

#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: 1.0rem;
    font-weight: 400;
    font-style: italic;
    
    opacity: .6;
    display: block;
    clear: both;
    color: var(--color3)!important
}
/* 
.atouts {
    display: block;
    width: 100%;
    padding: 3em 10% 4em;
    width: 100%;
    position: relative;
}

.atouts .swiper-pagination-bullet-active {
    background: var(--color0);
}

.atouts p.legend {
    font-size: var(--taille_font);
    font-weight: bold;
    text-align: center;
    margin: 0 0;
    color: var(--color2);
}

.atouts .swiper-pagination-bullet {
    background: var(--color0);
}

.atouts .picto {
    margin-bottom: 1em;
}

.atouts .picto i {
    width: auto;
}

.atouts .swiper-button-prev {
    background-image: none;
    left: 0;
    margin-top: -2.2rem;
    opacity: .8;
}

.atouts .swiper-button-disabled {
    opacity: 0 !important;
}

.atouts .swiper-button-next {
    background-image: none;
    right: 0.2rem;
    top: 50%;
    margin-top: -2.2rem;
    opacity: .8;
    height: 2.4rem;
}

.atouts .swiper-button-next i, .swiper-button-prev i {
    font-size: 2.3rem;
    color: var(--color2);
}

.atouts .swiper-button-next:hover,.swiper-button-prev:hover {
    opacity: 1
}

.atouts .picto i {
    color: var(--color2);
    text-align: center;
    font-size: 1.563vw;
}

.atout {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4em 3vh;
    background: var(--color0);
    border: 0.1rem solid var(--color1);
    border-radius: var(--border-radius);
    margin: 0.5rem;
}

.atouts .swiper.mySwiper {
    overflow: hidden;
    position: relative;
}

.atouts-cont {
    position: relative;
    display: block;
    padding: 2em 7% 4em;
} */

/*************  Atouts ****************/
.atouts-desktop {
    padding: 10vh 10%;
}

.atouts-desktop .description {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    color: var(--color4);
    font-family: var(--font_family_2);
    font-size: calc(var(--taille_font) * 1.3);
    text-align: center;
    margin: 0 auto 0.8em;
    font-weight: normal;
    opacity: 0.8;
}

.atouts-desktop .content {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 70%;
    color: var(--color2);
    font-family: var(--font_family_3);
    font-size: calc(var(--taille_font) * 1.05);
    text-align: center;
    margin: 2em auto 2em;
    line-height: 1.7;
}

.atouts-desktop .atouts-grid {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 1em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24%, 1fr));
    gap: 1.2em;
    box-sizing: border-box;
}

.atouts-mobile:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(7px);
    z-index: 0;
    pointer-events: none;
}

.atouts-mobile .swiper.mySwiperAtouts {
    position: relative;
    width: 90%;
    margin: auto;
    overflow: visible;
}

.atouts-mobile .atouts-cont {
    position: relative;
    display: block;
    padding: 2em 5%;
}

.atouts-mobile .swiper-wrapper {
    min-height: 32vh;
    align-items: stretch;
}

.atouts-mobile .swiper-slide {
    display: flex;
    align-items: stretch;
    height: auto;
}

/* === CARTES ATOUTS === */
.atout {
    position: relative;
    display: flex;
    border: 1px solid rgba(var(--color4_rgb), 0.08);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    overflow: hidden;
}

.atouts-mobile .atout {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2em 1.5em;
    background: rgba(var(--color0_rgb), 0.95);
    border-color: rgba(var(--color4_rgb), 0.1);
    box-shadow: 0 4px 12px rgba(var(--color4_rgb), 0.08);
    width: 100%;
    z-index: 2;
}

.atouts-desktop .atouts-grid .atout {
    top: auto;
    left: auto;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1.2em 1em 1.2em 0.5em;
    background: transparent;
    box-shadow: none;
    transform: translateY(0);
    cursor: default;
    z-index: 2;
}

/* === PICTOS === */
.atout .picto {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    flex-shrink: 0;
}

.atouts-mobile .atout .picto {
    width: 5em;
    height: 5em;
    margin-bottom: 1.5em;
}

.atouts-desktop .atout .picto {
    min-width: 3.5em;
    width: 3.5em;
    height: 3.5em;
    margin-left: 0.5em;
}

.atout .picto:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
}

.atouts-mobile .picto:before {
    background: radial-gradient(circle, rgba(var(--color1_rgb), 0.08) 0%, transparent 70%);
}

.atouts-desktop .picto::before {
    background: radial-gradient(circle, rgba(var(--color1_rgb), 0.05) 0%, transparent 70%);
}

.atout .picto svg {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    object-fit: contain;
    color: rgba(var(--color2_rgb), 0.6);
    fill: rgba(var(--color2_rgb), 0.6);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.atouts-mobile .atout .picto  svg {
    width: 100%;
    z-index: 2;
}

.atouts-desktop .atout .picto svg {
    width: 70%;
    aspect-ratio: 1 / 1;
    color: rgba(var(--color2_rgb), 0.5);
    fill: rgba(var(--color2_rgb), 0.5);
    z-index: 7;
    fill: var(--color2);
}

.atouts-mobile .swiper-slide-active .picto svg,
.atouts-desktop .atouts-grid .atout:hover .picto svg {
    color: var(--color1);
    fill: var(--color1);
}

.atout .titre-atout {
    color: var(--color2);
    font-family: var(--font_family_1);
    margin: 0 0 0.5em 0;
    line-height: 1.3;
    font-weight: bold;
    transition: color 0.3s ease;
}

.atouts-mobile .atout .titre-atout {
    font-size: calc(var(--taille_font) * 1.4);
    text-align: center;
}

.atouts-desktop .atout .titre-atout {
    font-size: calc(var(--taille_font) * 1.3);
    text-align: left;
}

.atouts-mobile .swiper-slide-active .titre-atout,
.atouts-desktop .atouts-grid .atout:hover .titre-atout {
    color: var(--color1);
}

.atout .legend{
    color: var(--color2);
    font-family: var(--font_family_2);
    margin: 0;
    text-wrap: balance;
    line-height: 1.5;
    font-weight: normal;
    opacity: 0.85;
}

.atouts-mobile .atout .legend {
    font-size: calc(var(--taille_font) * 1.3);
    text-align: center;
    transition: opacity 0.3s ease;
}

.atouts-desktop .atout .legend {
    font-size: calc(var(--taille_font) * 1.2);
    text-align: left;
}

.atouts-mobile .swiper-slide-active .atout .legend,
.atouts-desktop .atouts-grid .atout:hover .atout .legend {
    opacity: 1;
}

.atouts-mobile .btn-mySwiperAtouts {
    position: absolute;
    top: 50%;
    left: 50%;
    display: none;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.atouts-mobile .swiper-button.prev,
.atouts-mobile .swiper-button.next {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.8em;
    height: 2.8em;
    color: var(--color0);
    font-size: calc(var(--taille_font) * 1.2);
    background: var(--color1);
    background-image: none;
    border-radius: var(--border-radius);
    border: 3px solid var(--color0);
    box-shadow: 0 4px 12px rgba(var(--color4_rgb), 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.atouts-mobile .swiper-button.prev {
    left: 0;
}

.atouts-mobile .swiper-button.next {
    right: 0;
}

.atouts-mobile .swiper-button-disabled {
    opacity: 0.3 !important;
    cursor: not-allowed;
}

.atouts-mobile .swiper-button.next i,
.atouts-mobile .swiper-button.prev i {
    color: var(--color0);
    font-size: 1em;
}

.atouts-mobile .swiper-button.next:hover i,
.atouts-mobile .swiper-button.prev:hover i {
    color: var(--color1);
}

.atouts-mobile .swiper-button.next:hover:not(.swiper-button-disabled),
.atouts-mobile .swiper-button.prev:hover:not(.swiper-button-disabled) {
    border: 1px solid var(--color1);
    background-color: var(--color0);
}

/* ---- Effet Hover/Active sur carte */
.atouts-mobile .swiper-slide-active .atout {
    border-color: rgba(var(--color1_rgb), 0.2);
    box-shadow: 0 6px 20px rgba(var(--color4_rgb), 0.12);
}

.atouts-desktop .atouts-grid .atout:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(var(--color4_rgb), 0.08);
    border-color: rgba(var(--color1_rgb), 0.15);
    background: rgba(var(--color0_rgb), 0.5);
    z-index: 10;
}

.atouts-mobile .atout::before,
.atouts-desktop .atouts-grid .atout::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-left: 0 solid var(--color1);
    border-top: 0 solid var(--color1);
    border-top-left-radius: var(--border-radius);
    transition: all 0.4s ease;
    z-index: 1;
}

.atouts-mobile .swiper-slide-active .atout::before,
.atouts-desktop .atouts-grid .atout:hover::before {
    width: 35px;
    height: 35px;
    border-left-width: 2px;
    border-top-width: 2px;
}

@media (max-width: 1260px) {
    .atouts-desktop .atouts-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5em;
    }
    .atouts-desktop .content {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .atouts-desktop {
        padding: 3em 0;
    }
    .atouts-desktop .h1 {
        font-size: calc(var(--taille_font) * 1.4);
    }
    .atouts-desktop .titre-secondaire {
        font-size: calc(var(--taille_font) * 1.2);
    }
    .atouts-desktop .content {
        width: 90%;
        font-size: var(--taille_font);
    }
    .atouts-desktop .atouts-grid {
        grid-template-columns: 1fr;
        width: 95%;
        gap: 1.2em;
    }
    .atouts-desktop .atouts-grid .atout {
        padding: 1.2em 1em;
    }
    .atouts-desktop .picto {
        min-width: 3.5em;
        width: 3.5em;
        height: 3.5em;
    }
    .atouts-desktop .atout .legend {
        font-size: calc(var(--taille_font) * 1.05);
    }
    .atouts-desktop .atout .titre-atout {
        font-size: calc(var(--taille_font) * 1.4);
    }
}

@media (max-width: 480px) {
    .atouts-mobile .h1 {
        font-size: calc(var(--taille_font) * 1.4);
    }
    .atouts-mobile .titre-secondaire {
        font-size: calc(var(--taille_font) * 1.2);
    }
    .atouts-mobile .atout {
        padding: 1.5em 1.2em;
    }
    .atouts-mobile .picto {
        width: 4em;
        height: 4em;
        margin-bottom: 1.2em;
    }
    .atouts-mobile .atout .legend {
        font-size: calc(var(--taille_font) * 1.05);
    }
    .atouts-mobile .atout .titre-atout {
        font-size: calc(var(--taille_font) * 1.3);
    }
    .atouts-mobile .swiper-button.prev,
    .atouts-mobile .swiper-button.next {
        width: 2.5em;
        height: 2.5em;
    }
}

/***********************************************************************/

.gallery .bas-galerie {
    text-align: center;
    padding: 4.0rem 0 0
}

.centerservice2 {
    margin: 0 16%!important
}

.centerservice {
    margin: 0 33%!important
}

.services-home {
    position: relative;
    display: inline-block;
    width: 100%;
    background: var(--color2);
    padding: 4.5rem 0 7.0rem;
    min-height: 49.0rem;
    overflow: hidden
}

.services-home h2.h1 {
}

.services-home h2.h1 .titre-secondaire {
    color: var(--color0)
}

.services-home .contenu-services .liste-services {
    text-align: center
}

.services-home:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%!important;
    height: 34.0rem!important;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16.0rem 50vw 0;
    border-color: var(--color2) transparent transparent;
    z-index: -1;
    background: var(--color0)
}

.services-home .imgs-services {
    position: relative;
    display: block;
    padding: 0 10%
}

.services-home .contenu-services {
    position: relative;
    display: inline-block;
    padding: 0 10%;
    width: 100%
}

.services-home .contenu-services .swiper-container {
    padding: 2.0rem 5% 0
}

.services-home .swiper-slide {
    position: relative;
    display: block;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 50ch !important;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: gray;
    -webkit-transition: all .9s ease;
    filter: url("data:image/svg+xml;utf8, <svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    /* border-radius: var(--border-radius); */
    -webkit-transform: translateZ(0);
    /* overflow: hidden; */
}

.services-home .swiper-slide:hover {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    filter: url("data:image/svg+xml;utf8, <svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
    -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)
}

.services-home .swiper-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top,transparent 0,transparent 18%,rgba(0,0,0,.8) 99%,rgba(0,0,0,.8) 100%);
    background: -webkit-linear-gradient(top,transparent 0,transparent 18%,rgba(0,0,0,.8) 99%,rgba(0,0,0,.8) 100%);
    background: -o-linear-gradient(top,transparent 0,transparent 18%,rgba(0,0,0,.8) 99%,rgba(0,0,0,.8) 100%);
    z-index: 1
}

.services-home .swiper-slide img {
    width: 100%;
    height: auto
}

.services-home a.bouton-principal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: inline-block;
    background: 0 0;
    color: var(--color0);
    border: 0.1rem solid var(--color0);
    z-index: 10;
    text-transform: uppercase;
    font-size: 1.8rem;
    font-family: var(--font_family_1)
}

.services-home a.bouton-principal:hover {
    color: var(--color1);
}

.services-home .hvr-shutter-out-horizontal:before {
    background-color: var(--color0)
}

.services-home .swiper-button-next,.services-home .swiper-button-prev {
    top: inherit;
    bottom: 2.0rem;
    z-index: 9999;
    left: initial
}

.services-home .swiper-button-prev {
    background-image: url(../images/dd2.svg);
    right: 4.0rem;
    margin-top: -1.8rem;
    -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)
}

.services-home .swiper-button-next {
    background-image: url(../images/gg2.svg);
    right: 1.5rem;
    margin-top: -1.8rem;
    -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)
}

.services-home .contenu-services .row-services {
    position: relative;
    display: table;
    width: 100%;
    text-align: center
}

.services-home .contenu-services .service-inline {
    position: relative;
    display: table-cell
}
.imgs-services .swiper-container2 {
    border-radius: var(--border-radius);
    overflow: hidden;
}
.oneImg-service {
    position: relative;
    display: table;
    vertical-align: top;
    width: 80%;
    margin: 3.5rem auto 0
}

.oneImg-service:after {
    content: '';
    padding-top: 50%;
    display: block
}

.services .cell.gauche {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    border-right: 0.2rem solid var(--color4);
    background-position: center center;
    background-repeat: no-repeat
}

.services .cell.droite {
    display: table-cell;
    vertical-align: top;
    width: 50%
}

.services .cell.droite .contenu {
    padding: 9.0rem 12%
}

.services .cell.droite .contenu ul {
    list-style-type: none;
    list-style-image: none;
    padding: 0;
    margin: 0
}

.services .cell.droite .contenu ul li {
    background: 0 0;
    padding: 0;
    padding: 0 0 1.0rem 0
}

.services .cell.droite .contenu ul li .bouton-principal {
    display: block
}

.btn-service {
    text-align: center;
    margin: 1.0rem 0
}

.services .miettes {
    list-style-type: none;
    list-style-image: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 2.0rem;
    left: 0;
    right: 0;
    text-align: center
}

.services .miettes li {
    display: inline-block;
    vertical-align: top;
    background: 0 0;
    padding: 0
}

.services .miettes li a {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 1.2rem;
    background: #1ab194;
    display: inline-block
}

.services .miettes li a.active {
    background: var(--color2);
    cursor: default
}

.AvisClientsBg {
    position: relative;
    z-index: 8000;
    background: var(--color2);
    text-align: center
}

.AvisClientsBg .contenu {
    padding: 6.0rem 0
}

.AvisClientsBg .contenu h2.h1,.AvisClientsBg .contenu h2.h1 .titre-secondaire {
    color: var(--color1);
}

.AvisClientsBg .contenu h2.h1 .titre-secondaire {
    color: var(--color0);
}

.body-news .fluid-contenu,.body-news-list .fluid-contenu,.body-temoignage .fluid-contenu {
    background: var(--color0);
}

.body-news-list .fluid-contenu .news .ligne-actus {
    margin-bottom: 5.0rem
}

.body-news-list .fluid-contenu .news .ligne-actus article.item {
    position: relative;
    display: block;
    background: var(--color0);
    /* box-shadow: 0 0 1.1rem #bfbfbf; */
}

.body-news-list .fluid-contenu .news .ligne-actus article.item .contain-news {
    position: relative;
    display: block;
    padding: 6.0rem 4%
}

.body-news-list .fluid-contenu .news .ligne-actus article.item .contain-news h2 {
    display: inline-block;
    border-bottom: 0.1rem solid var(--color4);
    padding: 0 0 1.5rem;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin: 0
}

.body-news-list .fluid-contenu .news .ligne-actus article.item .contain-news.date-noimg h2 {
    width: 100%
}

.body-news-list .fluid-contenu .news .ligne-actus article.item .contain-news.date-noimg h2 .date-article {
    position: relative;
    display: inline-block;
    float: right;
    margin: 0
}

.body-news-list .fluid-contenu .news .ligne-actus article.item .contain-news.date-noimg h2 .date-article span {
    display: inline-block
}

.news .propor {
    width: 100%;
    position: relative
}

.news .propor:after {
    padding-top: 68%;
    display: block;
    content: ''
}

.news .propor .propor-cont .imagecont img {
    object-fit: cover;
    -o-object-fit: cover;
    flex: 1;
    width: auto;
    height: 100%;
    min-width: 100%;
    min-height: 100%
}

.news .propor .propor-cont {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0
}

.news .propor .propor-cont .imagecont {
    height: 100%;
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transform: translateZ(0);
    border-radius: var(--border-radius);
}

.news .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 {
    transition: all .4s ease;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    height: 100%;
    background: var(--color2) url(../images/ico-zoom.svg) no-repeat center center
}

.news .propor .propor-cont .imagecont:hover .masque {
    opacity: .8;
    filter: alpha(opacity=80)
}

.news .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;
    display: inline-block;
    width: 100%;
    background: var(--color3);
    padding: 2.0rem 11% 5.0rem;
}

.intervention .description {
    width: 100%;
    
}

.intervention ul {
    margin: 3.0rem 0 0;
    padding: 0;
    list-style-type: none;
    list-style-image: none
}

.intervention ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    font-style: italic;
    font-family: var(--font_family_1)
}

.pied {
    position: relative;
    z-index: 9;
    background: var(--color0)
}

.pied .bande1 {
    padding: 5.0rem 7vw;
    background: var(--color2);
}

.pied .bande2 {
    padding: 0;
    background: #173330;
}

.info-rgpd {
    position: relative;
    display: inline-block;
    font-size: 1.2rem!important;
    border-top: 0.1rem solid #d0c9c9;
    padding-top: 1.8rem
}

.bande-form {
    position: relative;
    display: block;
    padding: 4.0rem 0
}

.pied .bande1 .titreFooter {
    color: var(--color0);
    text-transform: uppercase;
    padding: 0 0 2.0rem;
    font-family: var(--font_family_2);
    margin-top: 2.0rem;
    margin-bottom: 1.0rem;
    font-weight: 500;
    line-height: 1.1;
    position: relative;
    text-align: left
}

.pied .bande1 .titreFooter::before {
    content: "";
    width: 7.1rem;
    height: 0.2rem;
    background: var(--color1);
    position: absolute;
    bottom: 0;
    left: 0
}

.pied .navf .menu_footer {
    color: var(--color0);
    padding: 1.5rem 0;
    list-style-type: disc;
    margin: 0
}

.pied .navf .menu_footer li {
    padding: 0 0 0;
    background: 0 0
}

.pied .navf .menu_footer li:last-child {
    border: none
}

.pied .navf .menu_footer li a,.pied .navf .menu_footer li a:visited {
    padding: 0;
    color: inherit;
    text-decoration: none
}

.pied .navf .menu_footer li a:hover,.pied .navf .menu_footer li.active a {
    color: var(--color1);
    text-decoration: none
}

.pied .navf .menu_footer li.active a:hover {
    cursor: default;
    text-decoration: none
}

.pied .menu_referencement {
    color: var(--color0);
    list-style-image: none;
    list-style-type: none;
    margin: 0;
    
    PADDING: 0;
}

.pied .menu_referencement li {
    display: inline;
    padding: 0;
    background: 0 0
}

.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;
    text-decoration: none
}

.pied .menu_referencement li a:hover,.pied .menu_referencement li.active a:hover {
    color: var(--color1)
}

.pied .menu_referencement li.active a:hover {
    cursor: default;
    text-decoration: none
}

.pied address {
    margin: 0;
    padding: 1.5rem 0 0;
    color: var(--color0);
}

.pied address p {
    background-repeat: no-repeat;
    margin: 0;
    background-position: 0 0.5rem;
    padding: 0 0 0.2rem 3.0rem
}

.contact .coordonnees address p.adresse,.pied address p.adresse {
    background-image: url(../images/ico-adresse-f.svg);
    background-size: 1.3rem auto
}

.contact .coordonnees address p.tel.tel1,.pied address p.tel.tel1 {
    background-image: url(../images/ico-tel-f.svg);
    background-size: 1.6rem auto
}

.contact .coordonnees address p.tel.tel2,.pied address p.tel.tel2 {
    background-image: url(../images/ico-tel2-f.svg);
    background-size: 1.0rem auto
}

.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: 1.5rem 0 0;
    height: 26rem;
}

.contact .horaires,.pied .horaires {
    margin: 0;
}

.pied .horaires {
    color: var(--color0) !important;
    padding: 0 !important;
}

.pied .copyright-footer {
    margin: 0.5rem 0 0;
    text-align: center
}

#logoFD svg * {
    fill: var(--color0);
}

#logoFD svg {
    width: 20.0rem
}

.pied .btn-like {
    padding: 2.0rem 0 0
}

.pied .btn-partage {
    text-align: right;
    padding: 1.0rem 0 0
}

.scrollbars {
    width: 100%;
    height: 40vh
}

.scrollbar-path-horizontal,.scrollbar-path-vertical {
    position: absolute;
    background-color: var(--color4);
    z-index: 100
}

.scrollbar-path-horizontal {
    bottom: 0.5rem;
    left: 0;
    width: 100%;
    height: 0.5rem
}

.scrollbar-path-vertical {
    right: 0.5rem;
    top: 0;
    height: 100%;
    width: 0.5rem;
    box-shadow: inset 0.1rem 0 1 rgba(var(--color2),.1)
}

.scrollbar-path-horizontal {
    box-shadow: inset 0 0.1rem 1 rgba(var(--color2),.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: 0.5rem
}

.scrollbar-content {
    padding: 0 3.0rem 0 0;
    float: none!important
}

.prestation {
    display: block;
    width: 100%;
    position: relative;
    z-index: 8000;
    background: var(--color0);
    padding: 4.5rem 0
}

.prestation-contain {
    display: table;
    margin: 0 auto;
    width: 100%;
}

@media (min-width: 768) {
    .contact-contain,.prestation-contain {
        width:76.8rem
    }
}

@media (min-width: 992px) {
    .prestation-contain {
        /* width:99.2rem; */
    }
}

@media (min-width: 1200px) {
    .prestation-contain {
        /* width: 100%; */
        /* padding: 0 13%; */
    }
}

.prestation:nth-child(even) {
    direction: rtl;
    background: var(--color0)
}

.prestation .cell.photo {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    background-position: center center;
    border-radius: var(--border-radius);
}

.prestation .cell.photo:hover {
    opacity: .95;
    filter: alpha(opacity=95)
}

.prestation .cell.texte {
    display: table-cell;
    vertical-align: top;
    width: 50%
}

.prestation:last-child .cell.texte {
    border-bottom: none
}

.prestation:nth-child(even) .cell.texte .contenu {
    padding: 5.0rem 5% 5.0rem 0;
}

.prestation .cell.texte .contenu {
    padding: 5.0rem 0 5.0rem 5%;
    text-align: left;
    direction: ltr
}

.prestation .cell.texte .contenu h2.h1,.prestation .cell.texte .contenu h2.h1 .titre-secondaire {
    text-align: left
}

.prestation .cell.texte .contenu .h1:before,.prestation .cell.texte .contenu h1:before {
    left: 0;
    margin-left: 0
}

.prestation .cell.texte .contenu p {
    margin: 0 0 5.0rem
}

.prestation .cell.texte .contenu ul {
    padding: 0;
    margin: 0
}

.prestation .cell.texte .contenu ul li {
    padding: 0.5rem 0 0.5rem 2.0rem;
    background: url(../images/ico-puce.svg) no-repeat 0 0.9rem;
    background-size: 0.7rem auto
}

.prestation .cell.texte .contenu ul li .bouton-principal {
    display: block
}

.body-contact .corps h2 {
    color: var(--color1);
    text-transform: none;
    position: relative;
    margin-bottom: 2.5rem;
    padding-bottom: 1.4rem;
    text-transform: uppercase
}

.contact .tab-formulaire .formulaire h2:before {
    content: "";
    width: 7.5rem;
    height: 0.2rem;
    background: var(--color1);
    position: absolute;
    bottom: -0.7rem;
    left: 50%;
    margin-left: -3.7rem
}

.body-contact .tab-formulaire .cell.droite h2 {
    text-align: center;
    margin-bottom: 7.0rem;
    font-size: 2.4rem
}

.body-contact .tab-formulaire .cell.droite h2:before {
    content: "";
    width: 7.5rem;
    height: 1.0rem;
    position: absolute;
    top: 5.0rem;
    left: 50%;
    margin-left: -3.7rem
}

.contact .tab-coordonnes {
    display: table;
    width: 100%;
    position: relative;
    z-index: 8000
}

.contact .tab-coordonnes .cell.gauche {
    display: table-cell;
    vertical-align: top;
    width: 39%;
}

.contact .tab-coordonnes .cell.gauche .contenu {
    padding: 5.0rem 12% 5.0rem 0
}

.contact .tab-coordonnes .cell.centre {
    display: table-cell;
    vertical-align: top;
    width: 50%
}

.contact .tab-coordonnes .cell.droite {
    position: relative;
    display: table-cell;
    vertical-align: top;
    width: 70%
}

.contact .tab-formulaire {
    display: table;
    width: 100%;
    position: relative;
    z-index: 8000
}

.contact .tab-formulaire .formulaire h2 {
    text-align: center;
    border: 0;
    background: 0 0;
}

.contact .plan {
    font-size: 0;
    margin: 5.0rem 0
}

.contact .plan .block #googlemapapi,.contact .plan iframe {
    width: 100%!important;
    height: 55.0rem!important
}

.contact .coordonnees {
    padding: 0
}
.contact-contain {
    padding: 0 9%;
}
.contact .coordonnees h2 {
    margin-top: 2.0rem;
}

.body-contact .corps h2:before,.contact .coordonnees h2::before {
    content: "";
    width: 7.1rem;
    height: 0.2rem;
    background: var(--color1);
    position: absolute;
    bottom: 0;
}

.contact .coordonnees address p {
    padding: 0 0 1.0rem 3.0rem;
    background-position: 0 0;
    background-repeat: no-repeat
}

.contact .coordonnees address p.tel a {
    color: inherit;
    text-decoration: none
}

.contact .coordonnees address p a {
    text-decoration: none;
    color: inherit
}

.contact .coordonnees address p a:hover {
    text-decoration: underline
}

.contact .coordonnees .callTracker:not(.active) span:hover {
    color: var(--color1)
}

.contact .horaires {
    padding-left: 3.0rem;
    margin: 0
}

.contact .description-contact {
    padding: 0 0 1.0rem
}
label.checkbox.label-rgpd {
    font-size: 64%;
}
.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(--color2);
    opacity: .8
}

.contact .formulaire .control-label {
    text-align: left!important;
    font-weight: 400
}

.body-pageseo .contact .formulaire .form-group .form-control {
}

.contact .formulaire .form-group {
    margin-bottom: 0.8rem;
    padding: 0!important;
    margin-left: 0!important;
    margin-right: 0!important
}

.contact .formulaire .form-group .form-control {
    background: var(--color0);
    border: none;
    box-shadow: none;
    border-radius: 0;
    width: 100%!important;
    color: var(--color2);
    border: 0.1rem solid var(--color3);
    font-size: var(--taille_font);
    font-family: var(--font_family_1);
    border-radius: var(--border-radius);
}

.form-control:focus {
    color: var(--color2);
    background: var(--color0)
}

.contact .formulaire .form-group textarea.form-control {
    height: 11.9rem;
    position: static
}

.contact .formulaire .form-group input.form-control {
    height: 7rem;
    line-height: 1;
    line-height: 5.0rem\9;
    padding: 0 1.2rem
}

.contact .formulaire .form-group select.form-control {
    height: 5.0rem;
    line-height: 5.0rem;
    padding: 0.5rem 1.2rem
}

@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 1.0rem center!important;
        line-height: normal!important;
        background-size: 2.0rem auto!important
    }

    .form-horizontal select.form-control option {
        color: inherit
    }
}

.contact .formulaire .form-group input[name=captcha] {
    width: 31%!important;
    height: 5.0rem!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: 5.0rem!important;
    border-radius: 0;
    padding: 0
}

.contact .formulaire .form-group input.btn-primary {
    width: 29%;
    display: inline-block;
    position: relative;
    float: right;
    margin: 0.1rem 0;
    padding: 2.2rem 1.0rem;
}

.contact .formulaire .form-actions {
    font-size: 1.0rem;
    padding: 0;
    color: var(--color2);
    opacity: .8;
    font-style: italic
}

.contact a.btn.btn-default {
    float: right
}

.body-error404 a.btn.btn-default,.contact .formulaire input.btn-primary,.contact a.btn.btn-default {
    text-align: center;
    font-family: var(--font_family_2);
    font-weight: 400;
    color: var(--color0);
    text-decoration: none;
    text-transform: uppercase;
    line-height: 2.3rem;
    font-size: 1.4rem;
    -webkit-user-select: none;
    user-select: none;
    -moz-user-select: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 1.8rem 2.4rem;
    transition: all .3s ease-out 0s;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1;
    background: var(--color1);
}

.body-error404 a.btn.btn-default:active,.body-error404 a.btn.btn-default:hover,.contact .formulaire input.btn-primary:active,.contact .formulaire input.btn-primary:hover,.contact a.btn.btn-default:active,.contact a.btn.btn-default:hover {
    background-color: var(--color2);
    color: var(--color0);
}

::-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: 14.0rem;
    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:after, .flex-seoContain .seo-form h2.h1:after {
    left: 0;
    margin-left: 0;
}

.flex-seoContain .seo-form {
    width: 44%;
    padding: 1em 3% 3em;
    background: var(--color3);
    border-radius: var(--border-radius);
}

.flex-seoContain .seo-form h2.h1:before, .flex-seoContain .seo-content h1:before {
    display: none;
}

.img-seo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery .bas-galerie {
    text-align: center;
    padding: 4.0rem 0 0
}

.gallery .description-galerie {
    padding: 0 0 4.0rem;
    
}

.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: 1.0rem!important;
    padding-right: 1.0rem!important
}

.gallery .multiple .ligne-photos {
    margin-left: 0!important;
    margin-right: 0!important
}

.gallery .ligne-photos .propor {
    width: 100%;
    position: relative;
    margin-bottom: 3.0rem
}

.gallery .multiple .ligne-photos .propor {
    margin-bottom: 2.0rem
}

.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
}

.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%
}

.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%;
    border-radius: var(--border-radius);
}

.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;
    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: var(--color2) url(../images/ico-zoom.svg) no-repeat center center
}

.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: 1.0rem 0;
    text-align: center
}

.gallery .nav li {
    display: inline-block;
    margin-bottom: 1.0rem;
    padding: 0 1.5rem 0 0.5rem;
    position: relative;
    background: 0 0
}

.gallery .nav li::after {
    position: absolute;
    font-size: 2.0rem;
    right: 0;
    top: 1.8rem;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color1);
    border-radius: 0.5rem;
    display: block;
    content: " "
}

.gallery .nav li:last-child::after {
    display: none
}

.gallery .nav li a {
    background: 0 0;
    display: block;
    color: var(--color2);
    text-transform: uppercase;
    font-size: 1.4rem;
    font-family: var(--font_family_1);
    padding: 1.0rem;
    text-align: center;
    text-decoration: none
}

.gallery .nav li a:hover,.gallery .nav li.active a {
    background: 0 0;
    color: var(--color1)
}

.gallery .nav li.active a {
    cursor: default
}

.gallery .tab-content {
    padding-top: 1.0rem;
    padding-bottom: 1.0rem
}

.gallery .tab-content h2 {
    padding-left: 1.5rem;
    margin-bottom: 2.0rem
}

.gallery .bas-galerie {
    text-align: center;
    padding: 4.0rem 0 0
}

.gallery .bas-galerie a.bouton-principal {
    padding-right: 6.0rem;
    position: relative
}

.gallery .bas-galerie a.bouton-principal:after {
    content: '+';
    width: 2.2rem;
    height: 2.2rem;
    position: absolute;
    right: 1.5rem;
    top: 1.0rem;
    font-size: 3.5rem;
    font-family: var(--font_family_1);
    display: block;
    line-height: 3.5rem
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: var(--color1)
}

.header-sidebars,.sidebar-left,.sidebar-right {
    background-color: var(--color0);
    letter-spacing: 0.1rem
}

.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: 6.5rem;
    z-index: 9999;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    box-shadow: 0 0.2rem 0.3rem 0.1rem rgba(var(--color2),.1)
}

.header-sidebars .header-top {
    display: table;
    height: 6.5rem;
    width: 100%;
    background: var(--color3);
}

.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: 2.9rem;
    top: 1.0rem;
    max-height: 7.6rem;
    max-width: 6.7rem;
}

.deploy-right-sidebar {
    border-left: 0.1rem #3f4183 solid;
    display: table-cell;
    background-color: var(--color2);
    height: 6.5rem;
    width: 6.5rem;
    background-position: center center
}

.deploy-right-mail {
    border-left: 0.1rem #3f4183 solid;
    display: table-cell;
    background-color: var(--color2);
    background-size: auto 49%;
    height: 6.5rem;
    width: 6.5rem;
    position: absolute;
    right: 6.5rem;
    top: 0
}

.deploy-right-call {
    display: table-cell;
    background-color: var(--color2);
    height: 6.5rem;
    width: 6.5rem;
    background-position: center 1.6rem;
    position: absolute;
    right: 13.0rem;
    top: 0
}

.sidebar-scroll-right {
    width: 27.5rem;
    overflow: auto!important;
    overflow-x: hidden!important;
    height: 100%;
    background-color: var(--color1);
}

.sidebar-right {
    background-repeat: repeat;
    position: fixed;
    overflow: hidden;
    z-index: 99999;
    right: -28.0rem;
    top: 0;
    bottom: 0;
    width: 27.0rem;
    margin-right: 1.0rem;
    box-shadow: -0.2rem 0 0.2rem 0 rgba(var(--color2),.1)
}

.sidebar-header-left {
    height: 6.5rem;
    background-color: var(--color1);
    position: relative
}

.sidebar-left-logo {
    max-height: 7.5rem;
    position: absolute;
    top: -0.2rem;
    left: 0.8rem;
    margin-right: 17.9rem
}

.sidebar-right-logo {
    margin-left: auto;
    top: 0.9rem;
    right: 2.0rem;
    max-width: 19.0rem;
    float: right;
    max-height: 5.1rem;
    position: relative
}

.sidebar-divider-text {
    font-size: 2.0rem;
    padding-top: 1.5rem;
    padding-left: 2.0rem;
    padding-bottom: 1.5rem;
    margin-bottom: 0;
    color: var(--color0)!important;
    background: rgba(var(--color2),.9);
    opacity: 0.7;
}

.sidebar-bottom-controls {
    background-color: var(--color1)
}

.sidebar-bottom-controls p {
    margin-top: 0.3rem
}

.sidebar-bottom-controls a {
    font-size: 1.2rem;
    background-repeat: repeat-y;
    text-align: center;
    float: left;
    width: 33%;
    line-height: 1.0rem;
    display: block
}

.submenu {
    display: none
}

.submenu-active {
    display: block
}

.sidebar-header-right {
    height: 6.5rem;
    background-color: var(--color2);
    position: relative
}

.close-sidebar-right {
    height: 6.5rem;
    width: 6.5rem;
    margin-left: 0;
    display: block
}

.sidebar-left .close-sidebar-left,.sidebar-right .close-sidebar-right {
    position: absolute!important
}

.right-sidebar-copyright {
    margin: 2.0rem 0
}

.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: 0.1rem;
    padding-left: 1.8rem;
    background: var(--color1);
}

.menu-mobile-dynamique .sub-menu li {
    background-color: transparent;
    margin-bottom: 0
}

.menu-mobile-dynamique .sub-menu li a {
    height: 4.2rem;
    text-transform: none
}

.menu-mobile-dynamique .sub-menu {
    background-image: linear-gradient(to bottom,var(--color1),var(--color1));
    padding-top: 1.8rem;
    padding-bottom: 1.8rem
}

.menu-mobile-dynamique li.parent {
    background-image: url(../images/gopage.svg);
    background-position: 24.1rem 2.62rem;
    background-repeat: no-repeat;
    background-size: 0.9rem auto
}

.menu-mobile-dynamique li a {
    display: table-cell;
    width: 27.0rem;
    vertical-align: middle;
    line-height: 1.8rem;
    font-size: 1.6199999999999999rem;
    text-transform: uppercase;
    color: var(--color0);
    height: 6.0rem;
    padding-left: 2.9rem;
    text-decoration: none
}

.menu-mobile-dynamique li a::before {
    display: block;
    content: "❯";
    position: absolute;
    left: 2.0rem;
    font-size: 1.5rem;
    color: var(--color0);
}

.menu-mobile-dynamique ul {
    list-style-image: none;
    list-style-position: inside;
    list-style-type: none;
    padding-left: 0
}

.remonter {
    position: absolute;
    z-index: 9999;
    display: none;
    bottom: 5.5rem;
    right: 13%;
    width: 4.4rem;
    float: right
}

.remonter button {
    display: block;
    padding: 1.0rem 1.0rem 1.1rem;
    text-align: center;
    border: none;
    background: var(--color1);
    border-radius: var(--border-radius);
}

.remonter button:hover {
    opacity: .8;
    filter: alpha(opacity=80)
}

.bloc-GMB .badge-optionnel {
    position: absolute;
    top: 0;
    right: 0;
    background: url(../images/badge-optionnel.png) no-repeat top right;
    width: 13.9rem;
    height: 13.9rem
}

.bg-optionnel {
    background: url(../images/bg-optionel.svg) repeat top center;
    background-size: 6.0rem auto
}

.bg-optionnel-gris {
    background: var(--color3) url(../images/bg-optionel-gris.svg) repeat top center;
    background-size: 6.0rem auto
}

.deprecated-ie {
    text-align: center;
    color: var(--color2);
    background: #eee
}

.deprecated-ie p {
    line-height: 3.0rem;
    margin: 0
}

.deprecated-ie a {
    line-height: 3.0rem;
    font-family: "Trebuchet MS",Helvetica,arial,sans-serif;
    font-size: 1.3rem;
    color: var(--color2);
    text-decoration: underline
}

.icones {
    width: 3.2rem;
    margin: 1.6rem 0 0 1.6rem;
    height: 3.2rem;
    fill: var(--color0)
}

.remonter .icones {
    fill: var(--color0);
    margin: 0 0 -0.5rem;
    width: 2.5rem;
    height: 2.5rem
}

.btn-partage .icones {
    width: 1.7rem;
    margin: 0;
    height: 1.7rem;
    padding: 0;
    position: relative;
    fill: var(--color0);
}

.btn-partage .btnp:hover .icones {
    fill: var(--color3)
}

.tete .tel_info .tel .icones {
    fill: var(--color0);
    width: 1.6rem;
    height: 1.6rem;
    margin: 0 0.7rem -0.4rem 0
}

.tete .d_devis .icones {
    fill: var(--color0);
    width: 1.6rem;
    height: 2.4rem;
    margin: 0 0.7rem -1.0rem 0
}

.tete .d_devis a:hover .icones,.tete .tel_info .tel:hover .icones {
    fill: var(--color3)
}

.news .detail_actu-img {
    width: 100%;
    float: none
}

.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: 1.5rem 3.0rem;
    color: var(--color1);
    text-decoration: none;
    display: block;
    border: 1px solid var(--color3);
    height: 100%;
    font-family: var(--font_family_1);
    text-transform: uppercase
}

.news_avant_apres a:focus,.news_avant_apres a:hover {
    border-color: var(--color1);
    text-decoration: none
}

.news_avant_apres>div:last-child {
    right: -0.5rem
}

.news_avant_apres a:focus b,.news_avant_apres a:hover b {
    text-decoration: none;
    color: var(--color1)
}

.navButtons,.navButtons:visited {
    padding: 0 0 1.0rem;
    color: var(--color2);
    transition: .8s;
    text-decoration: none;
    display: block;
    font-weight: 700
}

.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(--color1)
}

.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(--color2);
    border-color: var(--color2)
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .lightboxOverlay {
        overflow:scroll
    }

    .lightboxOverlay::-webkit-scrollbar {
        width: 0
    }
}
@media (max-width: 1440px) {
    .h1, h1{font-size:2.5rem;}
    .atouts .picto i{font-size:3rem;}
    .pageTitle strong{font-size:3rem;}
    .callTracker a, .callTracker span{min-width: 14.5rem;}
    .tete .before-menu .d_devis a, .tete .before-menu .tel_info .tel{font-size:1.4rem;}
    
}
@media (max-width: 991px) {
    .pageTitle{
        
padding: 6.0rem 1.0rem;
    }

    .actualites a.bouton-principal, .news a.bouton-principal {
        margin: .5em 0;
    }

    .flex-contact {
        flex-direction: column;
        gap: 3em;
    }

    .flex-contact iframe {
        width: 100%;
    }

    .flex-row {
        flex-direction: column;
    }

    .flex-row .map {
        width : 100%
    }

.pageTitle strong {
    font-size: 2.1rem;
}
    .img-seo img {
        width: 100%;
        height: auto;
    }

    .flex-seoContain {
        flex-wrap: wrap;
    }

    .flex-seoContain .seo-content {
        width: 100%;
        background: transparent;
    }

    .flex-seoContain .seo-form {
        width: 100%;
    }

    .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: 1.1rem;
        opacity: .5;
        position: relative;
        font-size: 0
    }

    .contact .formulaire .form-group>label.focus {
        bottom: auto;
        font-size: var(--taille_font);
        padding-top: 0.5rem
    }

    .container {
        max-width: none;
        width: auto
    }

    .centerservice2 {
        margin: 0!important
    }

    .centerservice {
        margin: 0 25%!important
    }

    .contact .formulaire .form-group .col-md-4 {
        width: 100%!important
    }

    .contact .formulaire .form-group .col-md-8 {
        width: 100%!important
    }

    .contact .formulaire .form-group input[name=captcha] {
        width: 100%!important;
        margin-right: 0!important;
        text-align: left!important
    }

    .contact .formulaire .form-group input[name=captcha]+a {
        position: absolute;
        width: 14.0rem;
        top: 0.1rem;
        right: 0.1rem;
        margin-right: 0!important
    }

    .contact .formulaire .form-group input.btn-primary {
        margin-top: 0.8rem
    }

    .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
    }

    .body-page-1 .fluid-contenu .corps {
        padding: 0 3% 2.0rem !important;
    }

    .block-texte .cell-article,.block-texte .cell-banniere {
        display: block;
        width: 100%;
        padding: 2.0rem 0
    }

    .pied .bande1 {
        padding: 0 10% 7.0rem
    }

    .prestation .cell.texte .contenu,.prestation:nth-child(even) .cell.texte .contenu {
        /* padding: 5.0rem 10%; */
    }

    .contact .tab-coordonnes .cell.gauche .contenu {
        padding: 5.0rem 7% 3.0rem
    }

    .certifs .logo-certif img {
        background-size: contain
    }

    .fluid-contenu {
        margin: 0!important
    }

    .gallery .description-galerie {
        padding: 0 0 4.0rem;
        
    }

    .zone {
        text-align: center
    }

    .services-home .contenu-services,.services-home .imgs-services {
        padding: 2.0rem 0
    }

    .contact-contain,.prestation-contain {
        width: 100%;
        padding: 0 2.0rem
    }

    .banniere {
        position: relative;
        width: 100%;
        height: 37vh;
    }

    .oneImg-service:after {
        display: none;
        padding: 0
    }
}

@media (max-width: 767px) {
    .pad-xs {
        padding-left:1.5rem!important;
        padding-right: 1.5rem!important
    }

    .pad-xs-l {
        padding-left: 1.5rem!important
    }

    .pad-xs-r {
        padding-right: 1.5rem!important
    }

    .centerservice2 {
        margin: 0!important
    }

    .centerservice {
        margin: 0!important
    }

    .nopad-xs {
        padding-left: 0!important;
        padding-right: 0!important
    }

    .nopad-xs-l {
        padding-left: 0!important
    }

    .nopad-xs-r {
        padding-right: 0!important
    }

    .h1,h1 {
        font-size: 2.2rem;
        line-height: 2.2rem
    }

.titre-secondaire {
    font-size: 1.5rem;
}

    .fluid-contenu .corps, .body-pageseo .fluid-contenu .corps {
        padding: 2.0rem 1.5rem 4.0rem  !important;
        padding: 0 !important;
    }

    .recup-photos .col-md-4 {
        padding-left: 0.5rem!important;
        padding-right: 0.5rem!important
    }

    .recup-photos {
        margin-left: -0.5rem!important;
        margin-right: -0.5rem!important
    }

    .recup-photos .propor {
        margin-bottom: 0.5rem
    }

    .certifs {
        display: block
    }

    .certifs .cell.gauche {
        display: block;
        width: 100%
    }

    .certifs .cell.gauche .contenu {
        padding: 3.0rem 1.5rem 4.0rem
    }

    .certifs .cell.droite {
        display: block;
        width: 100%;
        border-top: 0.2rem solid var(--color4)
    }

    .services {
        display: block
    }

    .services .cell.gauche {
        display: block;
        width: 100%;
        height: 18.0rem
    }

    .services .cell.droite {
        display: block;
        width: 100%
    }

    .services .cell.droite .contenu {
        padding: 3.0rem 1.5rem 4.0rem
    }

    .realisations {
        display: block
    }

    .realisations .titre-secondaire {
        display: inline-block;
        width: 100%
    }

    .realisations .col-md-3 {
        padding-left: 0.5rem!important;
        padding-right: 0.5rem!important
    }

    .realisations {
        margin-left: -0.5rem!important;
        margin-right: -0.5rem!important
    }

    .realisations .propor {
        margin-bottom: 0.5rem
    }

    .AvisClientsBg .contenu,.realisations .contenu {
        padding: 3.0rem 1.5rem 4.0rem
    }

    a.bouton-principal,button.bouton-principal {
        padding: 1.3rem 4.0rem 
    }

    .intervention .description {
        width: 100%
    }

    .intervention .contenu {
        padding: 4.0rem 1.5rem 5.0rem
    }

    .intervention .zone {
        width: 100%;
        height: 30.0rem;
        position: static;
        -webkit-background-size: contain;
        -moz-background-size: contain;
        -o-background-size: contain;
        background-size: contain
    }

    .AvisClientsBg {
        padding: 0
    }

    .pied .bande1 {
        padding: 3.0rem 1.5rem
    }

    .pied .btn-like {
        padding: 0 0 1.5rem;
        text-align: center
    }

    .pied .btn-partage {
        text-align: center;
        padding: 2.0rem 0 0
    }

    .body-contact .fluid-contenu .corps,.body-gallery-4 .fluid-contenu .corps {
        padding: 3.0rem 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 1.5rem 3.0rem
    }

    .contact .tab-coordonnes .cell.centre {
        display: block;
        width: 100%
    }

    .contact .tab-coordonnes .cell.droite {
        display: block;
        width: 100%;
        display: none;
    }

    .contact .plan .block #googlemapapi,.contact .plan iframe {
        height: 25.0rem!important
    }

    .contact .tab-formulaire {
        display: block
    }

    .contact .tab-formulaire .cell.gauche {
        display: none
    }

    .contact .tab-formulaire .cell.droite {
        display: block;
        vertical-align: top;
        width: 100%;
        border-bottom: 0.2rem solid var(--color4)
    }

    .contact .tab-formulaire .cell.droite .contenu {
        padding: 3.0rem 1.5rem
    }

    .contact .coordonnees {
        padding: 0
    }

    .gallery .description-galerie {
        padding: 0 1.5rem 2.0rem
    }

    .actualites,.prestation {
        display: block;
        padding: 1.5rem 0;
    }

.prestation {
    /* padding-top: 0; */
}

    .actualites .cell.photo,.prestation .cell.photo {
        display: block;
        width: 100%;
        height: 25vh;
    }

    .actualites .cell.texte,.prestation .cell.texte {
        display: block;
        width: 100%;
        clear: both
    }

    .actualites .cell.texte .contenu,.prestation .cell.texte .contenu {
        padding: 3.0rem 1.5rem
    }

    .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: 0.5rem!important;
        padding-right: 0.5rem!important
    }

    .gallery .ligne-photos {
        margin-left: -0.5rem!important;
        margin-right: -0.5rem!important
    }

    .gallery .ligne-photos .propor {
        margin-bottom: 1.0rem
    }

    .gallery .nav li {
        margin-bottom: 0;
        background: 0 0
    }

    .gallery .description-galerie {
        padding: 4rem 0 ;
        
    }

    .services .cell.droite .contenu {
        clear: both
    }

    .scrollbars {
        width: 100%;
        height: auto
    }

    .news .detail_actu-img {
        width: 100%;
        float: none
    }

    .contact .formulaire .form-group input.btn-primary {
        width: 100%;
        float: none
    }

    .banniere {
        position: relative;
        width: 100%;
        height: 38.0rem
    }

    .services-home:after {
        display: none
    }

    .news_avant_apres>div:last-child {
        right: 0
    }

    .news_avant_apres>div {
        display: block;
        margin: 0 0 0.5rem
    }

    .news_avant_apres,.news_avant_apres>div {
        display: block
    }
}

@media (min-width: 768px) and (max-width:991px) {
    .pad-sm {
        padding-left:1.5rem!important;
        padding-right: 1.5rem!important
    }

    .pad-sm-l {
        padding-left: 1.5rem!important
    }

    .pad-sm-r {
        padding-right: 1.5rem!important
    }

    .nopad-sm {
        padding-left: 0!important;
        padding-right: 0!important
    }

    .nopad-sm-l {
        padding-left: 0!important
    }

    .nopad-sm-r {
        padding-right: 0!important
    }

    .slogan {
        text-align: center
    }

    .scrollbars {
        height: 24.0rem
    }

    .h1,h1 {
        font-size: 2.6rem;
        line-height: 2.6rem
    }

    .titre-secondaire {
        font-size: 2.3rem;
        line-height: 2.4rem
    }

    .gallery .description-galerie {
        padding: 0 0 4.0rem;
        
    }

    .contact .tab-coordonnes .cell.droite {
        width: 50%
    }

    .contact .tab-coordonnes .cell.gauche {
        width: 50%
    }
}

@media (min-width: 991px) and (max-width:1199px) {
    .gallery .description-galerie {
        padding:0 0 4.0rem;
        
    }

    .body-error404 a.btn.btn-default,.contact .formulaire input.btn-primary,.contact a.btn.btn-default {
        padding: 1.6rem 2.0rem;
        font-size: 1.2rem
    }

    .contact .coordonnees {
        padding: 0
    }

    .contact .formulaire .form-group input.btn-primary {
        width: 100%;
        margin-top: 0.8rem;
        float: none
    }

    .fixed-menu.header {
        padding: 0 2%
    }
}

.infinite-scroll .chargement {
    background: rgba(var(--color2),0) url(../images/chargement.gif) no-repeat scroll center top;
    bottom: 0;
    display: none;
    height: 3.2rem;
    left: 50%;
    margin-left: -1.6rem;
    position: absolute;
    width: 3.2rem
}

.g-recaptcha {
    float: left
}

#g-recaptcha-response {
    left: 1.2rem;
    position: relative;
    display: block!important;
    top: -4.5rem;
    opacity: 0!important;
    margin: 0!important;
    height: 1.0rem!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% }}
