@charset "UTF-8";
@font-face {
  font-family: 'rounded_mplus_1c_boldbold';
  src: url('mplusrounded1c-bold-webfont.woff2') format('woff2'), url('mplusrounded1c-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'rounded_mplus_1c_lightregular';
  src: url('mplusrounded1c-light-webfont.woff2') format('woff2'), url('mplusrounded1c-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'rounded_mplus_1cregular';
  src: url('mplusrounded1c-regular-webfont.woff2') format('woff2'), url('mplusrounded1c-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
/* --------------------------------------Allgemein-------------------------------------- */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 100%;
}
body {
  overflow-x: hidden;
  font-size: 100%;
  font-family: 'rounded_mplus_1cregular';
}
* {
  outline: 0;
  box-sizing: border-box;
}
.clearfix {
  clear: both;
}
hr {
  width: 100%;
  height: 1px;
  background-color: #8E0906;
  margin: 0 auto;
  margin: 40px 0 40px 0;
  border: none;
}
noscript span {
  width: 100%;
  height: auto;
  padding: 15px;
  color: #FFF;
  background-color: #000;
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99999999999999999999;
  text-align: center;
  line-height: 145%;
}
noscript span a {
  color: #FFF !important;
  font-weight: bold !important;
  text-decoration: underline !important;
  text-transform: none;
}
/*Horizontal und vertikal ausrichten*/
.parent {
  position: relative;
}
.child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/*Schatten-Vorlagen*/
.schatten-unten-stark {
  box-shadow: 0 10px 10px #000;
}
.schatten-unten-schwach {
  box-shadow: 0 10px 10px -10px #000;
}
/* --------------------------------------Text-------------------------------------- */
p {
  margin: 0;
  padding: 0;
  line-height: 165%;
}
p b {
  color: #900A0A;
}
h1 {
  color: #000;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  line-height: 130%;
}
h2 {
  font-size: 2em;
  font-weight: normal;
  color: #900A0A;
}
h3 {
  font-size: 1.5em;
  font-weight: normal;
  color: #464646;
}
a:link, a:visited, a:active {
  font-weight: bold;
  text-decoration: none;
  color: #000;
}
a:focus, a:hover {
  text-decoration: underline;
}
li {
  line-height: 165%;
  list-style-type: square;
}
/* --------------------------------------Preloader-------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99;
}
#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../images/preloader.gif);
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
}
/* --------------------------------------Schaltflächen-------------------------------------- */
.bt {
  padding: 12px 18px 12px 18px;
  background-color: #000;
  color: #FFF;
  text-align: center;
  display: inline-block;
  width: auto;
  font-size: 1em;
  cursor: pointer;
  line-height: normal;
  border: none;
}
.bt:hover {
  background-color: #7F7F7F;
}
/* -------------------------------------- Formulare-------------------------------------- */
/*Keine optische Verlinkung der Telefonnummer in IOS*/
a[href^=tel] {
  text-decoration: inherit;
  color: inherit;
}
/*Keine abgerundeten Formularfelder in IOS*/
.contact {
  width: 100%;
  margin: 0 auto;
}
.flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
input, select {
  font-family: 'rounded_mplus_1cregular';
  font-size: 1em;
  color: #000;
  -webkit-appearance: none;
  border-radius: 0;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #900A0A;
  padding: 20px;
  margin-bottom: 5px;
  width: 100%;
  max-width: 49.8%;
  background-color: #FFF;
  -webkit-transition: all .03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  vertical-align: top;
}
textarea {
  font-family: 'rounded_mplus_1cregular';
  font-size: 1em;
  color: #000;
  -webkit-appearance: none;
  border-radius: 0;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #900A0A;
  padding: 20px;
  margin-bottom: 5px;
  width: 100%;
  background-color: #FFF;
  -webkit-transition: all .03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  vertical-align: top;
}
input:focus, select:focus, textarea:focus {
  background-color: #ECECEC;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  font-family: 'rounded_mplus_1cregular';
  color: #494949;
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  font-family: 'rounded_mplus_1cregular';
  color: #494949;
}
::-ms-input-placeholder { /* Microsoft Edge */
  font-family: 'rounded_mplus_1cregular';
  color: #494949;
}
.button {
  width: auto;
  padding: 15px;
  color: #FFF;
  text-align: center;
  background-color: #900A0A;
  cursor: pointer;
  -webkit-transition: all .03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button:hover {
  background-color: #B42525;
}
/*Formular Versandnachricht*/
.mailermsg {
  display: none;
  padding: 30px;
  font-size: 1em;
  color: #FFF;
  z-index: 8;
  text-align: center;
  margin: 20px 0 20px 0;
  background-color: #8E0906;
}
.mailermsg h2 {
  font-size: 1.6em;
  color: #FFF;
  padding: 0;
  margin: 0 0 10px 0;
}
.mailermsg img {
  width: 40px;
  height: 40px;
}
/*Formular Checkbox*/
.checkbox-container {
  display: block;
  width: auto;
  position: relative;
  padding: 4px 0 0 35px !important;
  cursor: pointer;
  font-family: 'rounded_mplus_1cregular';
  font-size: 1em;
  color: #900A0A;
  line-height: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Standard Checkbox verstecken*/
.checkbox-container input {
  position: absolute;
  opacity: 0 !important;
  cursor: pointer;
  width: 1px !important;
  height: 1px !important;
}
/* Eigene Checkbox */
.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #900A0A;
}
.checkmarkerror {
  border: 1px solid #F00;
}
/* Checkbox Mouseover */
.checkbox-container:hover input ~ .checkmark {
  background-color: #CCC;
}
/* Checkbox angehakt */
.checkbox-container input:checked ~ .checkmark {
  background-color: #900A0A;
}
/* Checkmark */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Checkmark aktiv */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
/* Checkmark Style*/
.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* --------------------------------------Formular Validierung-------------------------------------- */
/*Bildliche Validierung*/
input.error, textarea.error, select.error {
  background-image: url(../images/icon_invalid.svg);
  background-position: 99% center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border: 1px solid #FF0000;
}
input.error:focus, textarea.error:focus, select.error:focus {
  background-color: #EEEEEE !important;
}
input.valid, textarea.valid, select.valid {
  background-image: url(../images/icon_valid.svg);
  background-position: 99% center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border: 1px solid #900A0A;
}
label.error {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* --------------------------------------Cookie Disclaimer-------------------------------------- */
section {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.section-padding {
  padding-left: 10px;
  padding-right: 10px;
}
.textcolumn {
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
  -moz-column-count: 2; /* Firefox */
  column-count: 2;
}
.section-dist {
  padding-top: 100px;
}
.cookie-disclaimer {
  width: 100%;
  font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  font-size: .9em;
  color: #FFF !important;
  background-color: #333333;
  padding: 20px;
  position: fixed;
  bottom: 0px;
  z-index: 999999999999999;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, transform 0.5s;
  transition: opacity 0.3s, transform 0.5s, -webkit-transform 0.5s;
}
.cookie-disclaimer.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.cookie-disclaimer :first-child {
  margin-top: 0;
}
.cookie-disclaimer :last-child {
  margin-bottom: 0;
}
.cookie-disclaimer span {
  padding-right: 20px;
  line-height: 145%;
}
.cookie-disclaimer a:link, .cookie-disclaimer a:visited, .cookie-disclaimer a:active {
  text-decoration: underline !important;
  color: #FFF !important;
}
.cookie-disclaimer a:focus, .cookie-disclaimer a:hover {
  color: #E0E0E0 !important;
}
.cookie-button {
  width: auto;
  height: auto;
  padding: 12px;
  font-weight: bold;
  font-size: 1em;
  background-color: #8E0906;
  color: #FFF;
  position: relative;
  cursor: pointer;
  border: none;
  vertical-align: middle;
}
.cookie-button:hover {
  background: #bfd255;
}
/* --------------------------------------Introslider-------------------------------------- */
.mainslider {
  position: relative;
}
.introslider {
  width: 100%;
  height: 100% !important;
  display: block;
  z-index: -1;
  overflow: hidden !important;
}
.introslide {
  width: 100% !important;
  height: 100vh !important;
  background-size: cover !important;
}
#introslide01 {
  background-image: url(../images/introslide01.jpg)
}
#introslide01 {
  background-image: url(../images/introslide02.jpg)
}
.slidercaption {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -10%);
  width: 100%;
  max-width: 80%;
  z-index: 13;
}
.slidercaption h1 {
  font-size: 5em;
  font-weight: normal;
  color: #FFF;
  text-shadow: 2px 2px 5px #000;
  text-align: center;
}
.slidercaption span {
  font-size: 2em;
  color: #FFF;
  text-shadow: 2px 2px 5px #000;
  display: block;
  text-align: center;
}
#startbutton {
  width: 60px;
  height: 60px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, -20%);
  z-index: 12;
}
/* --------------------------------------Parallax Effekt-------------------------------------- */
.parallax {
  z-index: 10;
  position: relative;
  height: 60vh;
  overflow: hidden;
}
.introparallax {
  z-index: 10;
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.bgimg {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
}
.bgimg span {
  position: absolute !important;
  bottom: 10px !important;
  right: 2% !important;
  font-weight: bold;
  color: #FFF;
}
#parallax01 {
  background-image: url(../images/parallax01.jpg)
}
.parallaximg {
  height: 100%;
}
/* --------------------------------------Header-------------------------------------- */
#headerleft {
  display: inline-block;
  -webkit-transition: all .03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: fixed;
  width: 290px;
  height: auto;
  padding: 5px 5px 0 5px;
  top: 20px;
  left: 20px;
  background-color: #FFF;
  z-index: 999;
  border-top: 1px solid #BDBDBD;
  border-bottom: 1px solid #BDBDBD;
  border-left: 1px solid #BDBDBD;
}
.headerleft-pinned {
  width: 180px !important;
}
#headerright {
  display: inline-block;
  -webkit-transition: all .03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: fixed;
  width: 73px;
  height: 73px;
  padding: 5px;
  top: 20px;
  left: 310px;
  z-index: 999;
  background-color: #333;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
}
.headerright-pinned {
  width: 50px !important;
  height: 49px !important;
  left: 200px !important;
  padding: 0px !important;
}
#logo {
  width: 100%;
  height: auto;
}
.navigation {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: -100vh;
  left: 0;
  background-color: #FFF;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 99;
  -webkit-transition: all .03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navigation a:link, .navigation a:visited, .navigation a:active {
  font-size: 2em;
  font-weight: normal;
  color: #900A0A !important;
  padding: 10px;
  text-decoration: none;
  -webkit-transition: all .03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.navigation a:focus, .navigation a:hover {
  color: #3E3D3D !important;
}
.nav-active {
  top: 0px;
}
/*.hamburger-container {
position: absolute;

}*/
.hamburger {
  position: relative !important;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  width: 55px;
  height: 30px;
  top: 22px;
  left: 18px;
  overflow: visible;
  z-index: 9999 !important;
  -webkit-transition: all .03s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger-pinned {
  top: 17px;
  left: 12px;
}
.hamburger-box {
  width: 30px;
  height: 18px;
  display: inline-block;
  position: absolute;
  z-index: 999;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #FFF;
  position: absolute;
  border-radius: 6px;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* -------------------------------------- Footer-------------------------------------- */
footer {
  width: 100%;
  padding: 20px;
  border-top: 1px solid #900A0A;
  display: block;
  text-align: center
}
.footercontainer {
  width: auto;
  display: block;
}
.footertext {
  display: inline-block;
  margin: 0 50px 10px 0;
  text-align: left !important
}
.footertext a:link, .footertext a:visited, .footertext a:active {
  font-weight: normal;
  text-decoration: none;
}
.footertext a:focus, .footertext a:hover {
  color: #900A0A !important;
}
#fbbt {
  width: 30px;
  height: 30px;
  padding-bottom: 18px;
}
.aligntop {
  vertical-align: top;
}
.alignmiddle {
  vertical-align: middle;
}
.comparison-container {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
  text-align: center;
  margin-bottom: -8px;
}
.comparison {
  width: 100%;
  max-width: 50%;
  display: inline-block;
  z-index: 1;
}
.comp_arrow_right {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: auto;
  z-index: 2;
}
.sbs {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
#impressum, #datenschutz {
  min-height: 90vh;
  padding-bottom: 30px;
}
#notfound {
  min-height: 40vh;
}
.box-center {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: stretch;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  text-align: center;
}
.box {
  max-width: 48%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.box img {
  width: 100%;
  height: auto;
}
.image {
  width: 100%;
  max-width: 600px;
  height: auto;
}
.img {
  width: 100%;
  height: auto;
}
.infoiconbar {
  width: 100%;
  margin: 0 auto;
  display: block;
  text-align: center;
}
.infoiconbar div {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: inline-block;
  margin: 20px;
  vertical-align: top;
}
.infoiconbar div img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  text-align: center;
  margin: 0 auto;
  vertical-align: top;
}
.infoiconbar div span {
  font-size: 1.4em;
  font-weight: bold;
  color: #333333;
  text-align: center;
}
/*-------------------------------Vergleichsslider----------------------------------*/
.comp-slider {
  position: relative;
  overflow: hidden;
}
.comp-slider img {
  width: 100%;
  display: block;
}
#comp-before {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  background-color: #333333;
  color: #FFF;
  padding: 5px;
}
#comp-after {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 0;
  background-color: #333333;
  color: #FFF;
  padding: 5px;
}
.resize {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
}
.handle {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  margin-left: -2px;
  background: #333333;
  cursor: ew-resize;
}
.handle:after {
  position: absolute;
  top: 50%;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  content: '';
  font-weight: bold;
  font-size: 36px;
  text-align: center;
  line-height: 64px;
  background-color: #333333;
  background-image: url(../images/icon_comparison-arrow.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  transition: all 0.3s ease;
}
#seal {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.moldbox {
  width: 100%;
  max-width: 750px;
  padding: 20px;
  border: 1px solid #39B5B8;
  display: block;
  margin: 0 auto;
  text-align: center;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.moldbox h3 {
  font-weight: bold;
  text-align: center;
  color: #39B5B8;
  margin-top: 0;
}
.advantage-box {
  width: 100%;
  text-align: center;
}
.advantage-box div {
  width: 300px;
  display: inline-block;
  padding: 10px 10px 10px 50px;
  background-color: #8E0906;
  background-image: url("../images/tick.svg");
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  margin: 0 10px 10px 0;
  font-weight: bold;
  text-align: left;
  color: #FFF;
}
.centertext {
  text-align: center !important;
}
.seal {
  width: 100%;
  max-width: 200px;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 90%;
  }
  .slidercaption h1 {
    font-size: 2.5em;
    font-weight: normal;
    color: #FFF;
    text-shadow: 2px 2px 5px #000;
    text-align: center;
  }
  .slidercaption span {
    font-size: 1.3em;
    color: #FFF;
    text-shadow: 2px 2px 5px #000;
    display: block;
    text-align: center;
  }
  .comparison {
    width: 100%;
    max-width: 100%;
    display: block;
    z-index: 1;
  }
  .comp_arrow_right {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    width: 100px;
    height: auto;
    z-index: 2;
  }
  .parallax {
    height: 90vh;
  }
}
@media only screen and (max-width:650px) {
  .parallax {
    height: 40vh;
  }
  .parallaximg {
    max-height: 500px !important;
  }
  .box-center {
    display: block;
    width: 100%;
    text-align: center;
  }
  .box {
    max-width: 100%;
    display: block;
    padding-bottom: 30px;
  }
  .footertext {
    display: block;
  }
  .cookie-disclaimer {
    width: 100%;
    text-align: center;
    display: block;
  }
  .cookie-disclaimer span {
    padding: 0 0 15px 0;
    display: block;
  }
  .cookie-button {
    position: relative;
    display: block;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 425px) {
  #headerleft {
    width: 180px !important;
    top: 10px;
    left: 10px;
  }
  #headerright {
    width: 50px !important;
    height: 48px !important;
    top: 10px;
    left: 190px !important;
    padding: 0px !important;
  }
  .hamburger {
    top: 15px;
    left: 12px;
  }
  .navigation a:link, .navigation a:visited, .navigation a:active {
    font-size: 1.3em;
  }
  .flex {
    display: block;
    flex: none;
  }
  input, select, textarea {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .advantage-box div {
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.referenzslider {
  padding: 0 10px 0 10px;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
/* --------------------------------------News Startseite-------------------------------------- */
.news {
  position: relative;
  width: 100%;
    max-width: 750px;
  height: auto;
  margin: 0 auto;
  text-align: center;
  display: block;
  padding: 30px 10px 40px 10px;
  z-index: 1;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
.news-grid {
    display: block;
 /* display: grid;
  grid-template-columns: auto 50%;*/
  text-align: left;
  width: 100%;
  max-width: 800px;
  padding: 0 10px 0 10px;
/*  grid-gap: 0 20px;*/
  color: #000;
  margin: 0 auto;
  align-items: flex-start;
  box-sizing: border-box;
}
.news-grid h2 {
  margin: 0 0 20px 0;
}
.news-grid img {
  width: 100%
}
@media screen and (max-width:1024px) {
  .news-grid {
    display: block;
    max-width: 600px;
  }
  .news-grid img {
    margin-bottom: 20px;
  }
}
.fair-desktop {
  width: 100%;
  max-width: 768px;
  height: auto;
}
.fair-mobil {
  display: none;
}
@media only screen and (max-width: 768px) {
  .fair-desktop {
    display: none;
  }
  .fair-mobil {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}
.holiday {
  border: #9D754A solid #BE111F;
  display: inline-block;
  padding: 25px;
  background-color: #8E0906;
  color: #FFF;
  text-align: center;
  font-weight: normal;
  width: 100%;
  max-width: 600px;
  margin-top: 30px;
}
.holiday h2 {
  margin: 0 0 25px 0;
  color: #FFF;
}
.holiday h1 {
  color: #FFF;
}
.fair {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin-bottom: 50px;
}
.maimarkt {
  width: 100%;
  max-width: 450px;
}
.eroeffnung {
  width: 100%;
  max-width: 600px;
}
.ausstellungbox {
  display: inline-block;
  padding: 20px;
  border: 1px solid #900A0A;
}
.ausstellungbox a:link, .ausstellungbox a:visited, .ausstellungbox a:active, .ausstellungbox a:focus, .ausstellungbox a:hover {
  color: #000;
  text-decoration: underline;
}
/*.news-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  text-align: left;
  width: 100%;
  max-width: 1200px;
  grid-gap: 0 20px;
  color: #FFF;
  margin: 0 auto;
  box-sizing: border-box;
}*/
.news-grid h2 {
  margin-top: 0;
}
.news-grid img {
  width: 100%
}
@media screen and (max-width:768px) {
  .news-grid {
    display: block;
    max-width: 600px;
  }
  .news-grid img {
    margin-bottom: 20px;
  }
}
.newsbox {
  padding: 20px;
  background-color: #E8E8E6;
  margin-bottom: 10px;
  color: #000;
	text-align: center
}
.newsbox strong {
  font-size: 1em;
}
.newsbox h2 {
  font-weight: normal;
  color: #921814;
  text-align: center;
  padding-bottom: 10px;
  margin-top: 20px
}

.newsbox img {
width: 100%;
}

.newsbox a:link,
.newsbox a:visited,
.newsbox a:active {
font-weight: normal;
text-decoration: underline;
}

.newsbox a:focus,
.newsbox a:hover {
color: #921814;
}

.newsDateTable {
text-align: left;
margin: 0 auto;
}

.newsDateTable td:first-child {
padding-right: 20px;
}

.hinweis {
   padding: 10px;
    font-weight: bold;
    border: 1px solid #000;
    text-align: center;
}
