/* IE less than 10 doesn't do css columns. These overrides will fix. Just add class 'item' to individual elements you want columised */
.column__item {
  float: left;
  margin-right: 3%; 
}
.column-four .column__item {
  width: 22%;
}
.column-three .column__item {
  width: 30%;
}
.column-two .column__item {
  width: 47%;
}
.column-one .column__item {
  width: 100%;
  margin-right: 0;
}