.chiffre-ligne {
    padding: 30px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}

.chiffre-ligne__bloc {
    display: inline-grid;
    margin: auto;
    width: 32%;
    height: 200px;
    text-align: center;
    justify-content: center;
    align-items: flex-end;
    padding: 10px;
    position: relative;
}

.chiffre-ligne__bloc--image {
    height: 80px;
}

.chiffre-ligne__bloc::after {
    content: '';
    position: absolute;
    background-image: url('../../dist/images/chiffre_line.svg');
    background-repeat: no-repeat;
    background-size: cover;
    height: 1px;
    width: 50px;
    bottom: 0px;
    left: 40%;
}

.chiffre-ligne__bloc:last-of-type::after {
    background-image: none !important;
}

.chiffre-ligne__bloc img {
    width: 50px !important;
    height: auto !important;
    margin-bottom: 15px !important;
    margin-top: 0px !important;
    display: block;
    margin: auto;
}

.chiffre-ligne__bloc__nom {
    font-size: 17px;
    font-weight: 400;
    text-align: center;
    align-self: self-start;
}

.chiffre-ligne__bloc__nom h4 {
    font-size: 18px;
    font-weight: 800;
    text-align: center !important;
}

.chiffre-ligne__bloc__nom p {
    font-size: 15px !important;
}

@media(max-width:768px) {
    .chiffre-ligne__bloc {
        width: 80%;
        margin-left: 10%;
        border-right: 0px;
        margin-bottom: 30px;
    }
}

@media(min-width:768px) {
    .chiffre-ligne__bloc::after {
        content: '';
        position: absolute;
        background-image: url('../../dist/images/chiffre_line.svg');
        background-repeat: no-repeat;
        background-size: cover;
        height: 50px;
        width: 1px;
        bottom: 50px;
        left: 100%;
    }
}