.timeline001 {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 15px 0;
}

.timeline001::after {
  content: '';
  position: absolute;
  width: 2px;
  background: #C79211;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.containering {
  padding: 15px 30px;
  position: relative;
  background: inherit;
  width: 50%;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.containering.show {
  opacity: 1;
  transform: translateY(0);
}

.containering.left {
  left: 0;
}

.containering.right {
  left: 50%;
}

.containering::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  right: -8px;
  background: #ffffff;
  border: 2px solid #C79211;
  border-radius: 16px;
  z-index: 1;
}

.containering.right::after {
  left: -8px;
}

.containering::before {
  content: '';
  position: absolute;
  width: 50px;
  height: 2px;
  top: calc(50% - 1px);
  right: 8px;
  background: #C79211;
  z-index: 1;
}

.containering.right::before {
  left: 8px;
}

.containering .date {
  position: absolute;
  display: inline-block;
  top: calc(50% - 8px);
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #1e1e1e;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}

.containering.left .date {
  right: -75px;
}

.containering.right .date {
  left: -75px;
}

.containering .icon {
  position: absolute;
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 9px 0;
  top: calc(50% - 20px);
  background: #F6D155;
  border: 2px solid #827979;
  border-radius: 40px;
  text-align: center;
  font-size: 18px;
  color: #827979;
  z-index: 1;
}

.containering.left .icon {
  right: 56px;
}

.containering.right .icon {
  left: 56px;
}

.containering .content {
  padding: 30px 90px 30px 30px;
  background: #FCFAEE;
  position: relative;
  border-radius: 0 500px 500px 0;
}

.containering.right .content {
  padding: 30px 30px 30px 90px;
  border-radius: 500px 0 0 500px;
}

.containering .content h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: normal;
  color: #1e1e1e;
  border-bottom: 1px dashed #cec7c7;
  padding-bottom: 10px;
}

.containering .content p {
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
}

@media (max-width: 767.98px) {
  .timeline001::after {
    left: 90px;
  }

  .containering {
    width: 100%;
    padding-left: 120px;
    padding-right: 30px;
  }

  .containering.right {
    left: 0%;
  }

  .containering.left::after, 
  .containering.right::after {
    left: 82px;
  }

  .containering.left::before,
  .containering.right::before {
    left: 100px;
    border-color: transparent #006E51 transparent transparent;
  }

  .containering.left .date,
  .containering.right .date {
    right: auto;
    left: 15px;
  }

  .containering.left .icon,
  .containering.right .icon {
    right: auto;
    left: 146px;
  }

  .containering.left .content,
  .containering.right .content {
    padding: 30px 30px 30px 90px;
    border-radius: 500px 0 0 500px;
  }
}