.stats-1__wrapper {
  padding: 0 2rem;
}

.stat__content p:last-child {
  color: var(--space-gray);
}

@media (min-width: 768px) {
  .stats-1__wrapper .header-content {
    max-width: 58rem;
  }

  .stats-1__content {
    flex: 1;
  }

  .stats-1__image {
    width: 43.571428571428571%;
    margin-right: -2rem;
  }

  .stats-1__image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }
}

@property --p {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 10%;
}

.stat__content {
  flex: 1;
}

.stat__circle {
  width: 8rem;
  aspect-ratio: 1;
  transition: --p 2s ease-in-out;
  position: relative;
  border-radius: 50%;
  --p: 10%; /*fallback*/
  background: conic-gradient( var(--green) var(--p), #eee 0);
  position: relative;
}

.sc__num {
  position: absolute;
  top: 50%;
  left: 8px;
  right: 8px;
  transform: translateY(-50%);
  text-align: center;
  margin: 0;
}

.stat__circle-blank {
  border-radius: 0;
  background: none;
}

.stat__circle-blank .sc__num{
  /*color: var(--green);*/
}

.stat__circle:before {
  content:'';
  position: absolute;
  inset: 8px;
  border-radius: inherit;
  background: white;
}
/*@supports not (offset: path("M 65,0 a 65 65 0 1 1 -.1 0 z")){
  .stat__circle:before{
    display: block;
    width: 100%;
    padding: 10px;
    background: #eee;
    border-radius: 4px;
    content: 'stats not shown in this browser. No support for CSS offset property.'
  }
}*/
