.our-statistics-section {
  background: var(--gradient-background);
  background-color: rgb(var(--color-background));
  border-radius: 30px;
}
.our-statistics__heading {
    margin-top: unset;
    line-height: 1;
}
.statistic-blocks-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  row-gap: 3rem;
  align-items: center;
    @media (min-width: 0px) and (max-width: 750px) { 
      justify-content: space-around;
      border-radius: 20px;
    }
    @media (min-width: 750px) {
      justify-content: space-around;
    }
    @media (min-width: 990px) {
      justify-content: space-between;
    }
  .stat-column {
    padding: 3rem;
    background-color: #ffffff;
    padding-block: 5rem;
    border-radius: 30px;
    @media (min-width: 0px) and (max-width: 750px) { 
      width: calc(49% / 1 );
      /* max-width: 300px; */
      padding: 2rem;
      padding-block: 4rem;
    }
    @media (min-width: 750px) {
      width: calc(100% / 2 - 1.5rem);
    }
    @media (min-width: 990px) {
      width: calc(100% / 3 - 3rem);
    }
    .stat-column-inner {
      display: flex;
      flex-direction: column;
      row-gap: 1rem;
    }
    .stat-figure {
      margin: unset;
    }
    .stat-label {
      margin: unset;
    }
  }
}
