@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
/* font */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* box size*/
.wrapper{
  /*width: 250px;*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
/* actual box around the counter */
.wrapper .card-local{
     width: calc(25% - 8px);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  /*box-shadow: 0px 10px 15px rgba(0,0,0,0.1);*/
}
/*inner circle with numbers*/
.wrapper .card-local .circle{
  position: relative;
  height: 300px;
  width: 300px;
  border-radius: 50%;
  cursor: default;
}
/* numbers position in circle */
.card-local .circle .box,
.card-local .circle .box span{
  position: absolute;
  top: 50%;
  left: 50%;
}
/* seem useless */
.card-local .circle .box{
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.2s;
}

.card-local .circle:hover .box{
  transform: translate(-50%, -50%) scale(0.91);
}
/* seem useless */
.card-local .circle .box span,
.wrapper .card-local .text{
  background: -webkit-linear-gradient(left, #000000, #000000); /*number colors gradient*/
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* numbers font */
.circle .box span{
  font-size: 38px;
  font-family: sans-serif;
  font-weight: 600;
  transform: translate(-45%, -45%);
  transition: all 0.1s;
}
/* seem useless */
.card-local .circle:hover .box span{
  transform: translate(-45%, -45%) scale(1.09);
}
/* text font */
.card-local .text{
  font-size: 20px;
  font-weight: 600;
}
/* seem useless */
@media(max-width: 753px){
  .wrapper{
    max-width: 700px;
  }
  .wrapper .card-local{
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
/* seem useless, */
@media(max-width: 505px){
  .wrapper{
    max-width: 500px;
  }
  .wrapper .card-local{
    width: 100%;
  }
}
