.bloc.hero_B {
    height: 130vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.bloc.hero_B .top {
    display: flex;
    justify-content: flex-end;
    height: 70vh;
    border-radius: 0 0 100px 0;
}

.bloc.hero_B .wrapper {
    padding: calc(var(--height-header) + 50px) var(--gap-5) var(--gap-2) var(--gap-5);
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
}

.bloc.hero_B .wrapper h1 {
    text-transform: none;
    font-size: var(--size-h1-title);
    line-height: var(--size-h1-title-height);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.bloc.hero_B .wrapper span {
    font-size: 2rem;
    line-height: 2.2rem;
}

.bloc.hero_B .bottom {
    height: 70vh;
    position: relative;
}

.bloc.hero_B .bottom img {
    z-index: 0;
    padding: 0 var(--gap-5);
    top: -30px;
}

/******************** RESPONSIVE ********************/
@media (max-width: 1024px) {
    .bloc.hero_B {
        height: 110vh;
    }

    .bloc.hero_B .left {
        display: none;
    }

    .bloc.hero_B .right {
        width: 100%;
    }

    .bloc.hero_B .right .wrapper {
        padding: 0 0 var(--gap-5) var(--gap-5);
    }

    .bloc.hero_B .bottom {
        height: 40vh;
    }
}

@media (max-width: 768px) {
    .bloc.hero_B .wrapper h1 {
        font-size: 6rem;
        line-height: 6.5rem;
    }
}

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

    .bloc.hero_B .right .wrapper h1 {
        text-transform: none;
        font-size: 3.9rem;
        line-height: 4.1rem;
        border-bottom: 4px solid;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .bloc.hero_B .right .wrapper p {
        padding-right: var(--gap-2);
    }

    .bloc.hero_B .bottom img {
        padding: 0 var(--gap-2);
    }
}

@media (max-height : 450px) {
    .bloc.hero_B {
        height: 130vh;
    }

    .bloc.hero_B .top {
        height: 90vh;
    }
}