@charset "utf-8";
/* CSS Document */
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.bg picture, .bg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  width: auto; /* Fallback für alte Browser */
  height: auto; /* Fallback für alte Browser */
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wrapper {
  max-width: 900px;
  margin: auto;
}
.wrapper .container {
  width: 100%;
  height: auto;
  float: left;
  padding-top: 100px;
}
.top {
  width: 100%;
  height: auto;
  float: left;
  position: relative;
  z-index: 2;
}
.logo {
  width: auto;
  height: auto;
  float: left;
  display: block;
  margin-left: 20px;
}
.content-wrap {
  width: 100%;
  height: auto;
  float: left;
  padding: 20px;
  padding-bottom: 60px;
}
.content {
  width: 480px;
  background-color: rgba(255, 255, 255, 0.85);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  float: right;
  margin-top: 40px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.footer {
  width: auto;
  height: auto;
  float: left;
  position: fixed;
  bottom: 0px;
  right: 50%;
  margin-right: -430px;
  z-index: 1;
  background-color: rgba(167, 1, 49, 1);
}
@media only screen and (min-width: 718px) {
  .footer {
    background-color: rgba(167, 1, 49, 0.85);
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
}
@media only screen and (max-width: 900px) {
  .footer {
    right: 20px;
    margin-right: 0;
  }
}
.footer ul {
  width: 100%;
  height: auto;
  float: left;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0px 16px;
}
.footer ul li {
  width: auto;
  height: auto;
  float: left;
  display: block;
  padding: 5px 10px;
}
.footer ul li a {
  width: auto;
  height: auto;
  float: left;
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 0.8em;
  text-decoration: none;
}
@media only screen and (max-width: 880px) {
  .wrapper {
    width: 100%;
    height: 100%;
    float: left;
    overflow-x: scroll;
  }
  html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
  .top {
    width: 100%;
    height: auto;
    float: left;
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    padding: 10px 20px;
    background-color: #efefef;
    background-color: rgba(255, 255, 255, 0.85);
  }
  .navi-toggle {
    display: block;
  }
  .logo {
    margin: 0;
  }
}
@media only screen and (max-width: 718px) {
  .footer {
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    margin-top: 30px;
    z-index: 1;
    bottom: inherit;
    right: inherit;
    left: inherit;
  }
  .footer ul {
    padding: 0 10px;
  }
  .footer ul li {
    padding: 8px 10px;
  }
  .content {
    background-color: rgba(255, 255, 255, 0.72);
  }
}
@media only screen and (max-width: 548px) {
  .content {
    width: 100%;
  }
}

@media only screen and (max-width: 396px) {
    
    .footer ul li {
        width: 100%;
        height: auto;
        float: left;
        display: block;
        margin: 0;
    }  
    .footer {
        padding-top: 30px;
        padding-bottom: 40px;
    }
}



