/* header home */
    .headerHome{
        width: 100%;
        height: 330px;
        background-position: center;
        background-size: cover;
        position: absolute;
        top: 38px; left: 0;
    }

    /* carrousel */
        .carouselBackground {
            position: relative;
            width: 100%;
            height: 330px;
            overflow: hidden;
        }

        .carouselSlide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            animation: carouselFade 12s infinite;
            display: flex;
            align-items: center;
            padding: 64px 64px 16px 64px;
        }

        .carouselSlide::before{
            content: '';
            position: absolute;
            width: 100%; height: 430px;
            z-index: 1;
            top: 0; left: 0;
            backdrop-filter: brightness(60%);
        }

        /* images */
        .carouselSlide:nth-child(1) { 
            background-image: url('../../images/coup-moyenr.webp'); 
            animation-delay: 0s; 
        }
        .carouselSlide:nth-child(2) { 
            background-image: url('../../images/coup-moyenr.webp'); 
            animation-delay: 4s; 
        }
        .carouselSlide:nth-child(3) { 
            background-image: url('../../images/coup-moyenr.webp'); 
            animation-delay: 8s; 
        }
        
        @keyframes carouselFade {
            0% { opacity: 0; }
            8% { opacity: 1; }
            33% { opacity: 1; }
            41% { opacity: 0; }
            100% { opacity: 0; }
        }

        /* text caroussel */
            .containerInfo{
                position: relative;
                z-index: 11;
                width: 60%;
                text-align: right;
                margin: 0 0 0 auto;
            }

            .containerInfo .grandTitre{
                font-size: 40px;
                text-transform: uppercase;
                font-weight: 700;
                color: var(--white);
            }

            .containerInfo h2{
                font-weight: 700;
                font-size: 30px;
                margin-bottom: 10px;
                color: var(--white);
            }

            .containerInfo p{
                font-size: 18px;
                color: var(--white);
            }

            .containerInfo .flexBtn{
                margin-top: 16px;
                justify-content: flex-end;
            }

            .containerInfo .flexBtn .btn2{
                background: none;
                border: 1px solid var(--white);
                color: var(--white);
            }
        /* text caroussel */
    /* carrousel */
/* header home */

/* main */
    /* experiences */
        .experiences{
            position: relative;
            width: 100%;
            height: 380px;
            background-image: url(../../images/coup-moyenr.webp);
            background-position: center;
            background-size: cover;
        }

        .experiences::before{
            content: '';
            position: absolute;
            width: 100%; height: 380px;
            z-index: 1;
            top: 0; left: 0;
            backdrop-filter: brightness(60%);
        }

        .boxExperiences{
            position: relative;
            z-index: 10;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 0 64px;

            i, h2, p{
                color: var(--white);
            }

            i{
                font-size: 90px;
            }

            h2{
                font-size: 40px;
            }

            p{
                text-align: center;
                margin: 8px 0;
            }
        }
    /* experiences */

    /* realisations */
        /* img event */
            .container_img{
                width: min(1200px, 100%);
                margin: 0 auto;
                columns: 5 200px;
                column-gap: 12px;
                margin-top: 32px;
            }

            .container_img img{
                display: block;
                margin-bottom: 12px;
                width: 100%;
            }

            .container_img img:hover{
                scale: 1.03;
            }
        /* img event */
    /* realisations */

    /* temoignages  */
        .temoignages{
            position: relative;
            width: 100%;
            height: 400px;
            background-image: url(../../images/coup-moyenr.webp);
            background-position: center;
            background-size: cover;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            h2{
                font-size: 35px;
                font-weight: 800;
                text-align: center;
                margin-bottom: 16px;
                color: var(--white);
            }
        }

        .temoignages::before{
            content: '';
            position: absolute;
            width: 100%; height: 400px;
            z-index: 1;
            top: 0; left: 0;
            backdrop-filter: brightness(60%);
        }

        .boxTemoignage{
            position: relative;
            z-index: 10;
            width: 70%;
        }

        /* section AvisClient */
            .boxAvisClient{        
                display: flex;
                gap: 16px;
                overflow-x: auto;
                padding-bottom: 5px;
                max-width: 90%;
                margin: 0 auto;
                scroll-behavior: smooth;
                position: relative;
                anchor-name: --caroussel;
                scroll-snap-type: x mandatory;                    
                scroll-marker-group: after;
            }

            .boxAvisClient::scroll-marker-group{
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 8px;
            }

            .AvisClient::scroll-marker{
                content: '';
                width: 8px; height: 8px;
                background: var(--light-white);
                border-radius: 50%;
            }

            .AvisClient::scroll-marker:target-current{
                background: var(--pink);
            }

            .boxAvisClient::-webkit-scrollbar{
                display: none;
            }

            .boxAvisClient::scroll-button(right), .boxAvisClient::scroll-button(left){
                border: none;
                background-color: var(--pink);
                width: 40px; height: 40px;
                border-radius: 50%;
                color: var(--white);
                cursor: pointer;
                position: fixed;
                position-anchor: --caroussel;
            }

            .boxAvisClient::scroll-button(right){                    
                content: "\21D2";
                position-area: right center;
                translate: -50%;
            }

            .boxAvisClient::scroll-button(left){                    
                content: "\21D0";
                position-area: left center;
                translate: 50%;
            }

            .boxAvisClient::scroll-button(right):disabled, .boxAvisClient::scroll-button(left):disabled{
                opacity: 0.5;
                cursor: auto;
            }

            .AvisClient{
                scroll-snap-align: start;
                position: relative;
                width: 100%;
                flex: 0 0 100%;
                height: 270px;
                background: var(--white);
                padding: 32px; 
            }

            .headerAvis{
                display: flex;
                align-items: stretch;
                gap: 16px;

                .boxProfileClient{
                    width: 100px;
                    height: 100px;

                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        border-radius: 50%;
                    }
                }

                .boxInfoClient{
                    display: flex;
                    flex-direction: column;
                    justify-content: center;

                    .nameClient{
                        font-weight: 700;
                        text-transform: capitalize;
                    }
                }

                .posteClient{
                    color: var(--light-black);
                }

                .bxs-star{
                    color: var(--pink);
                }

                .bx-star{
                    color: var(--light-gray);
                }
            }

            .AvisClient p{
                height: auto;
                max-height: 100px;
                overflow-y: auto;
                margin-top: 8px;
                text-align: justify;
                padding-right: 5px;
            }

            .AvisClient p::-webkit-scrollbar{
                width: 5px;
                height: 5px;
            }

            .AvisClient p::-webkit-scrollbar-track{
                background-color: transparent;
            }

            .AvisClient p::-webkit-scrollbar-thumb{
                background-color: var(--pink);
            }
        /* section AvisClient */
    /* temoignages */
/* main */