*{
    box-sizing: border-box;
}
.timeline{
    background-color: #122566;
}
.timeline h1{
    font-size: 2rem;
}

.timeline .inline-block{
    max-width: 100%;
    display: inline-block;
}

.timeline .page-wrapper{
    z-index: 0;
    position: relative;
}

.timeline .container{
    width: 90vw;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
}

.timeline .margin-bottom-medium{
    margin-bottom: 32px;
}

.timeline .paragraph-large{
    letter-spacing: -0.02em;
    font-size: 20px;
}

.timeline .section-timeline-heading{
    background-color: #122566;
}

.timeline .padding-vertical-xlarge{
    padding-top: 120px;
    padding-bottom: 120px;
}

.timeline .timeline-main_heading-wrapper{
    color: #fdfdfd;
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.timeline .timeline_component{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    position: relative;
}

.timeline .timeline_item{
    z-index: 2;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 180px 1fr;
    grid-auto-columns: 1fr;
    padding-top: 80px;
    padding-bottom: 80px;
    display: grid;
    position: relative;
}

.timeline .timeline_left{
    text-align: right;
    justify-content: flex-end;
    align-items: stretch;
}

.timeline .timeline_centre{
    justify-content: center;
    display: flex;
}

.timeline .timeline_date-text{
    color: #fdfdfd;
    letter-spacing: -0.03em;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    position: sticky;
    top: 50vh;
}

.timeline .timeline_text{
    color: #fdfdfd;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
}

.timeline .timeline_circle{
    background-color: #fdfdfd;
    border-radius: 100%;
    width: 15px;
    min-width: 15px;
    max-width: 15px;
    height: 15px;
    min-height: 15px;
    max-height: 15px;
    position: sticky;
    top: 50vh;
    box-shadow: 0 0 0 8px #122566;
}

.timeline .timeline_progress{
    z-index: 1;
    background-color: #fdfdfd;
    position: absolute;
    width: 3px;
    height: 100%;
}

.timeline .section-timeline{
    z-index: 0;
    background-color: #122566;
    position: relative;
}

.overlay-fade-top{
    background-image: linear-gradient(#0a0a0a, #0a0a0a00);
    height: 80px;
    position: absolute;
    inset: auto 0% 0%;
}

.overlay-fade-bottom{
    background-image: linear-gradient(to top, #0a0a0a, #0a0a0a00);
    height: 80px;
    position: absolute;
    inset: auto 0% 0%;
}

@media screen and (max-width: 768px) {
    .timeline h2{
        font-size: 40px;
    }

    .timeline .paragraph-large{
        font-size: 18px;
    }

    .timeline .padding-vertical-xlarge{
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .timeline .timeline_item{
        grid-template-columns: 64px 1fr;
        width: 100%;
    }

    .timeline .timeline_left{
        text-align: left;
        grid-area: 1/2/2/3;
    }

    .timeline .timeline_centre{
        justify-content: flex-start;
        grid-area: 1/1/3/2;
    }

    .timeline .timeline_right{
        grid-area: span 1/ span 1/ span 1/ span 1;
    }

    .timeline .timeline_date-text{
        margin-bottom: 24px;
        font-size: 36px;
    }

    .timeline .timeline_text{
        font-size: 20px
    }

    .timeline_progress{
        left: 6px;
    }

    .margin-bottom-xlarge{
        margin-bottom:48px;
    }
}