.timeline {
  position: relative;
  padding: 0;
  margin: 0;
  list-style: none;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #dbe1f5;
  left: 37px;
  border-radius: 2px;
  z-index: 0;
}
.time-label {
  position: absolute;
  left: 8px;
  width: 58px;
  text-align: center;
  background: #192d66;
  color: #fff;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 4px;
  top: 0;
  z-index: 2;
}
.timeline-year-block {
  position: relative;
  margin-bottom: 50px;
  padding-left: 100px;
  padding-top: 30px;
}
.timeline-item {
  background: #eef5fd;
  border-radius: 5px;
  padding: 20px;
  margin-top: 10px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -67px;
  top: 20px;
  width: 14px;
  height: 14px;
  background: #192d66;
  border-radius: 50%;
  border: 3px solid #fbef55;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
  z-index: 1;
}
.timeline .time {
  color: #6c757d;
  font-size: 13px;
  float: right;
}
.timeline-header {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}
.timeline-body {
  font-size: 15px;
  color: #444;
}
.timeline-item img {
  margin-top: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  max-width: 300px;
}
