/* Parallax Scroll */
article {
	position: relative;
	width: 100%;
	overflow: hidden;
}
article img {
	position: absolute;
	bottom:0;
	left: 0;
}
article p {
	position: absolute;
	width: 100%;
}

/* Parallax Hover */
.parallax-container {
	position: relative;
}
.parallax-container .parallax-inner {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.parallax-container .parallax-inner:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: none;
	z-index: 1;
}
.parallax-wrap {
	position: absolute;
	right: 0;
	top: 0;
	width: calc(100% + 40px);
	height: 100%;
}
.parallax-message {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #033ba8;
	text-align: center;
	max-width: 530px;
}
.parallax-message i {
	color: #e01837;
	font-size: 24px;
}
.parallax-message h2 {
	text-transform: uppercase;
	font-family: 'Poppins', sans-serif;
	font-size: 46px;
	margin-bottom: 15px;
	margin-top: 30px;
	position: relative;
}
.parallax-message hr {
	width:80px;
	border:0;
	border-top:0;
}

/* Only Mobile */
@media only screen and (max-width:767px) {
	.parallax-message {
		transform: translate(-45%, -50%);
		width: 80%;
	}
	.parallax-message h2 {
		font-size: 32px;
	}
}
