
html, body, .container  {
  /* Location of the image */
  /*background-image: url(../images/background-photo.webp);*/
  /* Image is centered vertically and horizontally at all times */
  background-position: center center;
  /* Image doesn't repeat */
  background-repeat: no-repeat;
  /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
  background-attachment: fixed;
  /* This is what makes the background image rescale based on its container's size */
  background-size: cover;
  /* Pick a solid background color that will be displayed while the background image is loading */
  background-color:#464646;
  /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
  html, body, .container {
    /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
    /*background-image: url(../images/background_devices.webp);*/
    /*background-color:#464646;*/
  }
  .container {
    display: table;
    padding-top: 60px;
    width: 100%;
  }

	}
/* Presentational style rules only
 * Not required
 */

html, body, .content {
  height: 100%;
}

/* Reset */
html, body, h1, p, a, div, section {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
}

/* Basic */
body {
  font: 18px/23px "Cantarell", sans-serif;
  color: #ffffff;
}

h1 {
  color: #efecec;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 50px;
  font-weight: 400;
  margin-top: 20px;
}

a {
  color: #ffffff;
}

p {
  margin: 0 0 15px 0;
}

strong {
  font-weight: 700;
}

blockquote {
  display: block;
  max-width: 480px;
  margin: 15px auto;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #e1e1e1;
  font-family: "Kotta One", serif;
  font-size: 22px;
  line-height: 28px;
}

blockquote cite {
  display: block;
  font: 18px/23px "Cantarell", sans-serif;
  font-size: 16px;
  margin-top: 16px;
  color: #cccccc;
  text-transform: uppercase;
}

/* Layout */

.navbar, footer {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  height: 40px;
  z-index: 9999;
  position: fixed;
}

.inner {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.inner .contact {
  float: left;
}
.inner .lang {
  float: right;
}

.navbar a, footer a {
  display: inline-block;
  border: 1px solid #fff;
  font-size: 14px;
  line-height: 24px;
  border-radius: 3px;
  padding: 2px 15px;
  text-decoration: none;
  margin-top: 5px;
  cursor: pointer;
}

.container {
  display: table;
  padding-top: 140px;
  width: 100%;
}

.content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* Special */
.sub-title {
  margin: 50px auto;
  font-size: 18px;
  line-height: 35px;
}

.button {
  display: inline-block;
  padding: 6px 10px;
  color: #cafaea;
  border: 1px solid #cafaea;
  border-radius: 3px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
}

#more-content {
  display: none;
}

/* Media Queries */
@media only screen and (max-width: 340px) {

  .container {
    position: relative;
    display: block;
    float: left;
    vertical-align: baseline;
    margin: 0 auto;
    padding: 80px 0 0 0;
  }

  #more-content {
    float: left;
    margin-right: 10px;

  }

  body h1 {
    font-size: 18px;
    line-height: 23px;
  }

  .content, blockquote {
    display: inline;
    margin: 0 auto;
    padding-top: 80px;
    vertical-align: baseline;
  }

  blockquote {
    width: 150px;
    margin: 15px auto;
    font-size: 16px;
    line-height: 21px;
    background-color: transparent;
  }

  blockquote cite {
    font-size: 14px;
    line-height: 19px;
  }

  .sub-title {
    font-size: 14px;
    line-height: 21px;
  }

  .button, p {
    max-width: 150px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 20px;
  }

  html, body, .container {
    height: auto;
  }
}
/*popup*/

.contact-form, .contact-success, .imprint {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 380px;
  height: 400px;
  padding: 80px,40px;
  background: rgba(0,0,0,0.88);
  text-align: center;
  border-radius: 25px;
  display: none;
  overflow-y: scroll;
}
.contact-form h2 {
  margin: 0;
  padding: 70px 0 20px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.contact-success, .imprint h2 {
  margin: 0;
  padding: 50px 0 20px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.contact-form input {
  width: 70%;
  margin-bottom: 20px;
}
.contact-form input[type=email],
.contact-form input[type=text] {
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  height: 35px;
  color: #fff;
  font-size: 15px;
}
textarea {
  background:transparent;
  outline:none;
  border:none;
  width:100%;
  font-size:20px;
  color:#fff;
  border-bottom: 1px solid #fff;
  width: 70%;
  height: 100px;
}
.submit {
  display: inline-block;
  border: 1px solid #fff;
  font-size: 14px;
  line-height: 24px;
  border-radius: 3px;
  padding: 2px 15px;
  text-decoration: none;
  margin-top: 5px;
}
#footer {
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  height: 40px;
  z-index: 9999;
  position: fixed;
}
.imprint-show {
  cursor: pointer;
}
.vi-horizontal {
  text-align: left;
  padding: 30px;
}
.cover {position: fixed; height: 100%; width: 100%; top:0; left: 0; background: #000; z-index:9999;}
