.timeline-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 25px 0;
  margin-bottom: 40px;
}

.title-timeline {
  width: 100%;
  text-align: center;
  padding: 20px 0;
  font-size: 38px;
  font-weight: 600;
  color: #b01e29;
}

.timeline {
  display: flex;
  align-items: center;
  animation: scrollTimeline 80s linear infinite;
  width: max-content;
}

@keyframes scrollTimeline {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.event-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 40px;
  z-index: 1;
}

.event-timeline .info-timeline {
  margin-bottom: 10px;
  background-color: #929292;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  width: 450px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.event-timeline .dot {
  width: 12px;
  height: 12px;
  background-color: #b01e29;
  border-radius: 50%;
  margin: 26px 0;
}

.event-timeline .dot::after {
  content: "";
  position: absolute;
  top: 75%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ddd;
  z-index: -1;
  width: calc(80px + 100%);
}

.event-timeline .date-timeline {
  font-size: 14px;
  color: #555;
  font-weight: 600;
}

.no-border-box {
  box-sizing: content-box;
}
