.grid {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	justify-content: space-between;
}	

.grid-col {
	width: calc(1/4*100% - 20px);
	box-sizing: border-box;
}

.grid-thirds .grid-col {
	width: calc(1/3*100% - 13.333333333px);
}

.grid-halves .grid-col {
	width: calc(1/2*100% - 10px);
}

.grid-col:not(.blank) {
    display: flex;
    align-items: stretch;
    box-shadow: 0 0 5px #aaa !important;
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 5px;
	margin-bottom: 20px;
}	

.product-card {
    width: 100%;
	display: flex;
    flex-direction: column;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
}

.product-card .product-card-image {
    display: block;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #D0242C;
}

.product-card .product-card-image img {
    height: 200px;
    width: 100%;
    object-fit: contain;
}

.product-card .product-card-content {
    padding: 20px;
    flex-grow: 30;
}

.product-card h3 {
    text-transform: uppercase;
    font-size: 20px !important;
    text-align: center;
}

.product-card .excerpt {
    color: #000;
}

.product-card .button {
    margin: 0 20px 20px 20px;
}

.product-card .button a {
    font-size: 16px !important;
    padding-left: 0;
    padding-right: 0;
    display: block;
}

@media(max-width: 800px){
	.grid-col {
		width: calc(1/2*100% - 10px);
	}
	
	.grid-thirds .grid-col {
		width: 100%;
	}
}

@media(max-width: 600px){
	.grid-col {
		width: 100%;
	}

	.grid-col:not(.blank) {
		margin-bottom: 15px;
	}
}

.product-hor {
	display: flex;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
	box-shadow: 0 0 5px #ccc;
	margin-bottom: 20px;
	align-items: center;
    border-radius: 5px;
}

.product-hor-image {
	width: 25%;
	padding: 30px 0 30px 30px;
}

.product-hor-image img {
	width: 100%;
	display: block;
}

.product-hor-content {
	width: 66.66666666%;
	box-sizing: border-box;
	padding: 30px;
}

.product-hor-content p:last-child {
	margin-bottom: 0;
}

.downloads {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.download {
    overflow: hidden;
    background-color: #ccc;
    color: #fff !important;
    display: flex;
    width: 100%;
    margin: 0 0 20px 0;
	text-decoration: none;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 8px;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    line-height: 16px;
}

.download i {
    font-size: 30px;
    color: #fff;
}

.download .fa-download {
    color: #fff;
}

.download .text {
    flex-grow: 30;
    margin: 0 20px;
}

.product-hor-image img {
    height: 200px !important;
    width: 100%;
    object-fit: contain;
}

.product-hor-content > h2 {
    font-size: 45px !important;
}