.timeline {
    position: relative;
    margin: 0 auto;
    display: grid;
}
.timeline img {
    
}
@media(min-width:992px) {
    #timeline h2 {
        text-align:center;
    }
    .timeline {
        grid-template-columns: 1fr 1fr;
        gap: 10rem;
        row-gap: 0rem;
        grid-template-rows: 1fr 2fr;
    }
    .timeline .timeCard{
        grid-row: span 2;
    }
    .timeline .timeCard:nth-child(2) {
        grid-row: 2 / 4;
    }
    .timeCard:nth-child(odd) {
        text-align: right;
        grid-column: 1;
        margin-bottom: 3rem;
    }
    .timeCard:nth-child(even) {
        grid-column: 2;
        margin-bottom: 3rem;
    }
    .timeCard:nth-child(even) img.u-circlePhotoSimple, .timeCard:nth-child(odd) img.u-circlePhotoSimple {
    margin-bottom: -1rem;
}
    .timeCard.no-photo {
        align-self: center;
        margin-top: -4rem;
    }
}

@media(min-width:1200px) {
.timeCard:nth-child(even) img.u-circlePhotoSimple {
    margin-left: 1rem;
}
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -9px;
  z-index: -1;
  border-left: 5px dotted var(--gfColors-gold);
}
.timeCard {
    max-width: 450px;
        margin-bottom: 2rem;
}
.timeline h3 {
    margin-top:0;
    text-transform: uppercase;
    letter-spacing: .05rem;
    position: relative;
}
.timeline p.date {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: .05rem;
    color: var(--gfColors-slate100);
    margin-bottom: .1rem;
    font-size: 1.2rem;
}

/* Add line to the left container (pointing right) */
.timeCard:nth-child(odd) h3::before {
  content: " ";
  height: 2px;
  position: absolute;
  top: 1rem;
  width: 55px;
  z-index: 1;
  right: -80px;
  background-color:var(--gfColors-gold);
}
.timeCard:nth-child(odd) h3::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    right: -25px;
    background-color: var(--gfColors-gold);
    top: 12px;
    border-radius:50%;
}

/* Add line to the right container (pointing left) */
.timeCard:nth-child(even) h3::before {
     content: " ";
    height: 2px;
    position: absolute;
    top: 1rem;
    width: 55px;
    z-index: 1;
    left: -80px;
    background-color:var(--gfColors-gold);
}
.timeCard:nth-child(even) h3::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    left: -25px;
    background-color:var(--gfColors-gold);
    top: 12px;
    border-radius:50%;
}
@media (max-width: 991.89px) {
  .timeline::after {
    left: 10px;
  }
  .timeline {
    width: 100%;
    padding-left: 60px;
    padding-right: 5px;
  }
  .timeCard:nth-child(odd) h3::before, .timeCard:nth-child(even) h3::before {
    left: -50px;
    border: 2px solid var(--gfColors-gold);
    width:39px;
    top: 17px;
  }
  .timeCard:nth-child(odd) h3::after{
        left: -25px;
  }
}  