.block-road-map {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center; 
  padding: 50px 80px 80px 80px; 
  overflow: hidden;
}
.roadmap-shine {
  position: absolute;  
  top: 0;
  left: 0;
  width: 100%;
  height: 70%; 
  background-size: cover;
  pointer-events: none; 
  z-index: 3;
}
.roadmap-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.roadmap-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, #4739EA 7.69%, rgba(71, 57, 234, 0.73) 35.02%, rgba(40, 32, 132, 0.00) 100%), 
        repeating-linear-gradient(
            to bottom,       
            rgba(152, 149, 149, 0.5)1px,     
            rgba(30, 32, 46, 0.8) 5px  
        );
  z-index: 2;
}
        
.hero-team {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 50px;
  background-color: #23263A;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
  border-radius: 32px 32px 0 0;
  overflow: hidden;
   z-index: 10;
}

.hero-team-title {
  color: #fff;
  text-align: center;
  font-family: "Bai Jamjuree";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  /* 32.5px */
  letter-spacing: 0.26px;
}

.investors-betweens_left {
  position: absolute;
  bottom: -110px;
  left: 10%;
  width: 20%;
  height: 177px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
  pointer-events: none;
}

.investors-betweens_right {
  position: absolute;
  bottom: -90px;
  left: 90%;
  width: 30%;
  height: 177px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 30 !important;
  pointer-events: none;
}

.road-map-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
  justify-items: center;
  transition: transform 0.6s ease; 
  z-index: 4;
}

.road-map-step {
  width: 33.3333%;
  display: flex;
 
  flex-direction: column;
  align-items: center; 

  justify-content: start;

}

.road-map-line {
  position: absolute;
  top: 125px;  
  width: 100%;
  height: 1px;
  background-color: #0FF; 
  z-index: 3;
}



.road-map-phase img {
  max-width: 360px;
  height: auto;
}

.road-map-index {
  max-width: 318px;
  display: flex;
  text-align: start;
  flex-direction: column; 
  gap: 10px; 
  color: #FFF;
  font-family: "Bai Jamjuree";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 105%; /* 25.2px */
  margin-top: 30px;

  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
  z-index:5;
}

.road-map-index.active  {
  overflow: visible;
  opacity: 1;
  transition: all 0.4s ease;
}


.road-map-item {
    position: relative;
    padding-left: 1.2em;
    color: #fff;
    line-height: 1.5;
}
.road-map-item::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
}


.road-map-buttons {
  display: flex;
  justify-content: center;
  gap: 80px; 
  margin-top: 20px;
  z-index: 4;
}

.road-map-buttons img {
  width: 50px;
  height: auto;
  cursor: pointer;
}

.road-map-btn-left.disabled,
.road-map-btn-right.disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 968px) {

  .road-map-line {
  top: 80px;
  }

  .block-road-map {
  padding: 50px 0px; 
  overflow: hidden;
}

  .team-title {
    color: #fff;
    text-align: center;
    font-family: "Bai Jamjuree";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 20px */
    letter-spacing: 0.16px;
  }

  .road-map-container{
  }


  .hero-team {
  position: absolute;
  width: 50%;

}

  .hero-team-title {
  color: #FFF;
  text-align: center;
  font-family: "Bai Jamjuree";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 109%; /* 13.08px */
  letter-spacing: 0.24px;
}

.road-map-phase img {
  max-width: 152px;
  width: 100%;
  height: auto;
}
.road-map-index {
  color: #FFF;
  font-family: "Bai Jamjuree";
  font-size: 10.95px;
  font-style: normal;
  font-weight: 700;
  line-height: 105%; /* 11.497px */
}

.investors-betweens_left {
  position: absolute;
  bottom: -180px;
}

.investors-betweens_right {
  position: absolute;
  bottom: -160px;
}

}