.bloc.bloc_G {
    display: flex;
    position: relative;
    z-index: 2;
    justify-content: center;
    border-radius: 0 0 6vh 6vh;
    margin-bottom: -5vh;
    background-color: var(--color-white);
    min-height: 60vh;
}

.bloc.bloc_G .wrapper {
    flex: 1;
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: var(--gap-5);
    font-weight: var(--font-text-bold);
    gap: var(--gap-3);
}

.bloc.bloc_G .wrapper .number {
    width: calc(7 * var(--width-column) + 7 * var(--width-space));
    font-size: 24rem;
    line-height: 17.5rem;
    text-align: end;
    font-family: var(--font-title);
    font-weight: var(--font-title-extr-bold);
}

.bloc.bloc_G .wrapper .text {
    width: calc(5 * var(--width-column) + 4 * var(--width-space));
    font-size: 4rem;
    line-height: 4.5rem;
    font-family: var(--font-title);
    font-weight: var(--font-title-extr-bold);
}

.bloc.bloc_G .wrapper .text span {
    color: var(--color-blue);
}

/******************** RESPONSIVE ********************/
@media (max-width : 1024px) {
    .bloc.bloc_G .wrapper {
        flex-direction: column;
    }

    .bloc.bloc_G .wrapper .number,
    .bloc.bloc_G .wrapper .text {
        width: 100%;
        text-align: start;
    }
}

@media (max-width : 768px) {
    .bloc.bloc_G .wrapper .number {
        font-size: 16rem;
        line-height: 11.5rem;
        text-align: center;
    }

    .bloc.bloc_G .wrapper {
        gap: var(--gap-2);
    }
}

@media (max-width : 480px) {
    .bloc.bloc_G .wrapper {
        padding: var(--gap-5) var(--gap-2);
    }

    .bloc.bloc_G .wrapper .number {
        font-size: 12rem;
        line-height: 9rem;
        text-align: center;
    }

    .bloc.bloc_G .wrapper .text {
        font-size: 3rem;
        line-height: 3.5rem;
        text-align: justify;
    }
}