* {
    box-sizing: border-box;
  }

  .border-color1{ border: medium solid #d19f08 }
  .border-color2{ border: medium solid #bf830c }
  .border-color3{ border: medium solid #bf6b14 }
  .border-color4{ border: medium solid #ca6417 }
  .border-color5{ border: medium solid #c3460e }
  .border-color6{ border: medium solid #b82a05 }


  .history-main{
    display: flex;
    flex-direction: column;
    background-color: whitesmoke;
    padding-left: 5%;
    padding-right: 5%;
  }

  .history-title{
      padding-bottom: 30px;
  }


  .history-text{
    padding-right: 20px;
  }

  .history-text p{
    margin-bottom: 20px;
  }

  .history-text-reverse p{
    margin-bottom: 20px;
  }

  .history-image-group{
    display: flex;
    flex-direction: column;
  }

  .history-img{
    display: flex;
    flex-direction: column;
    padding: 2%;
    padding-top: 5%;
    padding-bottom: 5%;
  }


  .my-fa {
    padding: 0px !important;
    font-size: 20px !important;

  }

  /* Extra small devices (phones, 600px and down) */
  @media only screen and (max-width: 600px) {
      
      .history-part{
          display: flex;
          flex-direction: column;
          padding-bottom: 50px;
      }

      .history-part-reverse{
          display: flex;
          flex-direction: column;
          padding-bottom: 50px;
      }
      
      .history-img img{
          width: 250px;
          height: 150px;
      }

      .content-left{
        display: flex;
        flex-direction: column;
      }
    
      .content-left img{
        width: 100%;
        height: 50%;
      }
    
      .content-inside-left{
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-left: 5%;
      }
    
      .content-right{
        display: flex;
        flex-direction: column;
      }
    
      .content-right img{
        width: 100%;
        height: 50%;
      }
    
      .content-inside-right{
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-right: 5%;
      }
  }

  /* Small devices (portrait tablets and large phones, 600px and up) */
  @media only screen and (min-width: 600px) {

      .history-img img{
          width: 500px;
          height: 300px;
      }

      .content-left{
        display: flex;
        flex-direction: column;
      }
    
      .content-left img{
        width: 100%;
        height: 50%;
      }
    
      .content-inside-left{
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-left: 5%;
      }
    
      .content-right{
        display: flex;
        flex-direction: column;
      }
    
      .content-right img{
        width: 100%;
        height: 50%;
      }
    
      .content-inside-right{
        width: 100%;
        display: flex;
        flex-direction: column;
        padding-right: 5%;
      }
  }

  /* Medium devices (landscape tablets, 768px and up) */
  @media only screen and (min-width: 768px) {

      .history-part{
          display: flex;
          flex-direction: row;
          padding-bottom: 50px;
      }

      .history-part-reverse{
          display: flex;
          flex-direction: row-reverse;
          padding-bottom: 50px;
      }

      .history-text-reverse{
          padding-left: 50px;
      }

      .history-img img{
          width: 300px;
          height: 180px;
      }

  }

  /* Large devices (laptops/desktops, 992px and up) */
  @media only screen and (min-width: 992px) {

      .history-img img{
          width: 400px;
          height: 240px;
      }

      .content-left{
        display: flex;
        flex-direction: row;
      }
    
      .content-left img{
        width: 50%;
        height: 50%;
      }
    
      .content-inside-left{
        width: 50%;
        display: flex;
        flex-direction: column;
        padding-left: 5%;
      }
    
      .content-right{
        display: flex;
        flex-direction: row-reverse;
      }
    
      .content-right img{
        width: 50%;
        height: 50%;
      }
    
      .content-inside-right{
        width: 50%;
        display: flex;
        flex-direction: column;
        padding-right: 5%;
      }
  }

  /* Extra large devices (large laptops and desktops, 1200px and up) */
  @media only screen and (min-width: 1300px) {
  
      .history-img img{
          width: 500px;
          height: 300px;
      }
  }


  
  /* The actual timeline (the vertical ruler) */
  .timeline {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    max-width: 100%;
  }

  /* Top of the actual timeline (the vertical ruler) */
  .timeline::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 0px;
    width: 0;
    z-index: 1;
    left: 50%;
    margin-left: -12px;
    border: medium solid white;
    border-width: 20px 10px 20px 10px;
    border-color: transparent transparent lightgray transparent;
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: lightgray;
    top: 30px;
    bottom: 70px;
    left: 50%;
    margin-left: -3px;
  }
  
  /* Container around content */
  .container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    margin-left: 0;
  }
  
  /* The circles on the timeline */
  .container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -11px;
    background-color: white;
    border: 2px solid lightgray;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  /* Place the container to the left */
  .left {
    left: 0;
  }
  
  /* Place the container to the right */
  .right {
    left: 50%;
  }
  
  /* Add arrows to the left container (pointing right) */
  .left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 18px;
    width: 0;
    z-index: 1;
    right: 20px;
    border: medium solid white;
    border-width: 10px 10px 10px 10px;
    border-color: transparent lightgray transparent transparent ;
  }
  
  /* Add arrows to the right container (pointing left) */
  .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 18px;
    width: 0;
    z-index: 1;
    left: 17px;
    border: medium solid white;
    border-width: 10px 10px 10px 10px;
    border-color: transparent transparent transparent lightgray;
  }
  
  /* Fix the circle for containers on the right side */
  .right::after {
    left: -14px;
  }
  
  /* The actual content */
  .content {
    padding: 20px 30px;
    position: relative;
    border-radius: 6px;
    background-color: white;
  }
  
  /* Media queries - Responsive timeline on screens less than 600px wide */
  @media screen and (max-width: 600px) {
  /* Place the timelime to the left */
    .timeline::after {
      left: 31px;
    }

    /* Top of the actual timeline (the vertical ruler) */
    .timeline::before {
      content: " ";
      height: 0;
      position: absolute;
      top: 0px;
      width: 0;
      z-index: 1;
      left: 31px;
      margin-left: -12px;
      border: medium solid white;
      border-width: 20px 10px 20px 10px;
      border-color: transparent transparent lightgray transparent;
    }
  
  /* Full-width containers */
    .container {
      width: 100%;
      padding-left: 70px;
      padding-right: 25px;
    }
  
  /* Make sure that all arrows are pointing leftwards */
    .container::before {
      left: 60px;
      border: medium solid white;
      border-width: 10px 10px 10px 0;
      border-color: transparent white transparent transparent;
    }
  
  /* Make sure all circles are at the same spot */
    .left::after, .right::after {
      left: 17px;
    }
  
  /* Make all right containers behave like the left ones */
    .right {
      left: 0%;
    }

    .right::before, .left::before {
      content: " ";
      height: 0;
      position: absolute;
      top: 18px;
      width: 0;
      left: 56px;
      z-index: 1;
      border: medium solid white;
      border-width: 10px 10px 10px 0;
      border-color: transparent lightgray transparent transparent;
    }

  }