.timeline {
    display: flex;
    align-items: start;
    position: relative;
    margin: 50px 0;
}
.timeline-item {
    position: relative;
    text-align: center;
    width: 16%;
}
.timeline-item::before {
    content: '';
    position: absolute;
    top: 150px;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #00662B;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.timeline-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    --c: #21252980;
    /* color */
    --t: 2px;
    /* thickness */
    --g: 2px;
    /* gap */
    --d: 5px;
    /* control the dashes */
    background:
      conic-gradient(at var(--t) 20%, #0000 60%, var(--c) 0) 0/var(--g) var(--d);
    left: 0;
    top: 150px;
}
.timeline-item:first-child::after {
    left: 50%;
}
.timeline-item:last-child::after {
    width: 50%;
}
.timeline-content {
    position: relative;
    padding: 15px;
    margin-top: 30px;
    z-index: 3;
    background-color: #FFF;
}
.timeline-image {
    width: 100px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    margin-bottom: 100px;
}
.timeline-image::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    --c: #21252980;
    /* color */
    --t: 1px;
    /* thickness */
    --g: 1px;
    /* gap */
    --d: 2px;
    /* control the dashes */
    background:
      conic-gradient(at var(--t) 20%, #0000 60%, var(--c) 0) 0/var(--g) var(--d);
    left: 50%;
    top: 0;
  }
.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
.timeline-year {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}
.timeline-title {
    font-size: 16px;
    color: #198754;
    margin-bottom: 10px;
}
.timeline-text {
    font-size: 14px;
    color: #6c757d;
}