/* parallax area */

.parallax-area, .parallax-video-content {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	text-align: center;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	color: #f2f2f2;
	overflow:hidden;
	z-index: 1;
	padding: 60px 6%;
}


.parallax-image {
    position: absolute;
    width: 100%;
    height: 100%;
}

.parallax-area video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.7);
}

.parallax-area .max-width,
.parallax-video-content .max-width {
	position: relative;
	width: 100%;
	max-width: 1024px;
}

.parallax-area h1,
.parallax-video-content h1  {
	color: #f9f9f9;
}

.parallax-area h2,
.parallax-video-content h2 {
    color: #f9f9f9;
    font-size: 2em;
    text-shadow: 0 0 5px #171717;
}

.parallax-area h3,
.parallax-video-content h3{
	color: #f9f9f9;
font-size: 1.4em;
 color: #f9f9f9;
    text-shadow: 0 0 5px #171717;
}

.parallax-area h4,
.parallax-video-content h4 {
	color: #f2f2f2;
	font-weight: 700;
	font-size: 18px;
}

.parallax-area a,
.parallax-video-content a {
	color: #f9f9f9;
}

.parallax-area a:hover,
.parallax-video-content a:hover {
	color: #ff4e00;	
}

.parallax-area p,
.parallax-video-content p  {
	color: #f2f2f2;
}

.parallax-video {
	position: fixed;
	top: 0;
	z-index: -1;
	left: 0;
	width: 100%;
	height: 100vh;
}

@media only screen and (max-width:769px){
	.parallax-area, .parallax-video-content {
		text-align: left;
	}
}