/* 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: 1.0em;
	font-weight: normal;
	color: #333333;
	color: #efefef;
	text-decoration: none;
	background-color: #3e5218;
	background-color: #eb6a39; /* orange */
	background-color: #555;
	overflow: auto;	
	background-image: url("../images/overlay.png"), linear-gradient(45deg, #ccc 15%, #333 85%);
	
	font-family: 'Montserrat', sans-serif;
	font-size: 1.1em;

}

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


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

/* HR styling */
hr { margin: 8px 6px; }
hr.gradient-a { border: 0; height: 2px; background-image: linear-gradient(to right, rgba(255,255,255, 0), rgba(255,255,255, 0.75), rgba(255,255,255, 0)); }
hr.gradient-b { border: 0; height: 1px; background: #333; background-image: linear-gradient(to right, #ccc, #333, #ccc); }

hr.doubble-a { overflow: visible; /* For IE */ padding: 0; border: none; border-top: medium double #dfdfdf; color: #efefef; text-align: center; } 



h1, h2, h3 ,h4, p { 
	margin: 10px auto; 
	text-shadow: 0 1px 0 rgba(51,51,51, 0.45); 
}
h1, h2, h3 ,h4 { font-weight: 700; }
p { font-weight: 300; line-height: 1.4em;}
p strong, p b { font-weight: 600; }

/* /// 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;	
}

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

.box {
	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 {
	text-align: center;
	width: 100%;
	max-width: 680px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	/**/ box-shadow: 5px 5px 10px rgba(0,0,0,.3); 
	background: transparent;
	background: rgba(0,0,0,.3); /* COLOR to Do */
	/* background: rgba(93,93,93, 0.5);  COLOR to Do */
	/* background: rgba(255,0,102, 0.4);  COLOR to Do Firma  */
	/* background: rgba(102,102,255, 0.9);  COLOR blue */

}

@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 */
}

#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;
}

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

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

/* ////////////// FULL Cover Image /////////////////// */

div.full-cover {
	position: absolute;
	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(0,0,0,.5);	
	z-index: 2;
	/**/ display: none; 
}


/* ////////////// 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;
}
*/
