/* ======================= 
  Banner CSS
========================== */
.banner-wrap {
	position: relative;
	padding: 60px 30px;	
	box-sizing: border-box;
	height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
    font-family: 'Raleway', sans-serif;
}
.banner-wrap::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: url(../content/home/banner-background.jpg) no-repeat;
	background-size: cover;
	opacity: .4;
	z-index: 1;
}
.banner-wrap .banner-inner {
	opacity: 1;
	text-align: center;
	position: relative;
	z-index: 2;
}
.banner-header {
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 700;
	color: #000;
	text-align: center;
	padding-bottom: 20px;
}
.banner-description {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 600;
	color: #000;
	text-align: center;
    display: inline-flex;
    align-items: center;
}
.bullet-separator {
    font-size: 30px;
    padding: 0 10px;
}
/* ======================= 
  Main Content Overwrite
========================== */
.homebackground-leftMCBottom, .homebackground-leftMCTop, .homebackground-rightMCBottom, .homebackground-rightMCTop {
    min-height: 300px;
}
@media only screen and (max-width: 1024px){
	.banner-description {
		align-items: center;
		flex-wrap: wrap;
		justify-content: center;
	}
	.banner-wrap {
		height: auto;
	}
} 