.finance-info-wrapper {
  /* width: 80%; */
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;

  .container {
    width: 25vmin;
    /* height: 28vmin; */
    height: 10em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1em 0;
    position: relative;
    font-size: 16px;
    border-radius: 0.5em;
    background-color: white;
    border-bottom: 10px solid var(--primary-color-dark);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  i {
    color: #18f98f;
    font-size: 2.5em;
    text-align: center;
  }
  span.num {
    color: var(--primary-color-dark);
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 3em;
  }
  span.text {
    color: var(--primary-color-light);
    font-size: 1em;
    text-align: center;
    pad: 0.7em 0;
    font-weight: 400;
    line-height: 0;
  }
  @media screen and (max-width: 1024px) {
    .finance-info-wrapper {
      width: 85%;
    }
    .container {
      /* height: 26vmin; */
      width: 26vmin;
      font-size: 12px;
    }
  }
  @media screen and (max-width: 768px) {
    .finance-info-wrapper {
      width: 90%;
      flex-wrap: wrap;
      gap: 30px;
    }
    .container {
      width: calc(50% - 40px);
      /* height: 30vmin; */
      font-size: 14px;
    }
  }
  @media screen and (max-width: 480px) {
    .finance-info-wrapper {
      gap: 15px;
      width: 98%;
    }
    .container {
      width: 30%;
      /* height: 25vmin; */
      font-size: 8px;
    }
  }
}
