/*About*/

@media screen and (max-width: 768px) {
  .landing {
      height: 40vh;
  }
  
  .landing h1 {
      margin-top: 80px;
   }
  }
  
  @media screen and (max-width: 425px) {
  .landing {
    height: 50vh;
   }
  }


   /* Section */

   .content-block h3 {
    font-size: 20px;
  }

  section.content-block-intro {
    background-color: #ffffff;
    border: none;
    padding: 3% 3% 2% 3%;
    height: 100%;
    display: flex;
  }

  section.content-block {
    background-color: #ffffff;
    border: none;
    padding: 0 3%;
    height: 100%;
  }

  .col-6 {
    padding: 0 3% 5%;
  }

  .text-main ul {
    font-size: 16px;
    line-height: 2em;
    list-style-position: inside;
    padding-left: 0;
  }

  hr.hidden {
    visibility: hidden;
  }
  
  /* Timeline */
  
  .about-timeline {
    padding: 3em 5%;
  }
  
  .about-timeline #h2 {
    text-align: center;
    color: #000000;
    font-size: 30px;
    font-weight: 600;
    padding: 30px;
    text-transform: uppercase;
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* The actual timeline (the vertical ruler) */
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #000000;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }
  
  /* Container around content */
  .container-timeline {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    z-index: 2;
  }
  
  /* The circles on the timeline */
  .container-timeline::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: #a9a9a9;
    border: 4px solid #f04;
    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: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid #000000;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #000000;
  }
  
  /* Add arrows to the right container (pointing left) */
  .right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #000000;
    border-width: 10px 10px 10px 0;
    border-color: transparent #000000 transparent transparent;
  }
  
  /* Fix the circle for containers on the right side */
  .right::after {
    left: -16px;
  }
  
  /* The actual content */
  .content {
    padding: 20px 30px;
    background-color: #000000;
    position: relative;
    border-radius: 6px;
    text-align: left;
  }
  
  .content h2 {
    font-size: 18px;
    margin-bottom: 0;
  }
  
  .content h3, .content span {
    font-size: 16px;
    margin: 5px 0;
  }
  
  .content span {
    padding-bottom: 20px;
  }
  
  .content p {
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid #ffffff;
  }
  
  /* 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;
    }
    
    /* Full-width containers */
    .container-timeline {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    }
    
    /* Make sure that all arrows are pointing leftwards */
    .container-timeline::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: 15px;
    }
    
    /* Make all right containers behave like the left ones */
    .right {
    left: 0%;
    }
  }