.col-col {
  padding: 0.521vw;
  margin-left: 13.021vw;
}

/* Create three unequal columns that floats next to each other */
.column {
  margin: 1.042vw;
  float: left;
  padding: 0.521vw;
}

/* Left and right column */
.column.side {
  width: 25%;
}

/* Middle column */
.column.middle {
  width: 50%;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 31.25vw) {
  .column.side, .column.middle {
    width: 100%;
  }

