  .thetimeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: auto;
  }
  
  .thetimeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: rgb(63, 191, 255);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }
  
  .line {
    padding: 10px 1px;
    position: relative;
    background-color: inherit;
    width: 50%;
  }
  
 
  .line::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: rgb(0, 217, 255);
    border: 4px solid rgb(0, 188, 188);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  
  .left {
    left: 0;
    text-align: left;
  }
  
  
  .right {
    left: 50%;
    text-align: right;
  }
  
  
  .right::after {
    left: -16px;
  }
  
 
  .content {
    padding: 20px 30px;
    margin: 0px 0px 0px 0px;
    background-color: rgba(205, 198, 198, 0.482);
    border: 5px cyan solid;
    position: relative;
    border-radius: 6px;
    display: flex;
  }

  .image_box img{
    max-width: 100px;
    height: auto;
    margin-left: 150px;
  }

  .left .content{
    justify-content: left;
  }

  .right .content{
    justify-content: right;
  }
  
    .right img{
    margin-right: 150px;
    margin-left: 0px;
  }

  .image_box{
    display: flex;
  }

  .left > .content{  
    flex-direction: row-reverse;
  }
  
  @media screen and (max-width: 600px) {
 
    .thetimeline::after {
      left: 31px;
    }
  

    .line {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }

  
    .left::after, .right::after {
      left: 15px;
    }

    .content{
        display: block;
        width: 50%;
    }
  

    .right {
      left: 0%;
      text-align: left;
    }

    .right > .image_box{
        float: left;
      }

      .image_box img{
        max-width: 100px;
        height: auto;
        margin-left: 0px;
        margin-right: 0;
      }
  }

  .text{
    font-family: "Agency FB";
    font-size: 14px;
  }
  