
.row.row-eq-height {
  display: flex;
  flex-wrap: wrap;
}
.row.row-eq-height > [class*='col-'] {
    display: flex;
    flex-direction: column;
}
.row.row-eq-height > [class*='col-'] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}


/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    [class*='col-lg-'] {
      display: block !important;
    }
}
/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
  [class*='col-md-'] {
    display: block !important;
  }
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
  [class*='col-sm-'] {
    display: block !important;
  }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
  [class*='col-xs-'] {
    display: block !important;
  }
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
  [class*='col-xs-'] {
    display: block !important;
  }
}
