.workContainer {
  padding-top: 40px;
  padding-bottom: 50px;
  background-color: var(--lightwhite);
}
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}
.timeline:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  margin-left: -1.5px;
  background-color: var(--gray4);
  content: "";
}
.timeline > li {
  position: relative;
  min-height: 50px;
  margin-bottom: 50px;
}
.timeline > li:after,
.timeline > li:before {
  display: table;
  content: " ";
}
.timeline > li:after {
  clear: both;
}
.timeline > li .timelinePanel {
  position: relative;
  float: right;
  width: 100%;
  padding: 0 20px 0 100px;
  text-align: left;
}
.timeline > li .timelinePanel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li .timelinePanel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li .timelineImage {
  position: absolute;
  align-items: center;
  width: 80px;
  height: 79px;
  margin-left: 45;
  text-align: center;
  color: var(--teal);
  border-radius: 100%;
  border: 7px solid var(--gray3);
  background-color: var(--white);
}
.timeline > li .timelineImage h4 {
  font-size: 10px;
  line-height: 14px;
  margin-top: 12px;
}
.timeline > li.timelineInverted > .timelinePanel {
  float: right;
  padding: 0 20px 0 100px;
  text-align: left;
}
.timeline > li.timelineInverted > .timelinePanel:before {
  right: auto;
  left: -15px;
  border-right-width: 15px;
  border-left-width: 0;
}
.timeline > li.timelineInverted > .timelinePanel:after {
  right: auto;
  left: -14px;
  border-right-width: 14px;
  border-left-width: 0;
}
.timeline > li:last-child {
  margin-bottom: 0;
}
.timeline .timelineHeading h4 {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 0;
}
.timeline .timelineHeading h4.subheading {
  text-transform: none;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy);
  padding-bottom: 10px;
}
.subheadingH5{
  font-size: 1.5rem;
  font-weight: 900;
  padding-bottom: 10px;
}
.timeline .timelineBody > ul,
.timeline .timelineBody > p {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .timeline:before {
    left: 50%;
  }
  .timeline > li {
    min-height: 100px;
    margin-bottom: 100px;
  }
  .timeline > li .timelinePanel {
    float: left;
    width: 41%;
    padding: 0 20px 20px 20px;
    text-align: right;
  }
  .timeline > li .timelineImage {
    left: 50%;
    width: 100px;
    height: 98px;
    margin-left: -50px;
    justify-content: center;
    align-items: center;
  }
  .timeline > li .timelineImage h4 {
    font-size: 20px;
    line-height: 18px;
    margin-top: 16px;
  }
  .timeline > li.timelineInverted > .timelinePanel {
    float: right;
    padding: 0 30px 20px 20px;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .workContainer {
    padding-top: 40px;
    padding-left: 15px;
  }
}
