@charset "UTF-8";
/* CSS Document */

.modulBackground {
	position:absolute;
	z-index: 1;
	margin: 0;
	/*margin-left: auto;
	margin-right: auto;*/
	margin:auto;
	padding: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-content: center;
	align-items: center;
	overflow: hidden;
}

.scrim-overlay::before {
	z-index: 2;
	content: '';
	width: 90%;
	position: absolute;
	margin:auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%);
}

#SITEHEADER .scrim-overlay::before {
	width: 100%;
}

.right.scrim-overlay::before {
	background: linear-gradient(to left, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 60%);
}

.modulBackgroundMedia{
	position: relative;
	margin:auto;
	padding: 0;
	width: 100%;
	height: 120%;
	overflow: hidden;
}

.modulBackgroundMedia video{
	height: 100%;
}

/* ===================================================================================================================== */
/* ================================================= **** TABLET **** ================================================== */
/* ===================================================================================================================== */

@media screen and (max-width: 956px) {


}
/* ===================================================================================================================== */
/* ================================================= **** MOBILE **** ================================================== */
/* ===================================================================================================================== */
@media screen and (max-width: 720px) {

	.scrim-overlay::before { display: none; }
	
}