section.page-banner{
	width: 100%;
	min-height: 600px;
	background-color: #333;
	background-position:center; 
	background-size:cover; 
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}
section.page-banner .overlay{
	display: flex;
	justify-content: center;
	align-items: center;
	background-color:rgba(0, 0, 0, 0.2); ;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	min-height: 600px;
	height: 100%;
	mix-blend-mode: darken;
}
section.page-banner .inner{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	min-height: 600px;
	height: 100%;
}
section.page-banner .inner h1{
	font-size: 3rem;
}
@media screen and (max-width: 800px){
	section.page-banner{
		min-height: 450px;
	}
	section.page-banner .overlay,
	section.page-banner .inner{
		min-height: 450px;
	}
}
@media screen and (max-width: 600px){
	section.page-banner{
		min-height: 400px;
	}
	section.page-banner .overlay,
	section.page-banner .inner{
		min-height: 400px;
	}
}