.timeline {
    position: relative;
    padding-left: 4rem;
    margin: 0 0 0 30px;
    color: white;
  }
  .timeline:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--dark-green);
  }
  .timeline .timeline-container {
    position: relative;
    margin-bottom: 2.5rem;
  }

  .timeline .timeline-container .timeline-date {
    position: absolute;
    left: -250px;
    top: 0px;
    width: 200px;
    height: 25px;
    text-align: center;
    font-size: 1rem;
    color: #575454;
  }

  .timeline .timeline-container .timeline-date p {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .timeline .timeline-container .timeline-icon {
    position: absolute;
    left: -88px;
    top: 0px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    background: #4f537b;
  }

  .timeline .timeline-container .timeline-icon i {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .timeline .timeline-container .timeline-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
  .timeline .timeline-container .timeline-body {
    color: black;
    text-align: left;
    background: #efefef;
    border-radius: 3px;
    padding: 20px 20px 15px;
    box-shadow: 1px 3px 9px rgba(0, 0, 0, 0.1);
  }
  .timeline .timeline-container .timeline-body:before {
    content: "";
    background: inherit;
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    left: -10px;
    transform: rotate(45deg);
    border-radius: 0 0 0 2px;
  }
  .timeline .timeline-container .timeline-body {
    margin-bottom: 1.4rem;
  }

  .timeline .timeline-container .timeline-body h3{
    color: #575454;
    font-weight: 400;
  }

  .timeline .timeline-container .timeline-body h4{
    font-weight: 400;
    color: var(--dark-green);
  }
  
  .timeline .timeline-container .timeline-icon {
    border: 3px solid #f3f3f3;
    background: white !important;
  }