ol {
    position: relative;
    display: block;
}

ol::before {
    content: "";
    position: absolute;
    height: 4px;
    background: var(--color-text);
    left: 9%;
    right: 11%;
    top: 11px;
}


/* ol>li:first-child {
    left: 0;
}

ol>li:last-child {
    right: 0;
} */


/* ---- Timeline elements ---- */

.li {
    position: relative;
    display: inline-block;
    float: left;
    width: 20%;
    font: bold 14px arial;
    height: 50px;
}

.li .diplome {
    position: absolute;
    top: -62px;
    left: 0%;
    color: #000000;
    text-align: center;
}

.li .diplome>img {
    max-width: 58%;
}

.li .point {
    content: "";
    top: -0px;
    left: 43%;
    display: block;
    width: 26px;
    height: 26px;
    border: 6px solid var(--color-text);
    border-radius: 50%;
    background: #fff;
    position: absolute;
}

.li:nth-child(2) .point {
    border: 6px solid #E8C26A;
}

.li:nth-child(3) .point {
    border: 6px solid #108AB1;
}

.li:nth-child(4) .point {
    border: 6px solid #E76F51;
}

.li:last-child .point {
    border: 6px solid orangered;
}

.li .description {
    display: block;
    padding: 10px;
    width: 80%;
    position: relative;
    font-weight: normal;
    z-index: 1;
    margin: 35px auto 0;
    text-align: center;
    font-size: 13px;
}


/* .description::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #f4f4f4;
    position: absolute;
    top: -5px;
    left: 45%;
} */