.stats-section {
 display: flex;
 flex-direction: row;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
}

.stats-banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  color: #fff;
  padding: 20px 20px;
  border-radius: 24px;
  gap: 5%;
  flex-wrap: wrap;
  margin: 20px; 
  max-width: 250px;
  max-height: 360px;
  min-height: 360px;
  min-width: 250px;
}

.stats-banner p {
 font-family: "Poppins", sans-serif;
}

.stat-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 325px;
  max-height: 500px;
  flex-direction: column;
  
}

/*.rounded-line {
  width: 25%;                /* Length of the line */
 /* height: 10px;              /* Thickness of the line */
 /* background-color: #72f1f7; /* Line color */
 /* border-radius: 5px;        /* Makes the edges rounded */
 /* margin-bottom: auto;
  margin-right: auto;
  margin-left: auto;
  justify-content: center;
  align-self: flex-end;
}*/

.icon-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 50px;
  margin-top: 10px;

}

/*.stat-card p {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
  color: white;
}*/

.icon-circle img {
  width: 90px;
  height: 90px;
}

.stat-heading {
  font-family: "Poppins", sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
  color: #173cad;
  padding-bottom: 20px;
  vertical-align: top;
  text-align: center;
}

.stat-text {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #000000;
  text-align: center;
  vertical-align: top;
}

.divider {
  width: 1px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 1700px) {
  .stats-section {
    width 100%
    padding: 25px 15px;
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
    align-items: center; 
  }

  .stat-card {
    max-width: none;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    /*margin-top: 20px;
    margin-bottom: 25px;*/
  }

  .divider {
    width: 100%;
    height: 1px;
  }

  .icon-circle {
    width: 90px;
    height: 90px;
  }

  .icon-circle img {
    width: 90px;
    height: 90px;
  }

  .stat-text {
    font-size: 18px;
  }
  .stats-banner {
    gap: 2%;
  }
}

@media (max-width: 600px) {
  .stats-section {
    flex-direction: column;
    width 100%
    padding: 25px 15px;
  }

 /* .stat-card {
    max-width: none;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }*/

  .divider {
    width: 100%;
    height: 1px;
  }

  .icon-circle {
    width: 90px;
    height: 90px;
  }

  .icon-circle img {
    width: 90px;
    height: 90px;
  }

  .stat-text {
    margin-top: 15px;
    font-size: 18px;
  }
  .stats-banner {
    /*gap: 2%;*/
  }
}


