/* 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 VIDEO HEADER ============================================*/
section.page-header.jumbo.hero-cic {
	overflow: hidden;
}

.home-video {
	display: none;
}

.home-heading {
	z-index: 5;
	position: relative;
	border-radius: 0;
	text-align: center;
}



/*================================== CLASSES ===============================*/
.shadow-heading {
    text-shadow: 0px 7px 6px #00000029;
}
.home-heading {
	font-size: 48px !important;
}


/*End mobile and up styles*/
/* ====================== Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 768px) {
	/*==================================== HOMEPAGE VIDEO HEADER ============================================*/
	section.page-header.jumbo.hero-cic {
		padding: 0;
	}
	.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%;
	}
	header.cic-header {
		padding: 100px 20px;
	}	
	
	.home-heading {
		font-size: 52px !important;
	}

	

	
}/*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) {
	/*==================================== HOMEPAGE VIDEO HEADER ============================================*/
	header.cic-header {
		padding: 100px 120px;
	}
	
	
	
}/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/
