.timer-sec {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top:-35px;
}
.metrics_section {
    padding: 60px 0px;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  body {
    background-color: #121317;
  }
  .wrapper {
    position: absolute;
    width: 80vw;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: space-around;
    gap: 10px;
  }
  .container-timer {
    width: 33vmin;
    height: 38vmin;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1em 0;
    position: relative;
    font-size: 16px;
    border-radius: 0.5em;
    background-color: #FEFAF8;
   /* border-bottom: 10px solid #18f98f; */
  }
  i {
 /*   color: #18f98f;
    font-size: 2.5em;
    text-align: center;*/
  }
  span.num {
    color: #black;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 2em;
  }
  span.text {
    color: black;
    font-size: 1em;
    text-align: center;
    pad: 0.7em 0;
    font-weight: 400;
    line-height: 1.5;
    padding: 0px 15px;
  }
  @media screen and (max-width: 1024px) {
    .wrapper {
      width: 85vw;
    }
    .container-timer {
      height: 33vmin;
      width: 38vmin;
      font-size: 12px;
    }
  }
  @media screen and (max-width: 768px) {
    .wrapper {
      width: 90vw;
      flex-wrap: wrap;
      gap: 30px;
    }
    .container-timer {
      width: calc(50% - 40px);
      height: 30vmin;
      font-size: 14px;
    }
  }
  @media screen and (max-width: 480px) {
    .wrapper {
      gap: 15px;
    }
    .container-timer {
     width: 305px!important;
      height: 25vmin;
      font-size: 8px;
    }
  }