.timeline-steps {
    padding: 80px 0;
}

.timeline-steps>.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-steps__steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 0;
}

.timeline-step {
    width: 50%;
    align-self: flex-start;
}

.timeline-step:nth-of-type(odd) {
    border-right: 3px solid #EA4335;
    padding-right: 32px;
}

.timeline-step:nth-of-type(even) {
    align-self: flex-end;
    border-left: 3px solid #EA4335;
    padding-left: 32px;
    position: relative;
    right: 3px;
}

.timeline-step__title-element {
    display: flex;
    align-items: center;
}

.timeline-step__titre {
    font-family: "EightiesComeback-Bold";
    color: #1C45F5;
    font-size: 28px;
    margin-left: 16px;
    line-height: 1.3;
}

.timeline-step__number-element {
    position: relative;  
}

.timeline-step__number-circle {
    background-color: #EA4335;
    width: 35px;
    height: 35px; 
    display: block;
    border-radius: 50%;
}

.timeline-step__number-element__number {
    position: absolute;
    right: -2px;
    font-family: "EightiesComeback-Bold";
    color: rgb(28, 69, 245, 75%);
    filter: blur(1px);
    font-size: 48px;
    top: -5px;
}

.timeline-step__texte {
    margin-top: 16px;
    font-family: "Moderat-Light";
    font-size: 16px;
    line-height: 1.4;
}

.timeline-step__texte ul,
.timeline-step__texte ol {
    padding-left: 16px;
    margin-bottom: 16px;
}

.timeline-step__texte p {
    margin-bottom: 16px;
}

.timeline-step__texte li {
    list-style: disc;
}

@media all and (max-width:550px) {
    .timeline-step__titre {
        font-size: 22px;
    }
}

@media all and (max-width:715px) {
    .timeline-step {
        padding-right: 0 !important;
        padding-left: 32px;
        width: 100% !important;
        padding-bottom: 32px;
    }

    .timeline-step:nth-of-type(odd) {
        border-right: inherit;
        border-left: 3px solid #EA4335;
    }

    .timeline-step:nth-of-type(even) {
        right: inherit;
    }
}