.bio-fly-stats {
  padding: 3rem;
}

.stats {
  display: flex;
  align-items: start;
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: space-around;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-align: center;
  width:  250px;
}

.stat h1{
  font-weight: bold;
  font-size: 1.3rem;
}

.icon-box {
  width: 60px;
  height: 60px;
  border: 2px solid #52742c;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.icon-box img {
  max-width: 80%;
  height: auto;
}

@media (max-width: 1000px) {
    .stats {
        gap: 50px;
    }
}