/* 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 ========================== */
/**********HOMEPAGE HEADER**********/
.jumbo header h1 {
	font-size: 34px;
}
.page-header {
    padding: 60px 0;
}
.header-opacity-3 {
    background-color: rgba(39, 120, 187, 0.6);
}

/**********SLIDER**********/
.slick-slider li {
    margin: 0 !important;
}
.border-divider-left {
    width: 150px;
    margin: 0;
}
.slick-slider figure img {
    margin: 0;
    width: 100%;
    height: 100%;
	max-height: unset;
}
.slides li figcaption.caption {
	background-color: rgba(39, 93, 56, 0.9);
	font-size: 20px;
}


/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	/**********HOMEPAGE HEADER**********/
	.page-header {
		padding: 0;
	}
	.jumbo header {
		padding-left: 0;
	}
	.jumbo header h1 {
		font-size: 40px;
	}
	
}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	/**********HOMEPAGE HEADER**********/
	.jumbo header {
        padding: 80px 40px;
		padding-left: 0;
    }
	.jumbo header h1 {
        font-size: 50px;
    }
	
	/*****DEFINITION SECTIONS ADJUSTMENTS****/
	[data-uvu-section="4"] [data-uvu-region="2"] {
		margin-top: 50px;
	}
	[data-uvu-section="4"] [data-uvu-region="4"] {
		margin-top: 50px;
	}
}

/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	
	
}

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