.bloc.bloc_A {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-3);
}

.bloc.bloc_A.radius {
    border-radius: 10vh;
    position: relative;
    z-index: 2;
    margin-top: -10vh;
    margin-bottom: -10vh;
    background-color: var(--color-white);
}

.bloc.bloc_A .wrapper {
    height: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    padding: var(--gap-5);
    gap: var(--gap-3);
}

.bloc.bloc_A .wrapper.left {
    align-items: flex-start;
}

.bloc.bloc_A .wrapper.right {
    align-items: flex-end;
}

.bloc.bloc_A .wrapper h2 {
    font-size: var(--size-h2-title-small);
    line-height: var(--size-h2-title-height-small);
    text-transform: uppercase;
    width: 60%;
    height: 100%;
}

.bloc.bloc_A .wrapper.right h2,
.bloc.bloc_A .wrapper.right p {
    text-align: start;
}

.bloc.bloc_A .wrapper.right h2,
.bloc.bloc_A .wrapper.right p {
    text-align: end;
}

.bloc.bloc_A .wrapper .bottom {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--gap-3);
}

.bloc.bloc_A .wrapper .bottom .left {
    width: 100%;
    font-size: var(--size-p);
}

.bloc.bloc_A .wrapper .bottom .right {
    width: calc(3 * var(--width-column) + 3 * var(--width-space));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/******************** RESPONSIVE ********************/
@media (max-width : 950px) {
    .bloc.bloc_A .wrapper .bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--gap-3);
    }

    .bloc.bloc_A .wrapper .bottom .left {
        width: 100%;
        text-align: justify;
    }

    .bloc.bloc_A .wrapper .bottom .right {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width : 768px) {
    .bloc.bloc_A .wrapper .bottom {
        flex-direction: column;
    }
    
    .bloc.bloc_A .wrapper .bottom .left {
        width: 100%;
        text-align: justify;
    }
}

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

    .bloc.bloc_A .wrapper h2 {
        font-size: 3rem;
        line-height: 3.5rem;
    }
}