.achievement-stats{
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: -20px;
  margin-right: -20px;
}
.achievement-stats .col{
  flex: 0 0 25%;
  padding: 20px;  
}

.achievement-stats .heading :is(h1, h2, h3, h4, h5, h6){
  margin-bottom: 10px;
}


.achievement-stats .col .card{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 40px;
  box-shadow: 0 5px 18px 0 rgb(46 46 46 / 3%);
  width: 240px;
    height: 240px;
    border-style: solid;
    border-width: 5px;
    border-color: #7eb693;
    border-radius: 200px;
}
}

@media screen and (max-width: 991px) and (min-width: 768px){
  .achievement-stats .col{
    flex: 0 0 50%;
  }
}

@media (max-width: 767px){
  .achievement-stats .col{
    flex: 0 0 100%;
  }
  .achievement-stats .col:last-child{
    padding-bottom: 0px;
  }
}