@charset "UTF-8";
/* Body */
body {
    font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", "serif";
	/*background-image: linear-gradient(to top, gray, #000000, #000000, #000000);*/
    background-color: #000000;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-style: normal;
    font-weight: 200;
    -webkit-animation: fadein 6s;
    animation: fadein 6s;
    color: #FFFFFF;
	-moz-user-select: none;
	-khtml-user-select: none;
	user-select: none;
}
/* Einblendung */
@-webkit-keyframes fadein {
	from {
		opacity: 0; }
		to {
			opacity: 1; } }
@keyframes fadein {
	from {
		opacity: 0; }
		to {
			opacity: 1; } }
/* Einblendung */
/* Container */
.container {
	text-align: center;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2em;
    /*height: 1000px;*/
    background-color: #000000;
    color: #FFFFFF;
}
/* Navigation */
.hero_header {
	color: #000000;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	letter-spacing: 4px;
}
/* Hero Section */
.hero {
	/*background-color: #fff;*/
	padding-top: 0em;
	padding-bottom: 2em;
}


 /* Logo SVG */
#svglogo {
	/*background-color:#6FF;*/
	padding-left: 1em;
	width: 75%;
	height: auto;
	position: relative;
	/*padding-top: -8em;*/
	margin: auto;
	margin-top: -6em;
	display: block;
	fill: #aa7f3d;
	fill: url("#MyGradient");
	stroke: #fff;
	stroke-miterlimit: 5;
}
/*@media (max-width: 1280px) {
	#svglogo {
		width: 70%;
        height: auto; } 
}
@media (max-width: 640px) {
	#svglogo {
		width: 90%;
        height: auto; } 
}*/
.Animate-Draw {
	fill-opacity: 0;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	animation-iteration: 1;
	animation-name: DrawLine, FadeStroke, FillIn;
	animation-duration: 4s, 1s, 1s;
	animation-delay: 0s, 3.5s, 3.5s;
}
#Draw-Mark {
	stroke-dashArray: 1100;
	stroke-dashoffset: 1100; 
}
.object {
	stroke:white;
	stroke-width:2;
	stroke-linejoin:round;
	stroke-dasharray:  2479.879638671875;
	stroke-dashoffset:  2479.879638671875;
	fill:none;
	animation: dash 16s linear forwards;
}
@keyframes dash {
	to {
		stroke-dashoffset: 0;}
}
@keyframes DrawLine {
	to { stroke-dashOffset: 0; }
}
@keyframes FadeStroke {
	to { stroke-opacity: 0; }
}
@keyframes FillIn {
	from { fill-opacity: 0; }
	to { fill-opacity: 1; }
}
/* Logo SVG */

/* Buttons */

.button {
	width: 200px;
	margin-top: -2em;
	margin-right: auto;
	margin-bottom: 6em;
	margin-left: auto;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 2px;
	border: 3px solid #FFFFFF;
	color: #FFFFFF;
	transition: all 0.3s linear;
}
.button:hover {
    background-color: #FEFEFE;
    color: #404040;
    cursor: pointer;
}
.button_close {
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	width: 3em;
	margin-top: 1em;
	margin-right: 0em;
	margin-bottom: 0em;
	margin-left: auto;
	padding-top: 0em;
	padding-right: 0.5em;
	padding-bottom: 0em;
	padding-left: 0.5em;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 0px;
	border: 3px solid #FFFFFF;
	color: #FFFFFF;
	transition: all 0.3s linear;
}
.button_close:hover {
    background-color: #FEFEFE;
    color: #404040;
    cursor: pointer;
}
.links {
    color: inherit;
	text-decoration-line: none;
}
.links:hover {
    color: #000000;
    cursor: pointer;
}
.copyright {
	font-size: 0.7em;
	text-align: center;
	/*margin-top: 3em;*/
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #717070;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
}

/* Mobile */
@media (max-width: 320px) {

.container header nav {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	float: none;
	display: none;
}
}
/* Small Tablets */
@media (min-width: 321px)and (max-width: 767px) {

.container header nav {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	float: none;
	overflow: auto;
	display: inline-block;
	background: #52bad5;
}
}