/************* Home *************/

#home-banner { 
	padding: 0;
	position: relative;
	min-height: 500px;
	/*-webkit-transition: min-height 1s;
    transition: min-height 1s;*/

	background-color: #212121;
  	background-position: center center;
  	background-size: cover;
}

#home-banner > .color-overlay {
	position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.3);
    z-index: 99;
} 

#home-banner > strong { 
	letter-spacing: 0.5em;
	text-transform: uppercase;
	line-height: 1em;
	color: #fff;

	position: absolute;
	z-index: 100;
	top: 50%;
	left: 50%;
	font-size: 4em;
	transform: translate(-50%, -50%);
}

@media (max-width: 1920px) {
	#home-banner {
		min-height: 540px;
	}
}

@media (max-width: 1600px) {
	#home-banner {
		min-height: 440px;
	}
}

@media (max-width: 1200px) {
	#home-banner {
		min-height: 400px;
	}
}

@media (max-width: 800px) {
	#home-banner {
		min-height: 360px;
	}

	#home-banner > strong {
		font-size: 3em;
	}
}

@media (max-width: 600px) { 
	#home-banner > strong {
		font-size: 2em;
	}
}