@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,700');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
h2 {
  text-transform: uppercase;
}
.clear {
  clear: both;
}
html body {
  font-family: 'Roboto', sans-serif;
  color: rgba(0,0,0,0.87);
}
html body.menu-active {
  overflow: hidden;
}
html body .system-message {
  z-index: 100;
  background-color: white;
  width: 400px;
  border: 2px solid rgba(0,0,0,0.6);
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  position: fixed;
}
html body .system-message .message-headline {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
html body .system-message .message-text {
  margin-bottom: 30px;
}
html body .system-message .message-close-button {
  margin: 0 auto;
  width: 50px;
  background-color: rgba(0,0,0,0.6);
  cursor: pointer;
  text-align: center;
  color: white;
  font-weight: bold;
  padding: 5px;
}
@media screen and (max-width: 439px) {
  html body .system-message {
    width: 90%;
  }
}
html body .page {
  background-color: rgba(0,0,0,0.05);
}
html body .page header .main-nav {
  position: relative;
  width: 100%;
  height: 12vh;
  min-height: 59px;
  background-color: rgba(255,255,255,0.6);
  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.2);
  z-index: 1;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
html body .page header .main-nav .menu {
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -o-transform: translate(-50%,0);
  padding: 21px;
  bottom: 0;
  width: 670px;
}
html body .page header .main-nav .menu li {
  float: left;
  padding: 0 15px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 2px;
}
html body .page header .main-nav .menu li a {
  color: rgba(0,0,0,0.87);
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-backface-visibility: hidden;
}
html body .page header .main-nav .menu li a:hover {
  opacity: 0.67;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
html body .page header .main-nav .mobile-menu-button {
  display: none;
}
@media screen and (max-width: 645px) {
  html body .page header .main-nav .menu {
    display: none;
  }
  html body .page header .main-nav .center-helper {
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    bottom: 10px;
  }
  html body .page header .main-nav .center-helper .mobile-menu-button {
    display: block;
    transition: all 0.1s ease;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    -o-transition: all 0.1s ease;
    cursor: pointer;
    color: rgba(0,0,0,0.6);
  }
  html body .page header .main-nav .center-helper .mobile-menu-button:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2 ease;
  }
}
html body .page header .main-nav.active {
  height: 100%;
  background-color: rgba(255,255,255,0.9) !important;
  overflow: auto;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}
html body .page header .main-nav.active .menu {
  display: block;
  bottom: auto;
  top: 18vh;
  padding: 0;
}
html body .page header .main-nav.active .menu li {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  font-size: 20px;
}
html body .page header .intro {
  position: relative;
}
html body .page header .intro .page-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
  text-align: center;
  background-color: rgba(255,255,255,0.6);
  padding: 30px;
  text-transform: uppercase;
}
html body .page header .intro .page-heading span {
  display: block;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-size: 25px;
}
html body .page header .intro .page-heading h1 {
  letter-spacing: 3px;
  font-size: 40px;
}
@media screen and (max-width: 645px) {
  html body .page header .intro .page-heading span {
    font-size: 5vw;
  }
  html body .page header .intro .page-heading h1 {
    font-size: 7vw;
  }
}
html body .page header .intro .center-helper-wrap {
  position: absolute;
  bottom: 18vh;
  width: 100%;
}
html body .page header .intro .center-helper-wrap .center-helper {
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -o-transform: translate(-50%,0);
}
html body .page header .intro .center-helper-wrap .center-helper .icon-wrap {
  background-color: rgba(255,255,255,0.6);
  padding: 0 15px;
  border-radius: 10px;
}
html body .page header .intro .center-helper-wrap .center-helper .icon-wrap .button-scroll-down {
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  cursor: pointer;
  color: rgba(0,0,0,0.6);
}
html body .page header .intro .center-helper-wrap .center-helper .icon-wrap .button-scroll-down:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2 ease;
}
html body .page .main .main-top {
  width: 100%;
  padding: 20px 0;
  background-color: white;
  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.2);
}
html body .page .main .main-top .top-content {
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto;
}
html body .page .main .main-top .top-content p {
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
}
html body .page .main .content {
  max-width: 646px;
  margin: 80px auto 40px auto;
}
html body .page .main .content h2 {
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 2px;
  margin-bottom: 25px;
}
html body .page .main .content h2 .smaller {
  text-transform: none;
}
html body .page .main .content h3 {
  margin-bottom: 15px;
}
html body .page .main .content p {
  font-size: 14px;
  margin-bottom: 20px;
}
html body .page .main .content p.bigger {
  font-size: 16px;
}
html body .page .main .content ul {
  margin-bottom: 20px;
}
html body .page .main .content ul li {
  font-size: 14px;
  margin-left: 18px;
}
html body .page .main .content .item-wrap {
  margin-bottom: 50px;
}
html body .page .main .content .item-wrap .item-price-book {
  font-size: 18px;
}
html body .page .main .content .item-wrap .item-price-book .item-book-link {
  text-transform: uppercase;
  color: #1d59d1;
  margin-left: 40px;
  font-weight: bold;
}
html body .page .main .content .more-places {
  padding-top: 50px;
  padding-bottom: 30px;
}
html body .page .main .content .block-map {
  margin-bottom: 80px;
}
html body .page .main .content .block-map #map {
  height: 250px;
  width: 50%;
  float: left;
}
html body .page .main .content .block-map .address {
  width: 50%;
  float: left;
  padding-left: 20px;
}
html body .page .main .content .block-map .address h3 {
  margin-bottom: 20px;
}
html body .page .main .content .block-map .address h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}
html body .page .main .content .block-map .address p {
  margin-bottom: 10px;
}
@media screen and (max-width: 649px) {
  html body .page .main .content .block-map #map {
    width: 100%;
    margin-bottom: 40px;
  }
  html body .page .main .content .block-map .address {
    width: 100%;
    padding-left: 0;
    text-align: center;
  }
}
html body .page .main .content form {
  margin-top: 30px;
}
html body .page .main .content form input,
html body .page .main .content form textarea {
  display: block;
  width: 50%;
  padding: 5px 10px;
  margin-bottom: 10px;
}
html body .page .main .content form input[type=submit] {
  width: auto;
  margin-top: 10px;
}
html body .page .main .content form textarea {
  height: 100px;
  font-family: 'Roboto', sans-serif;
}
html body .page .main .content form #accept-dsb {
  display: inline-block;
  width: auto;
  margin-right: 10px;
}
@media screen and (max-width: 649px) {
  html body .page .main .content form input,
  html body .page .main .content form textarea {
    width: 100%;
  }
}
html body .page .main .scroll-up {
  height: 80px;
  margin-bottom: 60px;
}
html body .page .main .scroll-up .center-helper {
  position: relative;
  width: 100%;
}
html body .page .main .scroll-up .center-helper .icon-wrap {
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -o-transform: translate(-50%,0);
}
html body .page .main .scroll-up .center-helper .icon-wrap .button-scroll-up {
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  cursor: pointer;
  color: rgba(0,0,0,0.6);
}
html body .page .main .scroll-up .center-helper .icon-wrap .button-scroll-up:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2 ease;
}
html body .page footer {
  background-color: rgba(0,0,0,0.6);
  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.2);
  overflow: hidden;
}
html body .page footer .center-helper {
  width: 100%;
  position: relative;
  margin-top: 50px;
}
html body .page footer .center-helper .contact-buttons {
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -o-transform: translate(-50%,0);
  width: 320px;
}
html body .page footer .center-helper .contact-buttons .fa-stack {
  margin: 0 20px;
  position: relative;
  color: white;
}
html body .page footer .center-helper .contact-buttons .fa-stack:after {
  position: absolute;
  left: 50%;
  transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0);
  -moz-transform: translate(-50%,0);
  -o-transform: translate(-50%,0);
  text-transform: uppercase;
  font-size: 14px;
  bottom: -45px;
}
html body .page footer .center-helper .contact-buttons .fa-stack.call:after {
  content: "Telefon";
}
html body .page footer .center-helper .contact-buttons .fa-stack.mail:after {
  content: "E-Mail";
  width: 45px;
}
html body .page footer .center-helper .contact-buttons .fa-stack.map:after {
  content: "Karte";
}
html body .page footer .center-helper .contact-buttons .fa-stack i {
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  cursor: pointer;
}
html body .page footer .center-helper .contact-buttons .fa-stack i:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2 ease;
}
html body .page footer .center-helper .address {
  text-align: center;
  padding-top: 120px;
  padding-bottom: 50px;
  font-size: 16px;
}
html body .page footer .center-helper .address p span {
  color: white;
  padding: 0 10px;
  border-right: 1px solid white;
  margin-bottom: 7px;
  display: inline-block;
}
html body .page footer .center-helper .address p span:last-child {
  border: none;
}
html body .page footer .center-helper .address p span a {
  color: white;
}
@media screen and (max-width: 645px) {
  html body .page footer .center-helper .address p span {
    display: block;
    border: none;
  }
}
html body .page footer .center-helper .address p.impressum {
  margin-top: 25px;
}
html body .page footer .center-helper .address p.impressum a {
  text-transform: uppercase;
  font-size: 14px;
}
html body .page.home .content .teasers {
  margin: 0 20px;
}
html body .page.home .content .teasers .teaser-link {
  display: block;
  width: 100%;
  background-color: white;
  margin-bottom: 15px;
  padding: 15px;
  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.05);
}
html body .page.home .content .teasers .teaser-link .teaser-image {
  position: relative;
  width: 100%;
  height: 210px;
  background-color: #ccc;
}
html body .page.home .content .teasers .teaser-link .teaser-image h2 {
  font-size: 20px;
  padding: 15px 25px;
  text-align: center;
  color: rgba(0,0,0,0.87);
  background-color: rgba(255,255,255,0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
}
html body .page.home .content .teasers .teaser-link p {
  font-size: 14px;
  color: rgba(0,0,0,0.87);
  padding: 20px 30px 10px 30px;
  text-align: center;
}
html body .page.lage .content {
  max-width: 1000px;
  padding: 0 20px;
}
html body .page.lage .content section {
  position: relative;
  background-color: white;
  padding: 10px;
  box-shadow: 0 1px 10px 0 rgba(0,0,0,0.05);
  margin-bottom: 50px;
}
html body .page.lage .content section .image {
  width: 50%;
}
html body .page.lage .content section .text {
  width: 50%;
}
html body .page.lage .content section .text p {
  margin-bottom: 15px;
}
html body .page.lage .content section:nth-child(2n-1) .image {
  float: left;
}
html body .page.lage .content section:nth-child(2n-1) .text {
  float: right;
  padding-left: 20px;
}
html body .page.lage .content section:nth-child(2n) .image {
  float: right;
}
html body .page.lage .content section:nth-child(2n) .text {
  float: left;
  padding-right: 20px;
}
@media screen and (max-width: 899px) {
  html body .page.lage .content {
    max-width: 800px;
  }
  html body .page.lage .content section {
    padding: 20px;
  }
  html body .page.lage .content section .image,
  html body .page.lage .content section .text {
    float: none !important;
    width: 100%;
    padding: 0 !important;
  }
  html body .page.lage .content section .image {
    margin-bottom: 25px;
    height: 270px !important;
  }
}
