/* Theme Name:     Larouche
 Author:         Larouche Marketing | Communications
 Author URI:     https://larouchemc.com 
 Version:        1.0 
*/

/* ==========================================================================
   1. RESET & VARIABLES
   ========================================================================== */
   :root {
    --noir: #000000;
    --blanc: #ffffff;
    --gris-clair: #f8f8f8;
    --lifeguard-blue : #041E42;
    --lifeguard-red:#CE0037;
    --beigeClair:#FFF9EC;
    --LightBlue: #134A86;
    --menu-mobile-bg: #222222;
    --font-main: "avenir-lt-pro", sans-serif;
    --font-serif: "Playfair Display", serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: var(--font-main);
    color: var(--noir);
}
html, body {
    overscroll-behavior-y: none;
  }
p{
    font-family: var(--font-main);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.6px;
}
.container{
    width:1316px;
    margin: 0 auto;
}
h1{
    color: var(--lifeguard-blue);
    font-family: var(--font-main);
    font-size: 52px;
    font-style: normal;
    font-weight: 400;
    line-height: 52px; /* 100% */
    letter-spacing: -1.56px;
}
h1 strong{
    font-weight: 900;
    font-size: 52px;
    font-style: normal;
    font-weight: 800;
    line-height: 52px;
    letter-spacing: -1.56px;
}
.saucisseButton{
    display: inline-flex;
    height: 50px;
    padding: 16px 48px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 25px;
    background: var(--lifeguard-red);
}
.saucisseButton:hover{
    background: var(--lifeguard-blue);
}
.fondFoncer .saucisseButton:hover{
    background: var(--blanc);
}
.fondFoncer .saucisseButton:hover .button{
    color: var(--lifeguard-red);
}
.saucisseButton .button{
    color:var(--blanc);
    text-decoration: none;
    text-align: center;
    font-family: var(--font-main);
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px; /* 120% */
    letter-spacing: -0.6px;
}
h2.sans{
    font-family: var(--font-main);
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px; 
}
h2{
    color: #00AEEF;
    font-family: var(--font-serif);
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px; 
}
ul li{
    color: var(--lifeguard-blue);
    font-family: var(--font-main);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
    letter-spacing: -0.6px;
}
.hideResponsive{
    display:block;
}
.showResponsive{
    display:none;
}
@media (max-width: 744px) {
    h1{
        font-size: 45px;
        line-height: 52px;
    }
    h1 strong{
        font-size: 45px;
        line-height: 45px;
    }
    h2.sans{
        font-size: 38px;
        line-height: 42px; 
    }
    h2{
        font-size: 38px;
        line-height: 42px; 
    }
    p {
        font-size: 18px;
        line-height: 22px;
    }
}
@media (max-width: 500px) {
    .saucisseButton .button {
        font-size: 18px;
        line-height: 22px;
    }
    #works .subtext {
        font-size: 25px;
        line-height: 27px;
    }
    h1{
        line-height:45px;
    }
}
/* ==========================================================================
   2. HEADER & NAVIGATION (DESKTOP FIRST)
   ========================================================================== */

#top-header {
    width: 100%;
    z-index: 1000;
    min-height: 80px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    background: transparent;
}

.container_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 44px 0;
    width: 1316px;
    margin: 0 auto;
}

/* Style du menu par défaut (Desktop) */
#off-canvas-menu ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

#off-canvas-menu ul li a {
    text-decoration: none;
    font-family: var(--font-main);
    color: var(--lifeguard-blue);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 18px;
    font-style: normal;
    line-height: 24px; 
}
.container_header.white #off-canvas-menu ul li a {
    color: var(--blanc);
}
.container_header.white #off-canvas-menu ul li.current-menu-item a, .page-id-39 .container_header #off-canvas-menu ul li.current-menu-item a{
    color:var(--lifeguard-red);
}
#off-canvas-menu ul li.buttonMenu{
    border-radius: 25px;
    background: var(--lifeguard-red);
    display: flex;
    height: 50px;
    padding: 16px 48px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#off-canvas-menu ul li.buttonMenu a{
    color:var(--blanc);
}
/* Bouton Burger - Caché sur Desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 11000;
    width: 44px;
    height: 44px;
}

.menu-toggle .bar {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--noir);
    transition: all 0.3s ease-in-out;
}

.menu-toggle .bar:nth-child(2) {
    margin: 6px 0;
}

/* ==========================================================================
   3. ANIMATIONS (ÉTAT ACTIF)
   ========================================================================== */

.menu-toggle.is-active .bar {
    background-color: var(--blanc); /* Devient blanc sur le fond noir mobile */
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   4. RESPONSIVE (MOBILE)
   ========================================================================== */

@media (max-width: 834px) {
    
    .menu-toggle {
        display: flex; /* On affiche le burger en mobile */
    }

    #off-canvas-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--lifeguard-blue);
        z-index: 10000;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        padding-top: 100px;
    }

    #off-canvas-menu.is-open {
        transform: translateX(0);
    }

    #off-canvas-menu ul {
        flex-direction: column;
        padding: 40px;
        gap: 0; 
    }

    #off-canvas-menu ul li a {
        font-size: 28px;
        color: var(--blanc);
        display: block;
        margin-bottom: 25px;
        font-weight: 700;
    }
    #off-canvas-menu ul li.buttonMenu {
        height: 55px;
    }
    #off-canvas-menu ul li.buttonMenu a{
        margin-bottom:0;
    }
    .page-id-9 .menu-toggle .bar {
        background-color: var(--blanc);
    }
}

/* ==========================================================================
   5. PAGES (Spécificités)
   ========================================================================== */

/* --- HOME PAGE --- */
#home .bloc1{
    background-image: 
        linear-gradient(0deg, rgba(0, 174, 239, 0.15), rgba(0, 174, 239, 0.15)), 
        radial-gradient(79.03% 50% at 50% 50%, rgba(154, 164, 170, 0) 0%, rgba(154, 164, 170, 0.5) 100%), 
        url('./images/Lignes.svg'), /* Ton image */
        linear-gradient(#DBE3EB, #DBE3EB); /* Ta couleur de fond transformée en gradient pour le blend mode */

    background-size: auto, auto, 100%, auto; 
    background-position: center, center, bottom, center;
    background-repeat: no-repeat;
    background-blend-mode: plus-lighter, normal, normal, normal;
    min-height: 100vh;
}
#home .hero, #works .hero, #about .hero {
  position: relative;
  padding: 100px 0;
  height:100vh;
}
#home .hero .container, #works .hero .container{
    height:100%;
    display:flex;
    align-items: center;
}
#home .hero .container .left{
    width:50%;
}
#home .hero .container .left h1{
    margin-bottom:36px;
}
#home .hero .container .left p {
  color:var(--lifeguard-blue);
  width:80%;
  margin-bottom: 90px;
}
#home .hero .container .left .buttonZone strong{
    color: var(--lifeguard-blue);
    font-family: var(--font-main);
    font-size: 20px;
    font-style: normal;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: -0.6px;
    display:block;
    margin-bottom:23px;
}
#home .hero .flottant{
    position: absolute;
    bottom: 0;
    right: 10%;
    display: flex;
}
#home .hero .flottant .txt {
    display: flex;
    align-items: flex-end;
    margin-bottom: 7%;
    margin-right: 20px;
}
#home .hero .flottant .txt p{
    color: var(--lifeguard-blue);
    font-family: var(--font-main);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 114.286% */
    letter-spacing: -0.42px;
}
#home .hero .flottant img{
    height:80vh;
}
#home .bloc2{
    background-color: var(--beigeClair);
    padding:156px 0 136px 0;
    position:relative;
}
#home .bloc2 .container .sans{
    color:var(--LightBlue);
    margin-bottom:20px;
}
#home .bloc2 .container img{
    margin-left:-10px;
}
#home .bloc2 .container .left{
    width:50%;
}
#home .bloc2 .container p{
    color:var(--lifeguard-blue);
    margin-bottom:15px;
    width:90%;
}
#home .bloc2 .container .saucisseButton{
    margin-top:47px;
}
#home .bloc2 .planAppart{
    position: absolute;
    right:0;
    top:15%;
}
#home .bloc3{
    padding:100px 0 70px 0;
    background-image: 
    url('./images/BG-Lignes-Bleues.png'); 
    background-color: var(--lifeguard-blue);
    background-size: 100% auto; 
    background-position: 20% 40%;
    background-repeat: no-repeat;
    background-blend-mode: plus-lighter;
}
#home .bloc4{
    background-color: var(--lifeguard-blue);
    padding:40px 0 70px 0;
}
#home .bloc3 .container{
    display: flex;
    justify-content: space-between;
    gap:40px;
    flex-wrap:wrap;
}
#home .bloc4 .container{
    align-items: center;
    flex-wrap: wrap;
}
#home .bloc3 .container .left, #home .bloc3 .container .right, #home .bloc4 .container .left, #home .bloc4 .container .right{
    width:45%;
}
#home .bloc3 .container  h2, #home .bloc4 .container h2{
    margin-bottom:14px;
}
#home .bloc3 .container  p strong, #home .bloc4 .container  p strong{
    color:var(--blanc);
    font-weight: 900;
}
#home .bloc3 .container .pictos{
    margin: 59px 0 39px 0;
    display: flex;
    gap: 60px;
}
#home .bloc3 .container  p, #home .bloc4 .container  p{
    color:var(--blanc);
    margin-bottom: 27px;
    width:90%;
}
#home .bloc3 .container.first .left {
    display: flex;
    gap:32px;
}
#home .bloc3 .container.first{
    margin-bottom:55px;
}
#home .bloc3 .container.first .left .marge{
    margin-top:60px;
}
#home .bloc3 .container.first .right h2{
    margin-top:60px;
}
#home .bloc3 .container .left img, #home .bloc4 .container img{
    width:100%;
}
#home .bloc3 .container.second .right img{
    border-radius:16px;
}
#home .bloc3 .container .saucisseButton{
    margin-top:80px;
}
#home .bloc3 .container.second .left p strong{
    margin-bottom:59px;
    display:block;
}
#home .bloc3 .container.second {
    align-items: center;
}
#home .bloc3 .container.second .center{
    display: flex;
    justify-content: center;
    width:100%;
    margin-top: 20px;
}
#home .bloc3 .container.second{
    padding-top:150px;
    padding-bottom:136px;
}
#home .bloc5{
    padding:130px 0 120px 0;
}
.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Ajuste selon le format de ta vidéo */
    border-radius: 16px;
    overflow: hidden; /* Important pour les coins arrondis */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Ton ombrage */
    background-color: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* Remplit toute la zone sans déformation */
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}
#myVideo {
    cursor: pointer;
}

/* Cache le bouton play quand la vidéo joue */
.video-wrapper.video-playing .play-button {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Permet de cliquer "à travers" le bouton invisible */
}
/* Cache le bouton quand la vidéo joue */
.video-playing .play-button {
    opacity: 0;
    pointer-events: none;
}
.bloc6 {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 80vh;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Backgrounds différents */
.slide-1 { background-image: 
    linear-gradient(0deg, rgba(0, 174, 239, 0.15), rgba(0, 174, 239, 0.15)), 
    radial-gradient(79.03% 50% at 50% 50%, rgba(154, 164, 170, 0) 0%, rgba(154, 164, 170, 0.5) 100%), 
    url('./images/Lignes-slider2.png'), 
    linear-gradient(#DBE3EB, #DBE3EB); /* Ta couleur de fond transformée en gradient pour le blend mode */

    background-size: auto, auto, 100%, auto; 
    background-position: center, center, bottom, center;
    background-repeat: no-repeat;
    background-blend-mode: plus-lighter, normal, normal, normal;
} /* Couleur Slide 1 */
.slide-2 { background-image: 
    linear-gradient(0deg, rgba(0, 174, 239, 0.20) 0%, rgba(0, 174, 239, 0.20) 100%), 
    radial-gradient(79.03% 50% at 50% 50%, rgba(154, 164, 170, 0.00) 0%, rgba(154, 164, 170, 0.50) 100%), 
    url('./images/Lignes-slider2.png'), 
    linear-gradient(#DBE3EB, #DBE3EB); /* Ta couleur de fond transformée en gradient pour le blend mode */

    background-size: auto, auto, 100%, auto; 
    background-position: center, center, bottom, center;
    background-repeat: no-repeat;
    background-blend-mode: plus-lighter, normal, normal, normal;
 } /* Couleur Slide 2 */

/* Images en Absolute */
.slide-img {
    position: absolute;
    pointer-events: none;
}
.slide .container{
    width:1000px;
    display: flex;
    justify-content: center;
}

.slide-content{
    max-width:650px;
}
.slide-content .quote{
    color: var(--lifeguard-blue);
    font-family: var(--font-serif);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 128.571% */
    letter-spacing: -0.84px;
    margin-bottom:60px;
    display: block;
}
.slide-content .name{
    color: var(--lifeguard-blue);
    font-family: var(--font-main);
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 26px; 
    letter-spacing: -0.6px;
}
.slide-content .position{
    color: var(--lifeguard-blue);
    font-family: var(--font-main);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.6px;
}
/* Positionnement spécifique par image */
.img-pos-1 { right: 0; bottom: 0; height:70vh; }
.img-pos-2 { left: 2%; bottom: 0; height:70vh; }

/* Navigation Flèches */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    color: rgba(255, 255, 255, 0.5); /* Couleur par défaut (blanc cassé) */
    transition: color 0.3s;
}

.nav-arrow.enabled { color: #CE0037; } /* Rouge si actif */
.nav-arrow.prev { left: 30px; }
.nav-arrow.next { right: 30px; }

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active { background: #CE0037; }
#home .bloc7{
    padding:80px 0;
}
#home .bloc7 .container h2.sans{
    color: #134A86;
    font-weight: 900;
    margin-top:31px;
}
#home .bloc7 .container .contents{
    padding:59px 0 72px 0;
    display: flex;
    flex-wrap:wrap;
    gap:44px 90px;
    justify-content: space-between;
}
#home .bloc7 .container .contents .content{
    display: flex;
    gap:33px;
    align-items: center;
    width:45%;
}
#home .bloc7 .container .contents .content h3{
    color: var(--lifeguard-blue);
    font-family: var(--font-main);
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 32px; 
    letter-spacing: -0.9px;
    margin-bottom:0;
}
#home .bloc7 .container .contents .content .left{
    display: grid;
    place-items: center; 
}
#home .bloc7 .container .contents .content .left .circle, 
#home .bloc7 .container .contents .content .left .icon {
    grid-area: 1 / 1; 
}
#home .bloc7 .container .contents .content .right{
    margin-left: -65px;
}
#home .bloc7 .container .center{
    display: flex;
    align-items: center;
    justify-content: center;
}
#home .bloc8 {
    background-color: #FFF9EC;
    min-height:700px;
    position: relative;
}
#home .bloc8 .FemmeLifeguard{
    position: absolute;
    left:15%;
    height:100%;
}
#home .bloc8 .container{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height:700px;
}
#home .bloc8 .container .right{
    width:50%;
}
#home .bloc8 .container .right h2{
    margin-bottom:51px;
    color:var(--lifeguard-blue);
}
#home .bloc8 .container .right p{
    color:var(--lifeguard-blue);
    margin-bottom:15px;
}
#home .bloc9{
    background-color: var(--lifeguard-blue);
    padding:126px 0 116px 0;
}
#home .bloc9 .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#home .bloc9 .container .right{
    width:48%;
}
#home .bloc9 .container .right img{
    width:100%;
    border-radius: 16px;
}
#home .bloc9 .container .left{
    width:35%;
}
#home .bloc9 .container .left h2{
    color:var(--blanc);
    margin-bottom:27px;
}
#home .bloc9 .container .left p{
    color:var(--blanc);
    margin-bottom: 50px;
}

/* HOW IT WORKS PAGE  */
#works .bloc1{
    background-image: url('../../uploads/2026/02/Hero-HowWork-1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
    min-height: 100vh;
}
#works .hero .container .left{
    width:40%;
}
.subtext {
    color:var(--blanc);
    display: block;
    font-family: var(--font-main);
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 32px; /* 106.667% */
    letter-spacing: -0.9px;
}
#works .hero .container .left h1{
    color:var(--blanc);
    margin-bottom:36px;
    margin-top:5px;
}
#works .hero .container .left p{
    color:var(--blanc);
    padding-bottom:15px;
}
#works .hero .container .left .saucisseButton {
    margin-top:25px;
}
#works .bloc2{
    background-image: 
        linear-gradient(0deg, rgba(0, 174, 239, 0.15), rgba(0, 174, 239, 0.15)), 
        radial-gradient(79.03% 50% at 50% 50%, rgba(154, 164, 170, 0) 0%, rgba(154, 164, 170, 0.5) 100%), 
        url('./images/Lignes-how1.svg'), /* Ton image */
        linear-gradient(#DBE3EB, #DBE3EB); /* Ta couleur de fond transformée en gradient pour le blend mode */

    background-size: auto, auto, 100%, auto; 
    background-position: center, center, bottom, center;
    background-repeat: no-repeat;
    background-blend-mode: plus-lighter, normal, normal, normal;
    min-height: 70vh;
}
#works .bloc2 .container{
    display: flex;
    justify-content:space-between;
    padding:131px 0 142px 0;
}
#works .bloc2 .container .right{
    width:50%;
}
#works .bloc2 .container .left{
    width:40%;
}
#works .bloc2 .container .right h2{
    color:var(--lifeguard-blue);
    margin:0 0 34px 0;
}
#works .bloc2 .container .right p{
    color:var(--lifeguard-blue);
}
#works .bloc2 .container .right ul{
    margin:0 0 23px 35px;
}
#works .bloc2 .container .left{
    display: flex;
    align-items: center;
    justify-content: center;
}
#works .bloc2 .container .left .pictos{
    display: flex;
    flex-wrap:wrap;
    gap:60px 60px;
    max-width:260px;
}
#works .bloc2 .container .left .picto{
    width:99px;
    height:99px;
    aspect-ratio: 1/1;
}
#works .bloc2 .container .left .picto img{
    width:100%;
}
#works .bloc3{
    background-color: #f5efe3;
    padding:185px 0;
    position:relative;
}
#works .bloc3 .container .sans{
    color:var(--LightBlue);
    margin-bottom:38px;
}
#works .bloc3 .container img{
    margin-left:-10px;
}
#works .bloc3 .container .left{
    width:50%;
}
#works .bloc3 .container p{
    color:var(--lifeguard-blue);
    margin-bottom:15px;
    width:90%;
}
#works .bloc3 .container .saucisseButton{
    margin-top:47px;
}
#works .bloc3 .planAppart{
    position: absolute;
    right:0;
    top:15%;
}
#works .bloc4{
    position: relative;
    padding:175px 0 0 0;
    background-image: 
    url('./images/BG-Lignes-Bleues.png'); 
    background-color: var(--lifeguard-blue);
    background-size: 100% auto; 
    background-position: 20% 200%;
    background-repeat: no-repeat;
    background-blend-mode: plus-lighter;
}
#works .bloc4 .container{
    display: flex;
    justify-content: flex-end;
}
#works .bloc4 .container .right{
    width:50%;
}
#works .bloc4 .vueCell{
    position:absolute;
    bottom:0;
    left:23%;
    z-index:1;
}
#works .bloc4 .container .right h3{
    margin-bottom:49px;
    margin-top:14px;
    color:var(--blanc);
    width:70%;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 26px; /* 120% */
    letter-spacing: -0.6px;
}
#works .bloc4 .container .right p{
    color:var(--blanc);
    margin-bottom:49px;
    width:90%;
}
#works .bloc4 .container .right .saucisseButton{
    margin-bottom:134px;
}
#works .bloc5{
    position:relative;
    z-index:2;
    padding:80px 0;
}

#works .bloc5 .container h2.sans{
    color: #134A86;
    font-weight: 900;
    margin-top:31px;
    margin-bottom:24px;
}
#works .bloc5 .container .contents{
    padding:59px 0 72px 0;
    display: flex;
    flex-wrap:wrap;
    gap:44px 90px;
    justify-content: space-between;
}
#works .bloc5 .container .contents .content{
    display: flex;
    gap:33px;
    align-items: center;
    width:45%;
}
#works .bloc5 .container .contents .content h3{
    color: var(--lifeguard-blue);
    font-family: var(--font-main);
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 32px; 
    letter-spacing: -0.9px;
    margin-bottom:0;
}
#works .bloc5 .container .contents .content .left{
    display: grid;
    place-items: center; 
}
#works .bloc5 .container .contents .content .left .circle, 
#works .bloc5 .container .contents .content .left .icon {
    grid-area: 1 / 1; 
}
#works .bloc5 .container .contents .content .right{
    margin-left: -65px;
}
#works .bloc5 .container .center{
    display: flex;
    align-items: center;
    justify-content: center;
}
#works .bloc6{
    background-color: var(--lifeguard-blue);
    padding:124px 0;
}
#works .bloc6 .container{
    display: flex;
    justify-content: space-between;
    gap:96px;
}
#works .bloc6 .container .left{
    width:50%;
}
#works .bloc6 .container .left img{
    width:100%;
}
#works .bloc6 .container .right{
    width:50%;
}
#works .bloc6 .container .right h3{
    margin-bottom:49px;
    margin-top:14px;
    color:var(--blanc);
    width:70%;
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 26px; /* 120% */
    letter-spacing: -0.6px;
}
#works .bloc6 .container .right p{
    color:var(--blanc);
    margin-bottom:20px;
    width:90%;
}
#works .bloc6 .container .right .saucisseButton{
    margin-top:60px;
}
#works .bloc7{
    background-color: var(--beigeClair);
    padding:150px 0;
    position:relative;
    min-height:704px;
}
#works .bloc7 .txt{
    position: absolute;
    right: 20%;
    top: 10%;
}
#works .bloc7 .txt p{
    color: var(--lifeguard-blue);
    font-family: var(--font-main);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -0.42px;
}
#works .bloc7 .container{
    display:flex;
}
#works .bloc7 .container .left{
    width:45%;
}
#works .bloc7 .container .left h2{
    color:var(--lifeguard-blue);
    margin-bottom:51px;
}
#works .bloc7 .container .left p{
    color:var(--lifeguard-blue);
    margin-bottom:20px;
}
#works .bloc7 .container .left ul{
    margin:20px 0 0 35px;
}
#works .bloc7 .FemmeLifeguard{
    position:absolute;
    bottom:0;
    right:20%;
}
#works .bloc8{
    background-image: 
    url('./images/BG-Lignes-Bleues.png'); 
    background-color: var(--lifeguard-blue);
    background-size: 100% auto; 
    background-position: 20% 40%;
    background-repeat: no-repeat;
    background-blend-mode: plus-lighter;
    padding:134px 0 153px 0;
    transform: scaleX(-1);
}
#works .bloc8 .container .left h2{
    color:var(--blanc);
    margin-bottom: 27px;
    margin-top:15px;
}
#works .bloc8 .container .left p{
    color:var(--blanc);
    width:80%;
}
#works .bloc8 .container .left{
    width: 50%;
}
#works .bloc8 .container{
    display: flex;
    justify-content: space-between;
    gap:143px;
    transform: scaleX(-1);
}
#works .bloc8 .container .right{
    width:40%;
}
#works .bloc8 .container .right .centreBeige{
    background-color: var(--beigeClair);
    width:419px;
    border-radius: 16px;
    padding:68px 88px;
}
#works .bloc8 .container .right .centreBeige .saucisseButton{
    margin-top:34px;
}
/* ABOUT US  */
#about .bloc1{
    background-image: 
        linear-gradient(0deg, rgba(0, 174, 239, 0.15), rgba(0, 174, 239, 0.15)), 
        radial-gradient(79.03% 50% at 50% 50%, rgba(154, 164, 170, 0) 0%, rgba(154, 164, 170, 0.5) 100%), 
        url('./images/Lignes.svg'), /* Ton image */
        linear-gradient(#DBE3EB, #DBE3EB); /* Ta couleur de fond transformée en gradient pour le blend mode */

    background-size: auto, auto, 100%, auto; 
    background-position: center, center, bottom, center;
    background-repeat: no-repeat;
    background-blend-mode: plus-lighter, normal, normal, normal;
    min-height: 100vh;
}
#about .hero .container .left{
    width:40%;
}
#about .hero .container .left h1{
    color:var(--lifeguard-blue);
    margin-bottom:36px;
    margin-top:5px;
}
#about .hero .container .left p{
    color:var(--lifeguard-blue);
    padding-bottom:15px;
}
#about .hero .container{
    height:100%;
    display:flex;
    align-items: center;
}
#about .bloc2{
    padding:130px 0;
    background-image: 
        linear-gradient(0deg, rgba(0, 174, 239, 0.15), rgba(0, 174, 239, 0.15)), 
        radial-gradient(79.03% 50% at 50% 50%, rgba(154, 164, 170, 0) 0%, rgba(154, 164, 170, 0.5) 100%), 
        url('./images/Lignes.svg'), /* Ton image */
        linear-gradient(#DBE3EB, #DBE3EB); /* Ta couleur de fond transformée en gradient pour le blend mode */

    background-size: auto, auto, 100%, auto; 
    background-position: center, center, bottom, center;
    background-repeat: no-repeat;
    background-blend-mode: plus-lighter, normal, normal, normal;
}
#about .bloc2 .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#about .bloc2 .container .left{
    width:50%;
}
#about .bloc2 .container .right{
    width: 50%;
    align-items: center;
    display: flex;
    justify-content: center;
}
#about .bloc2 .container .left h2{
    color:var(--lifeguard-blue);
    margin-bottom:50px;
}
#about .bloc2 .container .left .quote{
    color: var(--lifeguard-blue);
    font-family: var(--font-serif);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 128.571% */
    letter-spacing: -0.84px;
    margin-bottom:40px;
    display: block;
}
#about .bloc2 .container .left .name{
    color: var(--lifeguard-blue);
    font-family: var(--font-main);
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    line-height: 26px; 
    letter-spacing: -0.6px;
}
#about .bloc2 .container .left .position{
    color: var(--lifeguard-blue);
    font-family: var(--font-main);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.6px;
}
#about .bloc3{
    position:relative;
    z-index:2;
    padding:80px 0;
}
#about .bloc3 .container .top p{
    width:50%;
}
#about .bloc3 .container h2.sans{
    color: #134A86;
    font-weight: 900;
    margin-top:31px;
    margin-bottom:24px;
}
#about .bloc3 .container .contents{
    padding:59px 0 72px 0;
    display: flex;
    flex-wrap:wrap;
    gap:44px 90px;
    justify-content: space-between;
}
#about .bloc3 .container .contents .content{
    display: flex;
    gap:33px;
    align-items: center;
    width:45%;
}
#about .bloc3 .container .contents .content h3{
    color: var(--lifeguard-blue);
    font-family: var(--font-main);
    font-size: 30px;
    font-style: normal;
    font-weight: 900;
    line-height: 32px; 
    letter-spacing: -0.9px;
    margin-bottom:0;
}
#about .bloc3 .container .contents .content .left{
    display: grid;
    place-items: center; 
}
#about .bloc3 .container .contents .content .left .circle, 
#about .bloc3 .container .contents .content .left .icon {
    grid-area: 1 / 1; 
}
#about .bloc3 .container .contents .content .right{
    margin-left: -65px;
}
#about .bloc3 .container .center{
    display: flex;
    align-items: center;
    justify-content: center;
}
#about .bloc4{
    background-image: 
    url('./images/BG-Lignes-Bleues.png'); 
    background-color: var(--lifeguard-blue);
    background-size: 100% auto; 
    background-position: 20% 40%;
    background-repeat: no-repeat;
    background-blend-mode: plus-lighter;
    padding:134px 0 153px 0;
    transform: scaleX(-1);
}
#about .bloc4 .container .left h2{
    color:var(--blanc);
    margin-bottom: 27px;
    margin-top:15px;
}
#about .bloc4 .container .left p{
    color:var(--blanc);
    width:90%;
}
#about .bloc4 .container .left{
    width: 45%;
}
#about .bloc4 .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:143px;
    transform: scaleX(-1);
}
#about .bloc4 .container .right{
    width:45%;
}
#about .bloc4 .container .right .centreBeige{
    background-color: var(--beigeClair);
    width:85%;
    border-radius: 16px;
    padding:40px;
}
#about .bloc4 .container .right .centreBeige h2{
    color:var(--lifeguard-blue);
    margin-bottom:30px;
}
#about .bloc4 .container .right .centreBeige .saucisseButton{
    margin-top:34px;
}
#about .hero .flottant{
    position: absolute;
    bottom: 0;
    right: 10%;
    display:flex;
}
#about .hero .flottant img{
    height:80vh;
}
/* RESPONSIVE */
@media (max-width: 1920px) {
    #works .bloc4 .vueCell {
        left: 20%;
    }
    #works .bloc7 .FemmeLifeguard {
        right: 17%;
    }
    #works .bloc7 .txt{
        right: 17%;
    }
}
@media (max-width: 1728px) {
    #home .bloc8 .FemmeLifeguard{
        left:12%;
    }
    .slide-2 .slide-content {
        margin-left: 20%;
    }
    #works .bloc4 .vueCell {
        left: 15%;
    }
    #works .bloc7 .FemmeLifeguard {
        right: 14%;
    }
    #works .bloc7 .txt{
        right: 14%;
    }
    
}
@media (max-width: 1512px) {
    #home .bloc8 .FemmeLifeguard {
        left: 8%;
    }
    #works .bloc4 .vueCell {
        left: 10%;
    }
    #works .bloc7 .FemmeLifeguard {
        right: 9%;
    }
    #works .bloc7 .txt{
        right: 9%;
    }
}
@media (max-width: 1440px) {
    #home .bloc8 .FemmeLifeguard {
        left: 5%;
    }
    .slide-1 .slide-content {
        margin-right:10%;
    }
    .slide-2 .slide-content{
        margin-left: 35%;
    }
    #works .bloc4 .vueCell{
        left:12%;
    }
    #works .bloc7 .FemmeLifeguard{
        right:5%;
    }
    #works .bloc7 .txt{
        right: 5%;
    }
}
@media (max-width: 1350px) {
    .container, .container_header{
        width:90%;
    }
}
@media (max-width: 1280px) {
    #about .bloc2 .container .left {
        width: 55%;
    }
    #about .bloc2 .container .right {
        width: 45%;
    }
    #about .bloc4 .container .right .centreBeige h2 br{
        display:none;
    }
    #works .bloc4 {
        padding: 150px 0 0 0;
    }
    #works .bloc4 .vueCell {
        left: 5%;
    }
    #works .bloc3 .planAppart {
        width: 50%;
        top: 22%;
    }
    #works .hero .container .left {
        width: 50%;
    }
    #home .bloc8 .FemmeLifeguard {
        left: 2%;
    }
    #home .hero .container .left{
        width:60%;
    }
    #home .hero .flottant{
        right:8%;
    }
    #home .hero .flottant img{
        height:78vh;
    }
    #home .bloc7 .container .contents .content .right p br, #works .bloc5 .container .contents .content .right p br{
        display: none;
    }
    #home .bloc3 .container.second{
        padding-top:50px;
    }
    #works .bloc7 .FemmeLifeguard {
        right: 2%;
    }
    #works .bloc7 .txt{
        right: 2%;
    }
}
@media screen and (min-width: 1280px) and (max-height: 720px) {
    #home .hero .flottant img{
        height:75vh;
    }
    #home .hero .flottant .txt {
        margin-left: -160px;
    }
    
}
@media (max-width: 1024px) {
    #home .hero .container .left {
        width: 80%;
    }
    #home .hero .flottant img {
        height: 50vh;
    }
    #home .hero .flottant .txt {
        margin-left: -150px;
    }
    #home .hero .flottant {
        right: 15%;
    }
    #home .hero .container{
        align-items: flex-start;
        margin-top: 150px;
    }
    #home .hero .container .left p{
        margin-bottom:60px;
    }
    #home .bloc2 {
        padding: 100px 0 0 0;
    }
    #home .bloc2 .container .left {
        width: 100%;
    }
    #home .bloc2 .planAppart {
        position: relative;
        left: 31%;
        bottom: 0;
    }
    #home .bloc3 .container .left, #home .bloc3 .container .right, #home .bloc4 .container .left, #home .bloc4 .container .right {
        width: 100%;
    }
    #home .bloc3 .container {
        flex-wrap: wrap-reverse;
    }
    #home .bloc3 {
        padding: 70px 0;
        background-position: 20% 55%;
    }
    #home .bloc3 .container.first .left {
        justify-content: center;
    }
    #home .bloc3 .container.second {
        flex-wrap: wrap;
    }
    #home .bloc3 .container.second{
        padding-bottom:70px;
    }
    #home .bloc3 .container.second .right{
        text-align: center;
    }
    #home .bloc3 .container .saucisseButton {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    #home .bloc7 .container .contents .content {
        width: 100%;
    }
    #home .bloc8 .container {
        align-items: flex-start;
        padding-top: 50px;
    }
    .img-pos-1, .img-pos-2 {
        height: 50vh;
    }
    .slide {
        align-items: flex-start;
        padding-top: 150px;
    }
    #home .bloc9 .container .right {
        width: 100%;
        margin-top: 70px;
    }
    #home .bloc9 .container .left {
        width: 65%;
    }
    #home .bloc9 .container {
        flex-wrap: wrap;
    }
    #works .hero .container .left {
        width: 60%;
    }
    #works .bloc1 {
        background-position: 65%;
    }
    #works .bloc2 .container {
        padding: 70px 0 142px 0;
        flex-wrap: wrap-reverse;
        justify-content: center;
    }
    #works .bloc2 .container .left {
        margin-top: 40px;
    }
    #works .bloc2 .container .right {
        width: 100%;
    }
    #works .bloc3 .planAppart {
        position: relative;
        left: 50%;
    }
    #works .bloc3 .container .left {
        width: 100%;
    }
    #works .bloc3 {
        padding: 85px 0;
    }
    #works .bloc4 .vueCell {
        left: 55%;
        width:35%;
    }
    #works .bloc4 {
        padding: 80px 0 150px 0;
    }
    #works .bloc4 .container{
        margin-bottom: 100px;
    }
    #works .bloc4 .container .right {
        width: 100%;
    }
    #works .bloc5 .container .contents, #works .bloc5 .container .contents .content{
        width:100%;
    }
    #works .bloc5 .container .top p br{
        display: none;
    }
    #works .bloc6 {
        padding: 80px 0;
    }
    #works .bloc6 .container {
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap-reverse;
    }
    #works .bloc6 .container .right {
        width: 100%;
    }
    #works .bloc7 {
        padding: 80px 0;
    }
    #works .bloc7 .FemmeLifeguard {
        width: 60%;
    }
    #works .bloc7 .txt {
        top: 15%;
    }
    #works .bloc8 .container {
        justify-content: center;
        gap: 70px;
        flex-wrap: wrap;
    }
    #works .bloc8 {
        background-position: 20% 50%;
        padding: 80px 0;
    }
    #works .bloc8 .container .left {
        width: 100%;
    }
    #about .hero .flottant {
        right: 4%;
    }
    #about .hero .flottant img {
        height: 75vh;
    }
    #about .bloc3 .container .contents .content{
        width:100%;
    }
    #about .bloc3 {
        padding: 80px 0 40px 0;
    }
    #about .bloc3 .container .top p {
        width: 70%;
    }
    #about .bloc2 .container {
        justify-content: flex-end;
        flex-wrap: wrap;
    }
    #about .bloc2 .container .left {
        width: 100%;
    }
    #about .bloc4 {
        background-position: 20% 50%;
        padding: 80px 0;
    }
    #about .bloc4 .container {
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap;
    }
    #about .bloc4 .container .left {
        width: 100%;
    }
    #about .bloc4 .container .right .centreBeige {
        width: 100%;
    }
    #about .bloc4 .container .right {
        width: 60%;
        margin-top:30px;
    }
}
@media (max-width: 834px) {
    #home .hero .container .left {
        width: 100%;
    }
    #home .hero .container {
        margin-top: 70px;
    }
    #home .hero .container .left p {
        margin-bottom: 40px;
    }
    #home .hero .flottant {
        right: 5%;
    }
    #home .hero .flottant .txt {
        margin-bottom: 15%;
    }
    .slide {
        padding-top: 90px;
    }
    .slide-1 .slide-content {
        margin-right: 0;
    }
    .slide-2 .slide-content {
        margin-left: 0;
    }
    .slide-content .quote {
        margin-bottom: 30px;
    }
    .img-pos-2 {
        left: 53%;
    }
    #home .bloc7 .container .contents .content h3 {
        font-size: 25px;
        line-height: 27px;
    }
    #home .bloc9 .container .left {
        width: 100%;
    }
    .hideResponsive{
        display:none;
    }
    .showResponsive{
        display:block;
    }
    #home .bloc8 .container .right {
        width: 100%;
    }
    #home .bloc8 .container {
        min-height: auto;
    }
    #home .bloc8 .showResponsive{
        display: flex;
        justify-content: center;
    }
    #home .bloc8 .showResponsive img{ 
        width:60%;
    }
    #works .bloc4 .vueCell {
        left: 50%;
        width: 42%;
    }
    #works .bloc5 .container .contents .content h3 {
        font-size: 25px;
        line-height: 27px;
    }
    #works .bloc6 .container .left {
        width: 65%;
    }
    #works .bloc7 .container .left {
        width: 100%;
    }
    #works .bloc7 .showResponsive {
        display:flex;
        justify-content: center;
    }
    #works .bloc7 .showResponsive img{
        width:60%;
    }
    #works .bloc7{
        padding: 80px 0 0 0;
        
    }
    #works .bloc7 .showResponsive .txtMobile p{
        color: var(--lifeguard-blue);
        font-family: var(--font-main);
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        letter-spacing: -0.42px;
    }
    #works .bloc7 .showResponsive{
        position:relative;
    }
    #works .bloc7 .showResponsive .txtMobile{
        position: absolute;
        right: 10%;
        top: 10%;
    }
    #works .bloc8 .container .right .centreBeige {
        width: auto;
        padding: 40px;
        text-align: center;
    }
    #works .bloc8 .container .right {
        width: 50%;
    }
    #about .hero .container {
        align-items: flex-start;
        margin-top: 100px;
    }
    #about .hero .container .left {
        width: 90%;
    }
    #about .hero .flottant img {
        height: 60vh;
    }
    #about .bloc3 .container .contents .content h3{
        font-size:25px;
        line-height:27px;
    }
    #about .bloc2 {
        padding: 80px 0;
    }
    #about .bloc4 .container .right {
        width: 70%;
    }
    #works .bloc1 {
        background-image: url(../../uploads/2026/02/Hero-HowWork-Mobile-2.jpg);
    }
    #works .hero .container .left {
        width: 100%;
    }
    #works .hero .container .left p {
        width: 55%;
    }
    #works .hero .container {
        align-items: flex-start;
        margin-top: 100px;
    }
}
@media (max-width: 744px) {
    .container_header {
        padding: 20px 0;
    }
    #home .hero .container {
        margin-top: 50px;
    }
    #home .hero .container .left .buttonZone strong {
        font-size: 18px;
        line-height: 22px;
    }
    #home .hero .flottant .txt {
        max-width: 150px;
    }
    #home .hero .flottant img {
        height: 55vh;
    }
    #home .bloc2 {
        padding: 80px 0 30px 0;
    }
    #home .bloc2 .planAppart {
        width: 80%;
    }
    #home .bloc5 {
        padding: 80px 0 80px 0;
    }
    #home .bloc5 svg{
        width:80px;
        height:80px;
    }
    #home .bloc3 {
        padding: 20px 0;
        background-position: 20% 60%;
    }
    #about .hero .flottant img {
        height: 63vh;
    }
    #about .bloc2 .container .left .quote {
        font-size: 24px;
        line-height: 32px;
    }
    #about .bloc2 .container .left .name {
        font-size: 20px;
        line-height: 24px;
    }
    #about .bloc2 .container .left .position{
        font-size: 18px;
        line-height: 22px;
    }    
}
@media (max-width: 500px) {
    #home .hero .container .left h1 br{
        display: none;
    }
    #home .hero .container .left p {
        width: 100%;
    }
    #home .hero .container .left h1 {
        margin-bottom: 20px;
        margin-top: 0;
    }
    #home .hero .flottant .txt {
        margin-bottom: 85%;
        margin-right: -20px;
    }
    #home .hero .flottant img {
        height: 40vh;
    }
    #home .hero .flottant {
        right: 0;
    }
    #home .bloc2 .container .sans br{
        display:none;
        margin-bottom: 0;
    }
    #home .bloc2 .container .saucisseButton {
        margin-top: 30px;
    }
    #home .bloc2 .container .saucisseButton{
        padding:16px 40px;
    }
    #home .bloc2 .container p {
        width: 100%;
    }
    #home .bloc5 svg {
        width: 60px;
        height: 60px;
    }
    #home .bloc3 .container.second {
        padding-top: 0;
    }
    #home .bloc3 .container p, #home .bloc4 .container p {
        width: 100%;
    }
    #home .bloc3 .container.second .right img {
        width:100%;
    }
    .slide-content .quote {
        font-size: 24px;
        line-height: 32px;
    }
    .slide-content .name, .slide-content .position {
        font-size: 18px;
        line-height: 22px;
    }
    .slide {
        padding-top: 40px;
    }
    .slide-content {
        max-width: 380px;
    }
    .img-pos-1, .img-pos-2 {
        height: 40vh;
    }
    .img-pos-2 {
        left: 36%;
    }
    #home .bloc7 .container .contents .content .circle{
        width:100px;
        height:100px;
    }
    #home .bloc7 .container .contents .content .icon{
        width:23px;
        height:39px;
    }
    #home .bloc7 .container .contents .content {
        gap: 10px;
    }
    #home .bloc7 .container .contents .content .right {
        margin-left: 0;
    }
    #home .bloc7 .container .contents {
        padding: 30px 0 50px 0;
    }
    #home .bloc7 {
        padding: 50px 0;
    }
    #home .bloc8 .showResponsive img {
        width: 90%;
    }
    #home .bloc9 {
        padding: 80px 0;
    }
    #works h1 {
        font-size: 44px;
    }
    #works .hero .container .left .saucisseButton {
        margin-top: 15px;
    }
    #works .hero .container {
        margin-top: 50px;
    }
    #works .hero .container .left p {
        width: 100%;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    #works .hero .container .left h1 {
        margin-bottom: 20px;
    }
    #works .bloc2 .container .left .pictos {
        gap: 60px 40px;
        max-width: 90%;
        justify-content: center;
    }
    #works .bloc2 .container .left {
        width: 100%;
    }
    #works .bloc3 .planAppart {
        width: 80%;
        left:20%;
    }
    #works .bloc4 .container .right h3 {
        width: 100%;
    }
    #works .bloc4 .container .right p {
        width: 100%;
    }
    #works .bloc4 .vueCell {
        left: 20%;
        width: 60%;
    }
    #works .bloc5 .container .contents .content .circle{
        width:100px;
        height:100px;
    }
    #works .bloc5 .container .contents .content .icon{
        width:23px;
        height:39px;
    }
    #works .bloc5 .container .contents .content .icon.moon, #works .bloc5 .container .contents .content .icon.hand{
        width:35px;
        height:39px;
    }
    #works .bloc5 .container .contents .content {
        gap: 10px;
    }
    #works .bloc5 .container .contents .content .right {
        margin-left: 0;
    }
    #works .bloc5 .container .contents {
        padding: 30px 0 50px 0;
    }
    #works .bloc5 {
        padding: 50px 0;
    }
    #works .bloc6 {
        padding: 50px 0;
    }
    #works .bloc6 .container .right .saucisseButton {
        margin-top: 30px;
    }
    #works .bloc6 .container .left {
        width: 100%;
    }
    #works .bloc7 .showResponsive .txtMobile {
        right: 18%;
    }
    #works .bloc7 .showResponsive {
        justify-content: flex-start;
    }
    #works .bloc8 .container .left p {
        width: 100%;
    }
    #works .bloc8 .container .right {
        width: 90%;
    }
    #works .bloc8 {
        padding: 50px 0;
    }
    #about .hero .flottant img {
        height: 50vh;
    }
    #about .hero .container .left {
        width: 100%;
    }
    #about .bloc3 .container .contents .content .circle{
        width:100px;
        height:100px;
    }
    #about .bloc3 .container .contents .content .icon{
        width:23px;
        height:39px;
    }
    #about .bloc3 .container .contents .content .icon.hands{
        width:35px;
        height:39px;
    }
    #about .bloc3 .container .contents .content .icon.check{
        width:30px;
        height:35px;
    }
    #about .bloc3 .container .contents .content .icon.light{
        width:30px;
        height:33px;
    }
    #about .bloc3 .container .contents .content {
        gap: 10px;
    }
    #about .bloc3 .container .contents .content .right {
        margin-left: 0;
    }
    #about .bloc3 .container .contents {
        padding: 30px 0 50px 0;
    }
    #about .bloc3 {
        padding: 50px 0;
    }
    #about .bloc3 .container .top p {
        width: 100%;
    }
    #about .bloc2 .container .right {
        width: 100%;
        margin-top:20px;
    }
    #about .bloc2 .container .right img{
        width:100%;
    }
    #about .bloc4 .container .left h2 br {
        display:none;
    }
    #about .bloc4 {
        padding: 50px 0;
    }
    #about .bloc4 .container .left p {
        width: 100%;
    }
    #about .bloc4 .container .right {
        width: 90%;
    }
    #works .bloc6 .container .right p {
        width: 100%;
    }
    #works .bloc7 {
        padding: 50px 0 0 0;
    }
}
@media (max-width: 430px) {
    #home .bloc2 .container .saucisseButton {
        padding: 16px 32px;
    }
    #works h1 {
        font-size: 43px;
    }
    #works .subtext {
        font-size: 24px;
        line-height: 26px;
    }
    #works .bloc2 .container .right h2 br{
        display:none
    }
    #works .bloc5 .container .contents .content h3,  #home .bloc7 .container .contents .content h3, #about .bloc4 .container .contents .content h3{
        font-size: 22px;
        line-height: 25px;
    }
}
@media (max-width: 412px) {
    #about .bloc4 .container .right .centreBeige {
        padding: 40px 30px;
    }
}
/* ==========================================================================
 6. FOOTER
 ========================================================================== */
#main-footer {
  background-color: var(--blanc);
  background-image: 
    url('./images/Lignes-footer.svg');
  background-repeat: no-repeat;
  background-size: cover;  
  color: var(--lifeguard-blue);
  padding: 60px 0 30px;
}

#main-footer .container.centre {
  display: flex;
  justify-content:space-between;
  align-items: center;
  padding-bottom:60px;
}
#main-footer .container .left{
    width:65%;
    display: flex;
    gap:80px;
    flex-wrap:wrap;
    align-items: center;
}
#main-footer .container .left .menu-footer{
    min-height:31px;
}
#off-canvas-menu-footer ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}
#main-footer .container #off-canvas-menu-footer ul li a, #main-footer .container .right a{
    color: var(--lifeguard-blue);
    font-family: var(--font-main);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 133.333% */
    text-decoration: none;
}
#main-footer .container .right{
    display: flex;
    align-items: center;
    gap:40px;
}
#main-footer .container.copyright p{
    color: #5A5A5A;
    font-family: var(--font-main);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 184.615% */
    letter-spacing: -0.39px;
}
#main-footer .container.copyright p a{
    color: #5A5A5A;
    font-family: var(--font-main);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 184.615% */
    letter-spacing: -0.39px;
    text-decoration: none;
}
#main-footer .container a:hover{
    text-decoration: underline;
}
#main-footer .container.copyright{
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1024px) {
    #main-footer .container.centre {
        align-items: flex-start;
    }
    #main-footer .container .left {
        gap: 40px;
    }
    #main-footer .container.copyright {
        flex-wrap: wrap;
    }
}
@media (max-width: 834px) {
    #main-footer .container.copyright .left {
        width: 100%;
    }
}
@media (max-width: 744px) {
    #main-footer .container.centre{
        padding-bottom:0;
    }
}
@media (max-width: 500px) {
    #off-canvas-menu-footer ul {
        gap: 20px;
        flex-wrap: wrap;
    }
    #off-canvas-menu-footer ul li{
        width:100%;
    }
    #main-footer .container.centre{
        flex-wrap:wrap;
    }
    #main-footer .container .left {
        gap: 20px;
    }
    #main-footer .container .right {
        gap: 40px;
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 10px;
    }
    #main-footer {
        padding: 30px 0 0 0;
    }
    #main-footer .container.copyright p {
        line-height: 18px;
        margin-bottom: 10px;
    }
    #main-footer .container.copyright p a {
        line-height: 18px;
    }
   
}
/* ==========================================================================
 7. UTILS & HELPERS (Classes réutilisables)
 ========================================================================== */
.text-center { text-align: center; }
.hidden { display: none; }
.mt-50 { margin-top: 50px; }


