/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.statistics {
  --padding-top: 0px;
  --padding-bottom: 150px;
  --background-position: calc(
    50% + ((var(--padding-bottom) - var(--padding-top)) / 2)
  );
  position: relative;
  padding: var(--padding-top) 0 var(--padding-bottom);
}
.statistics::after {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--background-position);
  background-color: #fafafa;
  border-top: 2px solid #d8d8d8;
}
.statistics__foreground {
  position: relative;
  margin: auto;
}
.statistics__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--background-position);
}

.progress-bar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 2px;
}
.progress-bar__line {
  position: relative;
  width: 0%;
  height: 100%;
  background-color: #f58220;
}
@media screen and (min-width: 992px) {
  .statistics {
    --padding-top: 100px;
    --padding-bottom: 200px;
  }
  .progress-bar {
    height: 5px;
  }
}