.bloc1 {
    display: flex;
    width: 100%;
    font-size: 0;
    flex-direction: row !important;
    align-content: center;
}

.bloc1>div {
    display: inline-block;
    position: relative;
    width: calc((100% - (2 * 60px)) / 3);
    margin-right: 60px;
}

.bloc1>div:last-child {
    margin-right: 0;
}
.bloc1>div p {
    text-align: center;
}

.bloc1>div p strong {
}

.bloc1>div p:nth-child(1) {
    font-size: 70px;
    color: var(--orange);
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.bloc1>div p:nth-child(2) {
    font-size: 16px;
}

@media screen and (max-width:800px) {    


    .bloc1>div {
        display: block;
        width: 100%;
        max-width: 350px;
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
    }

    .bloc1 {
        display: flex;
        flex-direction: column !important;
        justify-content: center;
    }

}