.timeline-wrapper {
  color: #fff;
}

.timeline {
  position: relative;
  width: 100%;
}

.timeline ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.timeline ul li {
  list-style: none;
  height: 400px;
  width: 100%;
  position: relative;
}

/* vertical line */
.timeline ul li .seg {
  position: absolute;
  left: 0%;
  top: 0;
  transform: translateX(-50%);
  width: 8px;
  height: 100%;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #D3D3D34D;
  box-shadow: 0px 0px 20px 0px rgba(228, 172, 172, 0.30196078431372547);
}

/* orange fill */
.timeline ul li .seg .orange {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg,rgb(78,67,86) 0%,rgb(14,4,20) 100%)!important;
  border-radius: 10px;
}

/* active dot */
.timeline ul li .dot-main {
  position: absolute;
  left: 50%;
  top: 0px;
  width: 24px;
  height: 24px;
  border: 1px solid #D3D3D34D;
  background: linear-gradient(180deg,rgb(78,67,86) 0%,rgb(14,4,20) 100%)!important;
  transform: translateX(-50%) translateY(-100%);
  transition: transform 0.25s ease;
  z-index: 2;
}

.dot {
  position: absolute;
  left: 0%;
  top: -34px;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  transition: background 0.25s ease;
  z-index: 1;
  overflow: hidden;
  border: 1px solid #D3D3D34D;
  box-shadow: 0px 0px 20px 0px rgba(228, 172, 172, 0.30196078431372547);
}

/* content box */
.timeline ul li .content {
  position: absolute;
  left: 32px;
  top: 40px;
  width: 100%;
}

.badge {
  display: inline-block;
  background: #fff;
  color: #414141;
  border-radius: 6px;
  margin-bottom: 14px;
  rotate: -2deg;
  box-shadow: 0px 0px 20px 0px rgba(228, 172, 172, 0.30196078431372547);
  padding: 4px 8px 4px 8px;
  font-size: 24px;
  font-weight: 600;
}

.timeline ul li h2 {
  margin: 0 0 14px;
  font-size: 36px;
  color: #262626;
  text-transform: capitalize;
  font-weight: 500;
}

.timeline ul li p {
  color: #414141;
  font-weight: 500;
}