.m_timeline {
    background: #0c0c0c;
    padding: 100px 48px;
    text-align: center;
}

.m_timeline_container {
    max-width: 1440px;
    margin: 0 auto;
}

.m_timeline_subheadline {
    display: block;
    margin-bottom: 10px;

    color: #e62020;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.m_timeline_headline {
    margin: 0;

    color: #fff;

    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.92;
    letter-spacing: -0.01em;
}

.m_timeline_text {
    margin: 20px auto 0;
    max-width: 580px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 16px;
    line-height: 1.7;
}

.m_timeline_elements {
    position: relative;

    display: flex;
    justify-content: space-between;
    gap: 0;

    margin-top: 64px;
}

.m_timeline_beam {
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;

    height: 2px;

    background: linear-gradient(
            to right,
            #e62020,
            rgba(230, 32, 32, 0.75),
            rgba(230, 32, 32, 0.45),
            #181818
    );

    z-index: 0;
}

.m_timeline_item {
    position: relative;
    z-index: 1;

    flex: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 0 20px;
}

.m_timeline_item_number {
    width: 56px;
    height: 56px;

    background: #e62020;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 22px;
    font-weight: 900;

    flex-shrink: 0;
}

.m_timeline_item:last-child .m_timeline_item_number {
    background: #181818;
    border: 2px solid rgba(255,255,255,.25);
    color: #fff;
}

.m_timeline_item_icon {
    width: 42px;
    height: 42px;

    margin-top: 28px;
    margin-bottom: 12px;
}

.m_timeline_item_icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.m_timeline_item_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.m_timeline_item_titel p {
    margin: 0 0 10px;

    color: #fff;

    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.m_timeline_item_fact p {
    margin: 0;

    color: rgba(255, 255, 255, 0.45);

    font-size: 13px;
    line-height: 1.65;
}

.m_icon_item_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Mobile */

@media (max-width: 900px) {
    .m_timeline {
        padding: 80px 24px;
    }

    .m_timeline_elements {
        flex-direction: column;
        gap: 48px;
        margin-top: 56px;
    }

    .m_timeline_item {
        align-items: flex-start;
    }

    .m_icon_item_content {
        background: #111;
        border: 1px solid rgba(255,255,255,.08);
        width: 100%;
        margin-top: 30px;
        padding: 10px 30px 30px 30px;
        align-items: flex-start;
    }

    .m_timeline_item_fact p,
    .m_timeline_item_titel p{
        text-align: left;
    }

    .m_timeline_beam {
        top: 28px;
        bottom: 28px;
        left: 27.5px;
        right: auto;

        width: 2px;
        height: auto;

        transform: translateX(-50%);

        background: linear-gradient(
                to bottom,
                #e62020,
                rgba(230, 32, 32, 0.75),
                rgba(230, 32, 32, 0.45),
                rgba(230, 32, 32, 0.18)
        );
    }

    .m_timeline_item {
        padding: 0;
    }
}