    /*timeline*/ 
    
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,rgb(70, 179, 60), #111827, #1d4ed8, #1d4ed8,rgb(36, 136, 175));
    transform: translateX(-50%);
    z-index: 1;
  }
  
  .timeline-item {
    position: relative;
    width: 45%;
    padding: 1.5rem;
    background: rgb(238, 239, 240);
    border-radius: 15px;
    z-index: 2;
  }
  .timeline-item p {
    white-space: normal;       
    overflow-wrap: normal;
    word-break: keep-all;       
    line-height: 1.6;
  }

  .timeline-item p {
    word-break: break-word;  
  }


  .timeline-item:nth-child(odd) {
    left: 0;
    text-align: right; 
  }
  
  .timeline-item:nth-child(even) {
    left: 55%;
    text-align: left; 
  }
  
  .timeline-year {
    font-weight: bold;
    color:blue;
    margin-bottom: 0.5rem;
  }
  
  
  @media (max-width: 768px) {

    .timeline::before {
      left: 20px;
    }

    .timeline-item {
      margin-left: 0 !important;
      margin-right: 0 !important;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
      margin-left: 3rem;
    }

  
    .timeline::before {
      left: 50%;
      transform: translateX(-50%);
    }
  }
