@charset "UTF-8";
/*!
* Holzland 2.0.1
* Copyright 2019 erdinger-webdesign.de
* Licensed under MIT
* Template CSS for Template "Holzland"
*/
/* Grundeinstellungen für Umbrüche und Anderes
*/
html {
  scroll-behavior: smooth;
}

/* hyphens */
body {
  -o-hyphens: auto;
  hyphens: auto;
  overflow-x: hidden;
  margin: 0;
}

.no-break {
  -o-hyphens: none;
  hyphens: none;
}

a {
  color: black;
  outline: none;
  text-decoration: none;
}
a:visited {
  color: black;
  outline: none;
}
a:hover {
  color: black;
}
a:focus {
  outline: none;
}

a.link {
  text-decoration: underline;
  color: #0033cc;
}

.bgw {
  background: white;
}

.flat {
  padding: 1em;
  margin-top: 1em;
  margin-bottom: 1em;
  background-color: transparent;
  border: 1px solid #eeeeee;
  border-radius: 0;
  box-shadow: 3px 3px 3px #eeeeee, -3px 0px 3px #eeeeee;
  min-height: 20em;
}
.flat h4 {
  font-weight: bold;
}

.flex {
  display: flex;
}

.left {
  float: left;
}

.right {
  float: right;
}

.textLeft {
  text-align: left;
}

.leftOut {
  position: relative;
  left: -200em;
  animation: leftOut 1.6s;
  animation-timing-function: ease-out;
}

.rightOut {
  position: relative;
  left: 200em;
}

.leftIn {
  position: relative;
  left: 0;
  display: block;
  margin-right: -1em;
  padding-right: 2em;
  animation: leftIn 1.6s;
  animation-timing-function: ease-out;
  /* Background nach oben ziehen */
  margin-top: -4em;
}

.rightIn {
  position: relative;
  display: block;
  margin-right: -1em;
  padding-right: 2em;
  animation: rightIn 1.6s;
  animation-timing-function: ease-out;
  /* Background nach oben ziehen 
    margin-top: -4em;*/
}

.rightOff {
  opacity: 0;
}

.rightOn {
  animation: rightOn 3.6s;
  animation-timing-function: ease-out;
}

@keyframes leftIn {
  0% {
    left: -200em;
  }
  100% {
    left: 0;
  }
}
@keyframes leftOut {
  0% {
    left: 0;
  }
  100% {
    left: -200em;
  }
}
@keyframes rightIn {
  0% {
    left: 200em;
  }
  100% {
    left: 0;
  }
}
@keyframes rightOn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
}
@media screen and (min-width: 1400px) {
  body {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

.txt {
  font-size: 2.5em;
}

.color {
  color: black;
}

.center {
  text-align: center;
}

h1, h2, h3, h4, h5, h6 {
  -o-hyphens: none;
  hyphens: none;
  font-weight: normal;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

.block {
  text-align: justify;
}

small {
  font-size: 80%;
}

.small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

figure {
  margin: 0;
}

img {
  border-style: none;
}

.buttonRow {
  display: flex;
  gap: 3em;
  margin: 3em 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 1.1em;
  line-height: 1.42857;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@keyframes ripple-expand {
  0% {
    box-shadow: 0 0 0 0 rgba(221, 23, 56, 0.7);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
.btn-default {
  color: white;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  padding: 0.5em 1em;
  border-width: 2px;
  border-style: solid;
  border-color: #180c78;
  background: #180c78;
  overflow: hidden;
  position: relative;
}

.btn-default:focus,
.btn-default.focus {
  color: white;
  background-color: #180c78;
  border-color: #180c78;
}

.btn-default:hover {
  color: #180c78;
  background-color: white;
  border: solid #180c78 3px;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: -0.3em;
}

.btn-default:active,
.btn-default.active,
.open > .btn-default.dropdown-toggle {
  color: #180c78;
  background-color: #0592ca;
  border-color: #180c78;
}

.btn-default:active:hover,
.btn-default:active:focus,
.btn-default:active.focus,
.btn-default.active:hover,
.btn-default.active:focus,
.btn-default.active.focus,
.open > .btn-default.dropdown-toggle:hover,
.open > .btn-default.dropdown-toggle:focus,
.open > .btn-default.dropdown-toggle.focus {
  color: #180c78;
  background-color: #0592ca;
  border-color: #180c78;
}

.btn-default:active,
.btn-default.active,
.open > .btn-default.dropdown-toggle {
  background-image: none;
}

.btn-default.disabled,
.btn-default.disabled:hover,
.btn-default.disabled:focus,
.btn-default.disabled.focus,
.btn-default.disabled:active,
.btn-default.disabled.active,
.btn-default[disabled],
.btn-default[disabled]:hover,
.btn-default[disabled]:focus,
.btn-default[disabled].focus,
.btn-default[disabled]:active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default,
fieldset[disabled] .btn-default:hover,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:active,
fieldset[disabled] .btn-default.active {
  background-color: #dd1738;
  border-color: #810d21;
}

a.btn-success {
  color: #fff;
}

.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #449d44;
  border-color: #255625;
}

.btn-success:hover {
  color: #fff;
  background-color: #fff;
  border: #5cb85c solid 3px;
  color: #5cb85c;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: -0.3em;
}

.btn-success:active,
.btn-success.active,
.open > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #449d44;
  border-color: #398439;
}

.btn-success:active:hover,
.btn-success:active:focus,
.btn-success:active.focus,
.btn-success.active:hover,
.btn-success.active:focus,
.btn-success.active.focus,
.open > .btn-success.dropdown-toggle:hover,
.open > .btn-success.dropdown-toggle:focus,
.open > .btn-success.dropdown-toggle.focus {
  color: #5cb85c;
  background-color: #fff;
  border-color: #5cb85c;
}

.btn-success:active,
.btn-success.active,
.open > .btn-success.dropdown-toggle {
  background-image: none;
}

.btn-success.disabled,
.btn-success.disabled:hover,
.btn-success.disabled:focus,
.btn-success.disabled.focus,
.btn-success.disabled:active,
.btn-success.disabled.active,
.btn-success[disabled],
.btn-success[disabled]:hover,
.btn-success[disabled]:focus,
.btn-success[disabled].focus,
.btn-success[disabled]:active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success.focus,
fieldset[disabled] .btn-success:active,
fieldset[disabled] .btn-success.active {
  background-color: #fff;
  border-color: #4cae4c;
  color: #5cb85c;
}

.btn-success .badge {
  color: #5cb85c;
  background-color: #fff;
}

.btn-info {
  color: #fff;
  background-color: #31b0d5;
  border-color: #46b8da;
}

.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #5bc0de;
  border-color: #1b6d85;
}

.btn-info:hover {
  color: #fff;
  background-color: #5bc0de;
  border-color: #269abc;
}

.btn-info:active,
.btn-info.active,
.open > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #5bc0de;
  border-color: #269abc;
}

.btn-info:active:hover,
.btn-info:active:focus,
.btn-info:active.focus,
.btn-info.active:hover,
.btn-info.active:focus,
.btn-info.active.focus,
.open > .btn-info.dropdown-toggle:hover,
.open > .btn-info.dropdown-toggle:focus,
.open > .btn-info.dropdown-toggle.focus {
  color: #fff;
  background-color: #5bc0de;
  border-color: #1b6d85;
}

.btn-info:active,
.btn-info.active,
.open > .btn-info.dropdown-toggle {
  background-image: none;
}

.btn-info.disabled,
.btn-info.disabled:hover,
.btn-info.disabled:focus,
.btn-info.disabled.focus,
.btn-info.disabled:active,
.btn-info.disabled.active,
.btn-info[disabled],
.btn-info[disabled]:hover,
.btn-info[disabled]:focus,
.btn-info[disabled].focus,
.btn-info[disabled]:active,
.btn-info[disabled].active,
fieldset[disabled] .btn-info,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info.focus,
fieldset[disabled] .btn-info:active,
fieldset[disabled] .btn-info.active {
  background-color: #5bc0de;
  border-color: #46b8da;
}

.btn-danger {
  color: #fff;
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #c9302c;
  border-color: #761c19;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger:active,
.btn-danger.active,
.open > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c9302c;
  border-color: #ac2925;
}

.btn-danger:active:hover,
.btn-danger:active:focus,
.btn-danger:active.focus,
.btn-danger.active:hover,
.btn-danger.active:focus,
.btn-danger.active.focus,
.open > .btn-danger.dropdown-toggle:hover,
.open > .btn-danger.dropdown-toggle:focus,
.open > .btn-danger.dropdown-toggle.focus {
  color: #fff;
  background-color: #ac2925;
  border-color: #761c19;
}

.btn-danger:active,
.btn-danger.active,
.open > .btn-danger.dropdown-toggle {
  background-image: none;
}

.btn-danger.disabled,
.btn-danger.disabled:hover,
.btn-danger.disabled:focus,
.btn-danger.disabled.focus,
.btn-danger.disabled:active,
.btn-danger.disabled.active,
.btn-danger[disabled],
.btn-danger[disabled]:hover,
.btn-danger[disabled]:focus,
.btn-danger[disabled].focus,
.btn-danger[disabled]:active,
.btn-danger[disabled].active,
fieldset[disabled] .btn-danger,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger.focus,
fieldset[disabled] .btn-danger:active,
fieldset[disabled] .btn-danger.active {
  background-color: #d9534f;
  border-color: #d43f3a;
}

.btn-danger .badge {
  color: #d9534f;
  background-color: #fff;
}

.btn-lg,
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 1.1em;
  line-height: 1.33333;
  border-radius: 6px;
}

.btn-sm,
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 3px;
}

.btn-xs,
.btn-group-xs > .btn {
  padding: 1px 5px;
  font-size: 0.9em;
  line-height: 1.5;
  border-radius: 3px;
}

.btn,
.button {
  border: none;
  display: inline-block;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  box-shadow: 8px 8px 8px #ababab, -3px 8px 3px #ababab;
}

.btn:focus {
  box-shadow: 8px 8px 8px #ababab, -3px 8px 3px #ababab;
}

.disabled,
.btn:disabled,
.button:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

.disabled *,
:disabled * {
  pointer-events: none;
}

.btn.disabled:hover,
.btn:disabled:hover {
  box-shadow: none;
}

.submit-button {
  position: relative;
  z-index: 0;
  hyphens: none;
  padding: 0.75em 1.5em;
  border: 2px solid #dd1738;
  background-color: #dd1738;
  background-size: 200%;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  color: white;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  margin-top: 1.5em;
  overflow: hidden;
}

.submit-button::before {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 0%;
  background: white;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: all 0.3s ease-in-out;
}

.submit-button:hover::before {
  height: 350%;
}

.submit-button:hover {
  color: #dd1738;
}

.spin {
  animation: spin 2s infinite linear;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.animate-fading {
  animation: fading 10s infinite;
}

@keyframes fading {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.animate-opacity {
  animation: opac 0.8s;
}

@keyframes opac {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate-top {
  position: relative;
  animation: animatetop 0.4s;
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.animate-left {
  position: relative;
  animation: animateleft 0.4s;
}

@keyframes animateleft {
  from {
    left: -300px;
    opacity: 0;
  }
  to {
    left: 0;
    opacity: 1;
  }
}
.animate-right {
  position: relative;
  animation: animateright 0.4s;
}

@keyframes animateright {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}
.animate-bottom {
  position: relative;
  animation: animatebottom 0.4s;
}

@keyframes animatebottom {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
.animate-zoom {
  animation: animatezoom 0.6s;
}

@keyframes animatezoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.animate-input {
  transition: width 0.4s ease-in-out;
}

.animate-input:focus {
  width: 100%;
}

.greyscale-max, .grayscale-max, .hover-greyscale:hover, .hover-grayscale:hover {
  filter: grayscale(100%);
}

.greyscale, .grayscale {
  filter: grayscale(75%);
}

.greyscale-min, .grayscale-min {
  filter: grayscale(50%);
}

.sepia {
  filter: sepia(75%);
}

.sepia-max, .hover-sepia:hover {
  filter: sepia(100%);
}

.sepia-min {
  filter: sepia(50%);
}

#preloader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  z-index: 99;
  height: 100%;
  width: 100%;
  background: white;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

#animationBox #line1 {
  height: 10px;
  width: 500vw;
  opacity: 50%;
  left: -10vw;
  top: -5vh;
  display: block;
  position: relative;
  background-color: grey;
  box-shadow: grey 3px 3px 50px;
  animation: linie 5s infinite alternate-reverse linear none;
}
#animationBox #line2 {
  height: 20px;
  width: 500vw;
  opacity: 40%;
  left: -20vw;
  display: block;
  position: relative;
  background-color: green;
  box-shadow: green 3px 3px 50px;
  animation: linie 10s infinite alternate linear both;
}
#animationBox #line3 {
  height: 20px;
  width: 500vw;
  opacity: 30%;
  left: 20vw;
  top: 5vh;
  display: block;
  position: relative;
  background-color: blue;
  box-shadow: red 3px 3px 50px;
  animation: linie 15s infinite alternate linear none;
}

@keyframes linie {
  0% {
    transform: rotate(0deg) translate(1vw, 2vh);
    transform-origin: 30% 30%;
  }
  50% {
    transform-origin: 40% 40%;
  }
  100% {
    transform: rotate(360deg) translate(2vw, -2vh);
    transform-origin: 50% 50%;
  }
}
@media screen and (min-width: 992px) {
  #header {
    width: 80vw;
  }
}
#header {
  max-width: 99vw;
  margin-bottom: 5vw;
}
#header img {
  width: 100%;
}

.Bildblock {
  position: relative;
}
.Bildblock img {
  height: 320px;
  width: 450px;
}
@media screen and (max-width: 767px) {
  .Bildblock img {
    width: 85vw;
    height: auto;
  }
}

.Bildcontainer {
  position: relative;
}
@media screen and (max-width: 767px) {
  .Bildcontainer {
    left: -2em;
  }
}

.Bildcontainer figure {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 480px) {
  .Bildcontainer figure {
    left: 30px;
  }
}
.Bildcontainer figure:last-of-type {
  position: relative;
}

.Bildcontainer figure {
  animation: wechseln 15s infinite;
}

.Bildcontainer figure:nth-of-type(2) {
  animation-delay: 5s;
  opacity: 0;
}

.Bildcontainer figure:nth-of-type(3) {
  animation-delay: 10s;
  opacity: 0;
}

@keyframes wechseln {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#img-slider {
  width: 100%;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
}

.flex-item {
  flex: 1 1 9em;
}

.flex-row > .flex-item {
  margin-left: 1em;
}

.thumb {
  width: 9em;
  float: left;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .thumb {
    margin-bottom: 8px;
  }
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Eigene Anweisungen*/
a.lb-close {
  color: #999999;
}

.single-picture .lb-caption {
  font-size: 1.5em;
}
.single-picture .lb-number {
  display: none !important;
}

.kontakt form#contactSender {
  width: 100%;
}
.kontakt #formular {
  width: 90vw;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .kontakt #formular {
    width: 70vw;
    margin-top: 7em;
  }
}
.kontakt #textarea {
  width: 90vw;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .kontakt #textarea {
    max-width: 68vw;
  }
}
.kontakt .formular {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
}
.kontakt .input-row {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media screen and (min-width: 992px) {
  .kontakt .input-row {
    flex-direction: row;
  }
}
.kontakt .form {
  position: relative;
  width: 100%;
  top: 0;
  border-radius: 0.3em;
  overflow: hidden;
}
.kontakt .label-name {
  position: absolute;
  left: 1.2em;
  bottom: 0.4em;
  color: rgba(0, 0, 0, 0.5);
  transform-origin: 0 0;
  transform: translate3d(0, 0, 0);
  transition: all 0.2s ease;
  pointer-events: none;
}
.kontakt .user-information {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.kontakt #user-information-box-name,
.kontakt #user-information-box-email,
.kontakt #user-information-box-tel,
.kontakt #user-information-box-url {
  width: 100%;
  margin: 0.5em 0;
}
.kontakt #textarea-label {
  position: relative;
  overflow: hidden;
}
.kontakt #textarea {
  padding: 29px 13px 0 21px;
  resize: None;
  outline: none;
  border: none;
  background: rgba(0, 0, 0, 0.02);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  transition: all 0.15s ease;
  z-index: 1;
  font-size: 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.kontakt #label-textarea {
  display: block;
  position: absolute;
  top: 0.1em;
  width: 98%;
  height: 1.6em;
  padding: 1em 0 2.35em 0;
}
.kontakt .textarea:focus + #label-textarea {
  color: #0077ff;
}
.kontakt .form input {
  width: 100%;
  border: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 35px 13px 12px 21px;
  height: 16px;
  font-size: 16px;
  background: #f7f7f7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  outline: none;
  transition: all 0.15s ease;
}
.kontakt input:hover,
.kontakt #textarea:hover,
.kontakt #label-textarea:hover {
  background: #f4f4f4;
}
.kontakt input:focus + .label-name,
.kontakt textarea:focus + .label-name {
  color: #0077ff;
  transform: translate3d(0, -16px, 0) scale(0.75);
}
.kontakt #label-textarea:focus {
  color: #0077ff;
  transform: translate3d(0, 5px, 0) scale(0.75);
}
.kontakt input:not(:-moz-placeholder) + .label-name {
  color: #0077ff;
  transform: translate3d(0, -16px, 0) scale(0.75);
}
.kontakt input:not(:placeholder-shown) + .label-name {
  color: #0077ff;
  transform: translate3d(0, -16px, 0) scale(0.75);
}
.kontakt textarea:not(:-moz-placeholder) + .label-name {
  color: #0077ff;
  transform: translate3d(0, -16px, 0) scale(0.75);
}
.kontakt textarea:not(:placeholder-shown) + .label-name {
  color: #0077ff;
  transform: translate3d(0, -16px, 0) scale(0.75);
}
.kontakt input:not(:-ms-input-placeholder) + .label-name {
  color: #0077ff;
  transform: translate3d(0, -16px, 0) scale(0.75);
}
.kontakt legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
.kontakt label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
.kontakt .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.kontakt .form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.kontakt .form-control::placeholder {
  color: #999;
  opacity: 1;
}
.kontakt textarea.form-control {
  height: auto;
}
.kontakt .has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.kontakt fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
.kontakt fieldset.no-border {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
.kontakt .form-horizontal .radio,
.kontakt .form-horizontal .checkbox,
.kontakt .form-horizontal .radio-inline,
.kontakt .form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.kontakt .form-horizontal .radio,
.kontakt .form-horizontal .checkbox {
  min-height: 27px;
}
.kontakt #ds-txt {
  margin-left: 5px;
}
.kontakt #submitRow {
  margin: 2em 0;
}

.back-to-top {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  font-size: 1.5em;
  padding-bottom: 2em;
  background-color: hsla(205, 60%, 96%, 0.7);
}
.back-to-top a#backTopLink > span {
  color: #180c78;
}
.back-to-top a#backTopLink:hover > span {
  color: #180c78;
}
.back-to-top a#backTopLink:visited > span {
  color: #180c78;
}

.footer a:visited {
  color: black;
}
.footer a:hover {
  color: blue;
}

.footer {
  position: relative;
  bottom: 0;
  padding: 1em 5vw 3em 1em;
  background-color: hsla(205, 60%, 96%, 0.7);
  color: black;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 1em;
  }
}

.footer-rechtliches {
  min-height: 4em;
  padding-left: 1em;
  padding-right: 1em;
  margin-left: -1.1em;
  list-style: none;
}
.footer-rechtliches a {
  text-decoration: none;
  color: black;
  height: 1.5em;
  display: block;
}
.footer-rechtliches a:hover {
  color: blue;
}
@media screen and (max-width: 767px) {
  .footer-rechtliches {
    line-height: 1.5em;
  }
}

.copyLine {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20vw;
       column-gap: 20vw;
}
.copyLine .designer {
  margin-bottom: 1em;
  display: inline-block;
}
.copyLine .designer > a {
  text-decoration: none;
  color: black;
}
.copyLine .designer > a:hover {
  color: blue;
}
@media screen and (min-width: 992px) {
  .copyLine .designer {
    display: inline-block;
  }
}

.table {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .table {
    width: 88%;
  }
}
.table > .tr {
  display: flex;
}

.cell-date1 {
  width: 10em;
}

.cell-date2 {
  width: 4em;
  padding-left: 0.5em;
  text-align: right;
}

.ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.ul li {
  padding: 8px 16px;
  border-bottom: 1px solid #ddd;
}

.ul li:last-child {
  border-bottom: none;
}

.spaceL {
  margin-left: 1em;
  margin-right: 1em;
}

.sectionWhite {
  background-color: #ffffff;
}

.container {
  margin: 0 auto;
  display: flex;
  padding: 10vh 10vw;
}
@media screen and (min-width: 992px) {
  .container {
    padding: 10vh 13vw;
  }
}
.container {
  flex-direction: column;
  flex-wrap: wrap;
  align-content: stretch;
}

.dark {
  background-color: hsla(205, 60%, 96%, 0.7);
}

@media screen and (min-width: 992px) {
  .grid-cols-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1em;
  }
}

@media screen and (min-width: 992px) {
  .grid-cols-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1em;
  }
}

@media screen and (min-width: 992px) {
  .grid-cols-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1em;
  }
}

@media screen and (min-width: 992px) {
  .grid-cols-5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1em;
  }
}

.card {
  padding: 2em;
  border-radius: 0.5em;
  hyphens: none;
}
@media screen and (max-width: 991px) {
  .card {
    margin: 5vw 0;
  }
}

.spaceVertikal {
  padding: 5vh 0;
}

.border {
  border: solid 1px #41c8f5;
}

.hover:hover {
  box-shadow: #41c8f5 5px 5px 10px;
  transition: all 0.6s ease-in-out;
}

.hr {
  background: #180c78;
  height: 3px;
  margin: 3em 2em;
}

#imp-box {
  width: 100%;
  margin-bottom: 2em;
}

@media screen and (max-width: 991px) {
  #Email {
    display: flex;
    flex-wrap: wrap;
  }
}

#certRow {
  align-items: center;
  margin-bottom: 2em;
}
#certRow .item {
  width: 15em;
}
@media screen and (max-width: 991px) {
  #certRow .item {
    margin-top: 1em;
    margin-bottom: 1em;
    width: 85vw;
  }
}
#certRow .item img {
  width: 100%;
}

.smallType {
  font-size: 8px;
}
@media screen and (min-width: 992px) {
  .smallType {
    font-size: 16px;
  }
}

.startseite {
  background-color: white;
}
.startseite #einleitung {
  padding: 3em 0;
}
.startseite h1 {
  font-size: 32px;
}
.startseite h2.big {
  font-size: 32px;
}
@media screen and (min-width: 992px) {
  .startseite h1 {
    font-size: 38px;
  }
  .startseite h2.big {
    font-size: 38px;
  }
}
.startseite h2#richtig {
  padding: 2em 0;
}
.startseite .h2 {
  padding-left: 0;
}
.startseite .h2 li {
  list-style-type: none;
}
.startseite .checked li {
  list-style-type: "✅ ";
  padding-left: 0;
}
.startseite .noneBullet {
  list-style-type: none;
  padding-left: 0;
}

.error article.container {
  margin-bottom: 25em;
}

.impressum section#body {
  margin-bottom: 5em;
}
.impressum .flex {
  flex-wrap: wrap;
}
.impressum .flex-row {
  -moz-column-gap: 3em;
       column-gap: 3em;
}
.impressum #impressumImage img {
  height: 11em;
  border-radius: 10px;
}

.mailPicture {
  width: 15em;
}

@media screen and (min-width: 992px) {
  #mail2.cloak a {
    font-size: 14px;
  }
}

.datenschutz article {
  padding-top: 4em;
}
@media screen and (max-width: 991px) {
  .datenschutz article .container {
    padding: 1em;
  }
  .datenschutz article .flex {
    flex-wrap: wrap;
  }
}

.fadescroll {
  transition: all 400ms;
  opacity: 0;
}

.fade {
  opacity: 1;
}

.moveleft {
  transform: translate(-200px, 0);
  transition: all 400ms;
  opacity: 0;
}

.moveright {
  transform: translate(200px, 0);
  transition: all 400ms;
  opacity: 0;
}

.movedown {
  transform: translate(0, 200px);
  transition: all 400ms;
  opacity: 0;
}

.movedownHeader {
  animation-name: HeaderMove;
  animation-duration: 0.85s;
}

.translateOrigin {
  transform: translate(0, 0);
  opacity: 1;
}

@keyframes HeaderMove {
  from {
    opacity: 0;
    transform: translate(0, 200px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}/*# sourceMappingURL=system.css.map */