#home-anniversary {
	position: relative;
	box-sizing: border-box;
	height: 800px;
	height: 90vh;
	min-height: 720px;
	background-color: #3790C7;
	cursor: default;
	text-align: center;
}

#home-anniversary-image {
	position: relative;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

#home-anniversary-overlay {
	position: absolute;
	width: 92%;
	width: calc(100% - 80px);
	max-width: 1300px;
	height: 490px;
	top: 50%;
	left: 50%;
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	margin: -182px auto 0;
	color: #FFF;
	background: #5785C7;
	background: rgba(55,144,199,.93);
	animation-name: fadein;
	animation-delay: .5s;
	animation-duration: 1s;
	animation-fill-mode: both;
	-webkit-font-smoothing: antialiased;
}


@keyframes celebrate {
	from {
		margin-top: 117px;
		height: 1px;
		opacity: .5;
	}
	to {
		margin-top: 70px;
		height: 94px;
		opacity: 1;
	}
}

#home-anniversary .heading {
	margin: 70px auto 0;
	width: 90%;
	max-width: 566px;
	height: 94px;
	background: url("../images/pages/celebrating-75-years.svg") center center no-repeat;	
	background-size: contain;
	animation-name: celebrate;
	animation-duration: 1s;
	animation-delay: .5s;
	animation-fill-mode: both;
}

#home-anniversary .heading span {
	display: none;
}

#home-anniversary h1 {
	margin: 0;
	padding: 30px 40px 30px;
	text-align: center;
	line-height: 90px;
	font-weight: 900;
	letter-spacing: -1px;
	font-size: 40px;
	letter-spacing: -0.5px;
	line-height: 42px;
	animation-name: fadein;
	animation-duration: .8s;
	animation-delay: 1s;
	animation-fill-mode: both;
}

#home-anniversary .description {
	display: block;
	font-size: 18px;
	line-height: 23px;
	padding-top: 10px;
	width: 80%;
	max-width: 565px;
	min-height: 90px;
	margin: auto;
	animation-name: fadein;
	animation-duration: .8s;
	animation-delay: 1.5s;
	animation-fill-mode: both;
}

#home-anniversary .action {
	height: 60px;
	text-align: center;	
	opacity: 0;
	animation-name: fadein;
	animation-duration: .8s;
	animation-delay: 2s;
	animation-fill-mode: both;
}

#home-anniversary .action a {
	display: inline-block;
	margin-top: 5px;
	background: #FFF;
	transition: padding .25s, margin .25s;
}

#home-anniversary .action a .text {
	display: inline-block;
	height: 45px;
	padding: 0 36px 0 18px;
	color: #0D94D9;
	font-size: 16px;
	line-height: 45px;
	font-weight: 700;
	background: #FFF url("../images/pages/hero-anniversary-arrow.svg") right 19px center no-repeat;
	border: 0 solid #FFF;
}

#home-anniversary .action a:hover {
	margin: 0;
	padding: 5px 10px;
}


@media screen and (max-width: 640px) {
	
	#home-anniversary h1 {
		margin-top: 0;
		font-size: 30px;
		line-height: 32px;
	}

	#home-anniversary .description {
		font-size: 16px;
		line-height: 20px;
		padding-top: 0;
		min-height: 80px;
	}
	
}