.stats-section {
  background: #0B1120;
  padding: 64px 0;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  position: relative;

  &::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 1px;
      left: 0;
      top: 0;
      background: radial-gradient(
          circle,
          #2b7fff59 0%,
          #2b7fff00 70%
      );
      pointer-events: none;
  }

  &::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 1px;
      left: 0;
      bottom: 0;
      background: radial-gradient(
          circle,
          #615fff40 0%,
          #615fff00 70%
      );
      pointer-events: none;
  }


  .stats-section__container {
    width: 100%;
    max-width: 1280px;
    padding: 0 24px;
    margin: 0 auto;
  }

  .stats-section__title{
    h1, h2, h3, h4, h5, h6, p{
      color: #FF6200;
      text-align: center;
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      line-height: 24px;
      letter-spacing: 1px;
      margin-bottom: 28px;
      margin-top: 0;
    }
  }

  .stats-section__grid {
    display: grid;
    align-items: center;
  }

  .stats-section__grid--3 {
    display: flex;
    justify-content: center;
    flex-flow: row;
  }

  .stats-section__item {
    text-align: center;
    padding: 0 24px;
    position: relative;

    &:not(:last-child) {
      border-right: 1px solid #ffffff1a;
    }
  }

  .stats-section__value-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
  }

  .stats-section__value,
  .stats-section__unit {
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 70px;
    font-style: normal;
    font-weight: 900;
    line-height: 80px;
    letter-spacing: 0;
  }

  .stats-section__value {
    color: #fff;
  }

  .stats-section__unit {
    color: #638CFF;
  }

  .stats-section__description {
    color: #90A1B9;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
    margin: 0;
  }
}
 @media (max-width: 639px) {
  .stats-section {
    padding: 40px 0;
      .stats-section__grid--3 {
        flex-flow: column;
      }

      .stats-section__item {
        padding: 24px 0;
        width: 100%;

        &:not(:last-child) {
          border-right: none;
          border-bottom: 1px solid #ffffff1a;
        }

        &:first-child {
          padding: 0 0 24px;
        }
         &:last-child {
          padding: 24px 0 0;
        }
      }

      .stats-section__value,
      .stats-section__unit {
        font-size: 48px;
        line-height: 60px;
      }

      .stats-section__description {
        font-size: 16px;
        line-height: 24px;
      }
    }
  }