.stats_strip {
  background: #000;
  padding: 35px 0;
  position: relative;
  z-index: 1;
}
.stats_strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgb(246 208 7) 0%,
    rgb(246 128 23 / 38%) 35%,
    rgba(246, 128, 23, 0.12) 60%,
    rgba(246, 128, 23, 0) 100%
  );
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  height: 300px;
  width: 100%;
  top: -70px;
  left: 0;
  right: 0;
  margin: auto;
}
.stats_strip:hover::before {
  opacity: 1;
}

.stats_strip > * {
  position: relative;
  z-index: 2;
}
.stats_strip .stat_col {
  text-align: center;
  position: relative;
}
.stats_strip .stat_col .value {
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1;
  transition: all 0.3s ease;
  /* font-family: "Bai Jamjuree", sans-serif; */
  font-family: "Bebas Neue", sans-serif;
}

.stats_strip:hover .stat_col .value {
  background: linear-gradient(106deg, #f6d007 25%, #f98419 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stats_strip .stat_col .label {
  font-size: 20px;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .stats_strip .stat_col .value {
    font-size: 35px;
  }
  .stats_strip .stat_col .label {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .stats_strip .stats_strip {
    padding: 25px 0;
  }
  .stats_strip .stat_col {
    margin-bottom: 20px;
  }
  .stats_strip .stat_col .value {
    font-size: 28px;
  }
  .stats_strip .stat_col .label {
    font-size: 14px;
  }

  .stats_strip .stat_col .value {
    background: linear-gradient(106deg, #f6d007 25%, #f98419 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .stats_strip::before {
    background: none !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .stats_strip .stat_col .value {
    font-size: 27px;
  }
  .stats_strip {
    padding: 20px 0;
  }
}
@media (min-width: 0px) and (max-width: 575.98px) {
  .stats_strip .stat_col .value {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .stats_strip .stat_col .label {
    font-size: 12px;
  }
  .stats_strip {
    padding: 20px 0 10px;
  }
}
