@charset "utf-8";

/* ============================================================
   section-combi.css
   Styles for the #combi section (Combination Courses).
   Requires section-menu.css (for .priceTable base styles).
   ============================================================ */

.threeCol{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.combiContent{
	width: 32%;
}
.combiContent h3{
	background-color: #87633d;
	color: #FFF;
	text-align: center;
}
.threeCol .priceTable{
	margin-top: 0;
}
.threeCol .priceTable .price{
	width: 60%;
}


@media only screen and (max-width:450px){
	.threeCol{
		display: block;
	}
	.combiContent{
		width: 100%;
	}
	.threeCol .priceTable .price{
		width: 70%;
	}
}
