.section {
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

@-webkit-keyframes show-bar-one {
  0% {
    width: 0;
  }

  100% {
    width: var(--percentage-one, "{values.bar1}");
  }
}

@-webkit-keyframes show-bar-two {
  0% {
    width: 0;
  }

  100% {
    width: var(--percentage-two, "{values.bar2}");
  }
}

@-webkit-keyframes fade-in-text {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hidden {
  opacity: 0;
  filter: blur(1px);
  transform: translateX(-60%);
  transition: all 1s;
}

.show {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0%);
}

.content-circle:nth-child(1) {
  transition-delay: 200ms;
  z-index: -1;
}

.content-circle:nth-child(2) {
  transition-delay: 800ms;
  z-index: -1;
}

.content-circle:nth-child(3) {
  transition-delay: 1200ms;
  z-index: -2;
}

.move {
  transition: width 1s linear;
}

.move.show {
  width: 100%;
}

/* .bar-one .bar {
  animation: show-bar-one 1s;
}

.bar-two .bar {
  animation: show-bar-two 1s;
}

.bar-three .bar {
  animation: show-bar-three 1s;
}

.bar-four .bar {
  animation: show-bar-four 1s;
} */

#bar1 .myBar {
  background-color: #bed630;
}

#bar2 .myBar {
  background-color: #00b3f0;
}

#bar3 .myBar {
  background-color: #00b3f0;
}

#bar4 .myBar {
  background-color: #0057a8;
}

.diff-percentage {
  position: relative;
  padding: 0px 20px;
  margin: 0;
  color: #868686;
}

.myProgress p {
  text-align: end;
}

.bar-graph {
  width: 100%;
}

.diff-percentage {
  background-color: #e3e5e5;
  border-radius: 15px;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  background: #e3e5e5;
  border-radius: 15px;
  margin: 0;
  padding: 0px;
  display: flex;
}

.percentage-label {
  text-align: end;
  color: #868686;
  margin-left: 10px;
  font-size: 24px;
}

.groupButtonScroll {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding: 15px 25px 15px 25px;
  gap: 15px;
  justify-content: center;
}

@media (max-width:1024px) {
  .section-box {
    padding: 20px !important;
  }

  .groupButtonScroll {
    justify-content: flex-start;
    padding: 10px 20px 10px 0px;
    gap: 10px;

}
    .section {
        justify-content: center;
        align-items: center;
        margin-top: 20px;
    }
}

@media (max-width: 765px) {
  .hidden {
    transform: translateY(-40%);
  }
  .show {
    transform: translateY(0%);
  }
}