/* 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: 80vh;
	width: 100%;
	color: #f2f2f2;
	overflow:hidden;
	z-index: 0;
	padding: 50px 6%;
}

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

.parallax-image:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
	background-size: auto, auto;
  background-size: auto, auto;
  z-index: 1;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

.parallax-image img {
	filter: brightness(0.9);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.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: 900px;
	padding: 50px 6%;
	display: flex;
	justify-content: center;
	border-radius: 10px;
	align-items: center;
	flex-direction: column;
	background: rgba(8, 97, 123, 0.85);
}

.parallax-area h1,
.parallax-video-content h1  {
	color: #c2c330;
	margin: 0 0 20px 0;
}

.parallax-area h2,
.parallax-video-content h2 {
	color: #c2c330;
	text-shadow: 0px 0px 7px rgba(43, 60, 81, 0.9);
}

.parallax-area h3,
.parallax-video-content h3{
	color: #fafafa;
	letter-spacing: 0.05em;
	font-size: 1.5em;
	text-shadow: 0px 0px 7px rgba(43, 60, 81, 0.9);
}

.parallax-area h4,
.parallax-video-content h4 {
	color: #f2f2f2;
	font-weight: 700;
	font-size: 1.2em;
	text-shadow: 0px 0px 7px rgba(43, 60, 81, 0.9);
}

.parallax-area a,
.parallax-video-content a {
	text-shadow: none;
}


.parallax-area p,
.parallax-video-content p  {
	color: #f2f2f2;
	text-shadow: 0px 0px 7px rgba(43, 60, 81, 0.9);
}

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

@media screen and (max-width: 900px){
	.parallax-area, .parallax-video-content {
		text-align: left;
	}
	
	.parallax-area .max-width, 
	.parallax-video-content .max-width {
		align-items: flex-start;
	}
}
