.card-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--d-gap-40);
  padding: 60px 40px;
}
.card-timeline ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}
.card-timeline ul li {
  padding: 30px 60px;
  position: relative;
}
.card-timeline ul li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 25px;
  top: 40px;
  background: var(--c-grey);
  border-radius: 50%;
}
.card-timeline ul li:not(:first-child)::after {
  top: 0;
}
.card-timeline ul li:first-child:after {
  border-left: 1px dashed rgba(255, 255, 255, 0.4);
}
.card-timeline ul li::after {
  content: "";
  width: 1px;
  height: 100%;
  border-left: 1px dashed rgba(102, 102, 102, 0.4);
  position: absolute;
  left: 30px;
  top: 50px;
  margin-left: -0.5px;
}
.card-timeline ul li:first-child:before {
  background: var(--c-light-green);
}

.card-timeline ul li:last-child:after {
  background: none;
  /* border: none; */
  height: 40px;
}
.card-timeline ul li h6 {
  margin-bottom: 22px;
}
.card-timeline ul li:first-child {
  background-color: var(--c-primary);
  background-image: url(../../../assets/images/product-inner-bg.svg);
  background-repeat: no-repeat;
  background-position: right -50px top -100px;
  color: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-20);
}
.card-timeline ul li:first-child p {
  margin-bottom: 20px;
  color: var(--c-text-light);
}
.card-timeline ul li:first-child h6 {
  color: var(--c-text-light);
}

@media screen and (max-width: 991px) {
  .card-timeline {
    padding: 24px;
    gap: 24px;
  }
}