.lmn-timeline-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #f7f7f7;
  padding: 10vh 0;
  box-sizing: border-box;
  overflow: visible;
}

.lmn-timeline-line-base {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}

.lmn-timeline-line-progress {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 0;
  background-color: #bfa14c;
  z-index: 2;
  transition: height 0.4s ease;
}

.lmn-timeline-stop {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 12vh 0;
  z-index: 3;
}

.lmn-timeline-dot {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  z-index: 3;
}

.lmn-timeline-content {
  max-width: 300px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #000000;

  z-index: 4;
}

.lmn-timeline-content.left {
  right: calc(50% + 30px);
  text-align: right;
}

.lmn-timeline-content.right {
  left: calc(50% + 30px);
  text-align: left;
}

.lmn-timeline-label {
  font-size: 1.5rem;

  margin-bottom: 0.2em;

    font-family: 'Raleway', sans-serif;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
}

.lmn-timeline-info {
  font-size: 14px;
  line-height: 1.4;
}

.lmn-timeline-stop.active .lmn-timeline-dot {
  background-color: #bfa14c;
  border-color: #bfa14c;
}

.lmn-timeline-stop.active .lmn-timeline-content {
  opacity: 1;
  transform: translateY(-50%) scale(1.02);
}

@media (max-width: 767px) {
  .lmn-timeline-label {
    font-size: 17px;
  }
  .lmn-timeline-info {
margin-left: 0.5rem;
margin-right: 0.5rem;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
  .lmn-timeline-label {
    font-size: 17px;
  }
  .lmn-timeline-info {
margin-left: 0.5rem;
margin-right: 0.5rem;
}
}
