<style>
* {
  box-sizing: border-box;
}

/* Float four columns side by side */
.column {
  float: left;
  width: 33.2%;
 /* padding: 0 10px; */
}

/* Remove extra left and right margins, due to padding */
.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: 20px;*/
  }
}

/* Style the counter cards */
.card1 {
  padding-top: 50px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  background-color: #112544;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  color: #ffffff;
}
.card2 {
  padding-top: 50px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  background-color: #F33807;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  color: #ffffff;
}
.card3 {
  padding-top: 50px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  background-color: #0C7D4E;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  color: #ffffff;
}
.card1:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3);
  background-color: #666;
  color: #666;
}
.card2:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3);
  background-color: #666;
  color: #666;
}
.card3:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3);
  background-color: #666;
  color: #666;
}

.container {
  padding: 2px 16px;
  color: #ffffff; !important;
  font-weight: bold;
  font-size: 30px;
  min-height: 250px;
}