/*<meta />*/

/*==Home Page General Styles==*/

body
{
	font-family: 'Roboto Light', 'Open Sans', Arial, sans-serif;
	background-repeat: no-repeat;
	background-attachment: fixed;
	line-height: normal;
	color: #282828;
	font-size: 16px;
}

.center
{
	position: relative;
	margin-right: auto;
	margin-left: auto;
	float: none !important;
	text-align: center;
}

.off-canvas-content .main-section > .outer-row
{
	max-width: 100%;
	padding: 0;
}

.body-container
{
	overflow-x: hidden;
	padding: 50px 0 0;
}

#mc-main-content
{
	margin: 0;
}

p
{
	color: #282828;
	margin-bottom: 8px;
	margin-top: 8px;
}

/*==Responsive Header Styles==*/

#contentBody > .responsive-header
{
	background-color: transparent;
}

div.search-container
{
	margin: 0 auto;
}

.title-bar-container
{
	box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
	/*creates the shadow effect in the header*/
}

/*==Home Tiles section==*/

div.home-tiles
{
	mc-grid-row: true;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	column-gap: 20px;
	max-width: 1025px;
	/* 3 tiles x 315px + 4 gaps x 20px = 1025px */
	margin: 20px auto;
}

div.home-tiles::before
{
	content: ' ';
	display: table;
}

div.home-tiles::after
{
	content: ' ';
	display: table;
	clear: both;
}

div.home-tiles > div
{
	box-sizing: border-box;
	flex: 0 1 315px;
	height: 315px;
	background-color: #fff;
	border: 1px solid #d3d3d3;
	padding: 20px 15px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
	overflow: hidden;
}

div.home-tiles > div:hover
{
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
	transform: scale(1.05);
}

div.home-tiles > div:nth-child(1),
div.home-tiles > div:nth-child(2),
div.home-tiles > div:nth-child(3)
{
	margin-left: 0;
	margin-right: 0;
}

/*=Elements for text contained within each home-tile=*/

p.tile-title
{
	text-align: center;
	font-weight: bold;
	font-size: 23px;
	margin-top: 4px;
}

p.tile-subtitle
{
	text-align: center;
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 15px;
}

p.tile-content
{
	font-size: 16px;
	text-align: center;
}

p.tile-content img
{
	width: auto;
	height: 120px;
}

/*Complex Selector: Links within the home tiles will have the following properties*/

div.home-tiles a
{
	text-decoration: none;
	color: #000;
	transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

/*Complex Selector: When hovering over links within the home tiles the following properties will apply.*/

div.home-tiles a:hover
{
	color: #ce0e2d;
}

/*===========================================================================================================================================================
Styles after this point are styles that are for specific mediums. If any additional styles are added to this template they will be listed after mediums.
[@media tablet] declares styles that will apply when the screen is in tablet view
[@media mobile] declares styles that will apply when the screen is in mobile view
===========================================================================================================================================================*/

@media only screen and (max-width: 1279px)
{
	div.home-tiles
	{
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		/* width of 3 tiles + 2 gaps */
		margin: 20px auto;
		/* <--- THIS centers the container */
		padding: 0;
		box-sizing: border-box;
	}

	div.home-tiles > div
	{
		flex: 0 0 auto;
		width: 30%;
		min-width: 230px;
		max-width: 320px;
		height: 330px;
		box-sizing: border-box;
		padding: 15px 10px;
	}

	#mc-main-content
	{
		margin: 0;
	}
}

@media only screen and (max-width: 767px)
{
	#mc-main-content
	{
		margin: 0 1rem 0;
	}

	div.home-tiles
	{
		display: flex;
		flex-direction: column;
		align-items: center;
		column-gap: 0;
		row-gap: 0;
		padding: 0;
		box-sizing: border-box;
		margin-top: 0;
		margin-bottom: 0;
	}

	div.home-tiles > div
	{
		width: 90%;
		max-width: 100%;
		margin: 10px auto;
		padding: 15px 15px;
		height: 300px;
	}
}

