* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
	.blocks--wrapper > .timeline-container{
	margin-top: 60px !important;
}
	.title-clearing-slide{
		font-weight:500;
	}
    .timeline-container {
      width: 100%;
      overflow: hidden;
      padding: 120px 0px;
      position: relative;
		margin-top:80px;
    }

    .timeline {
      display: flex;
      justify-content: space-between;
      position: relative;
      width: 100%;
      padding: 15px 50px;
    }

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

    .timeline-event {
      flex: 1;
      position: relative;
      text-align: center;
      z-index: 2;
    }

    .circle {
      width: 24px;
      height: 24px;
      border: 2px solid black;
      border-radius: 50%;
      background: white;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
    }

    .timeline-event.above .content {
      position: absolute;
      bottom: 100%;
      margin-bottom: 50px;
      left: 50%;
      transform: translateX(-50%);
		width: max-content;
    }

    .timeline-event.below .content {
      position: absolute;
      top: 100%;
      margin-top: 50px;
      left: 50%;
      transform: translateX(-50%);
		width: max-content;
    }

    .timeline-event.above .circle::before {
      content: "";
      position: absolute;
      top: -40px;
      left: 50%;
      width: 2px;
      height: 40px;
      background: #000;
      transform: translateX(-50%);
    }

    .timeline-event.below .circle::after {
      content: "";
      position: absolute;
      bottom: -40px;
      left: 50%;
      width: 2px;
      height: 40px;
      background: #000;
      transform: translateX(-50%);
    }

    .timeline-event .content span {
      font-weight: bold;
      color: #d71c2c;
      display: block;
		font-size:var(--font-size-16);
	  margin-bottom: 8px;
    }

    .timeline-event .content p {
      font-size:var(--font-size-18);
      max-width: 160px;
      word-wrap: break-word;
    }

@media (max-width: 1407px) {
	.timeline-container {
      padding: 140px 50px;
    }

}
    @media (max-width: 1023px) {
      .timeline {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 60px;
      }

      .timeline-event {
        flex: 0 0 100%;
        scroll-snap-align: center;
        padding: 60px 20px;
      }

      .timeline::before {
        top: auto;
        bottom: 0;
        height: 3px;
        left: 0;
        transform: none;
      }

      .circle {
        position: relative;
        top: auto;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 10px;
      }

      .timeline-event .content {
        position: static;
        margin-top: 20px;
      }

/*       .timeline-event.above .circle::before,
      .timeline-event.below .circle::after {
        display: none;
      } */
		
    }


/* Mobile Slider */
.timeline-slider {
    position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
	display: none;
}

.timeline-slider #slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform; /* Improves performance */
}

.slide {
    flex: 0 0 100%; 
    min-width: 100%;
    padding: 20px 0;
    box-sizing: border-box;
}
.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.slider-dot.active {
    background: #d71c2c;
}
.timeline-slider .timeline-event::before {
	content: '';
    position: absolute;
    top: 50%;
    left: 0;
    height: 3px;
    width: 100%;
    background: #000;
    transform: translateY(-50%);
    z-index: 1;
    will-change: auto;
    backface-visibility: visible;
    transform-style: flat;
}
.timeline-slider .timeline-event {
    display: inline-flex;
    position: relative;
    padding: 0;
    width: 100%;
	margin: 0;
}
.timeline-slider .timeline-event .circle {
	top: -12px;
}
/* .timeline-slider .timeline-event:nth-child(odd) .content {
    margin-bottom: 80px;
} */
.timeline-slider .timeline-event.below .content {
	top: 100%;
}

.timeline-slider {
      width: 100%;
      overflow: hidden;
      position: relative;
    }
    
    .timeline-slider .slider-track {
      display: flex;
      transition: transform 0.3s ease-out!important;
    }
/* Mobile View (Show Slider) */
@media (max-width: 1023px) {
    .timeline-slider {
        display: block;
    }
    #timeline-scroll {
        display: none;
    }
	.timeline-nav-wrapper {
		display: none;
	}
}




/* --- MOBILE: vertical zigzag --- */
@media (max-width: 1023px) {
  .timeline-container {
    overflow-x: hidden;
    overflow-y: auto;
    cursor: auto;
    padding: 20px;
  }
	.timeline-event .content {
    align-items: flex-start;
  	width: 100%;
  	padding: 0 10px;
  	word-break: break-word;
  	white-space: normal;
  	overflow-wrap: break-word;
}
  .timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    min-width: unset;
	width:100%;
  }

  .timeline::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    position: absolute;
    background: #000;
    content: '';
    z-index: 0;
  }

  .timeline-event {
    width: 100%;
    margin: 25px 0;
    text-align: left;
    position: relative;
  }

  .timeline-event .circle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
  }

  .timeline-slider .timeline-event.above .circle::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 2px;
    height: 40px;
    background: #000;
    transform: translateX(-50%);
    z-index: 1;
  }

    .timeline-slider .timeline-event.below .circle::after {
        content: '';
        position: absolute;
        bottom: unset;
        left: 50%;
        top: 20px;
        width: 2px;
        height: 40px;
        background: #000;
        transform: translateX(-50%);
        z-index: 1;
    }

  .timeline-event.above .content {
    position: relative;
   left: 0%;
    width: fit-content;
    text-align: right;
    margin-right: 20px;
  }

  .timeline-event.below .content {
        position: relative;
        left: 65%;
        width: fit-content;
        text-align: left;
        margin-left: 20px;
        right: 0%;
  }
.timeline-event .content {
    transform: unset; 
}
  .timeline-event .content span {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    font-size: var(--font-size-16);
    color: #d71c2c;
  }

  .timeline-event .content p {
    margin: 0;
    font-size: var(--font-size-18);
	  text-align:center;
  }
	.timeline-nav-wrapper{
		display:none;	
	}
	
	.timeline-slider .timeline-event {
    flex-direction: column;
    align-items: center;
  }

  .timeline-slider .timeline-event.above,
  .timeline-slider .timeline-event.below {
    /* Neutralize their separate behavior */
    text-align: center;
  }

  /* Force all lines to appear BELOW the circle */
  .timeline-slider .timeline-event .circle::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 2px;
    height: 40px;
    background: #000;
    transform: translateX(-50%);
    z-index: 1;
  }

  /* REMOVE any previous top line */
  .timeline-slider .timeline-event .circle::before {
    display: none !important;
  }

  /* Center content below the circle */
  .timeline-slider .timeline-event .content {
  position: relative;
  margin-top: 60px;
  text-align: center;
  top: auto;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
}
	.timeline-slider .timeline-event.above .content,
.timeline-slider .timeline-event.below .content {
  top: 50px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 60px;
  width: 100%;
  display: flex;
	margin-left:0px;
	margin-right:0px;
  align-items: center;
  flex-flow: column;
}
  .timeline-slider .timeline-event .circle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
  }
	/*css*/
	.timeline-slider .timeline-event {
  position: relative;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-bottom:30px;
}
	.timeline-event .content{
		max-width:100%;
	}
	

.timeline-slider .timeline-event .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.timeline-slider .timeline-event .circle::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 2px;
  height: 40px;
  background: #000;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-slider .timeline-event .content {
  margin-top: 60px;
  position: relative;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
	.timeline-event.above .content{
		margin-bottom:unset;
	}
	.timeline-event .content p{
		max-width:100%;
	}
}
@media (max-width: 640px) {
	.timeline-container {
        padding: 0px; 
    }
/* 	.timeline-event .content {
		max-width: 150px;
	} */

  .timeline-event.above .circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -40px;
    width: 40px;
    height: 2px;
    background: #000;
    transform: translateY(-50%);
    z-index: 1;
  }

  .timeline-event.below .circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 22px;
    width: 40px;
    height: 2px;
    background: #000;
    transform: translateY(-50%);
    z-index: 1;
  }
  .timeline-event .content span {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    font-size: var(--font-size-16);
    color: #d71c2c;
  }
	  .timeline-event.above .content {
		 margin: -20px 0 0 0;
	  }

  .timeline-event.below .content {
        margin: -20px 0 0 0;
        right: 0%;
  }
}
/* @media (max-width: 480px) {
    .timeline-event .content {
        max-width: 130px;
    }
}
@media (max-width: 400px) {
    .timeline-container {
        padding: 0px; 
    }
	.timeline-event .content {
		max-width: 125px;
	}

} */