.timeline {
    padding: 80px 0px;
}

.timeline > div {
    margin: 0 auto;
    width: 830px;
    font-family: 'Roboto';
    min-height: 200px;
    display: flex;
    align-items: flex-start;
    padding-bottom: 90px;
    flex-shrink: 1;
  }

  @media screen and (max-width: 855px){
      .timeline >div {
          width: 100%;
          flex-direction: row-reverse;
      }
  }

  @media screen and (max-width: 530px){
    .timeline >div {
        width: 370px;
        flex-direction: row-reverse;
        padding-bottom: 40px;
    }
}

  
  .timeline>div:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .timeline .info {
    width: 330px;
    min-height: 100px;
    box-sizing: border-box;
    text-align: right;
    padding-left: 20px;
    padding-right: 20px;
    align-items: flex-start;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
  }

  @media screen and (max-width: 855px){
        .timeline .info {
            text-align: left;
        }
    }

 @media screen and (max-width: 530px){
        .info {
        width: 250px;
        padding-left: 5px;
        padding-right: 10px;
        }
    }
  
  .timeline>div:nth-child(even) .info{
    text-align: left;
  }
  
  .timeline>div:last-of-type {
    padding-bottom: 0;
  }


  .timeline>div:last-of-type .image::after {
      content: none;
  }
  
  .timeline h1 {
    font-size: 1.2em;
    font-weight: 700;
    margin: 0;
    margin-bottom: 5px;
  }
  
  .timeline h2 {
    font-size: 0.8em;
    text-align: center;
    line-height: 1.5;
  }

  @media screen and (max-width: 530px){
      h2 {
          font-size: 0.5em;
      }
  }
  
  
  .timeline img {
    max-width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    border-radius: 50%;
    -webkit-user-drag: none;
  }
  
  .timeline .image {
    width: 130px;
    height: 130px;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-shrink:1;
    border: solid 5px #254258;;
    border-radius: 50%;
    box-sizing: border-box;
    margin: 20px;
    margin-top: 0px;
    background-position: center center;
    background-size: cover;
    position: relative;
    transform: scale(1);
    transition: .4s all;
    transform-style: preserve-3d;
  }
  .timeline>div:hover .image {
    transform: scale(1.15);
  }

  .timeline .image::after{
      content: "";
      position: absolute;
      top: 125px;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      height: 200%;
      background:  #254258;;
  }
  
  @media screen and (max-width: 530px){
    .timeline .image {  
        width: 80px;
        height: 80px;
        margin: 0px;
        min-width: 80px;
        min-height: 80px;
    }
    .timeline .image::after {
        top:73px;
        height: 330%;
    }
}