/* entete */
    .entete{
        width: 100%;
        height: 290px;
        background-image: url(../images/bg1.png);
        background-size: cover;
        background-position: bottom;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .entete:before{
        content: '';
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        backdrop-filter: blur(3px);
        z-index: 1;
    }
    
    .entete h1, .path{
        position: relative;
        z-index: 10;
    }

    .entete h1{
        color: white;
        font-size: 45px;
        text-align: center;
    }

    .path{
        display: flex;
        align-items: center;
        margin-bottom: 70px;
    }

    .path a, .path i{
        font-size: 18px;
        color: white;
        transform: translatey(3px);
        margin: 0 .2rem;
    }
    
    /* animation hero */
        .animation_hero{
            position: absolute;
            bottom: 0; left: 0;
            width: 100%; height: max-content;
        }

        .animation_mer{
            position: relative;
            width: 100%;
            bottom: 0px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .animation_mer .wave{
            position: absolute;
            width: 100%;
            height: 100px;
            top: -100px;
            left: 0;
            background: url(../images/wave_blan.png);
            background-size: 1000px 100px;
        }

        .animation_mer .wave#wave1{
            z-index: 1000;
            opacity: 1;
            bottom: 0;
            animation: animatewave_entete 6s linear infinite;
        }

        .animation_mer .wave#wave2{
            z-index: 999;
            opacity: 0.5;
            bottom: 10px;
            animation: animatewave_entete2 5s linear infinite;
        }

        .animation_mer .wave#wave3{
            z-index: 1000;
            opacity: 0.2;
            bottom: 15px;
            animation: animatewave_entete 5s linear infinite;
        }

        .animation_mer .wave#wave4{
            z-index: 999;
            opacity: 0.7;
            bottom: 20px;
            animation: animatewave_entete2 6s linear infinite;
        }

        @keyframes animatewave_entete{
            0%{
                background-position-x: 1000px;
            }
            100%{
                background-position-x: 0px;
            }
        }

        @keyframes animatewave_entete2{
            0%{
                background-position-x: 0px;
            }
            100%{
                background-position-x: 1000px;
            }
        }
    /* animation hero */
/* entete */


/* entete */
    @media screen and (max-width: 660px) {
        .entete h1{
            font-size: 40px;
        }
    }

    @media screen and (max-width: 500px) {
        .entete{
            height: 10rem;
        }

        .entete h1{
            font-size: 35px;
            margin-bottom: 0;
        }

        .path a, .path i{
            font-size: 15px;
        }
    }

    @media screen and (max-width: 400px) {
        .entete h1{
            font-size: 30px;
        }

        .path a, .path i{
            font-size: 14px;
        }
    }

    @media screen and (max-width: 350px) {
        .entete{
            height: 8rem;
        }

        .entete h1{
            font-size: 25px;
        }

        .path a, .path i{
            font-size: 13px;
        }
    }
/* entete */