#timeline .frame-type-header{
  text-align: center;
}

#timeline{
  background: #000000;
  color: #FFFFFF;
  padding-top: var(--gutter-in);
  margin-top: var(--gutter-out);
}

#timeline ul{
  position: relative;
}

#timeline ul::before{
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom,  #ffcc00 0%,#ef7d00 31%,#e7343f 59%);
  content: '';
  display: block;
  left: 50%;
  top: 0;
  position: absolute;
  transform: translateX(-50%);
}


#timeline ul li{
  width: 50%;
  background: none;
  margin: 50px 0;
  position: relative;
}

#timeline ul li:nth-child(odd){
  margin-left: auto;
  padding-left: 50px;
}

#timeline ul li::before{
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid #FFFFFF;
  background: #000000;
  position: absolute;
  top: 0;
  z-index: 3;
  border-radius: 320px;
}

#timeline ul li:nth-child(odd)::before{
  transform: translateX(-8px);
  left: 0;
}

#timeline ul li:nth-child(even)::before{
  transform: translateX(8px);
  right: 0;
}

#timeline ul li:nth-child(even){
  margin-right: auto;
  text-align: right;
  padding-right: 50px;
}

#timeline ul li strong{
  font-size: 150%;
  display: block;
  font-weight: bold;
}
#timeline ul li br{
  display: none;
}
