#homeVideoBanner {
	width: 100%;
	height: calc(100vh - 144px);
	overflow: hidden;
	text-align: center;
	display: block;
	margin-top: 144px;
	position: relative;
}

#homeVideoBanner #videoBannerOverlay {
	position: absolute;
	max-width: 1200px;
	left: 50%;
	transform: translate(-50%, -10%);
	display: flex;
	height: 100%;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

#homeVideoBanner video {
	min-width: 100vw;
	min-height: 100vh;
	position: relative;
	left: 50%;
	right: 0;
	transform: translate(-50%, 0);
}

#homeVideoBanner h1 {
	color: #fff;
	text-align: left;
	font-weight: 100;
	font-size: 3rem;
	width: 22ch;
	/*text-shadow: 0.2px 0.2px 2px #2b2a29cc;*/
}

@media (max-width:576px) {
	#homeVideoBanner h1 {
		width: 100%;
	}
}

#homeVideoBanner p {
	color: #fff;
	max-width: 45ch;
	text-align: left;
	/*text-shadow: 0.2px 0.2px 2px #2b2a29cc;*/
}

.video-banner-outerlay {
	background: #2b2a2970;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
}

#movilBannerImg {
	display: none;
}


@media(max-width: 768px) {
	#homeVideoBanner video {
		display: none;
	}

	#homeVideoBanner {
		margin-top: 0;
		height: 150vh;
		display: flex;
		flex-direction: column-reverse;
	}

	#movilBannerImg {
		display: block;
	}

	#homeVideoBanner #videoBannerOverlay {
		/* padding: 1rem; */
		position: relative;
		justify-content: flex-end;

	}

	.video-banner-outerlay {
		position: relative;
		background: #2b2a29;
		height: auto;
		padding: 4rem 1rem 0;
	}
}