.header-timeline {
    display: none;
    height: 0; width: 100vw;
    left: 0;
    background-color: #d5d5d5;
    flex-direction: column; justify-content: center; align-items: center;
}

.header-timeline hr {
    margin: 0;
    height: 0.2rem;
    width: 90vw;
    position: absolute;
}

.header-timeline .events-wrapper {
    display: flex; justify-content: space-around; flex-wrap: nowrap; align-items: flex-start;
    height: 18rem;
    width: 90vw;
}

.header-event {
    display: flex; flex-direction: column;
    height: 9rem;
    text-decoration: none;
    color: black;
    position: relative;
    margin-top: 1.7rem;
}

.header-event:hover {
    color: #f4a460;
}

.header-event:hover .header-event-date  {
    color: #f4a460;
}

.header-event-text {
    display: none;
}

.icon-wrapper {
    height: 4em;
    position: relative;
    display: flex;
    justify-content: center; align-items: center;
}

.header-event-icon { /* refactor to .header-event icon todo */
    font-family: monospace;
    font-size: 3rem; line-height: 2.8rem;
    z-index: 1;
    position: relative;
    top: 1px;
}



.header-event-title, .header-event-date {
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    line-height: 1.5rem;
    height: 5rem;
    overflow: hidden;
    top: 0; left: 0;
}

.header-event-date {
    font-size: 0.8rem;
    height: 0.8rem;
    line-height: 0.9em;
    color: white;
}


.events-wrapper :nth-child(2n) .header-event-title, .events-wrapper :nth-child(2n) .header-event-date {
    top: 9rem;
}

/* for MOBILE */
@media all and (max-width: 850px) {
    .header-timeline {
        display: none !important;
        height: 0 !important;
    }

    .header-timeline-legend {
        display: none !important;
    }
}