@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 {
  overflow-x: hidden;
  margin: 0;
}

article {
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 0 50px;
  max-width: 1024px;
}
@media screen and (max-width: 767px) {
  article {
    padding: 0 5vw;
  }
}

.no-brake,
.no-break {
  -o-hyphens: none;
  -webkit-hyphens: none;
  hyphens: none;
}

a {
  color: #222;
  outline: none;
  text-decoration: none;
}
a:visited {
  color: #222;
  outline: none;
}
a:hover {
  color: #000;
}
a:focus {
  border: dotted 1px black;
}

a.link, .link {
  text-decoration: underline;
  color: rgb(103, 188, 241);
  cursor: pointer;
}

.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;
}

.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: Verdana, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.42857;
  font-size: 2.5vw;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

.txt {
  font-size: 2.5em;
}

.color {
  color: #000;
}

.center {
  text-align: center;
}

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

h1 {
  font-size: 2.6em;
}

h2 {
  font-size: 2.15em;
}

h3 {
  font-size: 1.7em;
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 0.85em;
}

.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: 1em;
  margin: 3em 0;
  flex-wrap: wrap;
}
.buttonRow.center {
  justify-content: 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;
}

.btn:focus,
.btn.focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn:hover,
.btn:focus,
.btn.focus {
  color: #000;
  text-decoration: none;
}

.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  filter: alpha(opacity=65);
  box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

.btn-default {
  color: #000;
  background-color: #dd1738;
  border-color: #810d21;
}

.btn-default:focus,
.btn-default.focus {
  color: #000;
  background-color: #af122c;
  border-color: #0d0103;
}

.btn-default:hover {
  color: #000;
  background-color: #af122c;
  border-color: #490813;
}

.btn-grey {
  color: #000;
  background-color: #c5c2c2;
  border-color: rgb(63, 62, 62);
}

.btn-grey:focus,
.btn-grey.focus {
  color: #000;
  background-color: #c5c2c2;
  border-color: rgb(63, 62, 62);
}

.btn-grey:hover {
  color: #000;
  background-color: #c5c2c2;
  border-color: rgb(63, 62, 62);
}

a.btn-grey {
  color: #000;
}
a.btn-grey:hover {
  color: #000;
}
a.btn-grey:visited {
  color: #000;
}

.btn-default:active,
.btn-default.active,
.open > .btn-default.dropdown-toggle {
  color: #000;
  background-color: #af122c;
  border-color: #490813;
}

.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: #000;
  background-color: #8e0f24;
  border-color: #0d0103;
}

.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;
}

.btn-default .badge {
  color: #dd1738;
  background-color: #000;
}

.btn-primary {
  color: #000;
  background-color: #dd1738;
  border-color: #810d21;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #000;
  background-color: #af122c;
  border-color: #0d0103;
}

.btn-primary:hover {
  color: #000;
  background-color: #af122c;
  border-color: #490813;
}

.btn-primary:active,
.btn-primary.active,
.open > .btn-primary.dropdown-toggle {
  color: #000;
  background-color: #af122c;
  border-color: #490813;
}

.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary.active.focus,
.open > .btn-primary.dropdown-toggle:hover,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle.focus {
  color: #000;
  background-color: #8e0f24;
  border-color: #0d0103;
}

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

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

.btn-primary .badge {
  color: #dd1738;
  background-color: #000;
}

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: #449d44;
  border-color: #398439;
}

.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: #fff;
  background-color: #398439;
  border-color: #255625;
}

.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: #5cb85c;
  border-color: #4cae4c;
}

.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-info .badge {
  color: #5bc0de;
  background-color: #fff;
}

.btn-warning {
  color: #fff;
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #fff;
  background-color: #ec971f;
  border-color: #985f0d;
}

.btn-warning:hover {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning:active,
.btn-warning.active,
.open > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #ec971f;
  border-color: #d58512;
}

.btn-warning:active:hover,
.btn-warning:active:focus,
.btn-warning:active.focus,
.btn-warning.active:hover,
.btn-warning.active:focus,
.btn-warning.active.focus,
.open > .btn-warning.dropdown-toggle:hover,
.open > .btn-warning.dropdown-toggle:focus,
.open > .btn-warning.dropdown-toggle.focus {
  color: #fff;
  background-color: #d58512;
  border-color: #985f0d;
}

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

.btn-warning.disabled,
.btn-warning.disabled:hover,
.btn-warning.disabled:focus,
.btn-warning.disabled.focus,
.btn-warning.disabled:active,
.btn-warning.disabled.active,
.btn-warning[disabled],
.btn-warning[disabled]:hover,
.btn-warning[disabled]:focus,
.btn-warning[disabled].focus,
.btn-warning[disabled]:active,
.btn-warning[disabled].active,
fieldset[disabled] .btn-warning,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning.focus,
fieldset[disabled] .btn-warning:active,
fieldset[disabled] .btn-warning.active {
  background-color: #f0ad4e;
  border-color: #eea236;
}

.btn-warning .badge {
  color: #f0ad4e;
  background-color: #fff;
}

.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-link {
  color: #222222;
  font-weight: normal;
  border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
  background-color: transparent;
  box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
  border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
  color: #000;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-link:focus {
  color: #777777;
  text-decoration: none;
}

.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;
}

@media screen and (max-width: 767px) {
  .kontakt h1 {
    font-size: 5vw;
  }
}
.kontakt section#content #kontaktIntro {
  display: flex;
  gap: 1em;
  flex-wrap: nowrap;
  padding: 5vw 0;
}
.kontakt section#content #kontaktIntro #kontaktAdresse {
  line-height: 2em;
  min-width: 20em;
}
.kontakt section#content #kontaktIntro #kontaktAdresse #ort {
  margin-bottom: 2em;
}
.kontakt section#content #kontaktIntro #impressumImage img {
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .kontakt section#content #kontaktIntro #impressumImage img {
    height: 12em;
  }
}
@media screen and (min-width: 992px) {
  .kontakt #trennsatz {
    padding-bottom: 2em;
  }
}
.kontakt form#contactSender {
  width: 100%;
}
.kontakt #formular {
  max-width: 60em;
}
@media screen and (min-width: 992px) {
  .kontakt #formular {
    width: 70vw;
    margin-top: 7em;
  }
}
.kontakt #textarea-box {
  max-width: 100%;
}
.kontakt #textarea-box #textarea {
  width: 90vw;
}
.kontakt .formular {
  display: flex;
  flex-direction: column;
  margin: 0;
  max-width: 100%;
  width: -moz-fit-content;
  width: fit-content;
}
.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: inherit;
}
.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: inherit;
  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;
}

nav {
  height: 3em;
  color: white;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  nav {
    font-size: 2vw;
  }
}
nav ul.nav-link {
  list-style-type: none;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
}
nav ul.nav-link a, nav ul.nav-link a:hover, nav ul.nav-link a:visited, nav ul.nav-link a:active {
  color: white;
}

.spaceL {
  margin-left: 1em;
}

.btn {
  font-size: 1.5em;
}

.hr {
  height: 3px;
  background: #9A8B6A;
  margin: 2em 4em;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #635142;
}
body div.bodyPack {
  max-width: 100vw;
  width: 1024px;
  margin-bottom: 3em;
}
body div.bodyPack header.main-header {
  margin-bottom: -6px;
}

#header {
  max-height: 100vh;
}

#header img {
  height: 100vh;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 -15vh;
     object-position: 0 -15vh;
}

.blue, .blue > a.link {
  color: rgb(103, 188, 241);
  text-decoration: none;
}

.fun {
  font-style: italic;
  font-weight: bold;
}

.startseite {
  margin-top: 0;
}
.startseite .imageblock {
  display: flex;
  flex-direction: row;
}
.startseite .imageblock img {
  float: right;
  border-radius: 2vw;
  padding: 1em;
  height: auto;
  width: 25vw;
  max-width: 350px;
}

.test {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .angebot article h1 {
    font-size: 5vw;
  }
}
.angebot article .preise {
  padding: 2vw 0;
  list-style-type: none;
  line-height: 2.5em;
}
.angebot article #starDescription {
  font-size: 0.8em;
  font-style: italic;
  margin-top: 1em;
}

.impressum article {
  padding: 0 5vw 5vh 5vw;
}
.impressum .flex-row {
  -moz-column-gap: 3em;
       column-gap: 3em;
}
.impressum #impressumImage img {
  height: 11em;
  border-radius: 10px;
}

.datenschutz article {
  padding-top: 4em;
  padding-bottom: 5vh;
}
.datenschutz article ol {
  padding-left: 1em;
}
.datenschutz article ul {
  padding-left: 16px;
  list-style-type: disc;
}
.datenschutz article .flex-row {
  -moz-column-gap: 3em;
       column-gap: 3em;
}
.datenschutz #impressumImage img {
  height: 11em;
  border-radius: 10px;
}

.monitor article {
  max-width: 100vw;
}
.monitor #top {
  padding-top: 4em;
}

.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 */