/* Department CSS Document */
/*For mobile first adaptive design place styles for mobile and up in the mobile and up area.
Place styles for tablet and up inside the media query in the tablet and up area.
Place styles for desktop only inside the media query in the desktop only area.

For questions or media query training contact Web Development Services.
*/
/* ====================== Mobile and Up ========================== */
/*******HEADING*********/
.page-header h2 {
    font-weight: 500;
    color: #fff;
    margin: 0;
	font-size: 24px;
}

.header-opacity-3 {
    background-color: rgba(30, 72, 44, 0.9);
}

/*******CONTENT HUB SECTION*********/
.image-content-section h2 {
	font-size: 40px;
}

/*******PROGRAM GRID*********/
.program-grid {
	display: grid;
	grid-gap: 30px;
}
.program-grid .program-card {
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
	background-color: #fff;
	color: #275D38;
}
.program-grid .program-card a {
	width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
}
.program-grid .program-card span, .program-grid .program-card img {
	margin-right: 15px;
	text-decoration: none !important;
}

/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	/*******HEADING*********/
	.page-header h2 {
		font-size: 30px;
	}
	/*******PROGRAM GRID*********/
	.program-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	/*******INTRO SECTION SPACING*********/
	.introduction [data-uvu-region="1"] {
		margin-top: 10px;
	}
	
	/*******PROGRAM GRID*********/
	.program-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
	
	/*******NEWSLETTER SECTION SPACING*********/
	.newsletter-section [data-uvu-region="2"] {
		margin-top: 30px;
	}
	
}

/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	/*******INTRO SECTION SPACING*********/
	.introduction [data-uvu-region="1"] {
		margin-top: 20px;
	}
	
	/*******CONTENT HUB SECTION*********/
	.image-content-section h2 {
		font-size: 50px;
	}
	
	/*******PROGRAM GRID*********/
	.program-grid {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
	
	/*******NEWSLETTER SECTION SPACING*********/
	.newsletter-section [data-uvu-region="2"] {
		margin-top: 50px;
	}
	
}

/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/