/*
	generelle Einstellungen
*/

@charset "UTF-8";

@font-face {
    font-family: OpenSansCondensed-Light;
    local: OpenSansCondensed-Light;
    src:url("../fonts/OpenSansCondensed-Light.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Roboto-Medium;
    local: Roboto-Medium;
    src:url("../fonts/Roboto-Medium.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Roboto-Light;
    local: Roboto-Light;
    src:url("../fonts/Roboto-Light.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Roboto-Thin;
    local: Roboto-Thin;
    src:url("../fonts/Roboto-Thin.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Lato-Regular;
    local: Lato-Regular;
    src:url("../fonts/Lato-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Lato-Light;
    local: Lato-Light;
    src:url("../fonts/Lato-Light.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Lato-Hairline;
    local: Lato-Hairline;
    src:url("../fonts/Lato-Hairline.ttf");
    font-weight: normal;
    font-style: normal;
}

body {
	font-size: 80%;
	margin: 0em;
	padding: 0em;
}

a {
    text-decoration: none;
    outline: none !important;
    color: #ccc;
    text-decoration-color: #ccc;
}

p {
	text-align: justify;
	font-family: Lato-Regular;
	font-weight: 100;
	font-size: 1.0em;
}

h1 {
	font-family: Lato-Light; /* OpenSansCondensed-Light , Roboto-light , Roboto-Thin , PTSansNarrow*/
    /*color: #ddd;*/
    color: #090;
	font-size: 2.4em;
    text-align: center;
	margin: 10px 0;
    padding: 0;
    text-transform: uppercase;
    transition: all 200ms ease-out;
}

.comingsoon_text {
	font-family: Lato-Hairline; /* OpenSansCondensed-Light , Roboto-light , Roboto-Thin , PTSansNarrow*/
    /*color: #ddd;*/
    color: #fff;
	font-size: 5.0em;
    text-align: center;
    /*text-transform: uppercase;*/
    transition: all 200ms ease-out;
}

.quelle {
	font-size: 0.8em;
	text-align: left;
}

span.fett {
	font-family: Lato-Regular;
	font-weight: 700;
	font-size: 1.4em;
	/*color: #fff;*/
}

span.gruen {
	color: #090 !important;
}

span.weiss {
	color: #fff !important;
}

h2 {
	font-family: Lato-Light; /* OpenSansCondensed-Light , Roboto-light, Roboto-Thin, PTSansNarrow */
    color: #666;
	font-size: 1.6em;
    text-align: center;
	margin: 10px 0;
    padding: 0;
    text-transform: uppercase;
    transition: all 500ms ease-out;
}

h3 {
	font-family: Lato-Hairline; /* OpenSansCondensed-Light , Roboto-light, Roboto-Thin, PTSansNarrow */
    color: #aaa;
	font-size: 1.4em;
    text-align: center;
	margin: 10px 0;
    padding: 0;
    text-transform: uppercase;
    transition: all 500ms ease-out;
}

ul {
	font-family: Lato-Light; /* OpenSansCondensed-Light , Roboto-light*/
    color: #ccc;
	font-size: 1.4em;
	list-style-type: none;
}

li {
    cursor: pointer;
}

.article {
	font-family: Roboto-Light; /* OpenSansCondensed-Light , Roboto-light*/
    color: #009;
	font-size: 1.3em;
    text-align: justify;
}

footer span {
	font-family: OpenSansCondensed-Light; /* OpenSansCondensed-Light , Roboto-light*/
    color: #fff;
	font-size: 1.2em;
}

/*
	Head
*/

header {
	display: flex;
	position: fixed;
	flex-direction: row;
    justify-content: flex-start;
	top: 0;
	background-color: #333;
	width: 100%;
	height: 3.00em;
	z-index: 99;
	border-bottom: 1px solid #222;
    z-index: 15;
}

/*
	Menübutton START
*/
.menuebttn {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	width: 2.00em;
	margin-left: 10px;
	cursor:pointer;
}

.menuebttn span {
	position: absolute;
	height: 3px;
	width: 2.00em;
	background-color: #ddd; 
}

.menuebttn span:before,
.menuebttn span:after {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background-color: #ddd; 
	content:'';
}

.menuebttn span:before {
	top: -6px;
}

.menuebttn span:after {
	bottom: -6px;
}

.menuebttn-X span {
	transition: background 0.2s 0.3s;
}

.menuebttn-X.is-active span {
	background: none;
}

.menuebttn-X span:before,
.menuebttn-X span:after {
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0s;
}

.menuebttn-X span:before {
	transition-property: top,transform;	
}

.menuebttn-X span:after {
	transition-property: bottom, transform;
}

.menuebttn-X.is-active span:before {
	top: 0;
	transform: rotate(45deg);
}

.menuebttn-X.is-active span:after {
	bottom: 0;
	transform: rotate(-45deg);
}

.menuebttn-X.is-active span:before,
.menuebttn-X.is-active span:after {
	transition-delay: 0s, 0.3s;
}

/*
	Menübutton ENDE
*/

header nav {
	display: flex;
	flex-direction: column;
    justify-content: center;
     align-items:flex-end;
    width:100%;
    z-Index: 99;
}
 
header nav ul {
	display: flex; /*flex*/
	flex-direction: row;
    justify-content: flex-end;
    align-items: center;
	/*width: 3em;*/
    width: 100%;
	padding: 0; /* 0.2em*/
    margin: 0 ;
}

header nav ul li {
    padding: 0 1.5em 0 1.5em ;
    margin: 0;
}
/*
    Seitenmenü
*/

section.seitenmenue { 
    display: flex;
	position: fixed;
	flex-direction: row;
    justify-content: center;
    align-content: center;
	background-color: #333;
	z-index: 99;
	border-bottom: 1px solid #222;
    border-right: 1px solid #222;
    z-index: 15;
    opacity: 0.8;
    transition: all 500ms;
    border-radius: 0px 0px 8px 0px !important;
}

.menue_off {
    top: -500px;
}

.menue_on {
    top: 30px;
}

section.seitenmenue .inhaber {
    
}
          
section.seitenmenue .vorname {
    
}

section.seitenmenue .name {
    
}  

section.seitenmenue nav {
    display: flex;
	flex-direction: row;
    justify-content: center;
    align-items: stretch;
    width:100%;
    z-Index: 99;
    margin: 2.00em 2.00em;
}

section.seitenmenue nav ul {
    display: flex; /*flex*/
	flex-direction: column;
    justify-content: flex-start;
    /*align-items: stretch;*/
	/*width: 3em;*/
    width: 100%;
	padding: 0; /* 0.2em*/
    margin: 0 ;
}

section.seitenmenue nav ul li {
    padding: 1.0em 1.0em;
    transition: background ease-in-out 700ms;
}

section.seitenmenue nav ul li:hover {
    background-color: #666;
    transition: background 300ms;
}

/*
	body
*/
#main {
	display:flex;
    position: absolute;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    z-index: 9;
	margin: 0; /* Aussenabstand */
}

.parallax {
    background-attachment: fixed;/* fixed, scroll */
}

/*
    landing Page START
*/

#main .firstPage {
	width: 100%;
	height:100%;
    position: absolute;
    top: 0;
	background-color: #888;
	background-image: url( ../bilder/1.jpg?v=2);
    background-size: cover; /* center, cover */
    background-blend-mode: multiply;
    background-repeat: no-repeat;
    background-position: center -40px;
  	overflow: hidden;
}

#main .firstPage .comingsoon {
	position: absolute;
	display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: calc(100% - 22em);
    max-height: 50%;
    min-height: 3em;
    top: 30px;
    left: 0;
}

#main .firstPage .comingsoon comingsoon_text {

}

#main .firstPage .iceGlass {
	content: '';
	position: absolute;
	display: flex;
    flex-direction: row;
    justify-content: center;
	background: inherit;
	width: calc(100% + 30px);
	height:18em;
	max-height: 40%;
	/*top: calc(50% - 9em);*/
	bottom: 4em;
	left: -15px;
  	overflow: hidden;
    border: 1px solid #ccc;
}

#main .firstPage .iceGlass:before {
	content: '';
	position: absolute;
	background: inherit;
	width: calc(100% + 30px);
	height:20em;
	top: calc(50% - 10em);
	left: -15px;
    -webkit-filter: blur(10px);
  	-moz-filter: blur(10px);
  	-o-filter: blur(10px);
  	-ms-filter: blur(10px);
  	filter: blur(10px);
  	box-shadow: inset 0 0 0 3000px rgba(255,255,255,0.3);
  	overflow: hidden;
}


#main .firstPage .iceGlass .firma {
    display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
    z-index: 3;
}

#main .firstPage .iceGlass .firma h1 {}

#main .firstPage .iceGlass .firma h2 {}

/*
    landing Page ENDE
*/

#main .article1 {
    display: flex;
    position: absolute;
    top: 100%;
    width: 90%;
    /*height: 100%;*/
	padding: 5% 5%; /* Innenabstand */
	background-color: #ddd;
	z-index: 12;
}

#main .secondPage {
    display: flex;
	position: absolute;
    flex-direction: row;
	justify-content: center;
    top: 120%;
	width: 100%;
	height:100%;
	background-color: #fff;
	background-image: url(../bilder/2.jpg);
    background-size: cover; /* center, cover */
    background-blend-mode: multiply;
    background-position: center;
  	overflow: hidden;
}

#main .secondPage .highlight {
    display: flex;
	position: absolute;
	flex-direction: column;
	justify-content: center;
	width: 50%;
	height: 100%;
}

#main .secondPage .highlight h2 {
    background-color: #bbb;
    padding: 1.00em;
}

#main .article2 {
    display: flex;
    position: absolute;
    top: 200%;
    width: 90%;
    /*height: 100%;*/
	padding: 5% 5%; /* Innenabstand */
	background-color: #ddd;
	z-index: 12;
}

#main .thirdPage {
    display: flex;
	position: absolute;
    top: 220%;
	width: 100%;
	height: 100%;
	background-color: #666;
	background-image: url(../bilder/3.jpg);
    background-size: cover; /* center, cover */
    background-blend-mode: multiply;
    background-position: center;
  	overflow: hidden;   
}

#main .thirdPage .highlight {
    display: flex;
	position: absolute;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
}

#main .thirdPage .highlight h2 {
    
}

#main .article3 {
    display: flex;
    position: absolute;
    top: 300%;
    width: 90%;
    /*height: 100%;*/
	padding: 5% 5%; /* Innenabstand */
	background-color: #ddd;
	z-index: 12;
}

.impressum {
	display: none;
	position: absolute;
	width: 100% !important;
	height: 90% !important;
}

.datenschutz {
	display: none;
	position: absolute;
	width: 100% !important;
	height: 90% !important;
}

.ui-dialog {
	top: 20px !important;
	padding: 0 0 1.00em 0 !important;
    width: 96% !important;
	max-height: 80% !important;
    overflow: hidden !important;
}

.ui-dialog-content {
	overflow-x: hidden !important;
	padding: 0.5em 1.00em 0.5em 1.00em !important;
/*	
	padding: 0 30px 0 0 !important;
	width: 100% !important;
	margin: 0 30px 0 0;
*/	
}

.ui-dialog-titlebar-close { 
    width: 30px !important; 
    height: 24px !important; 
    top: 40% !important;

}

.ui-icon-closethick {
    /*transform: scale( 1.2 ) !important;*/
}



.content {
	overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden !important;
    height: 35em;
	width: calc(100% - 2.00em) !important;
	overflow-x: hidden !important;
	padding: 0 5em 5em 0 !important;
}

/*
	Foot
*/

footer {
	display: flex;
	position:absolute;
	flex-direction: row;
    justify-content: center;
    align-items: center;
	bottom: 0;
	min-height: 4.00em;
	width: 100%;
	background-color: #000;
	z-index: 14;
}

footer span {
	text-align: center;
}

footer .my-icons {
	color: #fff;
	margin: 0 5px 0 10px;
}

footer .infobttn_dev .infobttn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	width: 30px;
	height: 30px;
	background-color: #444;
	font-size: 1.60em;
	border-radius: 15px 15px 15px 15px;
	cursor: pointer;
    /*margin-left:50px;*/
}

footer .infobttn_dev .dsbttn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	width: 30px;
	height: 30px;
	background-color: #444;
	font-size: 1.60em;
	border-radius: 15px 15px 15px 15px;
	cursor: pointer;
    /*margin-left:50px;*/
}

footer .infobttn_dev {
    display: flex;
    position: absolute;
    right: 0px;
    bottom: 0px;
    height: 100%;
    width: 100px;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}

@media screen and ( max-width:600px )  {
	body {
		/*font-size: 60%;*/
	}
	h1 {
		font-family: Lato-Light; /* OpenSansCondensed-Light , Roboto-light , Roboto-Thin , PTSansNarrow*/
    	color: #070;
		font-size: 2.0em;
	}

	h2 {
		font-family: Lato-Light; /* OpenSansCondensed-Light , Roboto-light, Roboto-Thin, PTSansNarrow */
    	color: #444;
		font-size: 1.2em;
	}
	
	span.fett {
		font-size: 1.2em;
	}
	
	header {
		/*position: fixed;*/
		/*height: 9.00em;*/
	}
	
	.parallax {
        /*background-attachment: scroll;*//* fixed, scroll */
    }
    
	.menuebttn {
		display: flex;
        
	}

	header nav {
		display: none;
		flex-direction: row;
    	justify-content: flex-start;
    	 align-items: center;
    	width:100%;
    	height:100%;
	}
 
	header nav ul {
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		/*width: 3em;*/
		height:100%;
	}
	
	#main .firstPage .iceGlass .firma {
   		display: flex;
    	position: absolute;
		flex-direction: column;
		justify-content: center;
		width: 90%;
		height: 100%;
	}
    
    footer {
        justify-content: left;
    }
    
    .span_rechts {
        margin-right: 50px;
    }
}