.pseudo-timeline {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex: 1 1 0%;
    flex-direction: column;
}

.pseudo-timeline h4 {
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3.5px;
    padding: 20px;
    text-transform: uppercase;
}

.pseudo-timeline ul {
  display: flex;
  flex-flow: column;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  width: 100%;
}

.pseudo-timeline ul::before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 2px;
    background: black;
}

.pseudo-timeline li {
    padding-bottom: 1.25rem;
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
}

.pseudo-timeline li > * {
    text-align: left;
    width: 188px;
    z-index: 2;
}

.pseudo-timeline li > *:last-child {
    border-bottom: 2px solid rgba(0,0,0,0.75);
    padding-bottom: 1.25rem;
}

.pseudo-timeline li::before {
    content: "";
    position: absolute;
    left: 0;
    width: calc(100% - 188px);
    height: 2px;
    top: calc(50% - 1px);
    background: black;
    z-index: 0;
}

.pseudo-timeline img {
    width: 188px;
    height: 188px;
    object-fit: cover; 
    padding-bottom: 1.25rem;
}

.pseudo-timeline em {
    font-style: normal;
}

@media (min-width: 768px) {
    .pseudo-timeline {
        align-items: center;
    }

    .pseudo-timeline ul {
        flex-flow: row;
        flex-wrap: wrap;
        align-items: center;
    }

    .pseudo-timeline ul::before {
        left: calc(50% - 1px);
    }

    .pseudo-timeline li {
        flex-basis: 50%;
    }

    .pseudo-timeline li:nth-child(odd) {
        align-items: flex-start;
    }

    .pseudo-timeline li:nth-child(odd)::before {
        left: 188px;
    }
}
