.hero{
    background-image: var(--degrade-violet-color2);
    display: flex;
    padding-left: 100px;
    padding-bottom: 200px;
    position: relative;
}


.hero .titre-texte{
    width: 50%;
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.hero .titre-texte h1{
    font-size: var(--h1-font-size);
    color: var(--white-color);
}

.hero .titre-texte p{
    font-size: 1.4rem;
    color: var(--white-color);
}

.hero .photo-groupe{
    width: 39%;
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 1;
    transform: translateY(-50%);
}

.hero .trait-hero{
    width: 20%;
    position: absolute;
    left: 0px;
    bottom: 0;
    opacity: 0.3;
}

.mention-legale{
    padding: 100px;
}

.mention-legale p{
    margin-top: 10px !important;
}

.mention-legale h1{
    font-size: 48px;
    color: var(--black-color);
    margin-bottom: 50px;
}

.mention-legale .text{
    font-size: 16px;
    color: var(--violet-clair-color);
    line-height: 1.5;
}

.mention-legale .text a{
    color: var(--violet-fonce-color);
    text-decoration: underline;
}

.mention-legale .title-text-pair{
    display: flex;
    flex-direction: column;
    padding: 25px 0px;
}


.mention-legale .title-text-pair .title{
    width: 50%;
}

.mention-legale .title-text-pair .title h2{
    font-size: 25px;
    color: var(--violet-fonce-color);
    font-weight: 700;
}

.mention-legale .title-text-pair .text{
    width: 70%;
}

@media screen and (max-width:768px) {

    .hero{
        padding-left: 50px;
    }

    .hero .titre-texte {
        width: 100%;
    }

    .hero .titre-texte h1 {
        font-size: 36px;
    }

    .hero .trait-hero {
        width: 250px;
    }

    .mention-legale{
        padding: 50px;
        gap: 50px;
        display: flex;
        flex-direction: column;
    }

    .mention-legale h1{
        font-size: 36px;
    }

    .mention-legale .text{
        width: 100%;
    }

    .mention-legale .title-text-pair{
        flex-direction: column;
        padding: 0px 0px;
    }

    .mention-legale .title-text-pair .title{
        width: 100%;
    }

    .mention-legale .title-text-pair .text{
        width: 100%;
    }
    

    .mention-legale .ligne{
        margin: 25px 0px;
    }
    
}