/* CSS Document */
*,
*:after,
*::before {
	margin: 0;
	padding: 0;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {  
	height: 100%;
	min-height: 100%;
	margin: 0px;
	padding: 0px;
	/* overflow: hidden; */
}
/* ------- 
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,300,400,500,600,700,900');
*/
			
body {  
	font-family: "Century Gothic", "Trebuchet MS", Helvetica, Arial, Verdana, sans-serif;
	font-size: 1em;
	font-weight: normal;
	color: #333333;
	color: #efefef;
	text-decoration: none;
	background-color: #3e5218;
	background-color: #CCC; /* Color */
	overflow: auto;	
	background-image: url("../images/overlay.png"), linear-gradient(45deg, #ccc 15%, #333 85%);
	
	/* by google fonts 
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1em;
	*/
	
	/* */
	font-family: 'Inter UI', sans-serif;
	font-size: 1.1em;
	letter-spacing: .03em;

}

img{-ms-interpolation-mode:bicubic;}


a {text-decoration: none; white-space: nowrap; font-weight: normal; color: #ffc400;}
a:hover {color: #333; color: #FFF;}

h1, h2, h3 ,h4, p { 
	margin: 10px auto; 
	/* text-shadow: 0 1px 0 rgba(51,51,51, 0.45); */
}
h1, h2, h3 ,h4 {  }
p { line-height: 1.4em;}
p strong, p b {  }
span.wrap { white-space: nowrap; }

/* /// icons google Material /// */
.material-icons { vertical-align: middle; }

.material-icons.md-10 { font-size: 10px; }
.material-icons.md-12 { font-size: 12px; }
.material-icons.md-14 { font-size: 14px; }
.material-icons.md-16 { font-size: 16px; }
.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

/* // CSS --- Full BG Image /////////// */

.full_bg {
	position: absolute;
	position: fixed;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
	display: block;
	min-width: 100%;
	height: 100%;
	max-height: 100%;
	overflow: hidden;

	background: no-repeat center center scroll; 
	background-color: transparent;	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	
	/* display: none; */
	z-index: -1;

}

.full_bg.fit {
	background: no-repeat center center scroll; 
	background-color: #FFF;	
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
}

.full_bg.svg {
	background: no-repeat center center scroll; 
	background-color: #FFF;
    background-position:50% 50%;
	background-position:50% 50%9 !important;	
}

/* // CSS --- Full BG Image // als img tag // Cover /////////// */

div.full-cover {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	max-height: 100%;
	overflow: hidden; 
	z-index: 1;
}
div.full-cover img {
	position: relative;
	width: 100%;
	height: 100%; 
	object-fit: cover;
	object-position: center center;
	max-height: 100%;
	min-height: 100%;
	margin: 0;
	z-index: 1;
}
div.full-cover .full-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;	
	background-color: rgba(255,255,255,.5);
	background-color: rgba(0,0,0,.5);
	z-index: 2;
	/* */ display: none;
}



/* //////// Content /////////////////////////// */

.box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	min-height: 100%;
	padding-top: 20px;
	padding-bottom: 30px;  /* wg. footer */
}

.box-item {

}

.box-item--top {
	align-self: flex-start;
}

.box-item--bottom {
	align-self: flex-end;
}

.box-item.Content {
	z-index: 2;
	text-align: center;
	width: 100%;
	max-width: 680px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	box-shadow: 5px 5px 10px #333;	
	
	background: rgba(93,93,93, 0.8); /* COLOR to Do */
	background: rgba(0,0,153, 0.4);  /* COLOR to Do Firma  blue #000099 */

}

@media (max-width: 767px) {
	.box-item.Content {
		box-shadow: none;
	}
}

#footer {
	display: block;
	z-index: 2;
	position: absolute;
	position: fixed;
	top: auto;
	right: 0px;
	bottom: 0px;
	left: 0px;
	padding: 0px;
	text-align: center;
	clear: both;
	
/* display: none; */
	background: rgba(93,93,93, 0.9); /* COLOR to Do */
	background: rgba(0,0,153, 0.9);  /* COLOR to Do Firma  blue #000099 */
}

#footer p {
	margin: 0 auto;
	padding: 2px 2%;
	font-size: 0.9rem;	
}

#footer span {
	margin: 0 2px;
}

#footer span.left {
	float: left;
}

#footer span.right {
	float: right;
}


/* ------------------------------- */

/* piwik_frame */
.iframe_wrap.piwik_frame {
	background: transparent;
	border: 1px solid rgba(255,255,255, .4);
	min-height: 140px;
}
.iframe_wrap.piwik_frame iframe{
	background: transparent;
	border: 0px solid #efefef;
	background-color: rgba(255,255,255, .2); 
	width: 100%;
}

/* ------------------------------- */

.smalltext{font-size: 0.85em; color: #666;}
.max-img {max-width: 100%; height: auto; width: 300px;}


/* ////////////// IMG faerben /////////////////// */

div.colorize.black img, img.colorize.black {
-webkit-filter: invert(30%) grayscale(100%) brightness(70%) contrast(4);
      filter: invert(30%) grayscale(100%) brightness(70%) contrast(4);
}

div.colorize.grey img, img.colorize.grey {
-webkit-filter: grayscale(100%) brightness(110%) contrast(0.9);
      filter: grayscale(100%) brightness(110%) contrast(0.9);
}

div.colorize.red img, img.colorize.red {
-webkit-filter: invert(40%) grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(400%) contrast(2);
      filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(-50deg) saturate(600%) contrast(0.8);
}

div.colorize.blue img, img.colorize.blue {
-webkit-filter: grayscale(100%) brightness(30%) sepia(100%) hue-rotate(-180deg) saturate(700%) contrast(0.8);
      filter: grayscale(100%) brightness(30%) sepia(100%) hue-rotate(-180deg) saturate(700%) contrast(0.8);
}

div.colorize.green img, img.colorize.green {
-webkit-filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(50deg) saturate(1000%) contrast(0.8);
      filter: grayscale(100%) brightness(40%) sepia(100%) hue-rotate(50deg) saturate(1000%) contrast(0.8);
}

div.colorize.yellow img, img.colorize.yellow {
-webkit-filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
      filter: grayscale(100%) brightness(120%) sepia(90%) hue-rotate(5deg) saturate(500%) contrast(0.7);
}

/*
div.colorize img:hover, img.colorize:hover {
-webkit-filter: none!important;
      filter:none!important;
}
*/

/* //////////// Magnific PopUp - inline ///////////// */

.mfp-bg {
	position: fixed; /* Problem iPad */
	-webkit-overflow-scrolling:touch;	
	transform: translate3d(0,0,0);
}
.white-popup {
	position: relative;
	color: #333;
	background: #dfdfdf;
	background: #000099;
	color: #efefef;
	padding: 20px;
	width: auto;
	max-width: 1024px;
	margin: 20px auto;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;  
	font-size: 0.9rem;
	
	word-wrap: break-word;
/* Trennzeichen bei langem Wort <article lang="de"> */
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.white-popup a, .mfp-close-btn-in .mfp-close {color: #000; color: #FFF;}
.white-popup a:hover {color: #333;}

.white-popup ul {
	margin: 10px 20px;
}

.white-popup {

}