* {
  box-sizing: border-box;
}


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

/* Remove extra left and right margins, due to padding */
.cardrow {margin: 20px -5px;
}

/* Clear floats after the columns */
.cardrow: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 */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: #ffffff;
}
.cardDescription {
  font-size: 15px;
}
.cardContact{
  font-size: 15px;
}
.seperationLine{
  height:4px;
  border-width:0;
  color:#f7d118;
  background-color:#f7d118;
}


