/* Float four columns side by side */
.column {
    float: left;
    width: 33%;
    padding: 0 1px;
  }
  
  .row {margin: 0 -5px;}
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive columns */
  @media screen and (max-width: 600px) {
    .column {
      width: 100%;
      display: block;
      margin-bottom: 10px;
    }
  }
  
  /* Style the counter cards */
  .card {
    
    text-align: center;
    /* background-color: #444; */
    color: white;
    width:100%;

  }
  