 
body {
  background-color: #121317;
}
.counters {
  position: relative;
  width: 100%;
 
  display: flex;
  justify-content: space-around;
  gap: 10px;
}
.zcontainer {
  width: 28vmin;
  height: 28vmin;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1em 0;
  position: relative;
  font-size: 16px;
  border-radius: 0.5em;
  background-color: #21242b;
  border-bottom: 10px solid #84BF71;
}
 
  span.signo {
 
  font-size: 48px; color: #ffffff; float:left;display:block;position: absolute;margin: auto;
}
i {
  color: #84BF71;
  font-size: 2.5em;
  text-align: center;
}
span.num {margin: 0;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 3em;
}
span.text {
  color: #e0e0e0;
  font-size: 1em;
  text-align: center;
  pad: 0.7em 0;
  font-weight: 400;
  line-height:1.15;
}
@media screen and (max-width: 1024px) {
  .counters {
    width: 100%;
  }
  .zcontainer {
    height: 26vmin;
    width: 26vmin;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .counters {
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
  }
  .zcontainer {
   width: 100%;
    height: 30vmin;
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .counters {
    gap: 15px;
  }
  .zcontainer {
    width: 100%;
    height: 50vmin;
    font-size: 18px;
  }
}
