/* entete */
    .entete{
        background-image: url(../images_one/hero/hero1.jpg);
        background-position: center;
        background-size: cover;
        width: 100%;
        height: 250px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    
    .entete:before{
        content: '';
        width: 100%; height: 100%;
        background: var(--first);
        opacity: .5;
        position: absolute;
        top: 0; left: 0;
        z-index: 1;
    }
    
    .entete h1, .entete .path{
        position: relative;
        z-index: 10;
    }
    
    .entete h1{
        color: var(--white);
        font-size: 45px;
        text-align: center;
        margin-top: -16px;
    }
    
    .entete .path{
        display: flex;
        align-items: center;
    }
    
    .entete .path a, .entete .path i{
        color: var(--white);
    }
/* entete */

/* responsive */
    /* entete */
        @media screen and (max-width: 650px){
            .entete{
                height: 220px;
            }
            
            .entete h1{
                font-size: 40px;
            }
        }
        
        @media screen and (max-width: 450px){
            .entete{
                height: 180px;
            }
            
            .entete h1{
                font-size: 30px;
            }
        }
    /* entete */
/* responsive */