/*
 Theme Name:   madhat-bimsens
 Theme URI:    http://bimsens.com
 Description:  madhat theme with small alterations for bimsens website, including sub header text
 Author:       The Striped Horse
 Author URI:   mailto:support@bimsens.com
 Template:     madhat
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         three-columns, header-paragraph, flat-style
 Text Domain:  madhat-bimsens
*/
/*http://www.w3schools.com/css/css3_multiple_columns.asp*/
.hgrid {
	margin: auto;
	display: grid;
	grid-template-columns: auto auto auto;
	grid-column-gap: 30px;
}
.hcell {
	/*border: 1px solid red;*/
	text-align: left;
}

@media only screen and (max-width: 700px) {
	.hgrid {
		grid-template-columns: 100%;
		grid-row-gap: 15px;
	}
}

