
.project-name {
  display: block;
  text-align: center;
  color: #000;
}

/* The actual timeline (the vertical ruler) */
.timeline {
  color: #000;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background-color: #a3cd39;
  top: 53px;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

/* time_container around content */
.time_container {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

/* The circles on the timeline */
.time_container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: #FFF;
  border: 4px solid #a3cd39;
  top: 17px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the time_container to the left */
.left {
  left: 0;
}

/* Place the time_container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left time_container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #FFF;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #FFF;
}

/* Add arrows to the right time_container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 26px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #FFF;
  border-width: 10px 10px 10px 0;
  border-color: transparent #FFF transparent transparent;
}

/* Fix the circle for time_containers on the right side */
.right::after {
  left: -13px;
}

/* The actual content */
.content {
  padding: 20px 30px;
  background-color: #FFF; /*#a3cd39*/
  position: relative;
 /* border:3px solid #a3cd39 ; */
}

/* 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 time_containers */
  .time_container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .time_container::before {
    left: 60px;
    border: medium solid #a3cd39;
    border-width: 10px 10px 10px 0;
    border-color: transparent #a3cd39 transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 17px;
  }

/* Make all right time_containers behave like the left ones */
  .right {
    left: 0%;
  }
}

h2{
  line-height: 16px;
  margin-bottom: 2px;
  padding-bottom: 10px;
}

h6{
  margin: 13px 0px;
}

.content-title{    
  font-style: normal;
  font-weight: normal;
}

.content-short-description{
  font-size: 15px;
  font-weight: normal;
}

.left-border{
  border-left: 5px solid #a3cd39;
}
.right-border{
  border-right: 5px solid #a3cd39;
}

