/* Timeline Container */
.timeline {
  background: var(--primary-color);
  padding: 0 0 20px 0;
  transform: scale(0.94);
  margin: -15px 0 0 0;
  padding: 0;
}

/* Outer Layer with the timeline border */
.outer {
  border-left: 3px solid #7a5af5;
}

/* Card container */
.card-timeline {
  position: relative;
  margin: 0 0 20px 20px;
  padding: 10px;
  background: #303030;
  color: #bebebe;
  border-radius: 8px;
}

.card-timeline:hover{
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* Information about the timeline */
.info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Title of the card */
.title {
  position: relative;
}

/* Timeline dot  */
.title::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 999px;
  left: -39px;
  border: 8px solid#7a5af5;
}

