/* *{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
 */

.wrapper .num {
  position: relative;
  top: 0;
  left: 0;
  z-index: 2; /* Đảm bảo con số nằm trên icon */
}



.wrapper {
  /* position: absolute; */
  position: relative;
  width: 40vw;
  height: 50vmin;
  transform:  translate(-50%, -50%);
  top: 250px;
  left: 50%;
  display: flex;
  justify-content: space-around;
  gap: 5px;
  margin-top: 50px;

}

.container-z {
  position: relative;

  width: 13vmin;
  height: 13vmin;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1em 0;
  position: relative;
  font-size: 18px;
  border-radius: 0.7em;
  background-color: #f1e1db70;
  border-bottom: 7px solid #e57a4b;
  /* z-index: 1; */
}

z::before {
  color: #e57a4b;
  font-size: 2.2em;
}

.about-icon {
  text-align: center;
}

span.num {
  color: #575757;
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 2em;
}

span.text {
  color: #6b6b6b;
  font-size: 0.8em;
  text-align: center;
  pad: 0.5em 0;
  font-weight: 500;
  line-height: 0;
}
/* 
@media screen and (max-width:1024px) {
  .wrapper {
    width: 50vw;
  }
  .container-z {
    height: 26vmin;
    width: 26vmin;
    font-size: 40px;
  }
}

@media screen and (max-width: 768px) {
  .wrapper{
    width: 500vw;
    flex-wrap: wrap;
    gap: 2px;
  }

  .container-z {
    width: calc(50% -50px);
    height: 50vmin;
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .wrapper{
    gap: 50px;
  }

  .container-z {
    width: 20%;
    height: 50vmin;
    font-size: 8px;
  }
}