
/********** BLOC C - Titre et paragraphe avec choix du côté **********/
.bloc.bloc_C {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bloc.bloc_C .wrapper {
    height: 100%;
    width: 100%;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--gap-5);
    gap: var(--gap-3);
}
.bloc.bloc_C .wrapper.left {
    flex-direction: row;
}
.bloc.bloc_C .wrapper.right {
    flex-direction: row-reverse;
}

.bloc.bloc_C .wrapper h2 {
    width: 50%;
    font-size: 6rem;
    line-height: 6.5rem;
    text-transform: uppercase;
}
.bloc.bloc_C .wrapper.left h2 {
    text-align: start;
}
.bloc.bloc_C .wrapper.right h2 {
    text-align: end;
}

.bloc.bloc_C .wrapper div {
    width: 50%;
}





@media (max-width : 950px) {
    .bloc.bloc_C .wrapper.left,
    .bloc.bloc_C .wrapper.right {
        flex-direction: column;
    }

    .bloc.bloc_C .wrapper h2,
    .bloc.bloc_C .wrapper p {
        width: 100%;
    }

    .bloc.bloc_C .wrapper.right h2 {
        text-align: start;
    }

    .bloc.bloc_C .wrapper p {
        text-align: justify;
    }

    .bloc.bloc_C .wrapper div {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .bloc.bloc_C .wrapper.left,
    .bloc.bloc_C .wrapper.right {
        flex-direction: column;
    }

    .bloc.bloc_C .wrapper h2,
    .bloc.bloc_C .wrapper p {
        width: 100%;
    }

    .bloc.bloc_C .wrapper.right h2 {
        text-align: start;
    }
    .bloc.bloc_C .wrapper p {
        text-align: justify;
    }      
}

@media (max-width: 480px) {      
    .bloc.bloc_C .wrapper h2 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
    .bloc.bloc_C .wrapper {
        padding: var(--gap-5) var(--gap-2);
    }
}