/* 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 ========================== */
.video-header-shadow{
	text-shadow: 2px 2px #000;
}

section.page-header.jumbo.hero-arts {
	padding: 0px;
	overflow: hidden;
}

.home-video {
	display: none;
}

.arts-header {
	text-shadow: 2px 2px #000;
}

.hero-content {
	z-index: 5;
	position: relative;
	width: 100%
}


/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {

	.home-video {
		display: block;
		z-index: -1;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}

	.home-video video {
		object-fit: cover;
		object-position: top;
		width: 100%;
		height: 100%;
	}
	
	.home-video.center video {
		object-fit: cover;
		object-position: center;
	}

	.vid-overlay {
		width: 100%;
		height: 100%;
		position: absolute;
		overflow: hidden;
	}
	
	header.arts-header {
		padding: 145px 20px;
	}	


}

/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {

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

}

/* ====================== Extra Wide Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1500px) {

	header.arts-header {
		padding: 145px 120px;
	}	


}

/*END OF DOCUMENT*/
