/* Start custom CSS for html, class: .elementor-element-6b89053 */.timeline-slider {
  position: relative;
  padding-top: 40px;
  overflow: hidden;
}

.timeline-progress-wrap {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
}

.timeline-progress-bar {
  position: relative;
  height: 4px;
  background: #eee;
}

.timeline-progress-fill {
  height: 100%;
  width: 0%;
  background: #C5A059;
  transition: width 0.4s ease;
}

.timeline-progress-dots span {
  position: absolute;
  top: -6px;
  width: 14px;
  height: 14px;
  background: #ddd;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}

.timeline-progress-dots span.active {
  background: #C5A059;
}

/* SLIDER */
/*.timeline-cards {
  margin: 0 20px;
}*/

.timeline-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.timeline-item {
  flex: 0 0 calc((100% - 40px) / 4);
  padding: 20px;
}

/*.timeline-card {
  background: #F7F3EA;
  border-radius: 20px;
  padding: 20px;
  height: 170px;
  transition: 0.3s;
}*/

.timeline-item.active .timeline-card {
  /*background: #C5A059;*/
  transform: scale(1.05);
}

/* TEXT */
.timeline-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.timeline-card p {
  font-size: 15px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .timeline-item {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

@media (max-width: 767px) {
  .timeline-item {
    flex: 0 0 100%;
    padding: 0px 20px;
  }
  
}/* End custom CSS */