/** TIMELINE **/
.timeline {position: relative;}

.timeline::after {
  content: '';
  position: absolute;
  width: 5px;
  background-color: #012d78;
  top: 0;
  bottom: 0;
  left: 50%;
}

.tlContainer {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.tlContainer::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -15px;
  background-color: white;
  border: 4px solid #a9dbff;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.tlRight {left: 50%;}

.tlLeft::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #012d78;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #012d78;
}

.tlRight::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #012d78;
  border-width: 10px 10px 10px 0;
  border-color: transparent #012d78 transparent transparent;
}

.tlRight::after {left: -10px;}

.tlContent {
  padding: 20px 30px;
  background-color: #012d78;
  color: #fff;
  position: relative;
  border-radius: 6px;
}

.tlContent h2 {color: #fff;}

@media screen and (max-width: 600px) {
  .timeline::after {left: 31px;}

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

  .tlContainer::before {
    left: 61px;
    border: medium solid #012d78;
    border-width: 10px 10px 10px 0;
    border-color: transparent #012d78 transparent transparent;
  }

  .tlLeft::after, .tlRight::after {left: 20px;}

  .tlRight {left: 0%;}
}
