@import url(http://fonts.googleapis.com/css?family=Montserrat:100,200,400,500,700);

:root {
  --light_grey: #D8D8D8;
  --dark_grey: #979797;
}

html {
  box-sizing: border-box;
}
body {
  color: var(--dark_grey);
  margin: 0 auto;

  font-family: 'Montserrat', sans-serif;
}

a {
  text-decoration: none;
  color: black;
}
a:hover {
  color: var(--dark_grey);
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 52px;
  color: black;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: black;
  text-align: center;
}

h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--dark_grey);
}

h4 {
  text-decoration: underline;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--dark_grey);
}
#content {
  padding: 0px;
}

#content > div {
  height: 101vh;
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
}

#welcome {
  background-color: white;
}

#about {
  background-color: var(--light_grey);
}

#get {
  background-color: white;
}

#imprint {
  background-color: var(--light_grey);
}
.container_header {
  min-width: 760px;
  width: 70vw;
  margin: 0 auto;
  display: block;
}

.container {
  min-width: 760px;
  width: 70vw;
  margin: 0 auto;
  display: table;
}

#header {
  padding-top: 100px;
  height: 101vh;
  margin: 0 auto;
  text-align: center;
}
#header-right {
  display: block;
  float: left;
  margin: 0;
  width: calc(70vw - 80px);
  min-width: 680px;
}

#header-sticky {
  overflow: visible;
  float: left;
  padding-top: 2px;
  z-index: 4;
  width: calc(70vw - 80px);
  min-width: 680px;
}
#header-text {
  display: inline;
  float: left;
  padding-left: 6px;
  margin-top: -6px;
  margin-bottom: 0;
}
#header-nav {
  display: inline;
  float: right;
  margin-top: -6px;
}
#header-nav li {
  float: left;
  display: inline;
  text-align: center;
  padding-top: 0px;
  padding-left: 16px;
}

#start-text{
  text-align: center;
  display: block;
  padding-top: 200px;
  line-height: 0.4;
  margin-bottom: 100px;
}

#icon {
  float: left;
  width: 80px;
}

#logo {
  display: inline;
  float: left;
  left: 0;
  padding-top: 20px;
  padding-left: 6px;
  height: 40px;
}
#logo_mobile {
  display: none;
  float: left;
  left: 0;
  padding-top: 20px;
  padding-left: 6px;
  height: 40px;
}

#statusbar {
  overflow: visible;
  float: left;
  min-width: 760px;
  width: 70vw;
  height: 26px;
  margin-top: -9px;
  padding-top: 1px;
  z-index: 3;
}
#icon_small {
  float: right;
  width: 20px;
  margin-top: -7px;
  margin-right: 250px;
  z-index: 2;
}

#line1  {
  display: block;
  position: relative;
  margin-left: 0px;
  margin-top: 0px;
  width:  100%;
  min-width: 672px;
  border: none;
  border-bottom: 2px solid black;
}
#line2  {
  display: block;
  position: relative;
  margin-left: 164px;
  margin-top: 22px;
  margin-bottom: 0px;
  width:  51vw;
  min-width: 540px;
  border: none;
  border-bottom: 2px solid black;
}
#about_graphic {
  height: 50vh;
  display: block;
  margin: auto;
  position: relative;
  overflow: hidden;
}

#about_text {
  text-align: center;
  color: #555;
}

#divi {
  height: 101vh;
  display: inline;
  float: left;
  padding: 80px 0;
  overflow: hidden;
}
.v-divider {
  height: 80%;
  width: 2px;
  border-right: 2px solid black;
  display: inline;
  float: left;
}
.imprint_text {
  font-weight: 100;
  display: inline-block;
  padding-top: 90px;
}
.imprint_text strong {
  font-weight: 400;
}
.imprint_text a {
  color: var(--dark_grey);
  text-decoration: underline;
}

#left-column {
  float: left;
  width: 43%;
}
#left-column p {
  font-size: 16px;
  padding: 3px;
  margin: auto;
}
#right-column{
  float: right;
  width: 53%;
  overflow: inherit;
}
#right-column p {
  font-size: 16px;
  padding: 3px;
  margin: auto;
}

.scrollable {
  width: 100%;
  height: 65vh;
  overflow: scroll;
  margin: auto;
}

#footer {
  position:fixed;
  position: -webkit-fixed;
  left:11%;
  bottom: 5px;
  height: 30px;
  width:100%;
  background-color: clear;
}

#footer-nav {
  display: block;
  float: left;
  margin-top: -6px;
}
#footer-nav li {
  float: left;
  display: inline;
  text-align: center;
  padding-top: 0px;
  padding-left: 26px;
}

.footer-icon {
  width: 30px;
}


/* alignment Classes */
.centered_V {
  height: 101vh;
  display: table-cell;
  vertical-align: middle;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 16px;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + #content {
  padding-top: 60px;
}
