@charset "UTF-8";
/* CSS Document */
.round{
	border-radius: 0px;
	overflow: hidden;
}

/* =========================================== **** around modulelement part **** ================================================== */

.modulContainer{
	position: relative;
	z-index: 3;
	margin: 0;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	max-width: 100%;
	max-height: 100%;
	display: flex;
	align-content: center;
	align-items: center;
}

/* =========================================== **** modulelement full content **** ================================================== */

.modulContent{
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

.modulContentOver{
	position: absolute;
	z-index: 1;
	width: 120%;
	height: 120%;
	margin: 0;
	padding: 0;
	opacity: 0;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

.mouseover:hover .modulContentOver{
	opacity: 0.5;
}

/* ================================= **** Text Contents /title, teaser / head / btn **** ================================== */


.modulContentText{
	position: absolute;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	align-content: center;
	align-items: center;
}

.modulContentHead{
	position: absolute;
	top: 0;
	padding: calc(2vw + 0px);
	z-index: 4;
	width: 100%;
	height: auto;
	display: flex;
	align-content: center;
	align-items: center;
	text-transform: uppercase;
}


.modulContentTextbox{
	position: relative;
	width: 100%;
	height: auto;
	/*padding: calc(2vw + 0px);*/
	padding: 2.3em;
}

.modulContentTextbox blockquote{
	text-align: left;
}

.mouseover:hover .modulContentTextbox h2{
	text-decoration: underline;
}
.mouseover:hover .modulContentTextbox h3{
	text-decoration: underline;
}



.modulContentBut{
	position: absolute;
	bottom: 0;
	padding: calc(2vw + 0px);
	z-index: 3;
	width: 100%;
	height: auto;
	display: flex;
	align-content: center;
	align-items: center;
	
}
/* ===================================================================================================================== */


.modulContentMedia {
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	top: 0px;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
	transform: scale(1.02);
	background-position: center center;
	background-size: cover;
}

.mouseover:hover .modulContentMedia {
	top: 0px;
	transform: scale(1.06);
	background-position: center center;
	background-size: cover;
}

.sticky-content{
	display: block !important;
	height: auto;
	width: 100%;
	top: 5vw;
	position: sticky;
	position: -webkit-sticky;
    
	
}
/* ===================================================================================================================== */
/* ================================================= **** TABLET **** ================================================== */
/* ===================================================================================================================== */

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


}
/* ===================================================================================================================== */
/* ================================================= **** MOBILE **** ================================================== */
/* ===================================================================================================================== */
@media screen and (max-width: 720px) {
.sticky-content{
		display: block !important;
	height: auto;
	width: 100%;
	top: 12vw !important;
	position: sticky;
	position: -webkit-sticky;
    
	
}
.modulContentHead{
	padding: calc(5vw + 0px);
}

.modulContentTextbox{
	padding: calc(5vw + 0px);
}

.modulContentBut{
	padding: calc(5vw + 0px);
	
}
	
}