
.timeline-wrapper {
  display: flex;
  margin-left: 0px;
}
.timeline-bar {
  top: 0;
  left: 0;
  width: 3px;
  background: #ccc;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  display: flex;
  position: absolute;
  margin-left: 13px;
  z-index: 0;
}

.timeline-item {
  display: flex;
}
.timeline-icon {
  width: 30px;
  height: 30px;
  margin: 0;
  background-color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  z-index:3;
}
.timeline-items {
  flex: 1;
  margin-left: 0px;
}
.timeline-card {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s ease-out;
  margin-bottom: 40px;
  margin-left: 20px;
  border: #fff solid 1px;
  padding: 10px 20px;
  width: 100%;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 2px 2px 30px 0 rgb(156 156 192 / 34%)
}
.timeline-card.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-card h3 {
  font-weight: 800;
  color: #2196F3;
}

.timeline-card h4 {
  font-weight: 600;
  color: #2a618f
}



.timeline-icon.active svg{
  fill: #2196F3;
}

.timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #2196F3;
  transition: height .3s ease-out;
}
