/* 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 ========================== */
section.page-header.jumbo.hero-hi {
	overflow: hidden;
}
.home-video {
	display: none;
}

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

/*============================ Tablet Only (Overrides Mobile Styles) =============================*/
@media only screen and (min-width:768px){
	section.page-header.jumbo.hero-hi {
		padding: 0;
	}
	.hero-hi {
		height: unset;
	}
	.home-video {
		display: block;
		z-index: -1;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		height: 400px;
		overflow: hidden;
	}
	.home-video video {
		object-fit: cover;
		object-position: top;
		width: 100%;
		height: 100%;
	}
	header.hi-header {
		padding: 100px 20px;
		height: 400px;
	}	
  
}
/*end media query*/
/*End tablet and up styles*/
/* ====================== Landscape Tablet and Up (Overrides Mobile Styles) ========================== */
@media only screen and (min-width: 992px) {
	header.hi-header {
		height: 450px;
		display: flex;
        flex-direction: column;
        justify-content: center;
	}
	.home-video {
		height: 450px;
	}
	
}
/*end media query*/
/*End landscape tablet and up styles*/
/* ====================== Desktop Only (Overrides Mobile and Tablet Styles) ========================== */
@media only screen and (min-width: 1200px) {
	header.hi-header {
        height: 500px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 100px 0px;
    }
	.home-video {
		height: 500px;
	}
	
}
/*end media query*/
/*End desktop only styles*/
/*END OF DOCUMENT*/