.wrapper {
  /* position: absolute; */
  /* width: 100vw; */
  display: flex;
  justify-content: space-around;
  margin: 0px auto 1rem auto;
}
.container1 {
  width: 25vmin;
  height: 25vmin;
  margin-top: 5em;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1em 0;
  position: relative;
  font-size: 16px;
  border-radius: 0.5em;
  /* Created with https://www.css-gradient.com */
  background: #CAF0F8;
  }
/* i {
  color: #18f98f;
  font-size: 2.5em;
  text-align: center;
} */
span.num {
  color: #212d40;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 3em;
}
span.text {
  color: #212d40;
  font-size: 1em;
  text-align: center;
  font-weight: 400;
  line-height: 0;
  margin-bottom: 2em;
}
@media screen and (max-width: 1024px) {
  .wrapper {
    width: 85vw;
  }
  .container1 {
    height: 26vmin;
    width: 26vmin;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    width: 90vw;
    flex-wrap: wrap;
    gap: 30px;
  }
  .container1 {
    height: 30vmin;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .wrapper {
    gap: 15px;
  }
  .container1 {
    width: 100%;
    height: 25vmin;
    font-size: 8px;
  }
}