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

video {
	position: relative;
	
  /* Setting width & height to auto prevents the browser from stretching or squishing the video */
	width: auto;
	height: 100%;
  /* Make video to at least 100% wide and tall */
  	min-width: 100%; 
	max-height: 100%;
  
	object-fit: cover;
  	/* Center the video */
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%,-50%);
	object-position: center center;
}

/* ===================================================================================================================== */


.modulBgVideo{
	position:absolute;
	margin: 0;
	padding: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	overflow: hidden;
}

/* ===================================================================================================================== */


.modulContentBgVideo{
	position:absolute;
	margin: 0;
	padding: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	overflow: hidden;
}



/* ===================================================================================================================== */


.modulContainer{
	position: relative;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height:auto;
	padding: 0px;
}

/* ===================================================================================================================== */


.modulContentContainer {
	position: relative;
	z-index:1;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
}


/* ===================================================================================================================== */

.textBlockContents{
	position: relative;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	height:auto;
	padding: 0px;
	
}

.textMediaGridLeft{
	margin:0;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
  	display: grid;
  	grid-template-columns: 50% auto;
 	grid-template-rows: auto;
	grid-gap: 2vw;
  	grid-template-areas: 
 	"img txt";
}

.textMediaGridRight{
	margin:0;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
  	display: grid;
  	grid-template-columns: auto 50%;
 	grid-template-rows: auto;
	grid-gap: 2vw;
  	grid-template-areas: 
 	"txt img";
}
	

.itemMediaText {
	position: relative;
	max-width: 100%;
	height: 100%;
	grid-area: txt;
}

.itemMediaContent {
	
	position: relative;
	max-width: 100%;
	min-height: 50vh;
	height: 100%;
	grid-area: img;
}

.itemMediaText blockquote{
	padding: 3vw;
}

/* ===================================================================================================================== */


/* ===================================================================================================================== */

.imageBox {
	position: relative;
	max-width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

.imageBoxFile {
	position: relative;
	z-index: 1;
	max-width: 100%;
	margin: 0;
	padding:0;
	overflow: hidden;
	
}
/* ===================================================================================================================== */
/* ================================================= **** MOBILE **** ================================================== */
/* ===================================================================================================================== */

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


/* ===================================================================================================================== */
/* ================================================= **** MOBILE **** ================================================== */
/* ===================================================================================================================== */
}

@media screen and (max-width: 720px) {
	
.textMediaGridLeft{
  	grid-template-columns: 100%;
	grid-gap: 5vw;
  	grid-template-areas: 
 	"img" 
	"txt";
}

.textMediaGridRight{
  	grid-template-columns: 100%;
	grid-gap: 5vw;
  	grid-template-areas: 
 	"img" 
	"txt";
}

.itemMediaText blockquote{
	padding: 5vw;
}
/* ===================================================================================================================== */
/* ===================================================================================================================== */
/* ===================================================================================================================== */
	
}