/* Note:- As the Figma file is designed on Desktop approach, so does the Website and the styles below are Desktop First Approach. */

.stats-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #032e15 0%, #016630 100%);
  margin-top: 97px;
}
.stats-content {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 86px;
  padding: 56.63px 0 58.41px;
}
.stats-item {
  list-style: none;
  width: 215.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19.21px;
}
.stat-percent {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: rgba(255, 255, 255, 1);
}
.stat-info {
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  color: rgba(255, 255, 255, 1);
}
/* ---------------Tablet Orientation---------------- */
@media (min-width: 426px) and (max-width: 768px) {
  .stats-content {
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px 0px;
    padding: 50px 0;
  }
  .stats-item {
    width: 46%;
    gap: 8px;
    text-align: center;
  }
  .stat-percent {
    font-size: 34px;
  }
  .stat-info {
    font-size: 13px;
    line-height: 110%;
    color: rgba(255, 255, 255, 1);
  } 
}

/* ---------------Mobile Orientation---------------- */
@media (max-width: 426px) {
  .stats-content {
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px 0px;
    padding: 50px 0;
  }
  .stats-item {
    width: 45%;
    gap: 8px;
    text-align: center;
  }
  .stat-percent {
    font-size: 34px;
  }
  .stat-info {
    font-size: 13px;
    line-height: 110%;
    color: rgba(255, 255, 255, 1);
  }
}
