/**
 * Timeline module CSS styles
 * 
 * @package     Joomla.Site
 * @subpackage  mod_articles_category
 */


.timeline-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 700px;
}
  
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 0 2rem;
  margin-top: 20px;
  align-items: center;
}

.timeline-title {
  margin-bottom: 103px;
  text-align: center;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #3D5AF1;
  transform: translateY(-50%);
  z-index: 1;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 49px;
  z-index: 10;
  gap: 14px;
  width: 33.333%;
}

.timeline-item.reverse {
  margin-bottom: 49px; 
  margin-top: 0px;;
}

.year {
  color: #3D5AF1; 
  font-weight: 700;
  font-size: 1.3em;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}

.dot {
  height: 14px;
  width: 14px;
  background-color: #22D1EE; 
  border-radius: 9999px;
  outline-style: solid;
  outline-offset: 2px;
  outline-color: #22D1EE;
  outline-width: 2px;
  position: relative;
  z-index: 5;
}

.line {
  position: relative;
  min-height: 49px; 
  width: 1px;
  background-color: #DCDCDC;
}

.end-dot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 8px;
  width: 8px;
  background-color: #DCDCDC;
  border-radius: 50%;
}

.end-dot.reverse {
  top: 0;
}

.description {
  font-weight: 400;
  font-size: 1em;
  line-height: 100%;
  margin: 0px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: bottom;
}

@media (max-width: 768px) {
  .timeline-item:nth-child(n+5) {
    display: none;
  }
}

@media (max-width: 1024px) {
  .timeline-item:nth-child(n+8) {
    display: none;
  }
}

@media (max-width: 1440px) {
  .timeline-item:nth-child(n+13) {
    display: none;
  }
}
