  .metric-bar {
    display: flex;
    z-index: 5;
  }

  .metric {
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-evenly;
    color: #050505;
  }

  .metric-data {
    color: #050505;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
  }

  .metric-data2 {
    color: #050505;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
  }







  @media (max-width:750px){
    .metric-bar {
      display: flex;
      flex-direction: column; 
      align-items: center;
      justify-content: space-around;
    }
  }





  @media (min-width:751px){
    .metric-bar {
      display: flex; 
      align-items: center;
      flex-direction: row;
    }

  }