/* =Reset
------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; 
	-webkit-text-size-adjust: 100%; 
	-ms-text-size-adjust: 100%; 
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { 
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, q:before {
    content: "\201C";
}
blockquote:after, q:after {
	content: "\201D";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active { 
	outline: 0;
}
a img {
	border: 0;
}
strong {
    font-weight: 700;
}


@font-face {
  font-family: 'Zinnig';
  src: url('../fonts/Zinnig-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Zinnig';
  src: url('../fonts/Zinnig-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

/* =Global
----------------------------------------------- */

html, body {
    
    font-family: sans-serif;

    font-smooth: always;
    text-rendering: optimizeLegibility;
    text-rendering: geometricPrecision;

    font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
}


* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

a:link, a:visited {
    color: #000;
}
a:hover, a:active {
    text-decoration: none;
}

#logo {
    position: fixed;
    top: 21px;
    left: 40px;
    max-width: 150px;
}
@media only screen and (max-width: 960px) {
    #impressum #logo {
        display: block;
        margin: 30px auto 0 auto;
        position: static;
        top: 0;
        left: 0;
    }
}
@media only screen and (max-width: 760px) {
    #home #logo {
        display: none;
    }
}

#hero {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    overflow: hidden;
}

nav {
    position: fixed;
    bottom: 20px;
    right: 40px;
    z-index: 1111;
}
@media only screen and (max-width: 760px) {
    nav {
        bottom: 20px;
        right: 20px;
    }
}
nav a:link, nav a:visited {
    color: #FFF;
    font-family: Zinnig;
    font-size: 18px;
}
nav a:hover {
    text-decoration: none;
}

#intro {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    width: 100%;
    overflow: hidden;
    transform: translate(-50%, -50%);
    z-index: 101;
}
#intro img {
    max-width: 123px;
}
@media only screen and (max-width: 760px) {
    #intro img {
        max-width: 110px;
    }
}
#intro h1 {
    color: #FFF;
    font-family: Zinnig;
    font-size: 52px;
    margin-top: 40px;
    text-transform: uppercase;
}
@media only screen and (max-width: 760px) {
    #intro h1 {
        font-size: 24px;
    }
}

#video {
    position: absolute;
    top: 50%; 
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%; 
    min-height: 100%; 
    width: auto; 
    height: auto;
    z-index: -1000; 
    overflow: hidden;
}



#content {
    font-size: 16px;
    line-height: 140%;
    margin: 150px auto;
    max-width: 700px;
}
@media only screen and (max-width: 960px) {
    #content {
        margin-top: 50px;
        padding: 0 20px;
    }
}

#content h1 {
    font-family: Zinnig;
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}
#content h2 {
    font-family: Zinnig;
    font-size: 30px;
    margin-bottom: 30px;
    margin-top: 60px;
    text-align: center;
}

#content p {
    margin-bottom: 10px;
}

#content p strong {
    display: block;
    margin-top: 30px;
    margin-bottom: 10px;
}