#graph-3cols {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.graph-bloc {
    background-color: #ee2e24;
    position: relative;
    height: 350px;
    
    transition: transform 300ms;
}

.graph-bloc-contenu {
    padding: 50px 50px 50px 100px;
    background-color: #ee2e24;
    height: 100%;

    background-size: cover !important;
    background-repeat: no-repeat !important;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}

.graph-bloc-diagonale {
    width: 100%;
    height: 100%;

    position: absolute;
    top: 0;
    left: 0;

    z-index: -1;
}

.graph-bloc-diagonale:before {
    content: "";
    position: absolute;
    right: -210px;
    top: -10px;
    border-top: 220px solid rgba(26, 26, 26, 0.15);
    border-right: 100px solid transparent;
    border-bottom: 220px solid transparent;
    border-left: 110px solid rgba(26, 26, 26, 0.15);
    z-index: 8;
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);

    pointer-events: none;
}

.graph-bloc-diagonale:after {
    content: "";
    position: absolute;
    right: -190px;
    top: 0;
    border-top: 220px solid #ee2e24;
    border-right: 100px solid transparent;
    border-bottom: 200px solid transparent;
    border-left: 100px solid #ee2e24;
    z-index: 9;

    pointer-events: none;
}

.graph-bloc-contenu h3 {
    width: 100%;
}

.graph-bloc-contenu h3 a {
    position: relative;
    margin-bottom: 40px;
    font-size: 70px;
    line-height: 70px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    display: block;
    text-decoration: none;
}

.graph-bloc-contenu h3 a:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 50%;
    height: 10px;
    background-color: rgba(0, 0, 0, 0.2);
}

.graph-bloc-contenu h3 span {
    display: block;
    font-weight: 200;
}

.graph-bloc-contenu > a {
    width: 100%;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 300ms;
}

.graph-bloc-contenu > a:hover {
    color: rgba(255, 255, 255, 1);
}

.graph-bloc:hover .graph-bloc-contenu > a {
    text-indent: 15px;
}

.graph-bloc-contenu > a i {
    font-style: normal;
    color: #fff;
    margin-right: 15px;
}

.graph-bloc.bloc1 {
    width: 33.3333%;
    z-index: 30;
}

.graph-bloc.bloc2 {
    width: 66.6666%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
}

.graph-bloc.bloc3 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.graph-bloc.bloc2 .graph-bloc-contenu {
    padding-left: 55%;
}

.graph-bloc.bloc3 .graph-bloc-contenu {
    padding-left: 70%;
}

@media all and (max-width: 1440px) {
    .graph-bloc-contenu h3 a {
        font-size: 50px;
        line-height: 50px;
    }
}

@media all and (max-width: 1280px) {  
    .graph-bloc-contenu h3 a {
        font-size: 45px;
        line-height: 45px;
    }

    .graph-bloc-diagonale:before, .graph-bloc-diagonale:after {
        content: none;
    }

    .graph-bloc {
        width: 33.3333% !important;
        position: relative !important;
        box-shadow: 10px 0 30px 10px rgba(26, 26, 26, 0.15);
    }

    .graph-bloc-contenu {
        padding: 50px 50px !important;
    }

    .graph-bloc-contenu h3 {
        font-size: 50px;
        line-height: 50px;
    }

    .graph-bloc-contenu a {
        font-size: 20px;
        line-height: 1.3;
    }
}

@media all and (max-width: 1024px) {
    .graph-bloc-contenu h3 a {
        font-size: 40px;
        line-height: 40px;
    }

    .graph-bloc-contenu {
        padding: 35px 35px !important;
    }
}

@media all and (max-width: 991px) {
    .graph-bloc-contenu h3 a {
        font-size: 35px;
        line-height: 35px;
    }
}

@media all and (max-width: 768px) {
    .graph-bloc {
        width: 100% !important;
        height: auto;
    }

    .graph-bloc-contenu h3:after {
        width: 100%;
    }
}