:root {
    --color0: #ffffff;
    --color0_rgb: 255, 255, 255;
    --color1: #1565C0;
    --color1_rgb: 21, 101, 192;
    --color2: #1C86FF;
    --color2_rgb: 28, 134, 255;
    --color3: #0a0a0a;
    --color3_rgb: 10, 10, 10;
    --color4: #000000;
    --color4_rgb: 0, 0, 0;
    --color5: #1a1a1a;
    --color5_rgb: 26, 26, 26;
    --color6: #9e9e9e;
    --color6_rgb: 158, 158, 158;
    --color7: #EF4135;
    --color7_rgb: 239, 65, 53;
    --color8: #0055A4;
    --color8_rgb: 0, 85, 164;
    --color9: #0084FF;
    --color9_rgb: 0, 132, 255;
    --color10: #F0F0F0;
    --color10_rgb: 240, 240, 240;


    
    --gradient: linear-gradient(135deg,
            rgba(var(--color4_rgb), 0.9) 0%,
            rgba(var(--color1_rgb), 0.3) 100%);
    --font_family_1: 'Oswald-medium', sans-serif;
    /* --font_family_1: 'Satoshi Regular', sans-serif; */
    --font_family_2: 'Satoshi Regular', sans-serif;
    --font_family_3: 'OpenSansRegular', sans-serif;
    --taille_font: clamp(1.6rem, 0.8vw, 3.5rem);
    --border-radius: 3px;
    --border-default: 1px solid rgba(var(--color0_rgb), 0.05);
    --border-color-hover: rgba(var(--color0_rgb), 0.1);
    --box-shadow: 0 6px 16px rgba(var(--color0_rgb), 0.08);
    --background-gradient: linear-gradient(135deg, rgba(var(--color1_rgb), 0.25) 0%, rgba(var(--color5_rgb), 0.1) 100%);
    --background-bruit: radial-gradient(circle at center, rgba(var(--color0_rgb), 0.25) 1px, transparent 1px),
            radial-gradient(circle at center, rgba(var(--color0_rgb), 0.25) 1px, transparent 1px);
    --background-mask: linear-gradient(to right, rgba(var(--color6_rgb), 1) 0%, rgba(var(--color6_rgb), 0) 75%);
    --color-image-mask: rgba(var(--color2_rgb), 0.3)
}


/* ==========================================================================
   BASE
   ========================================================================== */

body,
html {
    height: 100%;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--color0);
    font-family: var(--font_family_3);
    font-size: var(--taille_font);
    line-height: normal;
}

article,
aside,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

img {
    max-width: 100%;
    object-fit: cover;
}

a img {
    border: none;
}

iframe {
    border: none;
}

ul {
    list-style-position: inside;
    list-style-type: none;
    list-style-image: none;
}

dir,
menu {
    padding-left: 15px;
}

table,
table td,
table th {
    font-size: inherit;
    border: 1px solid #7c7c7c;
}

.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}


/* ==========================================================================
   TYPOGRAPHIE
   ========================================================================== */

.h1,
.h2,
.h3,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color1);
    font-family: var(--font_family_1);
    font-weight: 200;
}

.h1,
h1 {
    font-size: calc(var(--taille_font) * 3);
    line-height: 1.3;
    color: var(--color2);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 48px;
    position: relative;
    font-weight: 700;
    text-wrap: balance;
}

.h1:before,
h1:before {
    content: "";
    width: 75px;
    background: var(--color1);
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -37px;
    height: 2px;
}

.h2,
h2 {
    font-size: calc(var(--taille_font) * 1.8);
}

.h3,
h3 {
    font-size: calc(var(--taille_font) * 1.6);
}

h4 {
    font-size: calc(var(--taille_font) * 1.4);
}

h5 {
    font-size: calc(var(--taille_font) * 1.2);
}

h6 {
    font-size: calc(var(--taille_font) * 1);
}

.titre-secondaire {
    position: relative;
    font-size: calc(var(--taille_font) * 1.6);
    line-height: 1.1;
    padding: 12px 0 0;
    margin: 0;
    font-weight: 200;
    color: var(--color1);
    margin-bottom: 0;
    display: block;
}

blockquote p {
    font-size: inherit;
}


/* ==========================================================================
   LIENS & BOUTONS
   ========================================================================== */

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,
a:link,
a:visited {
    color: var(--color2);
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

a:active {
    outline: 0;
}

.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;
}

/* ==========================================================================
   BOUTONS - Système unifié
   ========================================================================== */

a.bouton,
a.bouton:visited,
.bouton,
.bouton:visited,
input[type="submit"].btn {
    position: relative;
    display: inline-block;
    min-width: 15rem;
    margin: 0;
    padding: 1.5rem 3rem;
    border: none;
    border-radius: var(--border-radius);
    background: none;
    text-decoration: none;
    text-align: center;
    font-family: var(--font_family_3);
    font-size: var(--taille_font);
    font-weight: 600;
    line-height: normal;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.bouton::before,
a.bouton::before,
input[type="submit"].btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--color0_rgb), 0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

.bouton:hover::before,
a.bouton:hover::before,
input[type="submit"].btn::before {
    left: 100%;
}

.bouton-primary,
.bouton-primary:visited,
a.bouton-primary,
a.bouton-primary:visited,
input[type="submit"].btn-primary {
    background: var(--color1);
    color: var(--color0);
    transform: translateY(0);
}

.bouton-primary:hover,
a.bouton-primary:hover,
input[type="submit"].btn-primary:hover {
    background: var(--color2);
    color: var(--color0);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(var(--color2_rgb), 0.4);
}

.bouton-primary:active,
a.bouton-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(var(--color2_rgb), 0.3);
}

.bouton-secondary,
.bouton-secondary:visited,
a.bouton-secondary,
a.bouton-secondary:visited {
    background: transparent;
    color: var(--color0);
    box-shadow: inset 0 0 0 1px var(--color0);
}

.bouton-secondary:hover,
a.bouton-secondary:hover {
    background: rgba(var(--color1_rgb), 0.05);
    color: var(--color0);
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 1px var(--color0), 0 6px 25px rgba(var(--color2_rgb), 0.4);
}

.bouton-secondary:active,
a.bouton-secondary:active {
    transform: translateY(0);
    box-shadow: inset 0 0 0 1px var(--color0), 0 2px 10px rgba(var(--color2_rgb), 0.3);
}

.tete .bouton {
    padding: 1rem 2rem;
    min-width: auto;
    font-size: calc(var(--taille_font) * 0.85);
}

.btn-avis {
    margin-top: 1.5em;
}

.bouton:disabled,
.bouton.disabled,
a.bouton.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.bouton[data-loading="true"] {
    pointer-events: none;
    opacity: 0.7;
}

.bouton[data-loading="true"] .fa-spinner {
    margin-right: 0.5em;
}

.bouton:focus-visible,
a.bouton:focus-visible {
    outline: 2px solid var(--color2);
    outline-offset: 2px;
}

.bouton-retour .glyphicon {
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.bouton-retour:hover .glyphicon {
    transform: translateX(-5px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    a.bouton,
    .bouton {
        min-width: auto;
        padding: 1.2rem 2rem;
        font-size: calc(var(--taille_font) * 0.95);
    }

    .tete .bouton {
        padding: 0.8rem 1.5rem;
        font-size: calc(var(--taille_font) * 0.8);
    }

    .actualites a.bouton{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 480px) {
    a.bouton,
    .bouton {
        width: 100%;
        padding: 1rem 1.5rem;
    }
}

/* ==========================================================================
   BOUTONS MOBILES FIXES (Call-to-Action)
   ========================================================================== */

#contactButtonsMobile a,
.call-to-action-mobile {
    position: relative;
    padding: 1em 0 !important;
    background: var(--color1) !important;
    line-height: 1;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
    box-shadow: 0 4px 15px rgba(var(--color4_rgb), 0.3);
}

#contactButtonsMobile a::before,
.call-to-action-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--color0_rgb), 0.2), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

#contactButtonsMobile a:hover::before,
.call-to-action-mobile:hover::before {
    left: 100%;
}

#contactButtonsMobile a:hover,
.call-to-action-mobile:hover {
    background: var(--color2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--color2_rgb), 0.5);
}

#contactButtonsMobile a:active,
.call-to-action-mobile:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(var(--color2_rgb), 0.4);
}

#contactButtonsMobile a i,
.call-to-action-mobile i {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
}

#contactButtonsMobile a svg,
.call-to-action-mobile svg {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}

#contactButtonsMobile a[href*="contact"] {
    background: var(--color2);
}

#contactButtonsMobile a[href*="contact"]:hover {
    background: var(--color1);
}

#contactButtonsMobile::after {
    content: '';
    display: table;
    clear: both;
}

/* ==========================================================================
   BOUTONS NAVIGATION (Swiper + bxSlider)
   ========================================================================== */

.btns-swipper {
    margin-top: 2vh;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: .7em;
    background: transparent;
    color: var(--color1);
}

.btns-swipper .swiper-button,
.AvisClientsBg .bx-prev,
.AvisClientsBg .bx-next {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.7em;
    height: auto;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--color2);
    color: var(--color2);
    border-radius: var(--border-radius);
    transition: 0.3s ease;
    cursor: pointer;
}

.btns-swipper .swiper-button.prev,
.AvisClientsBg .bx-prev {
    left: 0;
}

.btns-swipper .swiper-button.next,
.AvisClientsBg .bx-next {
    right: 0;
}

.AvisClientsBg .bx-prev,
.AvisClientsBg .bx-next {
    position: absolute;
    top: 50%;
    text-indent: -9999px;
    text-decoration: none;
    background: transparent;
    transform: translateY(-50%);
}

.AvisClientsBg .bx-prev {
    left: -3em;
}

.AvisClientsBg .bx-next {
    right: -3em;
}

.btns-swipper .swiper-button i,
.AvisClientsBg .bx-prev::before,
.AvisClientsBg .bx-next::before {
    font-size: var(--taille_font);
    color: var(--color2);
    transition: color 0.3s ease;
}

.AvisClientsBg .bx-prev::before,
.AvisClientsBg .bx-next::before {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    text-indent: 0;
    transform: translate(-50%, -50%);
}

/* Contenu des icônes bxSlider */
.AvisClientsBg .bx-prev::before {
    /* fa-chevron-left (flèche fine) */
    /* content: "\f053"; */
    /* fa-arrow-left (flèche épaisse) */
    content: "\f060";
}

.AvisClientsBg .bx-next::before {
    /* fa-chevron-right (flèche fine) */
    /* content: "\f054"; */
    /* fa-arrow-right (flèche épaisse) */
    content: "\f061";
}

.btns-swipper .swiper-button:hover,
.AvisClientsBg .bx-prev:hover,
.AvisClientsBg .bx-next:hover {
    border-color: var(--color1);
    color: var(--color1);
    opacity: 1;
}

.btns-swipper .swiper-button:hover i,
.AvisClientsBg .bx-prev:hover::before,
.AvisClientsBg .bx-next:hover::before {
    color: var(--color1);
}

/* ==========================================================================
   PAGINATION (Swiper + bxSlider) - Styles communs
   ========================================================================== */

.btns-swipper .swiper-pagination {
    position: static !important;
    width: auto !important;
    display: none;
    gap: 0.5em;
    align-items: center;
}

.AvisClientsBg .bx-wrapper .bx-pager {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8em;
    padding: 1em 0;
    text-align: center;
}

.AvisClientsBg .bx-wrapper .bx-pager .bx-pager-item {
    display: inline-block;
    margin: 0;
}

.swiper-pagination-bullet,
.AvisClientsBg .bx-wrapper .bx-pager-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    padding: 0;
    background: rgba(var(--color0_rgb), 0.3);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin: 0;
    cursor: pointer;
}

.AvisClientsBg .bx-wrapper .bx-pager-link {
    text-indent: -9999px;
}

.swiper-pagination-bullet:hover,
.AvisClientsBg .bx-wrapper .bx-pager-link:hover {
    background: rgba(var(--color2_rgb), 0.6);
    transform: scale(1.2);
}

.swiper-pagination-bullet-active,
.AvisClientsBg .bx-wrapper .bx-pager-link.active {
    width: 24px;
    background: var(--color2);
    border-radius: 5px;
}

.AvisClientsBg .bx-wrapper .bx-pager-link .dot {
    display: none;
}

.AvisClientsBg .bx-wrapper .bx-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 0;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.AvisClientsBg .bx-wrapper .bx-controls-direction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (max-width: 1200px) {
    .AvisClientsBg .bx-prev {
        left: -2.5em;
    }

    .AvisClientsBg .bx-next {
        right: -2.5em;
    }
}

@media (max-width: 768px) {
    .btns-swipper .swiper-button { display: none; }
    
    .btns-swipper .swiper-pagination { display: flex; }
    
    .btns-swipper {
        justify-content: center;
    }

    .AvisClientsBg .bx-wrapper .bx-controls {
        top: auto;
        bottom: 0;
        transform: translate(-50%, -50%);
    }

    .AvisClientsBg .bx-wrapper .bx-controls-direction {
        justify-content: center;
        gap: 1em;
    }

    .AvisClientsBg .bx-prev,
    .AvisClientsBg .bx-next {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        width: 2.5em;
        height: 2.5em;
        transform: none;
    }

    .AvisClientsBg .bx-prev:hover,
    .AvisClientsBg .bx-next:hover {
        transform: scale(1.05);
    }

    .AvisClientsBg .bouton-principal {
        padding: 0.9em 2em;
        font-size: var(--taille_font);
    }
}

@media (max-width: 480px) {
    .swiper-pagination-bullet,
    .AvisClientsBg .bx-wrapper .bx-pager-link {
        width: 8px;
        height: 8px;
    }
    
    .swiper-pagination-bullet-active,
    .AvisClientsBg .bx-wrapper .bx-pager-link.active {
        width: 20px;
    }

    .AvisClientsBg .bx-wrapper .bx-pager {
        gap: 0.6em;
    }

    .AvisClientsBg .bx-prev,
    .AvisClientsBg .bx-next {
        width: 2.2em;
        height: 2.2em;
        border-width: 2px;
    }
}

/* ==========================================================================
   UTILITAIRES (Classes Helper)
   ========================================================================== */

.nopad {
    padding-left: 0;
    padding-right: 0;
}

.nopad-l {
    padding-left: 0;
}

.nopad-r {
    padding-right: 0;
}

.nomargin {
    margin: 0;
}

.hide {
    display: none;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.justify {
    text-align: justify;
}

.bold {
    font-weight: 700;
}

.underline {
    text-decoration: underline;
}

.relative {
    position: relative;
}

.inline-block {
    display: inline-block;
    vertical-align: top;
}

.clear:after {
    content: '';
    display: block;
    clear: both;
}

.retrait {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

.cover {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

hr.trait {
    height: 1px;
    margin: -.5em 0;
    padding: 0;
    color: var(--color3);
    background-color: var(--color3);
    border: 0;
    opacity: .4;
}

.alert.alert-warning.alert-dismissable {
    width: 100%;
}

/* ==========================================================================
   ANIMATIONS & EFFETS
   ========================================================================== */

.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);
}

.noflicker {
    -webkit-transform: translateZ(0);
}

[data-anim] {
    opacity: 0;
}

/* ============================================================================
   VISUAL FRAME - Cadre décoratif universel
   ============================================================================ */

.visual-frame {
    position: relative;
    display: inline-block; /* S'adapte au contenu */
    width: 100%; /* Ou auto selon votre besoin */
}

/* --- Texture pointillée en arrière-plan --- */
.visual-frame::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    inset: auto auto -4vh -4vh;
    background: var(--background-bruit);
    background-size: 0.5vw 0.5vw;
    background-position: 0 0, 0.25vw 0.25vw;
    mask-image: var(--background-mask);
    -webkit-mask-image: var(--background-mask);
    pointer-events: none;
    z-index: -1;
    border-radius: var(--border-radius);
}

/* --- Bordure gradient en arrière-plan --- */
.visual-frame::after {
    content: "";
    position: absolute;
    inset: auto auto -4vh -4vh;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    background: var(--background-gradient);
    border: 2px solid transparent;
    pointer-events: none;
    z-index: -2;
}

.visual-frame > * {
    position: relative;
    z-index: 1;
    display: block;
    border-radius: var(--border-radius);
}

/* --- Pour les images --- */
.visual-frame img,
.visual-frame iframe {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Modificateurs de position --- */
.visual-frame.reverse::before,
.visual-frame.reverse::after {
    inset: -4vh auto auto -4vh;
    mask-image: var(--background-mask);
    -webkit-mask-image: var(--background-mask);
}

.visual-frame.right::before,
.visual-frame.right::after {
    inset: auto -4vh -4vh auto;
}

.visual-frame.top::before,
.visual-frame.top::after {
    inset: -4vh auto auto -4vh;
}

@media (max-width: 768px) {
    .visual-frame::before {
        background-size: 8px 8px;
        background-position: 0 0, 4px 4px;
    }
}

/* ==========================================================================
   HEADER (Tête de page)
   ========================================================================== */

.main-page {
    position: relative;
    overflow: hidden;
}

.tete {
    position: fixed;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    height: 10vh;
    background: linear-gradient(180deg, rgba(var(--color4_rgb), 0.9) 0%, transparent 100%);
    transition: .5s;
    z-index: 9000;
}

.fixed.tete {
    background: var(--color4);
}

.header {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 0 3%;
}

/* --- Logo --- */

.tete .header .flex-logo {
    width: 15%;
    padding: 0 5% 0 0;
}

.tete .logo-site {
    margin: 0;
}

.tete .logo-site a {
    font-size: 15px;
    color: var(--color1);
    text-decoration: none;
    font-family: var(--font_family_1);
}

.tete .logo-site a:focus,
.tete .logo-site a:hover {
    color: var(--color1);
    text-decoration: none;
}

.tete .logo-site a img {
    height: auto;
}

.tete .header .flex-menuP {
    width: 60%;
    display: flex;
    justify-content: end;
}

.navh .menu_principal {
    margin: 0 auto;
    padding: 0;
    display: table;
}

.navh .menu_principal>li {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 0 2rem;
    background: 0 0;
}

.navh .menu_principal>li:before {
    content: none;
}

.navh .menu_principal>li:last-child {
    background: 0 0;
}

.navh .menu_principal a,
.navh .menu_principal a:visited {
    position: relative;
    color: var(--color0);
    display: block;
    font-size: calc(var(--taille_font) * 1.1);
    padding: 34px 0;
    font-weight: 400;
    text-decoration: none;
    font-family: var(--font_family_1);
    letter-spacing: 1px;
    transition: all .4s ease;
}

.navh .menu_principal a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    background: var(--color0);
    left: 0;
    bottom: 1em;
    transition: .5s;
}

.navh .menu_principal a:hover:after,
.navh .menu_principal li.active>a:after {
    width: 100%;
}

.tete .header .flex-infos {
    display: flex;
    justify-content: center;
    width: 25%;
    height: 100%;
}

.tete .header .flex-infos .infos {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1em;
}

.tete .widget-partage {
    display: none;
}

.tete .btn-partage {
    padding: 0;
    display: flex;
}

.btn-partage .icones {
    width: 16px;
    margin: 0;
    height: 16px;
    padding: 0;
    position: relative;
    left: 0;
    fill: var(--color0);
}

.icone-share {
    display: none;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-phone .icones {
    margin: 0 8px 0 0;
    fill: var(--color1);
    width: 25px;
    height: 25px;
}

.callTracker {
    position: relative;
}

.callTracker a,
.callTracker span {
    display: inline-block;
    padding: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    height: 100%;
    text-decoration: none;
}

.callTracker .t_phone {
    opacity: 0;
    display: none;
}

.callTracker .t_affiche {
    cursor: pointer;
}

header .callTracker a,
header .callTracker span {
    top: 5px;
}

.callTracker.active .t_phone {
    opacity: 1;
    display: inline-block;
}

.callTracker.active .t_affiche {
    opacity: 0;
    display: none;
}

.callTracker:not(.active) a:hover,
.callTracker:not(.active):hover {
    /* color: var(--color1); */
}

.sidebar-scroll-right .callTracker {
    width: 100%;
    height: 50px;
}

.coordonnees .callTracker a,
.pied .callTracker a {
    position: relative;
    left: 0;
}

@media (max-width: 1280px) {
    .tete .btn-partage {
        display: none;
    }
}

/* ==========================================================================
   BANNIÈRE
   ========================================================================== */

.banniere {
    position: absolute;
    top: 0 !important;
    margin-left: 0;
    height: 100%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-position: center;
}

.body-page-1 .banniere {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.banniere img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banniere .swiper.mySwiper-bann.swiper-container-fade {
    width: 100%;
    height: 100%;
    position: absolute;
}

.banniere .swiper.mySwiper-bann.swiper-container-fade .swiper-slide {
    width: 100%;
    height: 100%;
}

.banniere:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    background-color: var(--color3);
    opacity: 0.25;
}

.body-page-1 .banniere:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000000ab, #00000066);
    opacity: 1;
}

.banniere::before {
    content: "";
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    pointer-events: none;
    background-color: #00000054;
}

.body-page-1 .banniere::before {
    content: none;
    background-color: transparent;
}

@-moz-document url-prefix() {
    .banniere img:not(.body-page-1 .banniere img) {
        filter: blur(4px);
        width: 100%;
    }

    .body-page-1 .banniere {
        filter: blur(0);
        width: 100%;
        left: 0;
    }
}

.banniere .swiper-pagination {
    flex-direction: column;
    right: 100px;
    width: max-content;
    left: unset;
    top: 57%;
    bottom: unset;
    display: flex;
    transform: translateY(-50%);
    gap: 8px;
    opacity: 0.8;
    align-items: end;
    justify-content: center;
    height: 100%;
    padding-bottom: 40px;
}

.banniere span.swiper-pagination-bullet {
    height: 3px;
    border-radius: 0;
    width: 27px;
    opacity: 1;
    background: white;
    transition: .3s ease;
    margin: 8px 0 !important;
}

.banniere span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 50px;
    background: var(--color1);
}

.banniere .swiper-button.next,
.bannSwiper .swiper-button.prev {
    width: 40px;
    height: 40px;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: .6;
    transition: .4s ease;
}

.mySwiper-bann .swiper-button.prev,
.mySwiper-bann .swiper-button.next {
    background: var(--color1);
    backdrop-filter: blur(5px);
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color0);
    margin: 0 80px;
}

.swiper-button.next:hover,
.swiper-button.prev:hover {
    opacity: 1;
}

.banniere video {
    position: absolute;
    top: -10vh;
    height: 130vh;
    width: 100vw;
    left: 0;
}

a.bouton-descendre {
    position: absolute;
    bottom: 40px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
    text-decoration: none;
    opacity: 0;
    animation: fadeIn 1s ease-out 3.5s forwards;
    z-index: 10;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.bouton-descendre span {
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color6);
    font-size: calc(var(--taille_font) * 0.70);
    font-family: var(--font_family_3);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--color1), transparent);
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--color2);
    animation: scrollDown 1s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        top: 0;
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.banniere-flag {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 4px;
    z-index: 9;
}

.banniere-flag span {
    flex: 1;
}

.banniere-flag span:nth-child(1) {
    background: var(--color8);
}

.banniere-flag span:nth-child(2) {
    background: var(--color0);
}

.banniere-flag span:nth-child(3) {
    background: var(--color7);
}

.banniere .mySwiper-bann img {
    animation: 30s infinite ease zoomAB;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}


.slogan {
    position: relative;
    color: var(--color0);
    width: 100%;
    padding: 0 4%;
    margin: 0;
    text-align: left;
    z-index: 2;
    top: 50px;
}

.slogan h1 {
    position: relative;
    color: var(--color0);
    width: 100%;
    margin: 0;
    text-align: left;
    z-index: 2;
}

.h1.slogan:before,
.slogan h1:before {
    content: "";
    width: 0;
    height: 0;
    background: 0 0;
    position: inherit;
    bottom: inherit;
    left: inherit;
    display: none;
}

.slogan .titre {
    font-size: calc(var(--taille_font) * 6);
    font-family: var(--font_family_1);
    font-style: italic;
    text-transform: uppercase;
    line-height: 40px;
}

.slogan .titre span {
    font-size: 48px;
}

.slogan .sous-titre {
    font-size: calc(var(--taille_font) * 1.8);
    font-family: var(--font_family_1);
    line-height: 1.3;
    font-weight: 200;
    text-transform: uppercase;
}

.body-page-1 .slogan {
    top: 50px;
    text-align: left;
    width: 80%;
    padding: 0 3%;
}

.cta {
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    align-items: stretch;
    column-gap: 1rem;
    justify-content: flex-start;
    height: 100%;
    margin: 2em 0;
    font-weight: 700;
}

.cta a.bouton-principal:after {
    display: none;
}

.cta p.tel-header.bouton-principal.hvr-shutter-out-horizontal {
    text-align: left;
    font-family: var(--font_family_1);
    color: var(--color0);
    text-decoration: none;
    margin: 0 0 0;
    display: inline-flex;
    text-transform: uppercase;
    border: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.cta p.tel-header.bouton-principal.hvr-shutter-out-horizontal a {
    color: var(--color0);
    text-align: center;
}

.cta p.tel-header.bouton-principal.hvr-shutter-out-horizontal span {
    font-size: 100%;
    text-align: center;
    min-width: auto;
}




/* ==========================================================================
   CONTENU PRINCIPAL (Corps)
   ========================================================================== */

.corps blockquote {
    font-size: inherit;
    background: var(--bg-facultatif);
    border-radius: var(--border-radius);
    border: 0;
    padding: 3vh 2vw;
    margin: 3vh 0;
}

.corps .page-contenu h2,
.corps .gallery h2,
.corps .seo-content h2,
.corps .newsItem h2 {
    margin-bottom: 2vh;
}

/* --- Premier H2 avec fond coloré --- */

.corps .page-contenu h2:first-of-type,
.corps .gallery h2:first-of-type,
.corps .seo-content h2:first-of-type,
.corps .newsItem h2:first-of-type {
    position: relative;
    padding: 3vh 2vw;
    font-size: calc(var(--taille_font) + .2rem);
    line-height: calc(var(--taille_font) + 1rem);
    border: none;
    font-weight: 700;
    z-index: 1;
}

.corps .page-contenu h2:first-of-type:before,
.corps .gallery h2:first-of-type:before,
.corps .seo-content h2:first-of-type:before,
.corps .newsItem h2:first-of-type:before {
    content: '';
    position: absolute;
    background: var(--color4);
    width: 100%;
    height: 100%;
    opacity: 1;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: var(--border-radius);
}

.page-contenu img {
    margin: 10px;
}

.body-page-1 .corps a.bouton-principal,
.body-page-1 .corps button.bouton-principal {
    margin: 15px 0 50px;
}

ol li,
ul li {
    padding-left: 0;
    position: relative;
}

ul li:before {
    display: inline-block;
    content: "\f054";
    position: absolute;
    font-weight: 700;
    font-family: 'Font Awesome 5 Free';
    left: -15px;
    font-size: calc(var(--taille_font) * 1);
    color: var(--color1);
    top: 1px;
    width: 9px;
    height: 16px;
}

ol li::marker {
    color: var(--color1);
}

ol li.niveau2,
ul li.niveau2 {
    margin-left: 30px;
}

.imagecont.noflicker.img1 {
    display: block;
    margin: 1vh 0 2vh;
    height: 30vh;
    overflow: hidden;
}

.bg-optionnel {}

.bg-optionnel-gris {
    background: var(--color2);
    background-size: 60px auto;
}

.bloc-GMB .badge-optionnel {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 139px;
    background: url(../images/badge-optionnel.png) no-repeat top right;
    height: 139px;
}

.section {
    position: relative;
    padding: 6em 10% 7em;
    background: var(--color5);
    z-index: 1000;
}

/* ==========================================================================
   SECTION
   ========================================================================== */

.section:nth-child(even):before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color4);
    z-index: -1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .section {
        padding: 4em 2%;
    }
}


/* ==========================================================================
   FOOTER (Pied de page)
   ========================================================================== */

.copyright {
    text-align: left;
}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1530px) {
    .header {
        padding: 0 1.5%;
    }
}

@media (max-width: 1376px) {

    .flex-infos {
        display: none;
    }

    .fluid-infos .infos p.tel {
        display: none;
    }

    .btn-liens-rs {
        display: none;
    }

    .tete .header .flex-menuP {
        width: 80%;
    }

    .fluid-infos {
        position: fixed;
        top: 20vh;
        right: 0;
        z-index: 9999;
    }

    .fluid-infos .infos p.tel {
        margin: 0;
        position: relative;
        left: 155px;
        transition: .5s;
        background: var(--color1);
        line-height: 1;
        padding: 9px 9px;
        display: table;
        color: var(--color0);
    }

    .fluid-infos .infos p.tel span {
        height: initial;
        line-height: 1;
        top: 7px;
        position: relative;
    }

    .fluid-infos .infos .tel .icones {
        margin: 0 15px 0 0;
        width: 26px;
        height: 26px;
        float: left;
    }

    .fluid-infos .infos p.tel:hover {
        left: 0;
    }

    /* .fluid-infos .infos .btn-partage {
        position: relative;
        margin: 8px 0 0;
        display: flex;
        left: 155px;
        transition: .5s;
        background: var(--color1);
        line-height: 1;
        padding: 7px 9px;
        align-items: center;
    }

    .fluid-infos .infos .btn-partage .icones {
        fill: var(--color0);
    }

    .fluid-infos .infos .btn-partage .icones.icone-partage {
        width: 25px;
        height: 25px;
        top: 5px;
        margin-right: 14px;
        fill: var(--color0);
    }

    .fluid-infos .infos .btn-partage:hover {
        left: 0;
    }

    .fluid-infos .icone-share {
        display: block;
        width: 34px;
        height: 22px;
        fill: var(--color0);
        padding-right: 10px;
    }

    .tete .header .btn-partage .icone-partage {
        display: block;
    } */
}

/* ==========================================================================
   2. CONTENU PRINCIPAL
   ========================================================================== */


/* --------------------------------------------------------------------------
   2.1 Fluid Contenu
   -------------------------------------------------------------------------- */

.fluid-contenu {}

.body-page-1 .fluid-contenu {
    margin-top: 0 !important;
}

.fluid-contenu .corps {}


/* --------------------------------------------------------------------------
   2.2 Page d'accueil (Article node-1)
   -------------------------------------------------------------------------- */

article.node-1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2em;
}

.img-accueil,
.texte-accueil {
    width: 50%;
    position: relative;
}

.img-accueil img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.texte-accueil h1 {
    text-align: left;
    margin-top: 0;
}

.texte-accueil h1:before {
    left: 0;
    margin-left: 0;
}

article.page.clear.node-1 .scrollbars {
    height: 32vh;
}

/* --------------------------------------------------------------------------
   2.3 Page contenu home
   -------------------------------------------------------------------------- */

.page-contenu-home {
    position: relative;
    display: block;
    margin: 0 0 3em;
}


/* ==========================================================================
   3. SERVICES
   ========================================================================== */


/* --------------------------------------------------------------------------
   3.1 Bloc Services
   -------------------------------------------------------------------------- */
/* ==========================================================================
   PAGE SERVICES - Liste complète
   ========================================================================== */

.page.services {
    display: flex;
    flex-direction: column;
    gap: 4em;
    padding: 4em 0;
}

/* ==========================================================================
   SERVICE-ITEM (Un service)
   ========================================================================== */

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3em;
    align-items: center;
    width: 100%;
}

/* --- Alternance : Photo à droite (services pairs) --- */
.service-item:nth-child(even) {
    direction: rtl; /* Inverse l'ordre */
}

.service-item:nth-child(even) .cell {
    direction: ltr; /* Restaure la direction du texte */
}

/* ==========================================================================
   PHOTO
   ========================================================================== */

.service-item .cell.photo {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.service-item .cell.photo.cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- Overlay au hover --- */
.service-item .cell.photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--color4_rgb), 0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover .cell.photo::before {
    opacity: 1;
}

.service-item:hover .cell.photo {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(var(--color4_rgb), 0.15);
}

/* ==========================================================================
   CONTENU TEXTE
   ========================================================================== */

.service-item .cell.texte {
    width: 100%;
}

.service-item .cell.texte .contenu {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    padding: 2em;
    background: transparent;
    border: var(--border-default);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.service-item .cell.texte .contenu:hover {
    border-color: rgba(var(--color1_rgb), 0.15);
    box-shadow: var(--box-shadow);
    transform: translateY(-3px);
}

.service-item .cell.texte .contenu h2 {
    padding: 0 0 0.5em 0;
    text-align: left;
}

.service-item .cell.texte .contenu .titre-secondaire {
    margin-top: 0.8em;
    color: var(--color6);
    text-align: left;
}

/* --- Paragraphe --- */
.service-item .cell.texte .contenu p {
    font-family: var(--font_family_3);
    font-size: calc(var(--taille_font) * 1);
    line-height: 1.7;
    color: rgba(var(--color0_rgb), 0.85);
    margin: 0;
}

/* --- Bouton --- */
.service-item .cell.texte .contenu .bouton {
    align-self: flex-start;
    margin-top: 0.5em;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .page.services {
        gap: 3em;
        padding: 3em 0;
    }

    .service-item {
        gap: 2em;
    }

    .service-item .cell.photo {
        min-height: 350px;
    }

    .service-item .cell.texte .contenu {
        padding: 1.5em;
    }
}

@media (max-width: 768px) {
    .page.services {
        gap: 2.5em;
        padding: 2em 0;
    }

    /* --- Passer en colonne sur mobile --- */
    .service-item {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    /* --- Annuler l'alternance --- */
    .service-item:nth-child(even) {
        direction: ltr;
    }

    .service-item .cell.photo {
        min-height: 280px;
    }

    .service-item .cell.texte .contenu {
        padding: 1.5em;
        gap: 1em;
    }

    .service-item .cell.texte .contenu h2 {
        font-size: calc(var(--taille_font) * 2);
    }

    .service-item .cell.texte .contenu .bouton {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page.services {
        gap: 2em;
    }

    .service-item .cell.photo {
        min-height: 240px;
    }

    .service-item .cell.texte .contenu {
        padding: 1.2em;
    }

    .service-item .cell.texte .contenu h2 {
        font-size: calc(var(--taille_font) * 1.8);
    }

    .service-item .cell.texte .contenu .titre-secondaire {
        font-size: 0.55em;
    }
}

.services .miettes {
    list-style-type: none;
    list-style-image: none;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

.services .miettes li {
    display: inline-block;
    vertical-align: top;
    background: 0 0;
    padding: 0;
}

.services .miettes li:before {
    content: none;
}

.services .miettes li a {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: var(--color0);
    display: inline-block;
    opacity: .5;
}

.services .miettes li a.active {
    opacity: 1;
}

.btn-service {
    text-align: center;
    margin: 10px 0;
}

.centerservice {
    margin: 0 33% !important;
}

.centerservice2 {
    margin: 0 16% !important;
}


/* --------------------------------------------------------------------------
   3.2 Cartes Services (Swiper)
   -------------------------------------------------------------------------- */

.services {
    min-height: 100vh;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 5vw,
            rgba(21, 101, 192, 0.03) 5vw,
            rgba(21, 101, 192, 0.03) calc(5vw + 2px)),
        radial-gradient(ellipse at 20% 0%, rgba(21, 101, 192, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(239, 65, 53, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.services-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 2;
}

.liste-services {
    position: relative;
    width: 100%;
    margin-top: 4vh;
    padding: 3vh 0 5vh;
    overflow: visible;
}

.liste-services .swiper-wrapper {
    align-items: stretch;
}

.liste-services .swiper-slide {
    height: auto;
}

.swiper-slide.service-card {
    position: relative;
    display: block;
    height: clamp(40vh, 50vh, 60vh);
    /* height: auto; */
    /* aspect-ratio: 4/5; */ /* Ne marche pas avec AOS puisque force àa recalculer */
    border: var(--border-default);
    overflow: hidden;
    transition: all 0.3s ease;
}

.swiper-slide.service-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: var(--box-shadow);
    transform: translateY(-0.5vh);
}

/* .swiper-slide.service-card::before {
    content: attr(data-id);
    position: absolute;
    top: 1.5vh;
    right: 1.5vw;
    font-family: var(--font_family_3);
    font-size: 3vw;
    color: rgba(var(--color0_rgb), 0.15);
    text-shadow: 0 0.2vh 1vh rgba(var(--color4_rgb), 0.5);
    line-height: 1;
    z-index: 3;
    pointer-events: none;
} */

a.service-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    overflow: hidden;
}

a.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(var(--color4_rgb), 0.9) 0%,
            rgba(var(--color4_rgb), 0.4) 50%,
            transparent 100%);
    opacity: 0.7;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.swiper-slide.service-card:hover a.service-card::before {
    opacity: 1;
}

a.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.swiper-slide.service-card:hover a.service-card::after {
    transform: scale(1.05);
}

.service-card-image {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 3vh 2vw 2vh;
    background: var(--color5);
    clip-path: polygon(0 0, 0 3px, 50% 3vh, 100% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        var(--background-bruit);
    background-size: 0.5vw 0.5vw;
    background-position: 0 0, 0.25vw 0.25vw;
    mask-image: linear-gradient(to bottom, rgba(var(--color6_rgb), 1) 0%, rgba(var(--color6_rgb), 0) 65%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(var(--color6_rgb), 1) 0%, rgba(var(--color6_rgb), 0) 65%);
    pointer-events: none;
    z-index: 0;
}

.service-card-title {
    position: relative;
    font-family: var(--font_family_2);
    font-size: calc(var(--taille_font) * 1.2);
    font-weight: 700;
    color: var(--color0);
    text-align: start;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0;
    padding: 0;
    z-index: 1;
    transition: all 0.3s ease;
}

.swiper-slide.service-card:hover .service-card-title {
    color: var(--color1);
    margin-bottom: 1vh;
}

.service-card-desc {
    position: relative;
    font-family: var(--font_family_2);
    font-size: calc(var(--taille_font) * 1);
    color: var(--color0);
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide.service-card:hover .service-card-desc {
    max-height: 10vh;
    opacity: 1;
    margin-top: 1vh;
}

.service-card-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.8vw;
    margin-top: 1.5vh;
    max-height: 5vh;
    opacity: 1;
    font-family: var(--font_family_2);
    font-size: calc(var(--taille_font) * 0.8);
    font-weight: 600;
    color: var(--color1);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.swiper-slide.service-card:hover .service-card-cta {
    color: var(--color0);
    max-height: 5vh;
    opacity: 1;
    margin-top: 1vh;
}

.service-card-cta::before {
    content: "";
    width: 0;
    height: 2px;
    background: var(--color1);
    display: inline-block;
    margin-right: 0;
    position: relative;
    top: 0;
    opacity: 0;
    transition: width 0.4s ease, opacity 0.3s ease;
}

.swiper-slide.service-card:hover .service-card-cta::before {
    width: 3vw;
    opacity: 1;
}

.service-card-cta::after {
    content: '';
    margin-left: 0.8vw;
    transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
    .services {
        padding: 6vh 4vw;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 5vh 4vw;
        min-height: auto;
    }

    .services.services-home {
        padding: 8vh 5vw;
    }

    .services .titre-principal {
        margin-bottom: 4vh;
    }

    .services .titre-principal::before {
        margin-bottom: 2vh;
    }

    .swiper-slide.service-card {
        height: 45vh;
        border-width: 2px;
    }

    .services::after {
        display: none;
    }

    .service-card-content {
        padding: 3em 2em 1em;
        clip-path: polygon(0 0, 0 3px, 50% 2.5vh, 100% 0, 100% 0, 100% 100%, 0 100%);
    }

    .service-card-content::before {
        background-size: 2vw 2vw;
        background-position: 0 0, 1vw 1vw;
    }

    .swiper-slide.service-card::before {
        font-size: 5vw;
        top: 2vh;
        left: 3vw;
    }

    .service-card-cta {
        gap: 2vw;
    }

    .service-card-cta::before {
        width: 2vw;
    }

    .swiper-slide.service-card:hover .service-card-cta::before {
        width: 10vw;
    }

    .service-card-cta::after {
        margin-left: 2vw;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 5vh 4vw;
    }

    .services .titre-principal::before {
        width: 10vw;
    }

    .swiper-slide.service-card {
        height: 50vh;
    }

    .swiper-slide.service-card::before {
        font-size: 6vw;
    }

    .service-card-cta {
        gap: 1vw;
    }

    .service-card-cta::before {
        width: 1vw;
    }

    .swiper-slide.service-card:hover .service-card-cta::before {
        width: 12vw;
    }
}

/* ==========================================================================
   ATOUTS
   ========================================================================== */
.atouts-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3em;
}

.atouts-desktop .atouts-left {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.atouts-desktop .atouts-right {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.atouts-desktop .atouts-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.atouts-desktop .atouts-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.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: left;
    margin: 0 0 0.8em;
    font-weight: normal;
    opacity: 0.8;
}

.atouts-desktop .content {
    position: relative;
    top: auto;
    left: auto;
    /* transform: none; */
    width: 55%;
    max-width: 700px;
    color: var(--color4);
    font-family: var(--font_family_3);
    font-size: calc(var(--taille_font) * 1.05);
    text-align: center;
    margin: 2em auto 0.5em;
    line-height: 1.7;
    opacity: 0.75;
}

.atouts-desktop .atouts-grid {
    position: relative;
    width: 100%;
    max-width: 2800px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 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;
}

.atout {
    position: relative;
    display: flex;
    border: none;
    border-radius: var(--border-radius);
    border: var(--border-default);
    background: transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.atouts-mobile .atout {
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 2em 1.5em;
    box-shadow: var(--box-shadow);
    width: 100%;
    z-index: 2;
}

.atouts-desktop .atout {
    top: auto;
    left: auto;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    box-shadow: none;
    cursor: default;
    z-index: 2;
}

.atouts-desktop .atout:hover {
    /* transform: translateY(-3px); */
    box-shadow: var(--box-shadow);
    border-color: var(--border-color-hover);
    background: rgba(var(--color0_rgb), 0.05);
    z-index: 10;
}

.atout .picto,
.atout .atout-content {
    min-height: 20vh;
}

.atout .atout-content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 1em;
}

.atout .picto {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.atouts-mobile .atout .picto {
    width: 5em;
    height: 5em;
}

.atouts-desktop .atout .picto {
    min-width: 3.5em;
    width: 10em;
    height: auto;
    aspect-ratio: 1 / 1;
    background: var(--background-gradient) border-box;
    border: var(--border-default);
}

.atouts-desktop .atout .picto::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--background-bruit);
    background-size: 0.5vw 0.5vw;
    background-position: 0 0, 0.25vw 0.25vw;
    mask-image: var(--background-mask);
    -webkit-mask-image: var(--background-mask);
    pointer-events: none;
    z-index: 0;
}

.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-desktop .atout:hover .picto svg {
    transform: translate(-50%, -50%) scale(1.05) rotate(-5deg);
}

.atouts-mobile .atout .picto svg {
    width: 100%;
    z-index: 2;
}

.atouts-desktop .atout .picto svg {
    width: 50%;
    aspect-ratio: 1 / 1;
    color: rgba(var(--color2_rgb), 1);
    fill: rgba(var(--color2_rgb), 1);
    z-index: 7;
}

.atouts-mobile .swiper-slide-active .picto svg,
.atouts-desktop .atouts-grid .atout:hover .picto svg {
    color: var(--color0);
    fill: var(--color0);
}

.atout .titre-atout {
    margin: 0 0 0.5em 0;
    font-family: var(--font_family_2);
    color: rgba(var(--color2_rgb), 1);
    line-height: 1.3;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.atouts-mobile .atout .titre-atout {
    font-size: calc(var(--taille_font) * 1.25);
    text-align: left;
}

.atouts-desktop .atout .titre-atout {
    font-size: calc(var(--taille_font) * 1.25);
    text-align: left;
}

.atouts-mobile .swiper-slide-active .titre-atout,
.atouts-desktop .atouts-grid .atout:hover .titre-atout {
    color: rgba(var(--color2_rgb), 1);
}

.atout .legend {
    font-family: var(--font_family_3);
    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);
    text-align: left;
    transition: opacity 0.3s ease;
}

.atouts-desktop .atout .legend {
    font-size: calc(var(--taille_font) * 1);
    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: var(--box-shadow);
    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);
}

.atouts-mobile .swiper-slide-active .atout {
    border-color: rgba(var(--color1_rgb), 0.2);
    box-shadow: var(--box-shadow);
}


@media (max-width: 1260px) {
    .atouts-desktop {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .atouts-desktop .atouts-right {
        min-height: 400px;
    }

    .atouts-desktop .content {
        text-align: center;
    }

    .atouts-desktop .description {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .atouts-desktop {
        padding: 3em 5%;
    }

    .atouts-desktop .atouts-right {
        min-height: 300px;
    }

    .atouts-desktop .atouts-grid .atout {
        padding: 1.2em 1em;
    }
}

@media (max-width: 480px) {

    .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);
    }

    .atouts-mobile .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;
    }
}


/* ==========================================================================
   CERTIFICATIONS
   ========================================================================== */

.certifs {}

.certifs-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 2;
}

.certifs .h1.titre-principal {
    text-align: center;
    margin-bottom: 3rem;
}

.certifs .titre-secondaire {
    display: block;
    text-align: center;
}

.certifs-description {
    padding: 2rem 0;
    color: var(--color0);
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.certifs-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.certifs-left {
    width: 100%;
    overflow: hidden;
}

.certifs-right {
    width: 100%;
}

.certifs-right .certifs-description {
    max-width: 100%;
    margin: 0;
    padding: 2em;
    text-align: left;
    background: transparent;
    border: var(--border-default);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.certifs-right .certifs-description:hover {
    border-color: rgba(var(--color1_rgb), 0.15);
    box-shadow: var(--box-shadow);
    transform: translateY(-3px);
}

.certifs-single {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.certifs-single .certif-card {
    max-width: 320px;
}

.certifs-carousel {
    position: relative;
    width: 100%;
    margin-top: 4vh;
    padding: 3vh 0 5vh;
    overflow: hidden;
}

.certifs-carousel .swiper {
}

.certifs-carousel .swiper-wrapper {
    align-items: stretch;
}

.certifs-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.certif-card {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 280px;
    transition: transform 0.3s ease;
}

.certif-card:hover {
    transform: translateY(-5px);
}

.certif-image-wrapper {
    position: relative;
    width: 100%;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(var(--color4_rgb), 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.certif-image-wrapper:hover {
    box-shadow: 0 8px 30px rgba(var(--color4_rgb), 0.15);
}

.certif-link {
    display: block;
    position: relative;
}

.certif-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 180px;
    transition: transform 0.4s ease;
}

.certif-link:hover .certif-image {
    transform: scale(1.05);
}

.certif-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--color4_rgb), 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.certif-link:hover .certif-overlay {
    opacity: 1;
}

.certif-overlay i {
    color: var(--color0);
    font-size: 32px;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.certif-link:hover .certif-overlay i {
    transform: scale(1);
}

.certif-caption {
    text-align: center;
    padding: 1rem 0.5rem 0;
    color: var(--color2);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   5. ACTUALITÉS
   ========================================================================== */

/*********************************************
   SECTION ACTUALITÉS - UNIQUE & LISTE
**********************************************/

.news .ligne-actus {
    display: flex;
    flex-direction: column;
    gap: 4em;
    width: 100%;
}

/* ==========================================================================
   LAYOUT ARTICLE
   ========================================================================== */

.actualites article,
.news article {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5em;
    width: 100%;
    align-items: center;
}

/* ==========================================================================
   IMAGES & CONTENEURS PHOTO
   ========================================================================== */

/* --- Conteneurs principaux --- */
.actualites .cell.photo,
.news .propor {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.actualites .cell.photo,
.news .propor-cont,
.detail_actu-img .propor-cont {
    position: relative;
    width: 100%;
}

.actualites .cell.photo {
    height: 100%;
    min-height: 400px;
    background-position: center center;
    background-size: cover;
    transition: all 0.3s ease;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.news .propor-cont,
.detail_actu-img .propor-cont {
    aspect-ratio: 4 / 3;
    min-height: 400px;
}

/* --- Liens images --- */
.actualites .cell.photo a,
.news .imagecont,
.detail_actu-img .imagecont {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
}

.actualites .cell.photo a {
    z-index: 10;
}

.actualites .cell.photo img,
.news .imagecont img,
.detail_actu-img .imagecont img {
    width: 100%;
    height: auto;
    object-fit: cover;
    -o-object-fit: cover;
    transition: transform 0.5s ease;
}

.detail_actu-img .imagecont img {
    height: 100%;
}

.news .imagecont:hover img,
.detail_actu-img .imagecont:hover img {
    transform: scale(1.05);
}

.actualites .cell.photo:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: var(--box-shadow);
}

.actualites .cell.photo::before,
.news .masque,
.detail_actu-img .masque {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.actualites .cell.photo::before,
.news .masque {
    background: linear-gradient(to top, rgba(var(--color4_rgb), 0.3) 0%, transparent 50%);
    z-index: 1;
}

.detail_actu-img .masque {
    background: linear-gradient(to bottom, transparent 0%, rgba(var(--color4_rgb), 0.3) 100%);
}

.actualites .cell.photo:hover::before,
.news .imagecont:hover .masque,
.detail_actu-img .imagecont:hover .masque {
    opacity: 1;
}

/* ==========================================================================
   DATE ARTICLE (Badge)
   ========================================================================== */

.actualites .date-article,
.news .date-article,
.date-article {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    padding: 0.8em 1.2em;
    font-family: var(--font_family_2);
    background: var(--color0);
    border-radius: 0 0 var(--border-radius) 0;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.actualites .cell.photo a:hover .date-article,
.news .imagecont:hover .date-article {
    background: var(--color5);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.date-article span,
.date-article time,
.news .date-article span {
    display: block;
    text-align: center;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.date-article time {
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.date-article .time_day,
.news .time_day,
.time_day {
    font-size: calc(var(--taille_font) * 2);
    color: var(--color4);
    font-weight: 700;
    font-family: var(--font_family_2);
    margin-bottom: 0.1em;
    line-height: 1;
}

.date-article .time_month,
.news .time_month,
.time_month {
    font-size: calc(var(--taille_font) * 1.2);
    color: var(--color4);
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;
}

.time_month {
    font-size: calc(var(--taille_font) * 0.95);
    text-transform: uppercase;
}

.date-article .time_year,
.news .time_year,
.time_year {
    font-size: calc(var(--taille_font) * 1);
    color: var(--color4);
    opacity: 0.7;
    margin-top: 0.1em;
}

.time_year {
    font-size: calc(var(--taille_font) * 0.85);
    opacity: 0.8;
}

.actualites .cell.photo a:hover .time_day,
.actualites .cell.photo a:hover .time_month,
.actualites .cell.photo a:hover .time_year,
.news .imagecont:hover .time_day,
.news .imagecont:hover .time_month,
.news .imagecont:hover .time_year {
    color: var(--color0);
}

/* ==========================================================================
   CONTENU TEXTE
   ========================================================================== */

.actualites .cell.texte {
    width: 100%;
    position: relative;
}

.actualites .cell.texte .contenu,
.news .contain-news {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1em;
    padding: 2em;
    text-align: left;
    background: transparent;
    border: var(--border-default);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    /* transform: translate3d(0, 0, 0); */
    backface-visibility: hidden;
}

.actualites .cell.texte .contenu:hover,
.news .contain-news:hover {
    border-color: rgba(var(--color1_rgb), 0.15);
    box-shadow: var(--box-shadow);
    /* transform: translate3d(0, -3px, 0); */
}

.actualites .cell.texte .contenu .titre-secondaire,
.news .contain-news h2 {
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    padding: 0 0 0.8em 0.5em;
    transition: color 0.3s ease;
}

.actualites .cell.texte .contenu:hover .titre-secondaire,
.news .contain-news:hover h2 {
    color: var(--color2);
}

.actualites .cell.texte .contenu .titre-secondaire a,
.news .contain-news h2 a {
    text-decoration: none;
    color: inherit;
}

.actualites .cell.texte .contenu .content,
.news .contenu-article,
.contenu-article {
    font-family: var(--font_family_3);
    padding-left: 0.5em;
    margin: 0;
}

.contenu-article {
    padding: 0 0 1em;
}

.contenu-article p {
    margin-bottom: 1.5em;
}

.contenu-article strong {
    color: var(--color2);
    font-weight: 600;
}

.contenu-article br {
    margin-bottom: 1em;
}

.news .contain-news > p {
    margin: 0;
    padding-left: 0.5em;
}

.actualites .cell.texte .contenu .date-noimg {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 1em;
    border-bottom: var(--border-default);
}

.actualites .cell.texte .contenu .date-noimg .date_post {
    font-size: calc(var(--taille_font) * 0.9);
    color: var(--color4);
    font-family: var(--font_family_3);
    padding: 0.5em 1em;
    background: rgba(var(--color2_rgb), 0.1);
    border-radius: 0 0 var(--border-radius) 0;
    opacity: 0.95;
}

.detail-actu {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3em;
    margin-bottom: 3em;
}

.detail_actu-img {
    position: relative;
}

.detail_actu-img .propor {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.detail_actu-txt {
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.btn-actualite {
    display: flex;
    gap: 1em;
}

.actualites ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.actualites ul li {
    padding: 0.5em 0 0.5em 2em;
    background: url(../images/ico-puce.svg) no-repeat 0 0.9em;
    background-size: 0.7em auto;
    color: var(--color4);
    line-height: 1.6;
}

.div-rs {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5em;
    padding: 1.5em;
    background: rgba(var(--color1_rgb), 0.05);
    border-radius: var(--border-radius);
}

.div-rs b {
    font-family: var(--font_family_2);
    font-weight: 600;
}

.news_avant_apres {
    margin: 3em 0 2em;
    padding-top: 2em;
    border-top: var(--border-default);
}

@media (max-width: 1024px) {
    .actualites article,
    .news article {
        grid-template-columns: 1fr;
        gap: 2em;
    }

    .actualites .cell.photo,
    .news .propor-cont {
        min-height: 350px;
    }

    .news .ligne-actus {
        gap: 3em;
    }

    .detail-actu {
        grid-template-columns: 1fr;
        gap: 2em;
    }
}

@media (max-width: 768px) {
    .news .ligne-actus {
        gap: 2.5em;
    }

    .actualites article,
    .news article {
        gap: 1.5em;
    }

    .actualites .cell.photo,
    .news .propor-cont {
        min-height: 280px;
    }

    .actualites .cell.photo a {
        left: 0;
        top: 0;
    }

    .actualites .date-article,
    .news .date-article {
        padding: 0.6em 1em;
    }

    .actualites .cell.texte .contenu,
    .news .contain-news {
        padding: 1.5em;
        gap: 0.8em;
    }

    .actualites .cell.texte .contenu .titre-secondaire,
    .news .contain-news h2,
    .actualites .cell.texte .contenu .content,
    .news .contenu-article,
    .news .contain-news > p {
        padding-left: 0.3em;
    }

    .actualites .cell.texte .contenu .text-left {
        flex-direction: column;
        padding-left: 0.3em;
    }

    .detail-actu {
        gap: 1.5em;
    }

    .date-article {
        top: 1em;
        left: 1em;
        padding: 0.8em;
        min-width: 70px;
    }

    .div-rs {
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
        padding: 1.2em;
    }

    .btn-partage {
        width: 100%;
        justify-content: flex-start;
    }

    .bouton-retour {
        padding: 0.9em 2em;
    }
}

@media (max-width: 480px) {
    .actualites .cell.photo,
    .news .propor-cont {
        min-height: 240px;
    }

    .news .h1 .titre-secondaire {
        font-size: calc(var(--taille_font) * 1.1);
    }

    .news .ligne-actus {
        gap: 2em;
    }

    .date-article {
        padding: 0.6em;
        min-width: 60px;
    }

    .btnp {
        width: 2.2em;
        height: 2.2em;
    }
}


/* ==========================================================================
   6. AVIS CLIENTS - Styles communs
   ========================================================================== */

.AvisClientsList li,
.divAvis {
    background: var(--background-gradient);
    border-radius: var(--border-radius);
    background: 
        rgba(var(--color1_rgb), 0.1) padding-box,
        linear-gradient(135deg, rgba(var(--color1_rgb), 0.25) 0%, rgba(var(--color5_rgb), 0.1) 100%) border-box;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.AvisClientsList li:hover,
.divAvis:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-2px);
}

.AvisClients .h span,
.divAvis .pseudo {
    font-family: var(--font_family_2);
    font-size: calc(var(--taille_font) * 1.6);
    color: var(--color0);
    font-weight: 600;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.AvisClientsList li:hover .AvisClients .h span,
.divAvis:hover .pseudo {
    color: rgba(var(--color0_rgb), 1);
}

.AvisClientsList .date_post,
.divAvis .date {
    font-family: var(--font_family_3);
    font-size: calc(var(--taille_font) * 0.90);
    color: rgba(var(--color0_rgb), 0.7);
    opacity: 0.8;
    margin: 0;
}

.etoiles,
.divAvis .etoiles {
    display: flex;
    gap: 0.3em;
    margin: 0.1em 0;
}

.etoiles .fa,
.divAvis .etoiles i {
    color: var(--color2);
    font-size: calc(var(--taille_font) * 1);
    transition: all 0.3s ease;
}

.AvisClientsList li:hover .etoiles .fa,
.divAvis:hover .etoiles i {
    color: var(--color1);
    transform: scale(1.1);
}

.avisContent,
.divAvis .temoignage {
    font-family: var(--font_family_3);
    font-size: calc(var(--taille_font) * 1);
    color: var(--color0);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    opacity: 0.85;
}

.avisContent::before {
    content: '«';
    margin-right: 0.4em;
    color: var(--color2);
    opacity: 0.5;
}

.avisContent::after {
    content: '»';
    margin-left: 0.4em;
    color: var(--color2);
    opacity: 0.5;
}

/* ==========================================================================
   AVIS CLIENTS - Carrousel
   ========================================================================== */

.AvisClientsBg {
    width: 100%;
}

.AvisClientsBg .badge-optionnel {
    position: absolute;
    top: 2em;
    right: 2em;
}

.AvisClientsContainer {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 2em;
}

.AvisClientsContainer .h1 {
    text-align: center;
}

/* Responsive pour grands écrans */
@media screen and (min-width: 1920px) {
    .AvisClientsContainer {
        max-width: 90%;
        padding: 2em 3em;
    }
}

@media screen and (min-width: 2560px) {
    .AvisClientsContainer {
        max-width: 2400px;
        padding: 2em 4em;
    }
}

.AvisClientsBg .bx-wrapper {
    position: relative;
    margin: 0em auto 2em !important;
    max-width: 100%;
}

.AvisClientsBg .bx-viewport {
    position: relative;
    width: 100%;
    height: 100% !important;
    padding: 2em 0;
}

.AvisClientsList {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
}

.AvisClientsList li {
    display: flex;
    align-items: stretch;
    padding: 2em 1.5em;
    list-style: none;
}

.AvisClientsList li:before {
    display: none;
}

.AvisClients {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    width: 100%;
    text-decoration: none !important;
    text-align: left;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.AvisClients .h {
    margin: 0;
}

.temoignageScroll {
    max-height: 11em;
    overflow: hidden;
    text-align: left;
    position: relative;
}

.zone-cta {
    margin-top: 2em;
}

/* ==========================================================================
   SECTION TÉMOIGNAGES - Livre d'or
   ========================================================================== */

.temoignages .livre {
    margin-bottom: 3em;
    text-align: center;
}

.livre-elements {
    width: 100%;
    margin-top: 2em;
    text-align: left;
}

.livre-ligne {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2em;
}

.divAvis {
    padding: 2em;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

.divAvis .pseudo {
    font-size: calc(var(--taille_font) * 1.25);
}

.divAvis .date {
    display: flex;
    align-items: baseline;
    gap: 0.5em;
}

.divAvis .date i {
    color: var(--color2);
}

.divAvis .etoiles {
    margin: 0.5em 0;
}

.divAvis .etoiles i {
    font-size: 1.1em;
}

.divAvis:hover .etoiles i:nth-child(1) { transition-delay: 0s; }
.divAvis:hover .etoiles i:nth-child(2) { transition-delay: 0.05s; }
.divAvis:hover .etoiles i:nth-child(3) { transition-delay: 0.1s; }
.divAvis:hover .etoiles i:nth-child(4) { transition-delay: 0.15s; }
.divAvis:hover .etoiles i:nth-child(5) { transition-delay: 0.2s; }

.divAvis .temoignage {
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.divAvis .temoignage::after {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: -1.5em;
    right: 1.5em;
    font-size: 3em;
    color: rgba(var(--color2_rgb), 0.75);
    transition: all 0.3s ease;
    pointer-events: none;
}

.divAvis .temoignage:hover::after {
    color: rgba(var(--color2_rgb), 0.95);
    transform: scale(1.1);
}

.divAvis .hidden {
    display: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (min-width: 2560px) {
    .livre-ligne {
        grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
        gap: 3em;
    }
}

@media (min-width: 1920px) and (max-width: 2559px) {
    .livre-ligne {
        grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
        gap: 2.5em;
    }
}

@media (min-width: 1260px) and (max-width: 1919px) {
    .livre-ligne {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 2em;
    }
}

@media (min-width: 768px) and (max-width: 1259px) {
    .livre-ligne {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 1.5em;
    }
}

@media (max-width: 1200px) {
    .livre-ligne {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5em;
    }
}

@media (max-width: 1024px) {
    .AvisClientsList li {
        padding: 1.5em 1.2em;
    }

    .AvisClients .h span {
        font-size: calc(var(--taille_font) * 1.4);
    }
}

@media (max-width: 768px) {
    .AvisClientsBg {
        padding: 3em 0;
    }
    .AvisClientsBg .bx-wrapper {
        margin: 0 auto !important;
        padding: 0em !important;
    }

    .AvisClientsBg .bx-wrapper .bx-controls-direction {
        display: none;
    }

    .AvisClientsList li {
        padding: 1.5em 1em;
        margin-right: 15px;
    }

    .temoignages {
        padding: 2em 1em;
    }

    .divAvis .temoignage::after {
        right: 0;
    }

    .livre-ligne {
        grid-template-columns: 1fr;
        gap: 1.5em;
    }

    .divAvis {
        padding: 1.5em;
    }
}

@media (max-width: 480px) {
    .temoignages .h1 {
        font-size: calc(var(--taille_font) * 2.2);
    }

    .temoignages .btn-avis {
        padding: 0.9em 2em;
    }

    .divAvis {
        padding: 1.2em;
    }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.divAvis {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.divAvis:nth-child(1) { animation-delay: 0.1s; }
.divAvis:nth-child(2) { animation-delay: 0.2s; }
.divAvis:nth-child(3) { animation-delay: 0.3s; }
.divAvis:nth-child(4) { animation-delay: 0.4s; }
.divAvis:nth-child(5) { animation-delay: 0.5s; }
.divAvis:nth-child(6) { animation-delay: 0.6s; }


/* ==========================================================================
   7. GALERIE PHOTOS
   ========================================================================== */

.recup-photos .propor {
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.recup-photos .propor:after {
    padding-top: 78%;
    display: block;
    content: '';
}

.recup-photos .propor .propor-cont {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.recup-photos .propor .propor-cont .imagecont {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

.recup-photos .propor .propor-cont .imagecont img {
    object-fit: cover;
    -o-object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    flex: 1;
    height: 100%;
}

.recup-photos .propor .propor-cont .imagecont .imagefond {
    image-rendering: optimizeQuality;
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
}

.recup-photos .propor .propor-cont .imagecont .masque {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    height: 100%;
    transition: .5s;
    background-color: var(--color-image-mask);
    background-image: url(../images/ico-zoom.svg);
    background-repeat: no-repeat;
    background-position: center center;
}

.recup-photos .propor .propor-cont .imagecont:hover .masque {
    opacity: 1;
    filter: alpha(opacity=100);
}

.recup-photos .propor .propor-cont .imagecont:hover .imagefond {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -o-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}


/* ==========================================================================
   8. MODALES
   ========================================================================== */

.modal {
    display: none;
    overflow: auto;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    font-size: 16px;
    color: var(--color0);
}

.modal-backdrop.in {
    z-index: 0;
}

.modal-open .modal {
    z-index: 99997;
    background: rgb(0 0 0 / 20%);
    color: var(--color2);
    text-shadow: none;
    font-family: Arial, Helvetica, sans-serif;
}

.modal-content {
    background: var(--color10);
}

.modal-content a,
.modal-content a:link,
.modal-content a:visited {
    color: var(--color2);
}

.modal-header .h1 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color2);
    font-weight: 700;
    text-shadow: none;
}

.modal-content .btn-close {
    border: 0;
    background: 0 0;
    padding: 0;
    font-size: 21px;
    color: var(--color2);
    opacity: .2;
    line-height: 1;
}

.modal-content .btn-close:focus,
.modal-content .btn-close:hover {
    opacity: .5;
}

.modal-content .form-control {
    min-height: 44px;
    border-radius: 2px;
}

.modal-content .form-control::placeholder {
    color: var(--color2) !important;
    opacity: 1;
}

.modal-content .submit-review {
    padding-right: 60px !important;
}

.modal-content label.control-label {
    display: none;
    padding-top: 0 !important;
}

.modal-content label.control-label.label-note,
.modal-content label.control-label.label-photo {
    display: block;
    padding-top: 14px !important;
}

#add-review {
    text-align: center;
}

#add-review .form-group {
    text-align: left;
}

#add-review input[type=file] {
    display: block;
    width: 100%;
    height: 50px;
}

#add-review #stars-existing {
    margin: 0 auto 10px;
    display: block;
    text-align: left;
    padding-top: 15px;
}

#add-review .form-group #captcha {
    height: 46px !important;
}

.formulaire #add-review .form-group .form-control,
.formulaire #add-review .form-group input,
.formulaire #add-review .form-group textarea {
    background: var(--color0);
    border: 1px solid #ccc;
    color: var(--color2);
    border-radius: 2px;
}

#add-review .submit-review {
    margin: 15px auto !important;
    padding: 14px 15px !important;
    float: none;
    display: block;
    background-image: none;
}

#add-review .body-review {
    height: 100px;
}

#add-review .form-group.form-group-1 .col-md-10,
#add-review .form-group.form-group-2 .col-md-10,
#add-review .form-group.form-group-4 .col-md-10 {
    width: 100%;
}

#add-review .conditions,
.modal-content .email-block {
    font-size: 10px;
    font-weight: 400;
    font-style: italic;
    text-align: justify;
    opacity: .6;
    display: block;
    clear: both;
    color: var(--color2) !important;
}

/* ==========================================================================
   9. SLIDERS GÉNÉRIQUES
   ========================================================================== */

.cont-slider {
    position: relative;
}

.sudo-slider {
    width: 100%;
    z-index: 8999999;
}

.sudo-slider .slide {
    text-align: center;
    height: 135px;
    line-height: 135px;
}

.sudo-slider .slide img {
    max-height: 100%;
}

.cont-slider .controls {
    z-index: 9002;
    display: inline-block;
    position: absolute;
    bottom: -70px;
    left: 0;
    right: 0;
    text-align: center;
}

.cont-slider .controls ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.cont-slider .controls ol li {
    display: inline-block;
    background: 0 0;
    padding: 0;
}

.cont-slider .controls ol li:before {
    content: none;
}

.cont-slider .controls ol li a {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--color2);
    margin: 0 5px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    opacity: .5;
}

.cont-slider .controls ol li.current a {
    opacity: 1;
}

.cont-slider .controls ol li a span {
    display: none;
}

/**********************************************************************/
/*************************** A traiter          ***********************/
/**********************************************************************/
.AvisClientsBg,
.realisations {
}

.news .propor,
.realisations .galerie .propor {
    width: 100%;
    position: relative;
    margin-bottom: 10px
}

.news .propor:after,
.realisations .galerie .propor:after {
    padding-top: 75%;
    display: block;
    content: ''
}

.news .propor .propor-cont,
.realisations .galerie .propor .propor-cont {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0
}

.news .propor .propor-cont .imagecont,
.realisations .galerie .propor .propor-cont .imagecont {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transform: translateZ(0)
}

.news .propor .propor-cont .imagecont .imagefond,
.realisations .galerie .propor .propor-cont .imagecont .imagefond {
    image-rendering: optimizeQuality;
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat
}

.news .propor .propor-cont .imagecont .masque,
.realisations .galerie .propor .propor-cont .imagecont .masque {
    transition: all .4s ease;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    height: 100%;
    background-color: var(--color-image-mask);
    background-image: url(../images/ico-zoom.svg);
    background-repeat: no-repeat;
    background-position: center center
}

.news .propor .propor-cont .imagecont:hover .masque,
.realisations .galerie .propor .propor-cont .imagecont:hover .masque {
    opacity: 1;
    filter: alpha(opacity=100)
}

.news .propor .propor-cont .imagecont:hover .imagefond,
.realisations .galerie .propor .propor-cont .imagecont:hover .imagefond {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -o-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15)
}

.intervention {
    position: relative;
    display: flex;
    z-index: 8000;
    /* background: url(../images/bg-intervention.jpg) no-repeat center center/cover; */
    /* background-attachment: fixed; */
    gap: 2em;
}

.intervention:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: var(--color2); */
    opacity: .85;
    z-index: -1
}

.intervention .contenu {
    width: 100%;
    height: 100%;
    padding: 2em;
    background: var(--color4);

}

.intervention .contenu a,
.intervention .contenu a:link,
.intervention .contenu a:visited {
    color: var(--color0)
}

.intervention h2 {
    margin-top: 0
}

.intervention h2:before {
}

.intervention ul {
    margin: 30px 0 0;
    column-count: 2;
    width: 60%
}

.map {
    width: 100%;
    position: relative;
}

.map:before {
    content: "";
    position: absolute;
    border-radius: var(--border-radius);
    width: 80%;
    height: 90%;
    bottom: -4vh;
    right: -4vh;
    z-index: -1;
}

.map iframe {
    width: 100%;
    /* filter: grayscale(1); */
    transition: .2s;
}

.map iframe:hover {
    /* filter: initial; */
    transition: .2s;
}

.note-avis {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 2rem
}

.nbr-note {
    font-size: 40px;
    margin-right: 4rem
}

.pied {
    position: relative;
    z-index: 9;
    background: var(--color4)
}

.pied .bande1 {
    padding: 5rem 10% 5rem
}

.bande_contact_footer {
    padding: 70px 10% 50px
}

.bande_contact_footer .row1 {
    position: relative;
    display: block;
    background: var(--bg-facultatif);
    padding: 5rem 28%;
    border-radius: var(--border-radius)
}

.bande_contact_footer .row1::after {
    display: block;
    width: 232px;
    height: 1px;
    content: "";
    background: var(--color0);
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    margin-top: 49px
}

.pied .bande2 {
    padding: 30px 10%;
    background: var(--bg-facultatif)
}

.pied .title_footer {
    color: var(--color2);
    font-family: var(--font_family_1);
    font-size: 22px;
    text-transform: uppercase;
    padding: 0 0 20px;
    position: relative;
    font-weight: 200;
    float: left;
    width: 100%;
}

.pied .title_footer::before {
    content: "";
    width: 75px;
    height: 10px;
    background: var(--color1);
    position: absolute;
    bottom: 3px;
    left: 0;
    height: 2px
}

.pied .navf .menu_footer {
    color: var(--color0);
    padding: 15px 20px;
    list-style-type: none;
    margin: 0;
    position: relative;
    float: left;
    width: 100%;
}

.pied .navf .menu_footer li {
    display: block;
    padding: 0 0 4px;
    background: 0 0;
    position: relative
}

.pied .navf .menu_footer li:last-child {
    border: none
}

.pied .navf .menu_footer li a,
.pied .navf .menu_footer li a:visited {
    font-size: var(--taille_font);
    padding: 0 0 0;
    color: inherit;
    text-decoration: none
}

.pied .navf .menu_footer li a:hover {
    color: var(--color2)
}

.pied .navf .menu_footer li.active a {
    color: var(--color2)
}

.pied .navf .menu_footer li.active a:hover {
    text-decoration: none
}

.pied .menu_referencement {
    color: var(--color3);
    list-style-image: none;
    list-style-type: none;
    margin: 0;
    text-align: justify;
    padding: 0
}

.pied .menu_referencement li {
    display: inline;
    padding: 0;
    background: 0 0
}

.pied .menu_referencement li:before {
    content: none
}

.pied .menu_referencement li:after {
    content: " - "
}

.pied .menu_referencement li:last-child:after {
    content: ""
}

.pied .menu_referencement li a,
.pied .menu_referencement li a:visited {
    color: inherit;
    font-size: 16px;
    text-decoration: none
}

.pied .menu_referencement li a:hover {
    color: var(--color1)
}

.pied .menu_referencement li.active a:hover {
    text-decoration: none
}

.pied address {
    margin: 0;
    padding: 15px 0 25px;
    color: var(--color0);
    font-size: 16px;
    float: left;
    width: 100%;
    position: relative;
}

.pied address p {
    background-repeat: no-repeat;
    margin: 0;
    background-position: 0 0;
    padding: 0 0 10px 0
}

.flex-address {
    position: relative;
    display: flex
}

.flex-address i {
    margin-top: 3px !important
}

address i {
    margin: 0;
    margin-right: 12px;
    font-size: 16px;
    color: var(--color2);
    width: 16px
}

.pied address p.tel a {
    color: inherit;
    text-decoration: none
}

.pied address p a {
    text-decoration: none;
    color: inherit
}

.pied address p a:hover {
    text-decoration: underline
}

.pied .scrollbars {
    margin: 15px 0 0;
    height: 260px;
    position: relative;
    float: left;
    width: 100%;
}

.pied .horaires {
    color: var(--color3);
    padding: 10px 0 35px;
    margin: 15px 0 0;
    font-size: 16px;
    float: left;
    width: 100%;
}

.horaires {
    display: inline-grid
}

.horaires i {
    margin: 4px 0 0;
    margin-right: 12px;
    font-size: 16px;
    color: var(--color2)
}

.pied .copyright-footer {
    margin: 5px 0 0;
    text-align: center
}

#logoFD svg * {
    fill: var(--color3);
}

#logoFD svg {
    width: 210px;
    filter: brightness(0) invert(1);
}

.pied .btn-like {
    padding: 20px 0 0
}

.pied .btn-partage {
    text-align: right;
    padding: 10px 0 0;
    display: flex;
    justify-content: flex-end
}

.scrollbars {
    width: 100%;
    height: 28vh
}

.scrollbar-path-horizontal,
.scrollbar-path-vertical {
    position: absolute;
    background-color: #ececec;
    z-index: 100
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: var(--color0)
}

.scrollbar-path-horizontal {
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 5px
}

.scrollbar-path-vertical {
    right: 5px;
    top: 0;
    height: 100%;
    width: 5px;
    box-shadow: inset 1px 0 1 rgba(var(--color4_rgb), .1)
}

.scrollbar-path-horizontal {
    box-shadow: inset 0 1px 1 rgba(var(--color4_rgb), .1)
}

.scrollbar-handle {
    position: relative;
    top: 0;
    left: 0;
    background-color: var(--color1)
}

.scrollbar-path-vertical .scrollbar-handle {
    height: 20%;
    width: 100%
}

.scrollbar-path-horizontal .scrollbar-handle {
    width: 20%;
    height: 100%
}

.scrollbar-handle,
.scrollbar-path-horizontal,
.scrollbar-path-vertical {
    border-radius: 5px
}

.scrollbar-content {
    padding: 0 30px 0 0;
    float: none !important
}

.prestation {
    display: table;
    width: 100%;
    position: relative;
    z-index: 8000;
    background: var(--color0);
    margin-bottom: 10rem
}

.body-contact h2 {
    color: var(--color2);
    text-transform: none;
    position: relative;
    margin-bottom: 55px;
    font-weight: 600
}

.tab-coordonnes h2:before {
    content: "";
    width: 75px;
    height: 2px;
    background: var(--color1);
    position: absolute;
    top: 50px;
    left: 0
}

.body-contact .tab-formulaire .cell.droite h2 {
    text-align: center;
    margin-bottom: 70px;
    font-size: 24px
}

.body-contact .tab-formulaire .cell.droite h2:before {
    content: "";
    width: 75px;
    height: 2px;
    background: var(--color1);
    position: absolute;
    top: 50px;
    left: 50%;
    margin-left: -37px
}

.contact .tab-coordonnes {
    display: table;
    width: 100%;
    position: relative;
    z-index: 8000;
    background: var(--color5)
}

.contact .tab-coordonnes .cell.gauche {
    display: table-cell;
    vertical-align: top;
    width: 50%;
}

.contact .tab-coordonnes .cell.gauche .contenu {
    padding: 3em 7% 0
}

.contact .tab-coordonnes .cell.centre {
    display: table-cell;
    vertical-align: top;
    width: 50%
}

.contact .tab-coordonnes .cell.droite {
    display: table-cell;
    vertical-align: top;
    width: 50%
}

.contact .tab-formulaire {
    display: block;
    width: 100%;
    position: relative;
    z-index: 8000;
    background: var(--bg-facultatif);
    padding: 5rem 28%;
    margin-top: 5em;
    border-radius: var(--border-radius)
}

.contact .tab-formulaire .contenu h2 {
    text-align: center
}

.contact .plan {
    font-size: 0
}

.contact .plan .block #googlemapapi,
.contact .plan iframe {
    width: 100% !important;
    height: 700px !important
}

.contact .coordonnees {
    padding: 0 0 20px
}

.contact .coordonnees h2 {
    margin-top: 20px
}

.contact .coordonnees address p {
    padding: 0 0 10px 0
}

.contact .coordonnees address p.tel a {
    color: inherit;
    text-decoration: none
}

.contact .coordonnees address p span.intitule {
    font-weight: 700
}

.contact .coordonnees address p a {
    text-decoration: none;
    color: inherit
}

.contact .coordonnees address p a:hover {
    text-decoration: underline
}

.contact .description-contact {
    padding: 0 0 10px
}

.contact .formulaire .form-group label.col-md-4 {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.contact .formulaire .form-group div.col-md-8 {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.contact .formulaire .form-group .col-md-4 {
    display: none
}

.contact .formulaire .form-group .col-md-8 {
    width: 100% !important
}

.form-group .label-rgpd strong,
.info-rgpd a,
.info-rgpd a:visited,
.info-rgpd strong {
    color: var(--color1)
}

.contact .formulaire .control-label {
    text-align: left !important;
    font-weight: 400
}

.contact .formulaire .form-group {
    margin-bottom: 8px;
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important
}

.contact .formulaire .form-group .form-control {
    background: var(--color10);
    border: 0;
    box-shadow: none;
    border-radius: 0;
    width: 100% !important;
    font-size: inherit;
    color: var(--color2);
    border-radius: var(--border-radius)
}

.form-control:focus {
    color: #000;
    background: var(--color10)
}

.contact .formulaire .form-group textarea.form-control {
    height: 109px;
    position: static
}

.contact .formulaire .form-group input.form-control {
    height: 50px;
    line-height: 1;
    line-height: 50px\9;
    padding: 0 12px
}

.contact .formulaire .form-group .form-control:active,
.contact .formulaire .form-group .form-control:focus {
    border: 1px solid var(--color2)
}

.contact .formulaire .form-group select.form-control {
    height: 50px;
    line-height: 50px;
    padding: 5px 12px
}

@media screen and (-webkit-min-device-pixel-ratio:0),
screen and (-moz-images-in-menus:0) {
    .form-horizontal select.form-control {
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none;
        background-image: url(../images/image-select.svg) !important;
        background-repeat: no-repeat !important;
        background-position: right 15px center !important;
        line-height: normal !important;
        background-size: 22px auto !important
    }

    .form-horizontal select.form-control option {
        color: inherit
    }
}

.contact .formulaire .form-group input[name=captcha] {
    width: 31% !important;
    height: 50px !important;
    display: inline-block;
    float: none !important;
    margin-right: 2% !important;
    vertical-align: top
}

.contact .formulaire .form-group input[name=captcha]+a {
    width: 35%;
    display: inline-block;
    margin-right: 2%;
    vertical-align: top
}

.contact .formulaire .form-group #captcha {
    width: 100%;
    height: 50px !important;
    border-radius: 0;
    padding: 0
}

.contact .formulaire .form-group input.btn-primary {
    display: inline-block;
    position: relative;
    float: right;
}

.contact .formulaire .form-actions {
    font-size: 12px
}

.contact a.btn.btn-default {
    float: right
}

/* .body-error404 a.btn.btn-default,
.contact .formulaire input.btn-primary,
.contact a.btn.btn-default {
    padding: 15px 20px;
    font-family: var(--font_family_1);
    text-transform: uppercase;
    background-color: var(--color1);
    color: var(--color0);
    text-align: left;
    border-radius: var(--border-radius);
    font-size: 14px;
    border: none;
    text-decoration: none;
    transition: all .4s ease;
    background-size: 24px auto;
    background-position: left 90% center;
    background-image: url(../images/ico-envoyer.svg);
    background-repeat: no-repeat
}

.body-error404 a.btn.btn-default {
    background-image: none
}

.body-error404 a.btn.btn-default:active,
.body-error404 a.btn.btn-default:hover,
.contact .formulaire input.btn-primary:active,
.contact .formulaire input.btn-primary:hover,
.contact a.btn.btn-default:active,
.contact a.btn.btn-default:hover {
    background-color: var(--nuanceColor1)
} */

::-webkit-input-placeholder {
    color: var(--color2) !important
}

:-moz-placeholder {
    color: var(--color2) !important;
    opacity: 1 !important
}

::-moz-placeholder {
    color: var(--color2) !important;
    opacity: 1 !important
}

:-ms-input-placeholder {
    color: var(--color2) !important
}

.pageseo .formulaire .form-group input[name=captcha] {
    width: 100% !important;
    margin-right: 0 !important;
    text-align: left !important
}

.pageseo .formulaire .form-group input[name=captcha]+a {
    position: absolute;
    width: 140px;
    top: 0;
    right: 0;
    margin-right: 0 !important
}

.flex-seoContain {
    position: relative;
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap
}

.flex-seoContain .seo-content {
    width: 55%;
    padding-top: 1em
}

.flex-seoContain .seo-content h1,
.flex-seoContain .seo-form h2.h1 {
    text-align: left
}

.flex-seoContain .seo-content h1:before,
.flex-seoContain .seo-form h2.h1:before {
    left: 0;
    margin-left: 0
}

.flex-seoContain .seo-form {
    width: 44%;
    padding: 1em 3% 3em;
    background: var(--bg-facultatif)
}

.img-seo img {
    border-radius: var(--border-radius);
    width: 100%;
    height: 100%;
}

.flex-seoContain .seo-content img {
    width: 100%;
    height: 100%;
}

.gallery .bas-galerie {
    text-align: center;
    padding: 40px 0 0
}

.gallery .description-galerie {
    padding: 0 11% 40px;
    text-align: left
}

.gallery .multiple .ligne-photos .col-md-1,
.gallery .multiple .ligne-photos .col-md-2,
.gallery .multiple .ligne-photos .col-md-3,
.gallery .multiple .ligne-photos .col-md-4,
.gallery .multiple .ligne-photos .col-md-6 {
    padding-left: 10px !important;
    padding-right: 10px !important;
    margin-bottom: 20px
}

.gallery .multiple .ligne-photos {
    margin-left: 0 !important;
    margin-right: 0 !important
}

.gallery .ligne-photos .propor {
    width: 100%;
    position: relative;
    margin-bottom: 15px
}

.gallery .multiple .ligne-photos .propor {
    margin-bottom: 0
}

.custom-object-fit {
    position: relative;
    background-size: cover;
    background-position: center center
}

.custom-object-fit img {
    opacity: 0
}

.gallery .ligne-photos .propor:after {
    padding-top: 76%;
    display: block;
    content: ''
}

.gallery .ligne-photos .propor .propor-cont {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0
}

.gallery .ligne-photos .propor .propor-cont img {
    object-fit: cover;
    -o-object-fit: cover;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    flex: 1;
    height: 100%;
    border-radius: var(--border-radius)
}

.gallery .ligne-photos .propor .propor-cont .imagecont {
    -webkit-transform: translateZ(0);
    justify-content: center;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    position: relative;
    height: 100%
}

.gallery .ligne-photos .propor .propor-cont .imagecont .imagefond {
    image-rendering: optimizeQuality;
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat
}

.gallery .ligne-photos .propor .propor-cont .imagecont .masque {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 100%;
    height: 100%;
    background-color: var(--color-image-mask);
    background-image: url(../images/ico-zoom.svg);
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: var(--border-radius)
}

.gallery .ligne-photos .propor .propor-cont .imagecont:hover .masque {
    opacity: 1;
    filter: alpha(opacity=100)
}

.gallery .ligne-photos .propor .propor-cont .imagecont:hover .imagefond {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -o-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15)
}

.gallery .nav {
    margin: 10px 0;
    text-align: center
}

.gallery .nav li {
    display: inline-block;
    margin-bottom: 10px;
    background: 0 0;
    padding: 0 3px 0 5px
}

.gallery .nav li:before {
    content: none
}

.gallery .nav li a.bouton-principal {
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    font-family: var(--font_family_1);
    text-align: center;
    border-radius: var(--border-radius);
    background: var(--color1);
    text-decoration: none
}

.gallery .nav li a.bouton-principal:after {
    content: none
}

.gallery .nav li.active a {
    background: var(--nuanceColor1)
}

.gallery .tab-content {
    padding-top: 10px;
    padding-bottom: 10px
}

.gallery .tab-content h2 {
    padding-left: 15px;
    margin-bottom: 20px
}

.gallery .bas-galerie {
    text-align: center;
    padding: 40px 0 0
}

.gallery .bas-galerie a.bouton-principal {
    padding-right: 60px
}

.gallery .bas-galerie a.bouton-principal:after {
    background-image: none;
    width: 22px;
    height: 22px;
    content: "+";
    font-family: verdana;
    font-size: 35px;
    position: absolute;
    right: 20px;
    top: 7px
}

.sitemap a {
    color: var(--color0);
    text-decoration: none;
}
.sitemap a:hover {
    color: var(--color2);
}

.header-sidebars,
.sidebar-left,
.sidebar-right {
    background-color: var(--color4)
}

.contactButton,
.nav-item-active,
.sidebar-bottom-controls a,
.sidebar-divider-text,
.sidebar-form label,
.sidebar-left a,
.sidebar-right a,
.sidebar-send-button {
    color: var(--color0) !important
}

.header-sidebars {
    height: 65px;
    z-index: 9999;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 3px 1px rgba(var(--color4_rgb), .1)
}

.header-sidebars .header-top {
    display: table;
    height: 65px;
    width: 100%
}

.top-logo {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 9999;
    text-align: center;
    overflow-y: hidden
}

.top-logo img {
    position: absolute;
    left: 0;
    top: 8px;
    max-height: 92px;
    max-width: 154px
}

.deploy-right-sidebar {
    border-left: 1px var(--color0) solid;
    display: table-cell;
    background-color: var(--color1);
    height: 65px;
    width: 65px;
    background-position: center center
}

.deploy-right-mail {
    border-left: 1px var(--color0) solid;
    display: table-cell;
    background-color: var(--color1);
    background-repeat: no-repeat;
    height: 65px;
    width: 65px;
    background-position: center center;
    position: absolute;
    right: 65px;
    top: 0
}

.deploy-right-call {
    display: table-cell;
    background-color: var(--color1);
    background-size: auto 49%;
    height: 65px;
    width: 65px;
    background-position: center 16px;
    position: absolute;
    right: 130px;
    top: 0
}

.sidebar-scroll-right {
    width: 275px;
    overflow: auto !important;
    overflow-x: hidden !important;
    height: 100%;
    background-color: var(--color5)
}

.sidebar-right {
    font-family: var(--font_family_2) !important;
    background-repeat: repeat;
    position: fixed;
    overflow: hidden;
    z-index: 99999;
    right: -280px;
    top: 0;
    bottom: 0;
    width: 270px;
    margin-right: 10px;
    box-shadow: -2px 0 2px 0 rgba(var(--color4_rgb), .1)
}

.sidebar-right a {
    text-decoration: none;
    display: block;
    overflow: hidden;
    position: relative;
    color: var(--color0) !important;
    z-index: 1
}

.sidebar-right-logo {
    margin-left: 84px;
    top: 14px;
    right: 1px;
    max-width: 180px;
    float: inherit;
    max-height: 37px;
    position: relative
}

.sidebar-divider-text {
    font-size: 20px;
    padding-top: 15px;
    padding-left: 20px;
    padding-bottom: 15px;
    margin-bottom: 0;
    color: var(--color0) !important;
    background: var(--color5);
    opacity: .7
}

.submenu a:first-child {
    background-image: none !important
}

.submenu {
    display: none
}

.submenu-active {
    display: block
}

.sidebar-header-right {
    height: 65px;
    background-color: var(--color5);
    position: relative
}

.close-sidebar-right {
    height: 65px;
    width: 65px;
    margin-left: 0;
    display: block
}

.sidebar-right .close-sidebar-right {
    position: absolute !important
}

.menu-mobile-dynamique {
    margin: 0;
    padding: 0;
    list-style-type: none;
    list-style-position: inside;
    list-style-image: none
}

.menu-mobile-dynamique li {
    width: 100%;
    margin-bottom: 1px;
    background: 0 0;
    padding-left: 18px;
    background: var(--color5)
}

.menu-mobile-dynamique li.active {
    background: #00000059
}

.menu-mobile-dynamique .sub-menu li {
    background-color: transparent;
    margin-bottom: 0
}

.menu-mobile-dynamique .sub-menu li a {
    height: 42px;
    text-transform: none
}

.menu-mobile-dynamique .sub-menu {
    background-image: linear-gradient(to bottom, var(--color1), var(--color1));
    padding-top: 18px;
    padding-bottom: 18px
}

.menu-mobile-dynamique li.parent {
    background-image: url(../images/gopage.svg);
    background-position: 241px 26.2px;
    background-repeat: no-repeat;
    background-size: 9px auto
}

.menu-mobile-dynamique li a {
    display: table-cell;
    width: 270px;
    vertical-align: middle;
    line-height: 18px;
    font-size: 16.2px;
    -webkit-tap-highlight-color: rgba(var(--color4_rgb), 0);
    color: var(--color0);
    height: 60px;
    padding-left: 29px;
    background-position: 6px 20.9px
}

.menu-mobile-dynamique ul {
    list-style-image: none;
    list-style-position: inside;
    list-style-type: none;
    padding-left: 0
}

.menu-mobile-dynamique ul li a {
    background: 0 0
}

.menu-mobile-dynamique input {
    -webkit-appearance: none;
    border-radius: 0
}

.menu-mobile-dynamique label {
    display: block;
    overflow: hidden;
    position: relative;
    border: 0;
    vertical-align: baseline;
    outline: 0
}

.no-bottom {
    margin-bottom: 0 !important
}

.menu-mobile-dynamique .sub-menu {
    display: none
}

.remonter {
    position: fixed;
    z-index: 9999;
    display: none;
    bottom: 10px;
    right: 10px;
    width: 44px
}

.remonter button {
    display: block;
    padding: 6px 9px;
    text-align: center;
    border: none;
    background: rgba(var(--color4_rgb), .05);
    border-radius: 3px
}

.remonter button:hover {
    opacity: .8;
    filter: alpha(opacity=80)
}

.deprecated-ie {
    text-align: center;
    color: #000;
    background: #eee
}

.deprecated-ie p {
    line-height: 30px;
    margin: 0
}

.deprecated-ie a {
    line-height: 30px;
    font-family: Helvetica, arial, sans-serif;
    font-size: 13px;
    color: #000;
    text-decoration: underline
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: var(--color1)
}

.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: var(--color1)
}

.bx-pager.bx-default-pager a {
    background-color: var(--color2)
}

.bx-pager.bx-default-pager a.active,
.bx-pager.bx-default-pager a:hover {
    background-color: var(--color2)
}

.vegas-timer-progress {
    background: var(--color0)
}

.icones {
    width: 32px;
    margin: 16px 0 0 16px;
    height: 32px;
    fill: var(--color0)
}

.deploy-right-sidebar .icones {
    width: 29px
}

.menu-mobile-dynamique li a::before {
    display: block;
    content: "\f105";
    position: absolute;
    font-family: 'Font Awesome 5 Free';
    left: 5px;
    font-weight: 700;
    font-size: 15px;
    color: var(--color1)
}

.pied .btn-partage .icones {
    fill: var(--color3)
}

.remonter .icones {
    margin: 0 0 -5px;
    fill: var(--color1)
}

.tete .tel .icones,
.tel-header .icones {
    width: 19px;
    margin: -2px 10px -3px 0;
    height: 17px;
    fill: var(--color0)
}

.btn-partage .btnp:hover .icones {
    fill: var(--color0)
}

.tete .infos.infos_small .btn-partage .icones {
    top: 5px;
    left: 0
}

.navButtons,
.navButtons:visited {
    padding: 0 0 10px;
    color: var(--color2);
    transition: .8s;
    text-decoration: none;
    display: block
}

.news_avant_apres a:focus span,
.news_avant_apres a:hover span {
    color: var(--color2);
    text-decoration: none
}

.pagination>li {
    background: 0 0;
    padding-left: 0
}

.pagination>li>a,
.pagination>li>span {
    color: var(--color1);
    border-color: var(--color3)
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    color: var(--color0);
    background-color: var(--color1);
    border-color: var(--color1)
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    color: var(--color1);
    background-color: var(--color0)
}

@media (min-width:768px) {
    .dispaly_flex {
        display: flex
    }

    .flex_child_2 {
        flex: 2
    }

    .flex_child_1 {
        flex: 1
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .lightboxOverlay {
        overflow: scroll
    }

    .lightboxOverlay::-webkit-scrollbar {
        width: 0
    }
}

@media (max-width:991px) {

    .intervention .contenu,
    .map {
        width: 100%;
    }

    .map iframe {
        height: 300px;
    }

    .map {
        margin-top: 2em;
    }

    .intervention {
        display: block;
    }

    article.node-1 {
        display: flex;
        flex-direction: column-reverse;
    }

    .img-accueil,
    .texte-accueil {
        width: 100%;
    }

    .img-accueil:before {
        display: none;
    }

    article.page.clear.node-1 .scrollbars {
        height: auto;
    }

    .contact .formulaire .form-group>label.control-label {
        display: block;
        -webkit-transition: all .4s ease;
        -moz-transition: all .4s ease;
        -ms-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
        -webkit-transform: translateZ(0);
        bottom: 11px;
        opacity: .5;
        position: relative;
        font-size: 0
    }

    .contact .formulaire .form-group>label.focus {
        bottom: auto;
        font-size: var(--taille_font);
        padding-top: 5px
    }

    .container {
        max-width: none;
        width: auto
    }

    .centerservice2 {
        margin: 0 !important
    }

    .centerservice {
        margin: 0 25% !important
    }

    .contact .formulaire .form-group .col-md-4 {
        width: 100% !important
    }

    .contact .formulaire .form-group .col-md-8 {
        width: 100% !important
    }

    .contact .formulaire .form-group input[name=captcha] {
        width: 100% !important;
        margin-right: 0 !important;
        text-align: left !important
    }

    .contact .formulaire .form-group input[name=captcha]+a {
        position: absolute;
        width: 140px;
        top: 1px;
        right: 1px;
        margin-right: 0 !important
    }

    .contact .formulaire .form-group input.btn-primary {
        width: 100%;
        margin-top: 8px;
        float: none
    }

    .lb-prev {
        opacity: 1 !important;
        background: url(../images/lightbox-g.png) left 48% no-repeat
    }

    .lb-next {
        opacity: 1 !important;
        background: url(../images/lightbox-d.png) right 48% no-repeat
    }

    .banniere,
    .body-page-1 .banniere {
        height: 40vh;
        position: relative
    }

    .pied .bande1 {
        padding: 5rem 10% 70px
    }

    .prestation .cell.texte .contenu {
        padding: 50px 10%
    }

    .contact .tab-coordonnes .cell.gauche .contenu {
        padding: 50px 7% 30px
    }

    .certifs .logo-certif img {
        background-size: contain
    }

    /* Responsive certifications - Tablette */
    .certifs {
        padding: 4rem 7%;
    }

    .certifs .h1.titre-principal {
        margin-bottom: 2.5rem;
    }

    .certifs-description {
        font-size: 15px;
    }

    .certifs-content-wrapper {
        gap: 2rem;
    }

    .certifs-right .certifs-description {
        padding: 1.8em;
    }

    .certifs-carousel .btns-swipper .swiper-button {
        width: 2.5em;
    }

    .fluid-contenu {
        margin: 0 !important
    }

    .slogan {
        width: 100%;
        left: 0;
        padding: 0 15px;
        top: auto
    }

    .body-page-1 .slogan {
        text-align: center;
        width: 100%
    }

    .gallery .description-galerie {
        padding: 0 0 40px;
        text-align: left
    }

    .page-contenu-home {
        padding: 0 0
    }

    .certifs .cell.gauche .contenu {
        padding: 0 0
    }

    .intervention .contenu {
        padding: 0 0
    }

    .actualites .cell.texte .contenu {
        padding: 0 0
    }

    .bande_contact_footer {
        padding: 0
    }

    .flex-seoContain {
        flex-wrap: wrap
    }

    .flex-seoContain .seo-content {
        width: 100%;
        background: 0 0
    }

    .flex-seoContain .seo-form {
        width: 100%
    }

    .img-seo img {
        width: 100%;
        height: auto
    }

    .bande_contact_footer .row1 {
        padding: 5rem 11%
    }

    .contact .tab-formulaire {
        padding: 5rem 10%
    }

    .livre-elements {
        padding: 0 0
    }
}

@media (max-width:767px) {
    .h1, h1 {
        font-size: calc(var(--taille_font) * 2.5);
    }

    .slogan .titre {
        font-size: calc(var(--taille_font) * 3);
    }

    .corps {
        font-size: var(--taille_font)
    }

    .pad-xs {
        padding-left: 15px !important;
        padding-right: 15px !important
    }

    .pad-xs-l {
        padding-left: 15px !important
    }

    .pad-xs-r {
        padding-right: 15px !important
    }

    .centerservice2 {
        margin: 0 !important
    }

    .centerservice {
        margin: 0 !important
    }

    .nopad-xs {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .nopad-xs-l {
        padding-left: 0 !important
    }

    .nopad-xs-r {
        padding-right: 0 !important
    }

    .body-page-1 .slogan {
        position: absolute;
        background: var(--color1);
        width: 100%;
        text-align: center;
        padding: 15px;
        bottom: 0;
        top: auto
    }

    .slogan {
        text-align: center
    }

    .fluid-contenu .corps {
        padding: 20px 15px 40px
    }

    .recup-photos .col-md-4 {
        padding-left: 5px !important;
        padding-right: 5px !important
    }

    .recup-photos {
        margin-left: -5px !important;
        margin-right: -5px !important
    }

    .newsList .recup-photos {
        margin-left: 0 !important;
        margin-right: 0 !important
    }

    .recup-photos .propor {
        margin-bottom: 5px
    }

    /* Responsive certifications - Mobile */
    .certifs {
        display: block;
        padding: 3rem 5%;
    }

    .certifs .h1.titre-principal {
        margin-bottom: 2rem;
    }

    .certifs-description {
        font-size: 14px;
    }

    /* Mobile : retour en vertical */
    .certifs-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .certifs-right .certifs-description {
        padding: 1.5em;
        text-align: left;
    }

    .certifs-carousel,
    .certifs-single {
        padding: 1rem 0;
    }

    .certif-card {
        max-width: 220px;
    }

    .certif-image-wrapper {
        padding: 1.5rem;
    }

    .certif-image {
        max-height: 140px;
    }

    .certif-caption {
        font-size: 12px;
    }

    .certifs-carousel .btns-swipper {
        margin-top: 1.5vh;
        gap: 0.5em;
    }

    .certifs-carousel .btns-swipper .swiper-button {
        width: 2.5em;
    }

    .certifs-carousel .btns-swipper .swiper-button i {
        font-size: 14px;
    }

    /* Rétrocompatibilité */
    .certifs .cell.gauche {
        display: block;
        width: 100%
    }

    .certifs .cell.gauche .contenu {
        padding: 30px 15px 40px
    }

    .certifs .cell.droite {
        display: block;
        width: 100%;
        padding: 0 15px 30px
    }

    .certifs .cell.droite .bg-noir {
        padding: 40px 0
    }

    .cont-slider .controls {
        bottom: -20px
    }

    .services {
        display: block
    }

    .services .cell.gauche {
        display: block;
        width: 100%;
        height: 180px
    }

    .services .cell.droite {
        display: block;
        width: 100%
    }

    .services .cell.droite .contenu {
        padding: 30px 15px 40px
    }

    .realisations {
        display: block
    }

    .realisations .titre-secondaire {
        display: inline-block;
        width: 100%
    }

    .realisations .col-md-3 {
        padding-left: 5px !important;
        padding-right: 5px !important
    }

    .realisations {
        margin-left: -5px !important;
        margin-right: -5px !important
    }

    .realisations .propor {
        margin-bottom: 5px
    }

    .AvisClientsBg .contenu,
    .realisations .contenu {
        padding: 30px 15px 40px
    }

    .intervention .contenu {
        padding: 40px 15px 50px
    }

    .intervention ul {
        column-count: 1;
        width: 100%
    }

    .temoignageScroll {
        max-height: 135px
    }

    .temoignageScroll {
        max-height: 135px
    }

    .note-avis {
        flex-wrap: wrap
    }

    .bande_contact_footer .row1 {
        padding: 2rem 8%
    }

    .divAvis {
        width: 100%
    }

    .pied .bande1 {
        padding: 30px 15px
    }

    .pied .btn-like {
        padding: 0 0 15px;
        text-align: center
    }

    .pied .btn-partage {
        text-align: center;
        padding: 20px 0 0;
        justify-content: center
    }

    .pied .btn-partage a {
        text-align: center
    }

    .body-contact .fluid-contenu .corps,
    .body-gallery-4 .fluid-contenu .corps {
        padding: 30px 0 0
    }

    .contact .tab-coordonnes {
        display: block
    }

    .contact .tab-coordonnes .cell.gauche {
        display: block;
        width: 100%;
        border: none
    }

    .contact .tab-coordonnes .cell.gauche .contenu {
        padding: 0 15px 30px
    }

    .contact .tab-coordonnes .cell.centre {
        display: block;
        width: 100%
    }

    .contact .tab-coordonnes .cell.droite {
        display: block;
        width: 100%;
        height: 180px
    }

    .contact .plan .block #googlemapapi,
    .contact .plan iframe {
        height: 250px !important
    }

    .contact .tab-formulaire {
        display: block;
        padding: 5rem 8%
    }

    .contact .coordonnees {
        padding: 0
    }

    .gallery .description-galerie {
        padding: 0 15px 20px
    }

    .actualites,
    .prestation {
        display: block;
        min-height: none
    }

    .actualites .cell.photo,
    .prestation .cell.photo {
        display: block;
        width: 100%;
        height: 180px
    }

    .actualites .cell.texte,
    .prestation .cell.texte {
        display: block;
        width: 100%;
        clear: both
    }

    .actualites .cell.texte .contenu,
    .prestation .cell.texte .contenu {
        padding: 30px 15px
    }

    .gallery .ligne-photos .col-md-1,
    .gallery .ligne-photos .col-md-2,
    .gallery .ligne-photos .col-md-3,
    .gallery .ligne-photos .col-md-4,
    .gallery .ligne-photos .col-md-6 {
        padding-left: 5px !important;
        padding-right: 5px !important
    }

    .gallery .ligne-photos {
        margin-left: -5px !important;
        margin-right: -5px !important
    }

    .gallery .ligne-photos .propor {
        margin-bottom: 10px
    }

    .gallery .nav li {
        margin-bottom: 0;
        background: 0 0;
    }

    .gallery .description-galerie {
        padding: 0 0 40px;
        text-align: left
    }

    .services .cell.droite .contenu {
        clear: both
    }

    .scrollbars {
        width: 100%;
        height: auto
    }

    .news_avant_apres>div:last-child {
        right: 0
    }

    .news_avant_apres>div {
        display: block;
        margin: 0 0 5px
    }

    .news_avant_apres,
    .news_avant_apres>div {
        display: block
    }
}

@media (min-width:768px) and (max-width:991px) {
    .pad-sm {
        padding-left: 15px !important;
        padding-right: 15px !important
    }

    .pad-sm-l {
        padding-left: 15px !important
    }

    .pad-sm-r {
        padding-right: 15px !important
    }

    .nopad-sm {
        padding-left: 0 !important;
        padding-right: 0 !important
    }

    .nopad-sm-l {
        padding-left: 0 !important
    }

    .nopad-sm-r {
        padding-right: 0 !important
    }

    .slogan {
        text-align: center
    }

    .scrollbars {
        height: 240px
    }

    .body-contact .fluid-contenu .corps,
    .body-gallery-4 .fluid-contenu .corps {
        padding: 30px 0 0
    }

    .gallery .description-galerie {
        padding: 0 0 40px;
        text-align: left
    }
}

@media (min-width:991px) and (max-width:1199px) {

    /* .body-error404 a.btn.btn-default,
    .contact .formulaire input.btn-primary,
    .contact a.btn.btn-default {
        padding: 16px 20px;
        font-size: 12px
    } */

    .contact .coordonnees {
        padding: 0
    }

    .contact .formulaire .form-group input.btn-primary {
        width: 100%;
        margin-top: 8px;
        float: none
    }
}

.infinite-scroll .chargement {
    background: rgba(var(--color4_rgb), 0) url(../images/chargement.gif) no-repeat scroll center top;
    bottom: 0;
    display: none;
    height: 32px;
    left: 50%;
    margin-left: -16px;
    position: absolute;
    width: 32px
}

.g-recaptcha {
    float: left
}

#g-recaptcha-response {
    left: 12px;
    position: relative;
    display: block !important;
    top: -45px;
    opacity: 0 !important;
    margin: 0 !important;
    height: 10px !important
}

@media print {
    @page {
        size: portrait;
        margin: 2cm
    }

    body {
        background-color: var(--color0);
        font-family: Serif;
        font-size: 10pt
    }

    a:after {
        content: " [" attr(href) "] "
    }

    h1,
    h2,
    h3 {
        font-family: verdana, serif
    }

    .hide-print {
        display: none
    }

    .hide {
        display: none
    }

    .clear {
        clear: both
    }

    div[class^=col-] {
        width: 100%
    }

    .gallery .ligne-photos div[class=col-md-2] {
        width: 16.666666666667%
    }

    .gallery .ligne-photos div[class=col-md-3] {
        width: 25%
    }

    .gallery .ligne-photos div[class=col-md-4] {
        width: 33%
    }

    .gallery .ligne-photos div[class=col-md-6] {
        width: 50%
    }
}