/* parallax area */

.parallax-area:before {
	content:'';
	background: url('white-flower.png') no-repeat;
	background-size:contain;
	width: 200px;
	height: 200px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
}

.parallax-area:after {
	content:'';
	background: url('white-flower.png') no-repeat;
	background-size:contain;
	width: 200px;
	transform: rotate(180deg);
	height: 200px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 3;
}

.dark-overlay {
	background: rgba(0,0,0,0.5);
	position: absolute;
	width:100%;
	height: 100%;
	top: 0;
	z-index: 2;
}

.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: 100vh;
	width: 100%;
	color: #f2f2f2;
	z-index: 1;
	padding: 60px 6%;
	overflow: hidden;
}

.parallax-video 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: 850px;
	background: rgba(41, 42, 61, 0.9);
	padding: 50px 6%;
	z-index: 4;
}

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

.parallax-area h2,
.parallax-video-content h2 {
	color: #45b6c0;
}

.parallax-area h3,
.parallax-video-content h3{
	color: #45b6c0;
}

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

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

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

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

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