.polluxgrid { 
  display: table;
  margin: 0 auto;
}
.polluxgrid .content {
  overflow: hidden;
}

.polluxgrid .row {
  display: table-row;
}
.polluxgrid .row:after, .polluxgrid .row:before, .polluxgrid:before, .polluxgrid:after {
  display: table;
  content: " ";
}
.polluxgrid .row:after {
  clear: both;
}

@media (min-width: 992px) {
  .polluxgrid .col {
    padding: 10px 20px;
  }
  /* Remove padding */
  .polluxgrid .row:first-child .col {
    padding-top: 0;
  }
  .polluxgrid .row:last-child .col {
    padding-bottom: 0;
  }
  .polluxgrid .row .col:first-child {
    padding-left: 0;
  }
  .polluxgrid .row .col:last-child {
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .polluxgrid .col {
    padding: 10px 0;
  }
  .polluxgrid .row:first-child .col:first-child {
    padding-top: 0;
  }
  .polluxgrid .row:last-child .col:last-child {
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .polluxgrid .col {
    display: table-cell;
    padding: 10px 20px;
  }
  .polluxgrid .row:first-child .col {
    padding-top: 0;
  }
  .polluxgrid .row:last-child .col {
    padding-bottom: 0;
  }
  
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  /*.col-md-4 {
    width: 33.33333333%;
  }*/
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
    //float: left;
  }
}

/* About page boxes */
.polluxgrid.boxes {
  width: 100%;
  margin: 30px auto 0 auto;
}
.polluxgrid.boxes .col {
  background-color: #ffffff;
  border-left: 40px solid #eeeeee;
  border-right: 40px solid #eeeeee;
  padding: 0;
}
@media (max-width: 1200px) {
  .polluxgrid.boxes .col {
    border-left: 10px solid #eeeeee;
    border-right: 10px solid #eeeeee;
  }
}
@media (max-width: 992px) {
  .polluxgrid.boxes .col {
    border-left: 0;
    border-right: 0;
  }
  .polluxgrid.boxes .col {
    border-top: 10px solid #eeeeee;
    border-bottom: 10px solid #eeeeee;
  }
  .polluxgrid.boxes .row:first-child .col:first-child {
    border-top: 0;
  }
  .polluxgrid.boxes .row:last-child .col:last-child {
    border-bottom: 0;
  }
}
@media (min-width: 992px) {
  .polluxgrid.boxes .col-md-4 {
    width: 33.33333333%;
  }
}