.roadmap-container {
  width: 100%;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  background-color: #050d13;
  position: relative;
  justify-content: center;
  align-items: center;
  row-gap: 48px;
}
.roadmap-content {
  max-width: 1250px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
.roadmap-desc-container {
  border-radius: 52px;
  border: 7px solid #ffc700;
  padding: 20px 50px;
  background: #1f1f1f;
}
.btn-buy {
    display: flex;
    justify-content: center;
    align-items: center;
}

.roadmap-desc-title {
  position: relative;
  width: 100%;
  color: #ffc700;
  font-weight: 700;
  font-size: 42px;
  text-transform: uppercase;
  text-align: center;
}
.roadmap-desc-content {
  width: 100%;
  color: #fff;
  font-size: 1.3em;
  text-align: center;
}
.roadmap-row {
  display: flex;
  flex-direction: row;
}
.roadmap-milstones-container {
  flex: 1 1;
  background: url(/img/btcbull/roadmap-project-bg.webp);
  background-position: 0 0;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 30px 60px;
}
.roadmap-milstones {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
.roadmap-milstones-title {
  color: #fff;
  padding: 0;
}
.roadmap-milstones-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 8px;
  font-size: 1em;
  color: #fff;
  margin-bottom: 12px;
}
.roadmap-circle {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ff9809;
}
.roadmap-chart-container {
  flex: 2 1;
  position: relative;
}
.roadmap-chart-decorate1 {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 100px;
  height: 200px;
  top: -200px;
  right: -50px;
}
.roadmap-chart-decorate2 {
  width: 60px;
  top: -20px;
  right: 10px;
  position: absolute;
}
.roadmap-chart-content {
  background: url(/img/btcbull/roadmap-graph.png);
  background-position: 0 0;
  background-size: 100% 100%;
  height: 100%;
  width: 90%;
  border-radius: 60px;
  border: 7px solid #ffc700;
  padding: 20px;
  position: relative;
}
.roadmap-chart-numbers {
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  position: absolute;
  right: 10px;
  top: 5%;
  color: #fff;
  justify-content: space-around;
}
.roadmap-decorate1 {
  width: 100%;
  position: absolute;
  top: -27%;
}
@media (max-width: 1024px) {
  .roadmap-container {
    padding-inline: 8px;
  }
  .roadmap-content {
    padding-inline: 0;
  }
  .roadmap-desc-container {
    padding: 16px;
  }
  .roadmap-desc-title {
    font-size: 3rem;
  }
  .roadmap-row {
    flex-direction: column;
    row-gap: 48px;
  }
  .roadmap-chart-container,
  .roadmap-chart-content {
    min-height: 400px;
  }
  .roadmap-chart-content {
    max-width: 85%;
  }
  .roadmap-chart-numbers {
    top: 0;
  }
  .roadmap-decorate1 {
    width: 100%;
    position: absolute;
    top: -5%;
  }
}
