.hero-banner {
	height: 280px;
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #435790;
}

.hero-banner:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .1);
}

.hero-banner .container {
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero-banner i {
	display: block;
	font-size: 62px;
	margin-bottom: 15px;
}

.hero-banner i,
.hero-banner h1,
.hero-banner .button {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .5s ease-out, transform .5s ease-out;
}

.hero-banner i {
	display: none;
	transition-delay: .25s;
}

.hero-banner.in-view i,
.hero-banner.in-view h1,
.hero-banner.in-view .button {
	opacity: 1;
	transform: translateY(0);
}

.hero-banner h1 {
	font-size: 35px;
	margin-bottom: 25px;
	transition-delay: .35s;
}

.home .hero-banner h1 {
	margin-left: -7px;
	margin-right: -7px;
}

.hero-banner .button {
	background-color: #d8393d;
	color: #fff;
	padding-left: 18px;
	padding-right: 18px;
	transition-delay: .45s;
}

@media screen and (max-width: 400px) {
	.hero-banner .button {
		font-size: 11px;
	    letter-spacing: 1px;
	    padding: 11px 10px;
	}
}

@media screen and (min-width: 768px) {
	.hero-banner {
		height: 570px;
		align-items: center;
	}
	
	.hero-banner .container {
		width: 60%;
		max-width: 450px;
	}
	
	.hero-banner i {
		display: block;
		font-size: 70px;
	}
	
	.hero-banner h1 {
		font-size: 75px;
	}
	
	.hero-banner i,
	.hero-banner h1,
	.hero-banner .button {
		transform: translateY(50px);
		transition-duration: 1s;
	}
}

@media screen and (min-width: 1024px) {
	.hero-banner {
		height: 560px;
	}
	
	.hero-banner .container {
		max-width: 600px;
	}
	
	.hero-banner i {
		font-size: 85px;
	}
	
	.hero-banner h1 {
		font-size: 70px;
	}
}