*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

hr {
  border-color: var(--primary);
  margin-top: 5px;
  margin-bottom: 5px;
}

.sticky {
  padding-top: 0px !important;
  position: sticky;
  border-radius: 0 !important;
  top: 0;
  background-color: #fff;
  color: var(--textcolor);
  box-shadow: 0px 0px 4px 5px rgba(0, 0, 0, 0.19);
}
.sticky a {
  color: var(--textcolor) !important;
}
.sticky a:hover,
.sticky a.active {
  color: var(--secondary) !important;
}

body {
  font-family: "Oswald";
  font-weight: 200;
  font-size: 18px;
  line-height: 1.8rem;
  margin: 0;
  padding: 0;
  color: var(--textcolor);
}
@media (max-width: 360px) {
  body {
    font-size: 14px;
    line-height: 1.4rem;
  }
}

ul,
ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--linkcolor);
}

a:hover,
a.active {
  color: var(--secondary);
  text-decoration: none !important;
}

h1,
h2,
h3,
h4 {
  font-weight: 300;
  font-size: 60px;
  line-height: normal;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
@media (max-width: 1350px) {
  h1,
  h2,
  h3,
  h4 {
    font-size: 40px;
  }
}
@media (max-width: 840px) {
  h1,
  h2,
  h3,
  h4 {
    font-size: 25px;
  }
}
@media (max-width: 510px) {
  h1,
  h2,
  h3,
  h4 {
    font-size: 18px;
  }
}

h3 {
  line-height: 70px;
}
@media (max-width: 1350px) {
  h3 {
    line-height: 50px;
  }
}
@media (max-width: 840px) {
  h3 {
    line-height: 35px;
  }
}

h2, h4 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 300;
}
@media (max-width: 1350px) {
  h2, h4 {
    font-size: 25px;
    line-height: 35px;
  }
}
@media (max-width: 840px) {
  h2, h4 {
    font-size: 18px;
    line-height: 25px;
  }
}
@media (max-width: 510px) {
  h2, h4 {
    font-size: 16px;
  }
}

.primary {
  color: var(--primary) !important;
}

.secondary {
  color: var(--secondary) !important;
}

.overflow-hidden {
  overflow: hidden;
}

.bg-light {
  background-color: #f9f9f9;
}

.bg-primary {
  background-color: var(--primary);
  color: #fff;
}
.bg-primary h1, .bg-primary h2, .bg-primary h3 {
  color: #fff;
}

.bg-highlight {
  background-color: var(--highlight);
}

.bg-dark {
  background-color: #4b4b4b;
}

.shadow {
  box-shadow: 0px 0px 4px 5px rgba(0, 0, 0, 0.1);
}

.bg-white {
  background-color: #fff;
}

.viertel {
  width: 25%;
}

.half {
  width: 50%;
}

.slanted {
  font-family: "Mr Dafoe";
  font-size: 40px;
  color: var(--primary);
  line-height: normal;
}

.bg-secondary {
  background-color: var(--secondary);
  color: #fff;
}

.container {
  max-width: 1250px !important;
  width: 90% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 960px) {
  .container {
    width: 80% !important;
  }
}
@media (max-width: 660px) {
  .container {
    width: 85% !important;
  }
}

.container-small {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 810px) {
  .container-small {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .container-small {
    width: 85%;
  }
}

.container-wide {
  max-width: 1400px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1400px) {
  .container-wide {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .container-wide {
    width: 85%;
  }
}

.container-extra-wide {
  max-width: 1800px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1800px) {
  .container-extra-wide {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .container-extra-wide {
    width: 85%;
  }
}

.container-full-width {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
  display: block;
}

.column {
  width: 33%;
}

.plusliste,
.plusliste li {
  text-align: left;
}

.plusliste li {
  margin-bottom: 5px;
  background-image: var(--bg-image-plus);
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: left 5px;
  padding-left: 25px;
}

.normliste,
.normliste li {
  list-style: square;
  text-align: left;
  padding-left: 20px;
}

.normliste li {
  margin-bottom: 5px;
}
@media (max-width: 600px) {
  .normliste li {
    padding-left: 0px;
  }
}

.buttonliste li {
  display: block;
  padding: 10px 20px;
  background-color: var(--bg-light-blue);
  color: var(--highlight);
}

.checkliste,
.checkliste li {
  text-align: left;
  padding-left: 20px;
  margin-bottom: 50px;
  padding: 10px 20px;
  background-color: #f9f9f9;
  color: var(--blau);
  margin-top: 20px;
  background-image: var(--bg-image-check);
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 20px;
  padding-left: 60px;
}

.clear {
  clear: both;
}

.checkliste li {
  margin-bottom: 5px;
}

ul.checkliste.d-flex li,
ul.normliste.d-flex li,
ul.plusliste.d-flex li {
  white-space: nowrap;
  min-width: 25%;
}
@media (max-width: 730px) {
  ul.checkliste.d-flex li,
  ul.normliste.d-flex li,
  ul.plusliste.d-flex li {
    min-width: 50%;
  }
}
@media (max-width: 670px) {
  ul.checkliste.d-flex li,
  ul.normliste.d-flex li,
  ul.plusliste.d-flex li {
    min-width: 100%;
  }
}

.rounded {
  border-radius: 10px;
}

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.uppercase {
  text-transform: uppercase;
}

.button {
  display: inline-block;
  width: auto;
  border-radius: 10px;
  border: 2px solid var(--grau);
  color: var(--grau);
  padding: 5px 10px;
  font-size: 16px;
  font-weight: normal;
  margin-top: 50px;
}
.button img {
  max-width: 15px;
  height: auto;
  display: inline;
  border-radius: 0 !important;
  margin-right: 5px;
}
.button.filled {
  background-color: var(--secondary);
  margin-top: 10px;
  border: none;
  color: #fff;
  width: auto;
  font-weight: 700;
}
.button.filled.primary {
  background-color: var(--primary);
  color: #fff !important;
}
.button.filled:hover {
  background-color: var(--secondary);
  text-decoration: none;
  opacity: 0.7;
}
.button.bigger {
  margin-top: 25px;
  font-size: 24px;
  padding: 15px 30px;
}
.button.bg-white {
  background-color: #fff !important;
  color: var(--textcolor) !important;
}

.form-group-highlight {
  display: none !important;
}

@media (max-width: 580px) {
  .m-bg-right {
    background-position: right !important;
  }
}

.fl-left {
  float: left;
}

.fl-right {
  float: right;
}

.bb-10-light {
  border-bottom: 10px solid #fff;
}

.w-auto {
  width: auto;
}

.w-50 {
  width: 50%;
}

.w-55 {
  width: 55%;
}

.w-100 {
  width: 100% !important;
}

.w-25 {
  width: 25%;
}

.w-75 {
  width: 75%;
}

.w-30 {
  width: 30%;
}

.w-35 {
  width: 35%;
}

.w-70 {
  width: 70%;
}

.w-33 {
  width: 33%;
}

.w-48 {
  width: 48%;
}

.w-40 {
  width: 40%;
}
@media (max-width: 600px) {
  .w-40 {
    width: 100%;
  }
}

.w-45 {
  width: 45%;
}
@media (max-width: 600px) {
  .w-45 {
    width: 100%;
  }
}

.object-fit {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-position: center center;
     object-position: center center;
}

.w-60 {
  width: 60%;
}
@media (max-width: 600px) {
  .w-60 {
    width: 100%;
  }
}

.w-65 {
  width: 65%;
}
@media (max-width: 600px) {
  .w-65 {
    width: 100%;
  }
}

.bg-half {
  background-image: url("../img/bg-half.svg");
  background-position: center;
  background-repeat: repeat-x;
  background-size: 100%;
}

.flipbox img {
  max-width: 70px;
  height: auto;
}
.flipbox.rounded {
  width: 16%;
  height: auto;
}
.flipbox.rounded .box-front p {
  margin-top: 0;
}
.flipbox.rounded .box-back p {
  font-size: 14px;
}
@media (max-width: 1150px) {
  .flipbox.rounded {
    width: 33%;
  }
}
@media (max-width: 680px) {
  .flipbox.rounded {
    width: 50%;
  }
}
@media (max-width: 370px) {
  .flipbox.rounded {
    width: 100%;
  }
}
.flipbox.rounded .box-inner,
.flipbox.rounded .box-front,
.flipbox.rounded .box-back {
  width: 200px;
  height: 200px;
  border-radius: 100px;
}
@media (max-width: 1420px) {
  .flipbox.rounded .box-inner,
  .flipbox.rounded .box-front,
  .flipbox.rounded .box-back {
    width: 175px;
    height: 175px;
    border-radius: 88px;
  }
}
@media (max-width: 1150px) {
  .flipbox.rounded .box-inner,
  .flipbox.rounded .box-front,
  .flipbox.rounded .box-back {
    width: 300px;
    height: 300px;
    border-radius: 150px;
  }
}
@media (max-width: 1010px) {
  .flipbox.rounded .box-inner,
  .flipbox.rounded .box-front,
  .flipbox.rounded .box-back {
    width: 200px;
    height: 200px;
    border-radius: 100px;
  }
}
@media (max-width: 680px) {
  .flipbox.rounded .box-inner,
  .flipbox.rounded .box-front,
  .flipbox.rounded .box-back {
    width: 250px;
    height: 250px;
    border-radius: 125px;
  }
}
@media (max-width: 560px) {
  .flipbox.rounded .box-inner,
  .flipbox.rounded .box-front,
  .flipbox.rounded .box-back {
    width: 200px;
    height: 200px;
    border-radius: 100px;
    margin: auto;
  }
}
@media (max-width: 480px) {
  .flipbox.rounded .box-inner,
  .flipbox.rounded .box-front,
  .flipbox.rounded .box-back {
    width: 150px;
    height: 150px;
    border-radius: 75px;
    font-size: 14px;
    line-height: normal;
  }
}
@media (max-width: 370px) {
  .flipbox.rounded .box-inner,
  .flipbox.rounded .box-front,
  .flipbox.rounded .box-back {
    width: 300px;
    height: 300px;
    border-radius: 150px;
    font-size: 18px;
  }
}
.flipbox.rounded .box-back {
  background-color: var(--light-grey);
  color: var(--highlight);
  text-align: center;
}
.flipbox.rounded .box-front {
  font-size: 14px;
  padding: 40px;
  text-align: center;
}

.box-inner,
.faktenkreis .box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.5s;
  transform-style: preserve-3d;
  color: #fff;
}

.flipbox:hover .box-inner,
.clicked {
  transform: rotateY(180deg);
}

.flip-card:hover .flip-card-inner::after {
  transform: rotateY(180deg);
}

.box-front,
.box-back {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.box-front {
  background-color: var(--highlight);
}

.box-back {
  background-color: var(--highlight);
  color: #fff;
  transform: rotateY(180deg);
  padding: 20px;
}

/*********************************/
.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.px-200 {
  padding-left: 200px !important;
  padding-right: 200px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.pl-100 {
  padding-left: 100px !important;
}

.py-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
@media (max-width: 960px) {
  .py-100 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

.pb-100 {
  padding-bottom: 100px !important;
}

.mt-n50 {
  margin-top: -50px !important;
}
@media (max-width: 560px) {
  .mt-n50 {
    margin-top: 50px !important;
  }
}

.p-0 {
  padding: 0 !important;
}

.p-20 {
  padding: 20px !important;
}

.p-50 {
  padding: 50px !important;
}

.p-100 {
  padding: 100px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pt-10 {
  padding-top: 10px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pt-200 {
  padding-top: 200px !important;
}

.mt-n15 {
  margin-top: -15px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

hr {
  width: 100%;
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  border-bottom: 1px solid #fff;
}

@media (max-width: 1000px) {
  .subpage.py-100 {
    padding-top: 20px !important;
  }
}

input, textarea {
  border: 1px solid var(--light-grey);
  background-color: var(--light-grey);
  color: #151515;
  width: 100%;
  padding: 8px;
  margin-bottom: 2%;
  text-align: left;
}

#trackVisits {
  width: auto;
  margin-right: 10px;
}

@media (max-width: 1000px) {
  .home .pt-150 {
    padding-top: 50px !important;
  }
}

#id-agb {
  position: absolute;
  left: -200%;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: visible;
  opacity: 1;
  transition: all 1s ease-in-out;
  z-index: 10000;
  text-align: center;
}
.overlay .popup {
  margin: 70px auto;
  padding: 20px;
  color: #fff !important;
  border-radius: 5px;
  width: auto;
  min-width: 300px;
  display: inline-block;
  position: relative;
  transition: all 1s ease-in-out;
}

.overlay:target {
  visibility: visible;
  opacity: 1;
}

.overlay.erfolg .popup {
  background: #528e44;
}

.overlay.fehler .popup {
  background-color: #a12b1e;
}

.popup h2 {
  margin-top: 0;
  color: #fff !important;
}

.popup .close {
  position: absolute;
  cursor: pointer;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
}

.popup .close:hover {
  color: #fff;
}

.popup .content {
  max-height: 30%;
  overflow: auto;
}/*# sourceMappingURL=standards.css.map */