.parallax-callout .item {
	margin-bottom: var(--space-4);
}

.parallax-callout .item {

	display: flex;
	justify-content: center;
	align-items: center;
	height: 840px;
	background-position: center center;
	background-size: cover;
	background-attachment: scroll;
	box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.parallax-callout.parallaxInterior .item {
	height: 675px;
}

.parallax-callout .item .item-content {
	max-width: 80%;
	text-align: center;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}

.parallax-callout .item .item-content h3 {
	margin-bottom: 10px;
	color: #fff;
	font-size: 2.5rem;
	line-height: 1.5;
	font-family: var(--font-display);
	font-weight: 600;
	text-transform: uppercase;
	text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
}

.parallax-callout .item .item-content p {
	margin-bottom: 15px;
	color: #fff;
	font-size: 20px;
	line-height: 1.4;
	text-shadow: 3px 3px 8px rgba(0,0,0,0.7);
	margin-bottom: var(--space-4);
}

.parallax-callout .item .item-content .button {
	padding: 5px 25px;
	font-size: 20px;
	line-height: 1.4;
	font-weight: 700;
	border-radius: var(--rounded-md);
	background-color: #496c9c;
	color: #FFF;
}

.parallax-callout .item .item-content .button:hover {
	background-color: #496c9c;
}

@media (min-width: 64em) {
	.parallax-callout .item {
		margin-bottom: var(--space-12);
	}

	.parallax-callout .item {
		background-attachment: fixed;
	}
	.parallax-callout .item .item-content {
		max-width: 800px;
	}
	.parallax-callout .item .item-content h3 {
		font-size: 3.2rem;
	}

}