body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Chivo', sans-serif;
  font-size: 4.25rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 {
  font-family: 'Chivo', sans-serif;
  font-size: 2rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 0.7rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.12rem;
}
.display-5 {
  font-family: 'Chivo', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.56rem;
    font-size: calc( 0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #26120a !important;
}
.bg-success {
  background-color: #f9ceb2 !important;
}
.bg-info {
  background-color: #a76645 !important;
}
.bg-warning {
  background-color: #ffffff !important;
}
.bg-danger {
  background-color: #ffffff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #26120a !important;
  border-color: #26120a !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #a76645 !important;
  border-color: #a76645 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #71452f !important;
  border-color: #71452f !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #71452f !important;
  border-color: #71452f !important;
}
.btn-success,
.btn-success:active {
  background-color: #f9ceb2 !important;
  border-color: #f9ceb2 !important;
  color: #a0460c !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #a0460c !important;
  background-color: #f3a16b !important;
  border-color: #f3a16b !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #a0460c !important;
  background-color: #f3a16b !important;
  border-color: #f3a16b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #26120a;
  border-color: #26120a;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #26120a !important;
  border-color: #26120a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #5f3a27;
  color: #5f3a27;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #a76645;
  border-color: #a76645;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #a76645 !important;
  border-color: #a76645 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #f29253;
  color: #f29253;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #a0460c;
  background-color: #f9ceb2;
  border-color: #f9ceb2;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #a0460c !important;
  background-color: #f9ceb2 !important;
  border-color: #f9ceb2 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #26120a !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #f9ceb2 !important;
}
.text-info {
  color: #a76645 !important;
}
.text-warning {
  color: #ffffff !important;
}
.text-danger {
  color: #ffffff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #f29253 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #5f3a27 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #cccccc !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #cccccc !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #a76645;
}
.alert-warning {
  background-color: #ffffff;
}
.alert-danger {
  background-color: #ffffff;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #26120a;
  border-color: #26120a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #26120a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e9bdac;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d4ac97;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #26120a;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #26120a;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #26120a;
}
/* Headers*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #26120a;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #26120a;
  border-bottom-color: #26120a;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #26120a !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #000000 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2326120a' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.3;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rQHqKAYm3Y {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rQHqKAYm3Y {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rRb4WXjGUS {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rRb4WXjGUS .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rRb4WXjGUS .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRb4WXjGUS .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRb4WXjGUS .mbr-figure,
  .cid-rRb4WXjGUS img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRb4WXjGUS .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRb4WXjGUS .mbr-author-desc {
  color: #000000;
}
.cid-rRb4WXjGUS .display-2 {
  font-family: 'Chivo', sans-serif;
  font-size: 3rem;
}
.cid-rRb4WXjGUS .display-5 {
  line-height: 1.3;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .cid-rRb4WXjGUS .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
  .cid-rRb4WXjGUS .display-5 {
    line-height: 1;
  }
  .cid-rRb4WXjGUS .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRb4WXjGUS .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRb4WXjGUS .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRb4WXjGUS h2 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRb4WXjGUS .text_block {
  margin-top: 0px;
}
.cid-rRb4WXjGUS .h2_block {
  margin-bottom: 20px;
}
.cid-rRb4WXjGUS .mbr-figure {
  align-self: flex-start;
}
.cid-rRb4WXjGUS .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRb4WXjGUS .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-rRb4WXjGUS a svg polygon {
  fill: #1d1d1b;
}
.cid-rRb4WXjGUS a:hover {
  Color: #a76645 !important;
}
.cid-rRb4WXjGUS a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRb4WXjGUS .btn-black-outline:hover,
.cid-rRb4WXjGUS .btn-black-outline:focus,
.cid-rRb4WXjGUS .btn-black-outline.focus,
.cid-rRb4WXjGUS .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-sxdAY2dKIf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxdAY2dKIf .mbr-text,
.cid-sxdAY2dKIf blockquote {
  color: #767676;
}
.cid-sxdAY2dKIf .fundraisingbox {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #fff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #fff;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #fff;
}
.cid-rRb9UVXV4g {
  background: #ffffff;
}
.cid-rRb9UVXV4g .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRb9UVXV4g figcaption {
  position: relative;
}
.cid-rRb9UVXV4g figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRb9UVXV4g .image-block {
    width: 300% !important;
  }
}
.cid-ucQLbB9ByI {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-ucQLbB9ByI .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-ucQLbB9ByI .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-ucQLbB9ByI .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-ucQLbB9ByI .mbr-figure,
  .cid-ucQLbB9ByI img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-ucQLbB9ByI .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-ucQLbB9ByI .mbr-author-desc {
  color: #000000;
}
.cid-ucQLbB9ByI h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ucQLbB9ByI .text_block {
  margin-top: 0px;
}
.cid-ucQLbB9ByI .h2_block {
  margin-bottom: 20px;
}
.cid-ucQLbB9ByI .mbr-figure {
  align-self: flex-start;
}
.cid-ucQLbB9ByI .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-ucQLbB9ByI .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-ucQLbB9ByI .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-ucQLbB9ByI a:hover {
  Color: #a76645 !important;
}
.cid-ucQLbB9ByI a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ucQLbB9ByI .btn-black-outline:hover,
.cid-ucQLbB9ByI .btn-black-outline:focus,
.cid-ucQLbB9ByI .btn-black-outline.focus,
.cid-ucQLbB9ByI .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ucQLbB9ByI .display-5 {
    line-height: 1;
  }
  .cid-ucQLbB9ByI .btn {
    font-size: 1.5rem !important;
  }
  .cid-ucQLbB9ByI .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-ucQLbB9ByI .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRb9TyBvDW {
  background: #ffffff;
}
.cid-rRb9TyBvDW .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRb9TyBvDW figcaption {
  position: relative;
}
.cid-rRb9TyBvDW figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRb9TyBvDW .image-block {
    width: 300% !important;
  }
}
.cid-sjy29fpGM8 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-14-2000x1333.png");
}
.cid-sjy29fpGM8 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sjy29fpGM8 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sjy29fpGM8 .breites_Zitat,
  .cid-sjy29fpGM8 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-s1BcLJrCSS {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-s1BcLJrCSS .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-s1BcLJrCSS .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-s1BcLJrCSS .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tItW7BG8u5 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-tItW7BG8u5 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tItW7BG8u5 .display-5 {
  font-size: 2rem;
  color: black;
}
.cid-tItW7BG8u5 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tItW7BG8u5 a svg polygon {
  fill: black !important;
}
.cid-tItW7BG8u5 a:hover {
  Color: #F9CEB2!important;
}
.cid-tItW7BG8u5 a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tItW7BG8u5 .btn-white-outline:hover,
.cid-tItW7BG8u5 .btn-white-outline:focus,
.cid-tItW7BG8u5 .btn-white-outline.focus,
.cid-tItW7BG8u5 .btn-white-outline.active,
.cid-tItW7BG8u5 .btn-black-outline:hover,
.cid-tItW7BG8u5 .btn-black-outline:focus,
.cid-tItW7BG8u5 .btn-black-outline.focus,
.cid-tItW7BG8u5 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tItW7BG8u5 .display-5 {
    line-height: 1;
  }
  .cid-tItW7BG8u5 .btn {
    font-size: 1.5rem !important;
  }
  .cid-tItW7BG8u5 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRb8LDQEYX {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-5-1500x490.jpg");
}
.cid-rRb8LDQEYX H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRb8LDQEYX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rRb8LDQEYX span {
  visibility: hidden;
}
.cid-rRb8LDQEYX .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-rRb8LDQEYX span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-u7yTEYu4w8 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yTEYu4w8 .content {
    text-align: center;
  }
  .cid-u7yTEYu4w8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yTEYu4w8 .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yTEYu4w8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yTEYu4w8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yTEYu4w8 .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yTEYu4w8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yTEYu4w8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yTEYu4w8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yTEYu4w8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yTEYu4w8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yTEYu4w8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yTEYu4w8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yTEYu4w8 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yTEYu4w8 H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yTEYu4w8 P {
  color: #ffffff;
}
.cid-u7yTEYu4w8 .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yTEYu4w8 .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yTEYu4w8 .logo_footer {
  position: relative;
}
.cid-u7yTEYu4w8 .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yTEYu4w8 .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yTEYu4w8 .col,
  .cid-u7yTEYu4w8 .col-1,
  .cid-u7yTEYu4w8 .col-10,
  .cid-u7yTEYu4w8 .col-11,
  .cid-u7yTEYu4w8 .col-12,
  .cid-u7yTEYu4w8 .col-2,
  .cid-u7yTEYu4w8 .col-3,
  .cid-u7yTEYu4w8 .col-4,
  .cid-u7yTEYu4w8 .col-5,
  .cid-u7yTEYu4w8 .col-6,
  .cid-u7yTEYu4w8 .col-7,
  .cid-u7yTEYu4w8 .col-8,
  .cid-u7yTEYu4w8 .col-9,
  .cid-u7yTEYu4w8 .col-auto,
  .cid-u7yTEYu4w8 .col-lg,
  .cid-u7yTEYu4w8 .col-lg-1,
  .cid-u7yTEYu4w8 .col-lg-10,
  .cid-u7yTEYu4w8 .col-lg-11,
  .cid-u7yTEYu4w8 .col-lg-12,
  .cid-u7yTEYu4w8 .col-lg-2,
  .cid-u7yTEYu4w8 .col-lg-3,
  .cid-u7yTEYu4w8 .col-lg-4,
  .cid-u7yTEYu4w8 .col-lg-5,
  .cid-u7yTEYu4w8 .col-lg-6,
  .cid-u7yTEYu4w8 .col-lg-7,
  .cid-u7yTEYu4w8 .col-lg-8,
  .cid-u7yTEYu4w8 .col-lg-9,
  .cid-u7yTEYu4w8 .col-lg-auto,
  .cid-u7yTEYu4w8 .col-md,
  .cid-u7yTEYu4w8 .col-md-1,
  .cid-u7yTEYu4w8 .col-md-10,
  .cid-u7yTEYu4w8 .col-md-11,
  .cid-u7yTEYu4w8 .col-md-12,
  .cid-u7yTEYu4w8 .col-md-2,
  .cid-u7yTEYu4w8 .col-md-3,
  .cid-u7yTEYu4w8 .col-md-4,
  .cid-u7yTEYu4w8 .col-md-5,
  .cid-u7yTEYu4w8 .col-md-6,
  .cid-u7yTEYu4w8 .col-md-7,
  .cid-u7yTEYu4w8 .col-md-8,
  .cid-u7yTEYu4w8 .col-md-9,
  .cid-u7yTEYu4w8 .col-md-auto,
  .cid-u7yTEYu4w8 .col-sm,
  .cid-u7yTEYu4w8 .col-sm-1,
  .cid-u7yTEYu4w8 .col-sm-10,
  .cid-u7yTEYu4w8 .col-sm-11,
  .cid-u7yTEYu4w8 .col-sm-12,
  .cid-u7yTEYu4w8 .col-sm-2,
  .cid-u7yTEYu4w8 .col-sm-3,
  .cid-u7yTEYu4w8 .col-sm-4,
  .cid-u7yTEYu4w8 .col-sm-5,
  .cid-u7yTEYu4w8 .col-sm-6,
  .cid-u7yTEYu4w8 .col-sm-7,
  .cid-u7yTEYu4w8 .col-sm-8,
  .cid-u7yTEYu4w8 .col-sm-9,
  .cid-u7yTEYu4w8 .col-sm-auto,
  .cid-u7yTEYu4w8 .col-xl,
  .cid-u7yTEYu4w8 .col-xl-1,
  .cid-u7yTEYu4w8 .col-xl-10,
  .cid-u7yTEYu4w8 .col-xl-11,
  .cid-u7yTEYu4w8 .col-xl-12,
  .cid-u7yTEYu4w8 .col-xl-2,
  .cid-u7yTEYu4w8 .col-xl-3,
  .cid-u7yTEYu4w8 .col-xl-4,
  .cid-u7yTEYu4w8 .col-xl-5,
  .cid-u7yTEYu4w8 .col-xl-6,
  .cid-u7yTEYu4w8 .col-xl-7,
  .cid-u7yTEYu4w8 .col-xl-8,
  .cid-u7yTEYu4w8 .col-xl-9,
  .cid-u7yTEYu4w8 .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yTEYu4w8 .content {
    text-align: left;
  }
  .cid-u7yTEYu4w8 .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yTEYu4w8 .logo_footer_box {
    position: relative;
  }
  .cid-u7yTEYu4w8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yTEYu4w8 .logo_footer {
    position: relative;
  }
  .cid-u7yTEYu4w8 .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yTEYu4w8 .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rS4Wblz82W {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rS4Wblz82W {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rS50HeD4k0 {
  background-image: url("../../../assets/images/theater-waffen-nazi-demo-4978-kopie-3-4006x2212-24-2000x1104.jpg");
}
.cid-rS50HeD4k0 P {
  color: #767676;
}
.cid-rS51qX03E0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rS51qX03E0 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS51qX03E0 h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS51qX03E0 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS51qX03E0 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS51BWTKnL {
  background: #f9ceb2;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-rS51BWTKnL .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS51BWTKnL .video-block {
    width: 100% !important;
  }
}
.cid-rS51BWTKnL .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS51D4mI9R {
  background: #000000;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-rS51D4mI9R .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS51D4mI9R .video-block {
    width: 100% !important;
  }
}
.cid-rS51D4mI9R .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS51MkuK2E {
  background-image: url("../../../assets/images/62-79-zps-dortmund-2099-nick-jaussi-2015-2000x1335.jpg");
}
.cid-rS51MkuK2E P {
  color: #767676;
}
.cid-rS51O4azOB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS51O4azOB .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS51O4azOB h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS51O4azOB .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS51O4azOB .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u6fI2DP1Zn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6fI2DP1Zn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fI2DP1Zn p {
  color: #767676;
  text-align: left;
}
.cid-u6fI2DP1Zn .card-box {
  padding-top: 2rem;
}
.cid-u6fI2DP1Zn .card-wrapper {
  height: 100%;
}
.cid-u6fI2DP1Zn P {
  text-align: left;
}
.cid-u6fI3ISd5j {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6fI3ISd5j h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fI3ISd5j p {
  color: #767676;
  text-align: left;
}
.cid-u6fI3ISd5j .card-box {
  padding-top: 2rem;
}
.cid-u6fI3ISd5j .card-wrapper {
  height: 100%;
}
.cid-u6fI3ISd5j P {
  text-align: left;
}
.cid-rS51WSq5Jt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS51WSq5Jt h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS51WSq5Jt p {
  color: #767676;
  text-align: left;
}
.cid-rS51WSq5Jt .card-box {
  padding-top: 2rem;
}
.cid-rS51WSq5Jt .card-wrapper {
  height: 100%;
}
.cid-rS53MmuhyE {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rS53MmuhyE .images-container.container-fluid {
  padding: 0;
}
.cid-rS53MmuhyE .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS53MmuhyE .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS53MmuhyE .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS53MmuhyE .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS53MmuhyE .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS53MmuhyE .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS53MmuhyE .img-item {
    width: 100% !important;
  }
  .cid-rS53MmuhyE .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS545iWts8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS545iWts8 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS545iWts8 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS545iWts8 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS545iWts8 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS54jtee3g {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rS54jtee3g h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS54jtee3g p {
  color: #767676;
  text-align: left;
}
.cid-rS54jtee3g .card-box {
  padding-top: 2rem;
}
.cid-rS54jtee3g .card-wrapper {
  height: 100%;
}
.cid-rS54jtee3g P {
  color: #1d1d1b;
}
.cid-rS550ZxXGI {
  background-image: url("../../../assets/images/theater-waffen-nazi-demo-5073-2000x1246.jpg");
}
.cid-rS550ZxXGI P {
  color: #767676;
}
.cid-rS554enAuW {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rS554enAuW .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS554enAuW h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS554enAuW .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS554enAuW .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS5q3Z8pWi {
  background: #ffffff;
}
.cid-rS5q3Z8pWi .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS5q3Z8pWi figcaption {
  position: relative;
}
.cid-rS5q3Z8pWi figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS5q3Z8pWi .image-block {
    width: 100% !important;
  }
}
.cid-rS5nNJmp83 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS5nNJmp83 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5nNJmp83 p {
  color: #767676;
  text-align: left;
}
.cid-rS5nNJmp83 .card-box {
  padding-top: 2rem;
}
.cid-rS5nNJmp83 .card-wrapper {
  height: 100%;
}
.cid-rS5nOuEPYd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS5nOuEPYd h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5nOuEPYd p {
  color: #767676;
  text-align: left;
}
.cid-rS5nOuEPYd .card-box {
  padding-top: 2rem;
}
.cid-rS5nOuEPYd .card-wrapper {
  height: 100%;
}
.cid-u6UoW7BdvB {
  padding-top: 30px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-u6UoW7BdvB .images-container.container-fluid {
  padding: 0;
}
.cid-u6UoW7BdvB .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-u6UoW7BdvB .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-u6UoW7BdvB .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-u6UoW7BdvB .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-u6UoW7BdvB .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-u6UoW7BdvB .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-u6UoW7BdvB .img-item {
    width: 100% !important;
  }
  .cid-u6UoW7BdvB .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS5pjOS3fb {
  padding-top: 30px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rS5pjOS3fb .images-container.container-fluid {
  padding: 0;
}
.cid-rS5pjOS3fb .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS5pjOS3fb .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS5pjOS3fb .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS5pjOS3fb .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS5pjOS3fb .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS5pjOS3fb .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS5pjOS3fb .img-item {
    width: 100% !important;
  }
  .cid-rS5pjOS3fb .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS5pnI7CkR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS5pnI7CkR h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5pnI7CkR p {
  color: #767676;
  text-align: left;
}
.cid-rS5pnI7CkR .card-box {
  padding-top: 2rem;
}
.cid-rS5pnI7CkR .card-wrapper {
  height: 100%;
}
.cid-rS5uJDd6ET {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS5uJDd6ET h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5uJDd6ET p {
  color: #767676;
  text-align: left;
}
.cid-rS5uJDd6ET .card-box {
  padding-top: 2rem;
}
.cid-rS5uJDd6ET .card-wrapper {
  height: 100%;
}
.cid-rS5pqTfCKh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS5pqTfCKh h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5pqTfCKh p {
  color: #767676;
  text-align: left;
}
.cid-rS5pqTfCKh .card-box {
  padding-top: 2rem;
}
.cid-rS5pqTfCKh .card-wrapper {
  height: 100%;
}
.cid-rS55sMctKQ {
  background: #f9ceb2;
  padding-top: 45px;
  padding-bottom: 75px;
}
.cid-rS55sMctKQ .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS55sMctKQ .video-block {
    width: 100% !important;
  }
}
.cid-rS55sMctKQ .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-se4eCqbEYv {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-17-2000x1330.png");
}
.cid-se4eCqbEYv H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-se4eCqbEYv .mbr-section-subtitle {
  color: #000000;
}
.cid-se4eCqbEYv span {
  visibility: hidden;
}
.cid-se4eCqbEYv .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4eCqbEYv span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rS5hFVfIMJ {
  background: #ffffff;
}
.cid-rS5hFVfIMJ .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS5hFVfIMJ figcaption {
  position: relative;
}
.cid-rS5hFVfIMJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS5hFVfIMJ .image-block {
    width: 300% !important;
  }
}
.cid-uccCgliuqG {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-uccCgliuqG .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-uccCgliuqG .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccCgliuqG .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccCgliuqG .mbr-figure,
  .cid-uccCgliuqG img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccCgliuqG .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccCgliuqG .mbr-author-desc {
  color: #000000;
}
.cid-uccCgliuqG h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccCgliuqG .text_block {
  margin-top: 0px;
}
.cid-uccCgliuqG .h2_block {
  margin-bottom: 20px;
}
.cid-uccCgliuqG .mbr-figure {
  align-self: flex-start;
}
.cid-uccCgliuqG .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccCgliuqG .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccCgliuqG .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccCgliuqG a svg polygon {
  fill: white !important;
}
.cid-uccCgliuqG a:hover {
  Color: #F9CEB2!important;
}
.cid-uccCgliuqG a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccCgliuqG .btn-white-outline:hover,
.cid-uccCgliuqG .btn-white-outline:focus,
.cid-uccCgliuqG .btn-white-outline.focus,
.cid-uccCgliuqG .btn-white-outline.active,
.cid-uccCgliuqG .btn-black-outline:hover,
.cid-uccCgliuqG .btn-black-outline:focus,
.cid-uccCgliuqG .btn-black-outline.focus,
.cid-uccCgliuqG .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccCgliuqG .display-5 {
    line-height: 1;
  }
  .cid-uccCgliuqG .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccCgliuqG .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccCgliuqG .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rS5hGgpy5R {
  background: #ffffff;
}
.cid-rS5hGgpy5R .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS5hGgpy5R figcaption {
  position: relative;
}
.cid-rS5hGgpy5R figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS5hGgpy5R .image-block {
    width: 300% !important;
  }
}
.cid-rS5hVUdQKZ {
  background: #000000;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-rS5hVUdQKZ .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS5hVUdQKZ .video-block {
    width: 100% !important;
  }
}
.cid-rS5hVUdQKZ .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS5iDsUzA8 {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-4-1500x1695.jpg");
}
.cid-rS5iDsUzA8 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS5iDsUzA8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5iDsUzA8 p {
  color: #767676;
  text-align: left;
}
.cid-rS5iDsUzA8 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS5iDsUzA8 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS5iDsUzA8 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS5iDsUzA8 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS5iDsUzA8 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS5iDsUzA8 .notched-box:before,
.cid-rS5iDsUzA8 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rS5iDsUzA8 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS5iDsUzA8 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS5iDsUzA8 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS5iDsUzA8 .border:before,
.cid-rS5iDsUzA8 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rS5iDsUzA8 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS5iDsUzA8 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS5iDsUzA8 .mbr-author-name {
  padding-left: 40px;
}
.cid-rS5iDsUzA8 P {
  color: #ffffff;
}
.cid-rS5iDsUzA8 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS5iDsUzA8 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rS5iDsUzA8 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS5iDsUzA8 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5iDsUzA8 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS5kzQTXdA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS5kzQTXdA .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS5kzQTXdA h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5kzQTXdA .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS5kzQTXdA .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS5kUUZX32 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS5kUUZX32 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS5kUUZX32 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5kUUZX32 p {
  color: #767676;
  text-align: left;
}
.cid-rS5kUUZX32 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS5kUUZX32 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS5kUUZX32 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS5kUUZX32 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS5kUUZX32 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS5kUUZX32 .notched-box:before,
.cid-rS5kUUZX32 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rS5kUUZX32 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS5kUUZX32 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS5kUUZX32 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS5kUUZX32 .border:before,
.cid-rS5kUUZX32 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rS5kUUZX32 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS5kUUZX32 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS5kUUZX32 .mbr-author-name {
  padding-left: 40px;
}
.cid-rS5kUUZX32 P {
  color: #000000;
}
.cid-rS5kUUZX32 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS5kWCytRK {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rS5kWCytRK .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS5kWCytRK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5kWCytRK p {
  color: #767676;
  text-align: left;
}
.cid-rS5kWCytRK .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS5kWCytRK .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS5kWCytRK .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS5kWCytRK .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS5kWCytRK .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS5kWCytRK .notched-box:before,
.cid-rS5kWCytRK .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rS5kWCytRK .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS5kWCytRK .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS5kWCytRK .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS5kWCytRK .border:before,
.cid-rS5kWCytRK .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rS5kWCytRK .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS5kWCytRK .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS5kWCytRK .mbr-author-name {
  padding-left: 40px;
}
.cid-rS5kWCytRK P {
  color: #000000;
}
.cid-rS5kWCytRK .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u7yVDUCoif {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVDUCoif .content {
    text-align: center;
  }
  .cid-u7yVDUCoif .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVDUCoif .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVDUCoif .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVDUCoif .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVDUCoif .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVDUCoif .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVDUCoif .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVDUCoif .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVDUCoif .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVDUCoif .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVDUCoif .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVDUCoif .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVDUCoif .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVDUCoif H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVDUCoif P {
  color: #ffffff;
}
.cid-u7yVDUCoif .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVDUCoif .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVDUCoif .logo_footer {
  position: relative;
}
.cid-u7yVDUCoif .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVDUCoif .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVDUCoif .col,
  .cid-u7yVDUCoif .col-1,
  .cid-u7yVDUCoif .col-10,
  .cid-u7yVDUCoif .col-11,
  .cid-u7yVDUCoif .col-12,
  .cid-u7yVDUCoif .col-2,
  .cid-u7yVDUCoif .col-3,
  .cid-u7yVDUCoif .col-4,
  .cid-u7yVDUCoif .col-5,
  .cid-u7yVDUCoif .col-6,
  .cid-u7yVDUCoif .col-7,
  .cid-u7yVDUCoif .col-8,
  .cid-u7yVDUCoif .col-9,
  .cid-u7yVDUCoif .col-auto,
  .cid-u7yVDUCoif .col-lg,
  .cid-u7yVDUCoif .col-lg-1,
  .cid-u7yVDUCoif .col-lg-10,
  .cid-u7yVDUCoif .col-lg-11,
  .cid-u7yVDUCoif .col-lg-12,
  .cid-u7yVDUCoif .col-lg-2,
  .cid-u7yVDUCoif .col-lg-3,
  .cid-u7yVDUCoif .col-lg-4,
  .cid-u7yVDUCoif .col-lg-5,
  .cid-u7yVDUCoif .col-lg-6,
  .cid-u7yVDUCoif .col-lg-7,
  .cid-u7yVDUCoif .col-lg-8,
  .cid-u7yVDUCoif .col-lg-9,
  .cid-u7yVDUCoif .col-lg-auto,
  .cid-u7yVDUCoif .col-md,
  .cid-u7yVDUCoif .col-md-1,
  .cid-u7yVDUCoif .col-md-10,
  .cid-u7yVDUCoif .col-md-11,
  .cid-u7yVDUCoif .col-md-12,
  .cid-u7yVDUCoif .col-md-2,
  .cid-u7yVDUCoif .col-md-3,
  .cid-u7yVDUCoif .col-md-4,
  .cid-u7yVDUCoif .col-md-5,
  .cid-u7yVDUCoif .col-md-6,
  .cid-u7yVDUCoif .col-md-7,
  .cid-u7yVDUCoif .col-md-8,
  .cid-u7yVDUCoif .col-md-9,
  .cid-u7yVDUCoif .col-md-auto,
  .cid-u7yVDUCoif .col-sm,
  .cid-u7yVDUCoif .col-sm-1,
  .cid-u7yVDUCoif .col-sm-10,
  .cid-u7yVDUCoif .col-sm-11,
  .cid-u7yVDUCoif .col-sm-12,
  .cid-u7yVDUCoif .col-sm-2,
  .cid-u7yVDUCoif .col-sm-3,
  .cid-u7yVDUCoif .col-sm-4,
  .cid-u7yVDUCoif .col-sm-5,
  .cid-u7yVDUCoif .col-sm-6,
  .cid-u7yVDUCoif .col-sm-7,
  .cid-u7yVDUCoif .col-sm-8,
  .cid-u7yVDUCoif .col-sm-9,
  .cid-u7yVDUCoif .col-sm-auto,
  .cid-u7yVDUCoif .col-xl,
  .cid-u7yVDUCoif .col-xl-1,
  .cid-u7yVDUCoif .col-xl-10,
  .cid-u7yVDUCoif .col-xl-11,
  .cid-u7yVDUCoif .col-xl-12,
  .cid-u7yVDUCoif .col-xl-2,
  .cid-u7yVDUCoif .col-xl-3,
  .cid-u7yVDUCoif .col-xl-4,
  .cid-u7yVDUCoif .col-xl-5,
  .cid-u7yVDUCoif .col-xl-6,
  .cid-u7yVDUCoif .col-xl-7,
  .cid-u7yVDUCoif .col-xl-8,
  .cid-u7yVDUCoif .col-xl-9,
  .cid-u7yVDUCoif .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVDUCoif .content {
    text-align: left;
  }
  .cid-u7yVDUCoif .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVDUCoif .logo_footer_box {
    position: relative;
  }
  .cid-u7yVDUCoif .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVDUCoif .logo_footer {
    position: relative;
  }
  .cid-u7yVDUCoif .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVDUCoif .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rS6Gu520fM {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rS6Gu520fM {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rS6GFiJf0K {
  background-image: url("../../../assets/images/img-5731-2000x1333.jpg");
}
.cid-rS6GFiJf0K P {
  color: #767676;
}
.cid-rS6GSKPVBi {
  background: #ffffff;
}
.cid-rS6GSKPVBi .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS6GSKPVBi figcaption {
  position: relative;
}
.cid-rS6GSKPVBi figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS6GSKPVBi .image-block {
    width: 100% !important;
  }
}
.cid-rS6HbFIF00 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rS6HbFIF00 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS6HbFIF00 h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS6HbFIF00 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS6HbFIF00 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS6HvJG3ky {
  background-image: url("../../../assets/images/img-5809-2000x1333.jpg");
}
.cid-rS6HvJG3ky P {
  color: #767676;
}
.cid-rS6HzpLSLf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rS6HzpLSLf .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS6HzpLSLf h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS6HzpLSLf .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS6HzpLSLf .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS6HBV1uTz {
  background: #ffffff;
}
.cid-rS6HBV1uTz .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS6HBV1uTz figcaption {
  position: relative;
}
.cid-rS6HBV1uTz figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS6HBV1uTz .image-block {
    width: 100% !important;
  }
}
.cid-rS6HKMl0tn {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS6HKMl0tn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS6HKMl0tn p {
  color: #767676;
  text-align: left;
}
.cid-rS6HKMl0tn .card-box {
  padding-top: 2rem;
}
.cid-rS6HKMl0tn .card-wrapper {
  height: 100%;
}
.cid-rS6I1SwLuP {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rS6I1SwLuP .images-container.container-fluid {
  padding: 0;
}
.cid-rS6I1SwLuP .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS6I1SwLuP .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS6I1SwLuP .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS6I1SwLuP .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS6I1SwLuP .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS6I1SwLuP .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS6I1SwLuP .img-item {
    width: 100% !important;
  }
  .cid-rS6I1SwLuP .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS6I89xiVN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS6I89xiVN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS6I89xiVN p {
  color: #767676;
  text-align: left;
}
.cid-rS6I89xiVN .card-box {
  padding-top: 2rem;
}
.cid-rS6I89xiVN .card-wrapper {
  height: 100%;
}
.cid-rSnkyFmNJq {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rSnkyFmNJq .images-container.container-fluid {
  padding: 0;
}
.cid-rSnkyFmNJq .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rSnkyFmNJq .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rSnkyFmNJq .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rSnkyFmNJq .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rSnkyFmNJq .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rSnkyFmNJq .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rSnkyFmNJq .img-item {
    width: 100% !important;
  }
  .cid-rSnkyFmNJq .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rSnispCvTI {
  padding-top: 0px;
  padding-bottom: 60px;
  background: #f9ceb2;
}
.cid-rSnispCvTI .images-container.container-fluid {
  padding: 0;
}
.cid-rSnispCvTI .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rSnispCvTI .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rSnispCvTI .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rSnispCvTI .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rSnispCvTI .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rSnispCvTI .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rSnispCvTI .img-item {
    width: 100% !important;
  }
  .cid-rSnispCvTI .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS6IaIPJ5e {
  background-image: url("../../../assets/images/25000euronacht-0032-v2-2000x3000.jpg");
}
.cid-rS6IaIPJ5e P {
  color: #767676;
}
.cid-rS6JIVz1ww {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rS6JIVz1ww h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS6JIVz1ww p {
  color: #767676;
  text-align: left;
}
.cid-rS6JIVz1ww .card-box {
  padding-top: 2rem;
}
.cid-rS6JIVz1ww .card-wrapper {
  height: 100%;
}
.cid-rS6JIVz1ww P {
  color: #ffffff;
}
.cid-se4ha11iB9 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-16-2000x1330.png");
}
.cid-se4ha11iB9 H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-se4ha11iB9 .mbr-section-subtitle {
  color: #000000;
}
.cid-se4ha11iB9 span {
  visibility: hidden;
}
.cid-se4ha11iB9 .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4ha11iB9 span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rS6IbA1xKE {
  background-image: url("../../../assets/images/biennale-21-2000x1333.jpg");
}
.cid-rS6IbA1xKE P {
  color: #767676;
}
.cid-rS6KJmne3Q {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rS6KJmne3Q H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rS6KJmne3Q .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rS6KJmne3Q .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rS6KJmne3Q .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rS6KRHA3u9 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS6KRHA3u9 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rS6KRHA3u9 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS6KRHA3u9 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS6KWaZMQu {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rS6KWaZMQu .images-container.container-fluid {
  padding: 0;
}
.cid-rS6KWaZMQu .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS6KWaZMQu .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS6KWaZMQu .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS6KWaZMQu .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS6KWaZMQu .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS6KWaZMQu .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS6KWaZMQu .img-item {
    width: 100% !important;
  }
  .cid-rS6KWaZMQu .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS6L3yoqHZ {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rS6L3yoqHZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS6L3yoqHZ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS6L3yoqHZ .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS6L3yoqHZ .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS6LfsPGnL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS6LfsPGnL .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rS6LfsPGnL h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS6LfsPGnL .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS6LDYDN7o {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-rS6LDYDN7o h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS6LDYDN7o p {
  color: #767676;
  text-align: left;
}
.cid-rS6LDYDN7o .card-box {
  padding-top: 2rem;
}
.cid-rS6LDYDN7o .card-wrapper {
  height: 100%;
}
.cid-rS6LDYDN7o P {
  color: #1d1d1b;
}
.cid-rS6M4wK1ZJ {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rS6M4wK1ZJ H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rS6M4wK1ZJ .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rS6M4wK1ZJ .breites_Zitat,
  .cid-rS6M4wK1ZJ .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rS6MnUg0Yw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS6MnUg0Yw .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS6MnUg0Yw h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS6MnUg0Yw .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS6MnUg0Yw .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS6MslPhMM {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rS6MslPhMM .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS6MslPhMM .video-block {
    width: 100% !important;
  }
}
.cid-rS6MslPhMM .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS6MTtRPdB {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-rS6MTtRPdB .images-container.container-fluid {
  padding: 0;
}
.cid-rS6MTtRPdB .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS6MTtRPdB .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS6MTtRPdB .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS6MTtRPdB .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS6MTtRPdB .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS6MTtRPdB .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS6MTtRPdB .img-item {
    width: 100% !important;
  }
  .cid-rS6MTtRPdB .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS6MWE0ml4 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rS6MWE0ml4 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS6MWE0ml4 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS6MWE0ml4 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS6MWE0ml4 .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-rS6NudhDUR {
  background-image: url("../../../assets/images/25000euronacht-0041-v2-2000x1333.jpg");
}
.cid-rS6NudhDUR P {
  color: #767676;
}
.cid-rSnlsHJG3M {
  background: #ffffff;
}
.cid-rSnlsHJG3M .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSnlsHJG3M figcaption {
  position: relative;
}
.cid-rSnlsHJG3M figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSnlsHJG3M .image-block {
    width: 300% !important;
  }
}
.cid-uccC8JUb5R {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-uccC8JUb5R .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-uccC8JUb5R .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccC8JUb5R .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccC8JUb5R .mbr-figure,
  .cid-uccC8JUb5R img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccC8JUb5R .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccC8JUb5R .mbr-author-desc {
  color: #000000;
}
.cid-uccC8JUb5R h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccC8JUb5R .text_block {
  margin-top: 0px;
}
.cid-uccC8JUb5R .h2_block {
  margin-bottom: 20px;
}
.cid-uccC8JUb5R .mbr-figure {
  align-self: flex-start;
}
.cid-uccC8JUb5R .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccC8JUb5R .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccC8JUb5R .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccC8JUb5R a svg polygon {
  fill: white !important;
}
.cid-uccC8JUb5R a:hover {
  Color: #F9CEB2!important;
}
.cid-uccC8JUb5R a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccC8JUb5R .btn-white-outline:hover,
.cid-uccC8JUb5R .btn-white-outline:focus,
.cid-uccC8JUb5R .btn-white-outline.focus,
.cid-uccC8JUb5R .btn-white-outline.active,
.cid-uccC8JUb5R .btn-black-outline:hover,
.cid-uccC8JUb5R .btn-black-outline:focus,
.cid-uccC8JUb5R .btn-black-outline.focus,
.cid-uccC8JUb5R .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccC8JUb5R .display-5 {
    line-height: 1;
  }
  .cid-uccC8JUb5R .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccC8JUb5R .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccC8JUb5R .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rSnluwAWoO {
  background: #ffffff;
}
.cid-rSnluwAWoO .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSnluwAWoO figcaption {
  position: relative;
}
.cid-rSnluwAWoO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSnluwAWoO .image-block {
    width: 300% !important;
  }
}
.cid-rSnlyiS1FR {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-rSnlyiS1FR .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSnlyiS1FR h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSnlyiS1FR .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSnlyiS1FR .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSnlLMx0ar {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSnlLMx0ar .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSnlLMx0ar .video-block {
    width: 100% !important;
  }
}
.cid-rSnlLMx0ar .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSnmc2S3YS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-rSnmc2S3YS .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rSnmc2S3YS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSnmc2S3YS p {
  color: #767676;
  text-align: left;
}
.cid-rSnmc2S3YS .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rSnmc2S3YS .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rSnmc2S3YS .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rSnmc2S3YS .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rSnmc2S3YS .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rSnmc2S3YS .notched-box:before,
.cid-rSnmc2S3YS .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rSnmc2S3YS .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rSnmc2S3YS .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rSnmc2S3YS .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rSnmc2S3YS .border:before,
.cid-rSnmc2S3YS .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rSnmc2S3YS .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rSnmc2S3YS .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rSnmc2S3YS .mbr-author-name {
  padding-left: 40px;
}
.cid-rSnmc2S3YS P {
  color: #ffffff;
}
.cid-rSnmc2S3YS .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -10px;
}
.cid-rSnmc2S3YS a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rSnmc2S3YS a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSnmrloLMc {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rSnmrloLMc .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSnmrloLMc h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSnmrloLMc .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSnmrloLMc .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSnn0X2B0p {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSnn0X2B0p .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSnn0X2B0p .video-block {
    width: 100% !important;
  }
}
.cid-rSnn0X2B0p .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSoCMX2c2u {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rSoCMX2c2u h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSoCMX2c2u p {
  color: #767676;
  text-align: left;
}
.cid-rSoCMX2c2u .card-box {
  padding-top: 2rem;
}
.cid-rSoCMX2c2u .card-wrapper {
  height: 100%;
}
.cid-rSoCMX2c2u P {
  color: #1d1d1b;
  font-weight: 200;
}
.cid-rSoHnJq9Jh {
  background-image: url("../../../assets/images/erinyen-1256x693.jpg");
}
.cid-rSoHnJq9Jh P {
  color: #767676;
}
.cid-rSoEFbSHzc {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSoEFbSHzc .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSoEFbSHzc h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSoEFbSHzc .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSoEQmhTP1 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSoEQmhTP1 .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rSoEQmhTP1 .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rSoEQmhTP1 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rSoEQmhTP1 .mbr-figure,
  .cid-rSoEQmhTP1 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rSoEQmhTP1 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rSoEQmhTP1 .mbr-author-desc {
  color: #000000;
}
.cid-rSoEQmhTP1 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSoEQmhTP1 .text_block {
  margin-top: 0px;
}
.cid-rSoEQmhTP1 .h2_block {
  margin-bottom: 20px;
}
.cid-rSoEQmhTP1 .mbr-figure {
  align-self: flex-start;
}
.cid-rSoEQmhTP1 .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rSoEQmhTP1 .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rSoEQmhTP1 .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rSoEQmhTP1 .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rSoEQmhTP1 .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rSoEONFB9U {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSoEONFB9U .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rSoEONFB9U .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rSoEONFB9U .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rSoEONFB9U .mbr-figure,
  .cid-rSoEONFB9U img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rSoEONFB9U .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rSoEONFB9U .mbr-author-desc {
  color: #000000;
}
.cid-rSoEONFB9U h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSoEONFB9U .text_block {
  margin-top: 0px;
}
.cid-rSoEONFB9U .h2_block {
  margin-bottom: 20px;
}
.cid-rSoEONFB9U .mbr-figure {
  align-self: flex-start;
}
.cid-rSoEONFB9U .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rSoEONFB9U .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rSoEONFB9U .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rSoEONFB9U .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rSoEONFB9U .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rSoGhM8Mi5 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSoGhM8Mi5 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSoGhM8Mi5 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSoGhM8Mi5 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSoGhM8Mi5 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSoGONVz1E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rSoGONVz1E h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSoGONVz1E p {
  color: #767676;
  text-align: left;
}
.cid-rSoGONVz1E .card-box {
  padding-top: 2rem;
}
.cid-rSoGONVz1E .card-wrapper {
  height: 100%;
}
.cid-rSoGMutFCL {
  background-image: url("../../../assets/images/img-5743-2-2000x1238.jpg");
}
.cid-rSoGMutFCL P {
  color: #767676;
}
.cid-uccBZcvtGP {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #f9ceb2;
}
.cid-uccBZcvtGP h1 {
  font-weight: 700 !important;
  font-size: 10rem;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
}
.cid-uccBZcvtGP .space_down_50 {
  margin-bottom: 50px;
}
.cid-uccBZcvtGP .mbr-text-u P {
  text-align: center;
  text-decoration: underline;
  font-weight: 600;
}
.cid-uccBZcvtGP .mbr-tex {
  text-align: left;
}
.cid-uccBZcvtGP .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uccBZcvtGP .display-btn {
  font-family: chivo;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-uccBZcvtGP .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-uccBZcvtGP a:hover {
  Color: #a76645;
}
.cid-uccBZcvtGP a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccBZcvtGP .btn-black-outline:hover,
.cid-uccBZcvtGP .btn-black-outline:focus,
.cid-uccBZcvtGP .btn-black-outline.focus,
.cid-uccBZcvtGP .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-uccBZcvtGP .display-5 {
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
  margin-bottom: 0px;
  margin-left: 1rem;
}
.cid-uccBZcvtGP .container {
  border-color: black;
  border-width: 5px;
  border-style: solid;
}
.cid-uccBZcvtGP .mbr-white {
  margin-top: 5rem;
}
.cid-uccBZcvtGP .mbr-figure {
  padding-top: 1.5rem;
  padding-left: 0.5rem;
  width: 65%;
}
.cid-uccBZcvtGP .testimonial-text {
  color: #f9ceb2;
}
@media (max-width: 768px) {
  .cid-uccBZcvtGP .display-btn {
    line-height: 1;
  }
  .cid-uccBZcvtGP .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccBZcvtGP .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7yVB3Yiv4 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVB3Yiv4 .content {
    text-align: center;
  }
  .cid-u7yVB3Yiv4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVB3Yiv4 .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVB3Yiv4 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVB3Yiv4 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVB3Yiv4 .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVB3Yiv4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVB3Yiv4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVB3Yiv4 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVB3Yiv4 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVB3Yiv4 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVB3Yiv4 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVB3Yiv4 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVB3Yiv4 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVB3Yiv4 H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVB3Yiv4 P {
  color: #ffffff;
}
.cid-u7yVB3Yiv4 .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVB3Yiv4 .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVB3Yiv4 .logo_footer {
  position: relative;
}
.cid-u7yVB3Yiv4 .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVB3Yiv4 .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVB3Yiv4 .col,
  .cid-u7yVB3Yiv4 .col-1,
  .cid-u7yVB3Yiv4 .col-10,
  .cid-u7yVB3Yiv4 .col-11,
  .cid-u7yVB3Yiv4 .col-12,
  .cid-u7yVB3Yiv4 .col-2,
  .cid-u7yVB3Yiv4 .col-3,
  .cid-u7yVB3Yiv4 .col-4,
  .cid-u7yVB3Yiv4 .col-5,
  .cid-u7yVB3Yiv4 .col-6,
  .cid-u7yVB3Yiv4 .col-7,
  .cid-u7yVB3Yiv4 .col-8,
  .cid-u7yVB3Yiv4 .col-9,
  .cid-u7yVB3Yiv4 .col-auto,
  .cid-u7yVB3Yiv4 .col-lg,
  .cid-u7yVB3Yiv4 .col-lg-1,
  .cid-u7yVB3Yiv4 .col-lg-10,
  .cid-u7yVB3Yiv4 .col-lg-11,
  .cid-u7yVB3Yiv4 .col-lg-12,
  .cid-u7yVB3Yiv4 .col-lg-2,
  .cid-u7yVB3Yiv4 .col-lg-3,
  .cid-u7yVB3Yiv4 .col-lg-4,
  .cid-u7yVB3Yiv4 .col-lg-5,
  .cid-u7yVB3Yiv4 .col-lg-6,
  .cid-u7yVB3Yiv4 .col-lg-7,
  .cid-u7yVB3Yiv4 .col-lg-8,
  .cid-u7yVB3Yiv4 .col-lg-9,
  .cid-u7yVB3Yiv4 .col-lg-auto,
  .cid-u7yVB3Yiv4 .col-md,
  .cid-u7yVB3Yiv4 .col-md-1,
  .cid-u7yVB3Yiv4 .col-md-10,
  .cid-u7yVB3Yiv4 .col-md-11,
  .cid-u7yVB3Yiv4 .col-md-12,
  .cid-u7yVB3Yiv4 .col-md-2,
  .cid-u7yVB3Yiv4 .col-md-3,
  .cid-u7yVB3Yiv4 .col-md-4,
  .cid-u7yVB3Yiv4 .col-md-5,
  .cid-u7yVB3Yiv4 .col-md-6,
  .cid-u7yVB3Yiv4 .col-md-7,
  .cid-u7yVB3Yiv4 .col-md-8,
  .cid-u7yVB3Yiv4 .col-md-9,
  .cid-u7yVB3Yiv4 .col-md-auto,
  .cid-u7yVB3Yiv4 .col-sm,
  .cid-u7yVB3Yiv4 .col-sm-1,
  .cid-u7yVB3Yiv4 .col-sm-10,
  .cid-u7yVB3Yiv4 .col-sm-11,
  .cid-u7yVB3Yiv4 .col-sm-12,
  .cid-u7yVB3Yiv4 .col-sm-2,
  .cid-u7yVB3Yiv4 .col-sm-3,
  .cid-u7yVB3Yiv4 .col-sm-4,
  .cid-u7yVB3Yiv4 .col-sm-5,
  .cid-u7yVB3Yiv4 .col-sm-6,
  .cid-u7yVB3Yiv4 .col-sm-7,
  .cid-u7yVB3Yiv4 .col-sm-8,
  .cid-u7yVB3Yiv4 .col-sm-9,
  .cid-u7yVB3Yiv4 .col-sm-auto,
  .cid-u7yVB3Yiv4 .col-xl,
  .cid-u7yVB3Yiv4 .col-xl-1,
  .cid-u7yVB3Yiv4 .col-xl-10,
  .cid-u7yVB3Yiv4 .col-xl-11,
  .cid-u7yVB3Yiv4 .col-xl-12,
  .cid-u7yVB3Yiv4 .col-xl-2,
  .cid-u7yVB3Yiv4 .col-xl-3,
  .cid-u7yVB3Yiv4 .col-xl-4,
  .cid-u7yVB3Yiv4 .col-xl-5,
  .cid-u7yVB3Yiv4 .col-xl-6,
  .cid-u7yVB3Yiv4 .col-xl-7,
  .cid-u7yVB3Yiv4 .col-xl-8,
  .cid-u7yVB3Yiv4 .col-xl-9,
  .cid-u7yVB3Yiv4 .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVB3Yiv4 .content {
    text-align: left;
  }
  .cid-u7yVB3Yiv4 .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVB3Yiv4 .logo_footer_box {
    position: relative;
  }
  .cid-u7yVB3Yiv4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVB3Yiv4 .logo_footer {
    position: relative;
  }
  .cid-u7yVB3Yiv4 .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVB3Yiv4 .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRQmIUGDkb {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRQmIUGDkb {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rRQncG7F5v {
  background-image: url("../../../assets/images/dsc-0984-kopie-2000x2690.jpg");
}
.cid-rRQncG7F5v P {
  color: #767676;
}
.cid-rRQnqxXLp6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRQnqxXLp6 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRQnqxXLp6 h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRQnqxXLp6 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRQnqxXLp6 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRQnLlIGJn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRQnLlIGJn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRQnLlIGJn p {
  color: #767676;
  text-align: left;
}
.cid-rRQnLlIGJn .card-box {
  padding-top: 2rem;
}
.cid-rRQnLlIGJn .card-wrapper {
  height: 100%;
}
.cid-se4iXQuy8V {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-5-1500x490.jpg");
}
.cid-se4iXQuy8V H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-se4iXQuy8V .mbr-section-subtitle {
  color: #ffffff;
}
.cid-se4iXQuy8V span {
  visibility: hidden;
}
.cid-se4iXQuy8V .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4iXQuy8V span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rRQonH6S4r {
  background-image: url("../../../assets/images/dsc-996-2000x1339.jpg");
}
.cid-rRQonH6S4r P {
  color: #767676;
}
.cid-rRQoCLQUuF {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRQoCLQUuF .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRQoCLQUuF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRQoCLQUuF .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRQoFJBjLo {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRQoFJBjLo .images-container.container-fluid {
  padding: 0;
}
.cid-rRQoFJBjLo .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
  width: 100% !important;
}
.cid-rRQoFJBjLo .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRQoFJBjLo .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRQoFJBjLo .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRQoFJBjLo .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRQoFJBjLo .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRQoFJBjLo .img-item {
    width: 100% !important;
  }
  .cid-rRQoFJBjLo .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRQp1swpeH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRQp1swpeH h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRQp1swpeH p {
  color: #767676;
  text-align: left;
}
.cid-rRQp1swpeH .card-box {
  padding-top: 2rem;
}
.cid-rRQp1swpeH .card-wrapper {
  height: 100%;
}
.cid-rRQplw8KvU {
  background-image: url("../../../assets/images/dsc-1019-2-2000x1339.jpg");
}
.cid-rRQplw8KvU P {
  color: #767676;
}
.cid-rUbbQRObnJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUbbQRObnJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rUbbQRObnJ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUbbQRObnJ .space_down_50 {
  margin-bottom: 50px;
}
.cid-rUbbQRObnJ .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRQpGe41ig {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRQpGe41ig .images-container.container-fluid {
  padding: 0;
}
.cid-rRQpGe41ig .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRQpGe41ig .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRQpGe41ig .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRQpGe41ig .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRQpGe41ig .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRQpGe41ig .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRQpGe41ig .img-item {
    width: 100% !important;
  }
  .cid-rRQpGe41ig .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRQpUTLUvl {
  background: #ffffff;
  padding-top: 90px;
  padding-bottom: 60px;
}
.cid-rRQpUTLUvl .image-block {
  margin: auto;
}
.cid-rRQpUTLUvl figcaption {
  position: relative;
}
.cid-rRQpUTLUvl figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRQpUTLUvl .image-block {
    width: 100% !important;
  }
}
.cid-rRQqtkt0Y2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-13-2000x1333.png");
}
.cid-rRQqtkt0Y2 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRQqtkt0Y2 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRQqtkt0Y2 p {
  color: #767676;
  text-align: left;
}
.cid-rRQqtkt0Y2 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRQqtkt0Y2 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRQqtkt0Y2 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRQqtkt0Y2 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRQqtkt0Y2 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRQqtkt0Y2 .notched-box:before,
.cid-rRQqtkt0Y2 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRQqtkt0Y2 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRQqtkt0Y2 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRQqtkt0Y2 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRQqtkt0Y2 .border:before,
.cid-rRQqtkt0Y2 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRQqtkt0Y2 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRQqtkt0Y2 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRQqtkt0Y2 .mbr-author-name {
  padding-left: 40px;
}
.cid-rRQqtkt0Y2 P {
  color: #000000;
  line-height: 1.3;
}
.cid-rRQqtkt0Y2 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRQr9LPTZ0 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRQr9LPTZ0 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRQr9LPTZ0 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRQr9LPTZ0 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRQrj6ck89 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRQrj6ck89 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRQrj6ck89 p {
  color: #767676;
  text-align: left;
}
.cid-rRQrj6ck89 .card-box {
  padding-top: 2rem;
}
.cid-rRQrj6ck89 .card-wrapper {
  height: 100%;
}
.cid-rRQrj6ck89 P {
  color: #1d1d1b;
}
.cid-rRQscUpVgd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRQscUpVgd .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
}
.cid-rRQscUpVgd .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rRQscUpVgd .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRQscUpVgd .mbr-figure,
  .cid-rRQscUpVgd img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRQscUpVgd .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRQscUpVgd h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRQscUpVgd .h2_block {
  margin-bottom: 20px;
}
.cid-rRQscUpVgd .mbr-figure {
  align-self: flex-start;
}
.cid-rRQtl3Cn3t {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRQtl3Cn3t .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRQtl3Cn3t .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRQtl3Cn3t .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rRQtl3Cn3t .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRQtl3Cn3t .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRQtl3Cn3t .mbr-figure,
  .cid-rRQtl3Cn3t img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRQtl3Cn3t h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRQtl3Cn3t .text_block {
  margin-top: 0px;
}
.cid-rRQtl3Cn3t .h2_block {
  margin-bottom: 20px;
}
.cid-rRQtl3Cn3t .mbr-figure {
  align-self: flex-start;
}
.cid-rRQtl3Cn3t .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRQtl3Cn3t .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRQtl3Cn3t a:hover {
  Color: #a76645 !important;
}
.cid-rRQtl3Cn3t a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRQtl3Cn3t .btn-black-outline:hover,
.cid-rRQtl3Cn3t .btn-black-outline:focus,
.cid-rRQtl3Cn3t .btn-black-outline.focus,
.cid-rRQtl3Cn3t .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRQtl3Cn3t .display-5 {
    line-height: 1;
  }
  .cid-rRQtl3Cn3t .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRQtl3Cn3t .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRQtl3Cn3t .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRQtl3Cn3t .content {
  padding-left: 3px;
}
.cid-rRQtKy8vLK {
  padding-top: 30px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-rRQtKy8vLK .images-container.container-fluid {
  padding: 0;
}
.cid-rRQtKy8vLK .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRQtKy8vLK .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRQtKy8vLK .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRQtKy8vLK .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRQtKy8vLK .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRQtKy8vLK .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRQtKy8vLK .img-item {
    width: 100% !important;
  }
  .cid-rRQtKy8vLK .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-u7A8rePOY7 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7A8rePOY7 .content {
    text-align: center;
  }
  .cid-u7A8rePOY7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7A8rePOY7 .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7A8rePOY7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7A8rePOY7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7A8rePOY7 .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7A8rePOY7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7A8rePOY7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7A8rePOY7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7A8rePOY7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7A8rePOY7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7A8rePOY7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7A8rePOY7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7A8rePOY7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7A8rePOY7 H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7A8rePOY7 P {
  color: #ffffff;
}
.cid-u7A8rePOY7 .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7A8rePOY7 .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7A8rePOY7 .logo_footer {
  position: relative;
}
.cid-u7A8rePOY7 .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7A8rePOY7 .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7A8rePOY7 .col,
  .cid-u7A8rePOY7 .col-1,
  .cid-u7A8rePOY7 .col-10,
  .cid-u7A8rePOY7 .col-11,
  .cid-u7A8rePOY7 .col-12,
  .cid-u7A8rePOY7 .col-2,
  .cid-u7A8rePOY7 .col-3,
  .cid-u7A8rePOY7 .col-4,
  .cid-u7A8rePOY7 .col-5,
  .cid-u7A8rePOY7 .col-6,
  .cid-u7A8rePOY7 .col-7,
  .cid-u7A8rePOY7 .col-8,
  .cid-u7A8rePOY7 .col-9,
  .cid-u7A8rePOY7 .col-auto,
  .cid-u7A8rePOY7 .col-lg,
  .cid-u7A8rePOY7 .col-lg-1,
  .cid-u7A8rePOY7 .col-lg-10,
  .cid-u7A8rePOY7 .col-lg-11,
  .cid-u7A8rePOY7 .col-lg-12,
  .cid-u7A8rePOY7 .col-lg-2,
  .cid-u7A8rePOY7 .col-lg-3,
  .cid-u7A8rePOY7 .col-lg-4,
  .cid-u7A8rePOY7 .col-lg-5,
  .cid-u7A8rePOY7 .col-lg-6,
  .cid-u7A8rePOY7 .col-lg-7,
  .cid-u7A8rePOY7 .col-lg-8,
  .cid-u7A8rePOY7 .col-lg-9,
  .cid-u7A8rePOY7 .col-lg-auto,
  .cid-u7A8rePOY7 .col-md,
  .cid-u7A8rePOY7 .col-md-1,
  .cid-u7A8rePOY7 .col-md-10,
  .cid-u7A8rePOY7 .col-md-11,
  .cid-u7A8rePOY7 .col-md-12,
  .cid-u7A8rePOY7 .col-md-2,
  .cid-u7A8rePOY7 .col-md-3,
  .cid-u7A8rePOY7 .col-md-4,
  .cid-u7A8rePOY7 .col-md-5,
  .cid-u7A8rePOY7 .col-md-6,
  .cid-u7A8rePOY7 .col-md-7,
  .cid-u7A8rePOY7 .col-md-8,
  .cid-u7A8rePOY7 .col-md-9,
  .cid-u7A8rePOY7 .col-md-auto,
  .cid-u7A8rePOY7 .col-sm,
  .cid-u7A8rePOY7 .col-sm-1,
  .cid-u7A8rePOY7 .col-sm-10,
  .cid-u7A8rePOY7 .col-sm-11,
  .cid-u7A8rePOY7 .col-sm-12,
  .cid-u7A8rePOY7 .col-sm-2,
  .cid-u7A8rePOY7 .col-sm-3,
  .cid-u7A8rePOY7 .col-sm-4,
  .cid-u7A8rePOY7 .col-sm-5,
  .cid-u7A8rePOY7 .col-sm-6,
  .cid-u7A8rePOY7 .col-sm-7,
  .cid-u7A8rePOY7 .col-sm-8,
  .cid-u7A8rePOY7 .col-sm-9,
  .cid-u7A8rePOY7 .col-sm-auto,
  .cid-u7A8rePOY7 .col-xl,
  .cid-u7A8rePOY7 .col-xl-1,
  .cid-u7A8rePOY7 .col-xl-10,
  .cid-u7A8rePOY7 .col-xl-11,
  .cid-u7A8rePOY7 .col-xl-12,
  .cid-u7A8rePOY7 .col-xl-2,
  .cid-u7A8rePOY7 .col-xl-3,
  .cid-u7A8rePOY7 .col-xl-4,
  .cid-u7A8rePOY7 .col-xl-5,
  .cid-u7A8rePOY7 .col-xl-6,
  .cid-u7A8rePOY7 .col-xl-7,
  .cid-u7A8rePOY7 .col-xl-8,
  .cid-u7A8rePOY7 .col-xl-9,
  .cid-u7A8rePOY7 .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7A8rePOY7 .content {
    text-align: left;
  }
  .cid-u7A8rePOY7 .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7A8rePOY7 .logo_footer_box {
    position: relative;
  }
  .cid-u7A8rePOY7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7A8rePOY7 .logo_footer {
    position: relative;
  }
  .cid-u7A8rePOY7 .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7A8rePOY7 .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRQaxc171t {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRQaxc171t {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rSK02oThvj {
  background-image: url("../../../assets/images/shapeimage-1-688x465-66-688x465.png");
}
.cid-rSK02oThvj P {
  color: #767676;
}
.cid-rSK0CpUa2A {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSK0CpUa2A .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSK0CpUa2A h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSK0CpUa2A .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSK0CpUa2A .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSK2ghdK6k {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rSK2ghdK6k h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSK2ghdK6k p {
  color: #767676;
  text-align: left;
}
.cid-rSK2ghdK6k .card-box {
  padding-top: 2rem;
}
.cid-rSK2ghdK6k .card-wrapper {
  height: 100%;
}
.cid-rSK2ghdK6k P {
  color: #1d1d1b;
}
.cid-rSK2JuCZqt {
  background: #ffffff;
}
.cid-rSK2JuCZqt .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSK2JuCZqt figcaption {
  position: relative;
}
.cid-rSK2JuCZqt figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSK2JuCZqt .image-block {
    width: 100% !important;
  }
}
.cid-soNyer3rH7 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-soNyer3rH7 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-soNyer3rH7 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-soNyer3rH7 .space_down_30 {
  margin-bottom: 30px;
}
.cid-soNyer3rH7 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-soNycSNEsH {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-soNycSNEsH .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-soNycSNEsH .video-block {
    width: 100% !important;
  }
}
.cid-soNycSNEsH .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSK2PNDevd {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-rSK2PNDevd .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSK2PNDevd .video-block {
    width: 100% !important;
  }
}
.cid-rSK2PNDevd .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSK2SKRLQD {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSK2SKRLQD .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSK2SKRLQD h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSK2SKRLQD .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSK2SKRLQD .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSK32a4BTu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rSK32a4BTu h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSK32a4BTu p {
  color: #767676;
  text-align: left;
}
.cid-rSK32a4BTu .card-box {
  padding-top: 2rem;
}
.cid-rSK32a4BTu .card-wrapper {
  height: 100%;
}
.cid-rSK32a4BTu P {
  color: #ffffff;
}
.cid-rSK36npSb3 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-13-2000x1333.png");
}
.cid-rSK36npSb3 .testimonial-text {
  font-style: italic;
  color: #000000;
  text-align: left;
}
.cid-rSK36npSb3 .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rSK36npSb3 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rSK36npSb3 .mbr-figure,
  .cid-rSK36npSb3 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rSK36npSb3 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rSK36npSb3 .mbr-author-desc {
  color: #000000;
}
.cid-rSK36npSb3 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSK36npSb3 .text_block {
  margin-top: 0px;
}
.cid-rSK36npSb3 .h2_block {
  margin-bottom: 20px;
}
.cid-rSK36npSb3 .mbr-figure {
  align-self: flex-start;
}
.cid-rSK36npSb3 .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rSK36npSb3 .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rSK36npSb3 .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rSK36npSb3 .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rSK36npSb3 .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rSK3FcfmJS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rSK3FcfmJS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSK3FcfmJS p {
  color: #767676;
  text-align: left;
}
.cid-rSK3FcfmJS .card-box {
  padding-top: 2rem;
}
.cid-rSK3FcfmJS .card-wrapper {
  height: 100%;
}
.cid-rSKtyGt42J {
  background-image: url("../../../assets/images/shapeimage-4-688x434-13-688x434.png");
}
.cid-rSKtyGt42J h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSKtyGt42J .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSK3WkWj1m {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSK3WkWj1m .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSK3WkWj1m h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSK3WkWj1m .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSK3WkWj1m .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSK40QwKcU {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSK40QwKcU .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSK40QwKcU .video-block {
    width: 100% !important;
  }
}
.cid-rSK40QwKcU .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSKcVqkWlu {
  background-image: url("../../../assets/images/dsc00159-2000x1500.jpg");
}
.cid-rSKcVqkWlu h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSKcVqkWlu .space_down_50 {
  margin-bottom: 50px;
}
.cid-rUeO0Parz1 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUeO0Parz1 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeO0Parz1 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeO0Parz1 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSKd2P1AS2 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rSKd2P1AS2 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSKd2P1AS2 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSKd2P1AS2 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSKd2P1AS2 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSK42m0JtZ {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSK42m0JtZ .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSK42m0JtZ .video-block {
    width: 100% !important;
  }
}
.cid-rSK42m0JtZ .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSK4gwCb5W {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSK4gwCb5W .testimonial-text {
  color: #1d1d1b;
}
.cid-rSK4gwCb5W .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rSK4gwCb5W .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rSK4gwCb5W .mbr-figure,
  .cid-rSK4gwCb5W img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rSK4gwCb5W .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rSK4gwCb5W h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSK4gwCb5W .h2_block {
  margin-bottom: 20px;
}
.cid-rSK4eZaJsX {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSK4eZaJsX .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rSK4eZaJsX .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rSK4eZaJsX .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rSK4eZaJsX .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rSK4eZaJsX .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rSK4eZaJsX .mbr-figure,
  .cid-rSK4eZaJsX img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rSK4eZaJsX h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSK4eZaJsX .text_block {
  margin-top: 0px;
}
.cid-rSK4eZaJsX .h2_block {
  margin-bottom: 20px;
}
.cid-rSK4eZaJsX .mbr-figure {
  align-self: flex-start;
}
.cid-rSK4eZaJsX .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rSK4eZaJsX .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rSK4eZaJsX a:hover {
  Color: #a76645 !important;
}
.cid-rSK4eZaJsX a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSK4eZaJsX .btn-black-outline:hover,
.cid-rSK4eZaJsX .btn-black-outline:focus,
.cid-rSK4eZaJsX .btn-black-outline.focus,
.cid-rSK4eZaJsX .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rSK4eZaJsX .display-5 {
    line-height: 1;
  }
  .cid-rSK4eZaJsX .btn {
    font-size: 1.5rem !important;
  }
  .cid-rSK4eZaJsX .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rSK4eZaJsX .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rSK4eZaJsX .content {
  padding-left: 3px;
}
.cid-rSKdyblyk7 {
  background-image: url("../../../assets/images/richter3-1163x649.jpg");
}
.cid-rSKdyblyk7 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSKdyblyk7 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSKdV3Dy6k {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rSKdV3Dy6k .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSKdV3Dy6k h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSKdV3Dy6k .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSKe1vhbEv {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSKe1vhbEv .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSKe1vhbEv .video-block {
    width: 100% !important;
  }
}
.cid-rSKe1vhbEv .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSK6n83Bwy {
  padding-top: 0px;
  padding-bottom: 120px;
  background: #000000;
}
.cid-rSK6n83Bwy .images-container.container-fluid {
  padding: 0;
}
.cid-rSK6n83Bwy .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rSK6n83Bwy .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rSK6n83Bwy .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rSK6n83Bwy .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rSK6n83Bwy .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rSK6n83Bwy .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rSK6n83Bwy .img-item {
    width: 100% !important;
  }
  .cid-rSK6n83Bwy .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rSKvR349mH {
  background: #ffffff;
}
.cid-rSKvR349mH .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSKvR349mH figcaption {
  position: relative;
}
.cid-rSKvR349mH figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSKvR349mH .image-block {
    width: 100% !important;
  }
}
.cid-rSKw8zHPis {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSKw8zHPis .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSKw8zHPis h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSKw8zHPis .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSK8od2eja {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSK8od2eja .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSK8od2eja h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSK8od2eja .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSK8od2eja .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSK6CffAUZ {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSK6CffAUZ .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rSK6CffAUZ .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rSK6CffAUZ .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rSK6CffAUZ .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rSK6CffAUZ .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rSK6CffAUZ .mbr-figure,
  .cid-rSK6CffAUZ img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rSK6CffAUZ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSK6CffAUZ .text_block {
  margin-top: 0px;
}
.cid-rSK6CffAUZ .h2_block {
  margin-bottom: 20px;
}
.cid-rSK6CffAUZ .mbr-figure {
  align-self: flex-start;
}
.cid-rSK6CffAUZ .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rSK6CffAUZ .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rSK6CffAUZ a:hover {
  Color: #a76645 !important;
}
.cid-rSK6CffAUZ a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSK6CffAUZ .btn-black-outline:hover,
.cid-rSK6CffAUZ .btn-black-outline:focus,
.cid-rSK6CffAUZ .btn-black-outline.focus,
.cid-rSK6CffAUZ .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rSK6CffAUZ .display-5 {
    line-height: 1;
  }
  .cid-rSK6CffAUZ .btn {
    font-size: 1.5rem !important;
  }
  .cid-rSK6CffAUZ .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rSK6CffAUZ .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rSK6CffAUZ .content {
  padding-left: 3px;
}
.cid-rSK9iCdSC7 {
  background-image: url("../../../assets/images/speakerscorner033-1000x666.jpg");
}
.cid-rSK9iCdSC7 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSK9iCdSC7 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rUeOFXUGPG {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUeOFXUGPG .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeOFXUGPG h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeOFXUGPG .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSK9nepLB7 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSK9nepLB7 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSK9nepLB7 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSK9nepLB7 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSK9nepLB7 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSK9olc6tX {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSK9olc6tX .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSK9olc6tX .video-block {
    width: 100% !important;
  }
}
.cid-rSK9olc6tX .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSK9waBxGa {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rSK9waBxGa h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSK9waBxGa p {
  color: #767676;
  text-align: left;
}
.cid-rSK9waBxGa .card-box {
  padding-top: 2rem;
}
.cid-rSK9waBxGa .card-wrapper {
  height: 100%;
}
.cid-rSK9waBxGa P {
  color: #1d1d1b;
}
.cid-rSK9zGXr8i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSK9zGXr8i h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSK9zGXr8i p {
  color: #767676;
  text-align: left;
}
.cid-rSK9zGXr8i .card-box {
  padding-top: 2rem;
}
.cid-rSK9zGXr8i .card-wrapper {
  height: 100%;
}
.cid-rSK9DnrxgR {
  background: #ffffff;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-rSK9DnrxgR .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSK9DnrxgR .video-block {
    width: 100% !important;
  }
}
.cid-rSK9DnrxgR .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSK9DPLyiY {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSK9DPLyiY .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSK9DPLyiY .video-block {
    width: 100% !important;
  }
}
.cid-rSK9DPLyiY .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSK9G3b4sV {
  background: #ffffff;
}
.cid-rSK9G3b4sV .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSK9G3b4sV figcaption {
  position: relative;
}
.cid-rSK9G3b4sV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSK9G3b4sV .image-block {
    width: 100% !important;
  }
}
.cid-rSK9R91Zf5 {
  background-image: url("../../../assets/images/asche-14-2000x1330.png");
}
.cid-rSK9R91Zf5 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSK9R91Zf5 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSK9TgA28t {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSK9TgA28t .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSK9TgA28t h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSK9TgA28t .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSK9TgA28t .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSK9VskOC6 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSK9VskOC6 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSK9VskOC6 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSK9VskOC6 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSKr2SW6b1 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rSKr2SW6b1 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rSKr2SW6b1 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rSKr2SW6b1 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rSKa7mlV79 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSKa7mlV79 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSKa7mlV79 p {
  color: #767676;
  text-align: left;
}
.cid-rSKa7mlV79 .card-box {
  padding-top: 2rem;
}
.cid-rSKa7mlV79 .card-wrapper {
  height: 100%;
}
.cid-rSKq5tgorA {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSKq5tgorA .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSKq5tgorA h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSKq5tgorA .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSKq5tgorA .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSKaihiMPN {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-rSKaihiMPN .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSKaihiMPN .video-block {
    width: 100% !important;
  }
}
.cid-rSKaihiMPN .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSKalRM1ap {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSKalRM1ap .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSKalRM1ap h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSKalRM1ap .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSKqtJiYtZ {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-rSKqtJiYtZ .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rSKqtJiYtZ .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rSKqtJiYtZ .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rSKaoWgy8r {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSKaoWgy8r .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSKaoWgy8r h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSKaoWgy8r .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSKaoWgy8r .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSKaqWn7Lx {
  background: #ffffff;
}
.cid-rSKaqWn7Lx .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSKaqWn7Lx figcaption {
  position: relative;
}
.cid-rSKaqWn7Lx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSKaqWn7Lx .image-block {
    width: 300% !important;
  }
}
.cid-uccDg88U1w {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-uccDg88U1w .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-uccDg88U1w .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccDg88U1w .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccDg88U1w .mbr-figure,
  .cid-uccDg88U1w img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccDg88U1w .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccDg88U1w .mbr-author-desc {
  color: #000000;
}
.cid-uccDg88U1w h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccDg88U1w .text_block {
  margin-top: 0px;
}
.cid-uccDg88U1w .h2_block {
  margin-bottom: 20px;
}
.cid-uccDg88U1w .mbr-figure {
  align-self: flex-start;
}
.cid-uccDg88U1w .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccDg88U1w .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccDg88U1w .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccDg88U1w a:hover {
  Color: #a76645 !important;
}
.cid-uccDg88U1w a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccDg88U1w .btn-black-outline:hover,
.cid-uccDg88U1w .btn-black-outline:focus,
.cid-uccDg88U1w .btn-black-outline.focus,
.cid-uccDg88U1w .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccDg88U1w .display-5 {
    line-height: 1;
  }
  .cid-uccDg88U1w .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccDg88U1w .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccDg88U1w .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rSKarq1tGo {
  background: #ffffff;
}
.cid-rSKarq1tGo .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSKarq1tGo figcaption {
  position: relative;
}
.cid-rSKarq1tGo figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSKarq1tGo .image-block {
    width: 300% !important;
  }
}
.cid-rSKaPr6PoT {
  background-image: url("../../../assets/images/shapeimage-1-688x285-64-688x285.png");
}
.cid-rSKaPr6PoT h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSKaPr6PoT .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSKaRNKqbN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rSKaRNKqbN .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSKaRNKqbN h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSKaRNKqbN .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSKaRNKqbN .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSKaUrFy2r {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSKaUrFy2r .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSKaUrFy2r .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rSKaUrFy2r .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rSKaUrFy2r a:hover {
  Color: #a76645;
}
.cid-rSKaUrFy2r a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSKaUrFy2r .btn-black-outline:hover,
.cid-rSKaUrFy2r .btn-black-outline:focus,
.cid-rSKaUrFy2r .btn-black-outline.focus,
.cid-rSKaUrFy2r .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rSKaUrFy2r .display-5 {
    line-height: 1;
  }
  .cid-rSKaUrFy2r .btn {
    font-size: 1.5rem !important;
  }
  .cid-rSKaUrFy2r .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rSKaZ7J98O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSKaZ7J98O h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSKaZ7J98O p {
  color: #767676;
  text-align: left;
}
.cid-rSKaZ7J98O .card-box {
  padding-top: 2rem;
}
.cid-rSKaZ7J98O .card-wrapper {
  height: 100%;
}
.cid-u7yVOcowa8 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVOcowa8 .content {
    text-align: center;
  }
  .cid-u7yVOcowa8 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVOcowa8 .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVOcowa8 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVOcowa8 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVOcowa8 .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVOcowa8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVOcowa8 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVOcowa8 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVOcowa8 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVOcowa8 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVOcowa8 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVOcowa8 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVOcowa8 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVOcowa8 H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVOcowa8 P {
  color: #ffffff;
}
.cid-u7yVOcowa8 .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVOcowa8 .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVOcowa8 .logo_footer {
  position: relative;
}
.cid-u7yVOcowa8 .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVOcowa8 .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVOcowa8 .col,
  .cid-u7yVOcowa8 .col-1,
  .cid-u7yVOcowa8 .col-10,
  .cid-u7yVOcowa8 .col-11,
  .cid-u7yVOcowa8 .col-12,
  .cid-u7yVOcowa8 .col-2,
  .cid-u7yVOcowa8 .col-3,
  .cid-u7yVOcowa8 .col-4,
  .cid-u7yVOcowa8 .col-5,
  .cid-u7yVOcowa8 .col-6,
  .cid-u7yVOcowa8 .col-7,
  .cid-u7yVOcowa8 .col-8,
  .cid-u7yVOcowa8 .col-9,
  .cid-u7yVOcowa8 .col-auto,
  .cid-u7yVOcowa8 .col-lg,
  .cid-u7yVOcowa8 .col-lg-1,
  .cid-u7yVOcowa8 .col-lg-10,
  .cid-u7yVOcowa8 .col-lg-11,
  .cid-u7yVOcowa8 .col-lg-12,
  .cid-u7yVOcowa8 .col-lg-2,
  .cid-u7yVOcowa8 .col-lg-3,
  .cid-u7yVOcowa8 .col-lg-4,
  .cid-u7yVOcowa8 .col-lg-5,
  .cid-u7yVOcowa8 .col-lg-6,
  .cid-u7yVOcowa8 .col-lg-7,
  .cid-u7yVOcowa8 .col-lg-8,
  .cid-u7yVOcowa8 .col-lg-9,
  .cid-u7yVOcowa8 .col-lg-auto,
  .cid-u7yVOcowa8 .col-md,
  .cid-u7yVOcowa8 .col-md-1,
  .cid-u7yVOcowa8 .col-md-10,
  .cid-u7yVOcowa8 .col-md-11,
  .cid-u7yVOcowa8 .col-md-12,
  .cid-u7yVOcowa8 .col-md-2,
  .cid-u7yVOcowa8 .col-md-3,
  .cid-u7yVOcowa8 .col-md-4,
  .cid-u7yVOcowa8 .col-md-5,
  .cid-u7yVOcowa8 .col-md-6,
  .cid-u7yVOcowa8 .col-md-7,
  .cid-u7yVOcowa8 .col-md-8,
  .cid-u7yVOcowa8 .col-md-9,
  .cid-u7yVOcowa8 .col-md-auto,
  .cid-u7yVOcowa8 .col-sm,
  .cid-u7yVOcowa8 .col-sm-1,
  .cid-u7yVOcowa8 .col-sm-10,
  .cid-u7yVOcowa8 .col-sm-11,
  .cid-u7yVOcowa8 .col-sm-12,
  .cid-u7yVOcowa8 .col-sm-2,
  .cid-u7yVOcowa8 .col-sm-3,
  .cid-u7yVOcowa8 .col-sm-4,
  .cid-u7yVOcowa8 .col-sm-5,
  .cid-u7yVOcowa8 .col-sm-6,
  .cid-u7yVOcowa8 .col-sm-7,
  .cid-u7yVOcowa8 .col-sm-8,
  .cid-u7yVOcowa8 .col-sm-9,
  .cid-u7yVOcowa8 .col-sm-auto,
  .cid-u7yVOcowa8 .col-xl,
  .cid-u7yVOcowa8 .col-xl-1,
  .cid-u7yVOcowa8 .col-xl-10,
  .cid-u7yVOcowa8 .col-xl-11,
  .cid-u7yVOcowa8 .col-xl-12,
  .cid-u7yVOcowa8 .col-xl-2,
  .cid-u7yVOcowa8 .col-xl-3,
  .cid-u7yVOcowa8 .col-xl-4,
  .cid-u7yVOcowa8 .col-xl-5,
  .cid-u7yVOcowa8 .col-xl-6,
  .cid-u7yVOcowa8 .col-xl-7,
  .cid-u7yVOcowa8 .col-xl-8,
  .cid-u7yVOcowa8 .col-xl-9,
  .cid-u7yVOcowa8 .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVOcowa8 .content {
    text-align: left;
  }
  .cid-u7yVOcowa8 .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVOcowa8 .logo_footer_box {
    position: relative;
  }
  .cid-u7yVOcowa8 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVOcowa8 .logo_footer {
    position: relative;
  }
  .cid-u7yVOcowa8 .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVOcowa8 .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRIX8ubNfG {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRIX8ubNfG {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rRIXxiLnvH {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #f9ceb2;
}
.cid-rRIXxiLnvH .images-container.container-fluid {
  padding: 0;
}
.cid-rRIXxiLnvH .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRIXxiLnvH .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRIXxiLnvH .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRIXxiLnvH .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRIXxiLnvH .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRIXxiLnvH .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRIXxiLnvH .img-item {
    width: 100% !important;
  }
  .cid-rRIXxiLnvH .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRIY4xOnK9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRIY4xOnK9 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRIY4xOnK9 h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRIY4xOnK9 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRIY4xOnK9 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRIYNCRwV0 {
  background-image: url("../../../assets/images/160228-wahlsonntag-1-2000x1333.jpg");
}
.cid-rRIYNCRwV0 P {
  color: #767676;
}
.cid-rRIYMEJhHm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-11-2000x1448.png");
}
.cid-rRIYMEJhHm .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRIYMEJhHm h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRIYMEJhHm p {
  color: #767676;
  text-align: left;
}
.cid-rRIYMEJhHm .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRIYMEJhHm .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRIYMEJhHm .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRIYMEJhHm .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRIYMEJhHm .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRIYMEJhHm .notched-box:before,
.cid-rRIYMEJhHm .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRIYMEJhHm .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRIYMEJhHm .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRIYMEJhHm .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRIYMEJhHm .border:before,
.cid-rRIYMEJhHm .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRIYMEJhHm .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRIYMEJhHm .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRIYMEJhHm .mbr-author-name {
  padding-left: 40px;
}
.cid-rRIYMEJhHm P {
  color: #000000;
  line-height: 1.3;
}
.cid-rRIYMEJhHm .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRIYUt0nty {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRIYUt0nty .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRIYUt0nty h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRIYUt0nty .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRIYUt0nty .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u6fOLrlTHq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u6fOLrlTHq h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fOLrlTHq p {
  color: #767676;
  text-align: left;
}
.cid-u6fOLrlTHq .card-box {
  padding-top: 2rem;
}
.cid-u6fOLrlTHq .card-wrapper {
  height: 100%;
}
.cid-u6fOLrlTHq P {
  text-align: left;
}
.cid-rRMnHMzqJW {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRMnHMzqJW .images-container.container-fluid {
  padding: 0;
}
.cid-rRMnHMzqJW .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRMnHMzqJW .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRMnHMzqJW .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRMnHMzqJW .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRMnHMzqJW .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRMnHMzqJW .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRMnHMzqJW .img-item {
    width: 100% !important;
  }
  .cid-rRMnHMzqJW .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRIYZeDYAE {
  background: #ffffff;
}
.cid-rRIYZeDYAE .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRIYZeDYAE figcaption {
  position: relative;
}
.cid-rRIYZeDYAE figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRIYZeDYAE .image-block {
    width: 300% !important;
  }
}
.cid-uccxqFkz4y {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-uccxqFkz4y .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-uccxqFkz4y .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccxqFkz4y .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccxqFkz4y .mbr-figure,
  .cid-uccxqFkz4y img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccxqFkz4y .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccxqFkz4y .mbr-author-desc {
  color: #000000;
}
.cid-uccxqFkz4y h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccxqFkz4y .text_block {
  margin-top: 0px;
}
.cid-uccxqFkz4y .h2_block {
  margin-bottom: 20px;
}
.cid-uccxqFkz4y .mbr-figure {
  align-self: flex-start;
}
.cid-uccxqFkz4y .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccxqFkz4y .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccxqFkz4y .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccxqFkz4y a svg polygon {
  fill: white !important;
}
.cid-uccxqFkz4y a:hover {
  Color: #F9CEB2!important;
}
.cid-uccxqFkz4y a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccxqFkz4y .btn-white-outline:hover,
.cid-uccxqFkz4y .btn-white-outline:focus,
.cid-uccxqFkz4y .btn-white-outline.focus,
.cid-uccxqFkz4y .btn-white-outline.active,
.cid-uccxqFkz4y .btn-black-outline:hover,
.cid-uccxqFkz4y .btn-black-outline:focus,
.cid-uccxqFkz4y .btn-black-outline.focus,
.cid-uccxqFkz4y .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccxqFkz4y .display-5 {
    line-height: 1;
  }
  .cid-uccxqFkz4y .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccxqFkz4y .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccxqFkz4y .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRIZ2fOzrC {
  background: #ffffff;
}
.cid-rRIZ2fOzrC .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRIZ2fOzrC figcaption {
  position: relative;
}
.cid-rRIZ2fOzrC figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRIZ2fOzrC .image-block {
    width: 300% !important;
  }
}
.cid-rRIXeGDPLx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRIXeGDPLx .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRIXeGDPLx .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRIXeGDPLx .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rRIXeGDPLx .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRIXeGDPLx .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRIXeGDPLx .mbr-figure,
  .cid-rRIXeGDPLx img {
    max-height: 190px;
    width: auto;
    margin: auto;
  }
}
.cid-rRIXeGDPLx h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRIXeGDPLx .text_block {
  margin-top: 0px;
}
.cid-rRIXeGDPLx .h2_block {
  margin-bottom: 20px;
}
.cid-rRIXeGDPLx .mbr-figure {
  align-self: flex-start;
}
.cid-rRIXeGDPLx .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRIXeGDPLx .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRIXeGDPLx a:hover {
  Color: #a76645 !important;
}
.cid-rRIXeGDPLx a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRIXeGDPLx .btn-black-outline:hover,
.cid-rRIXeGDPLx .btn-black-outline:focus,
.cid-rRIXeGDPLx .btn-black-outline.focus,
.cid-rRIXeGDPLx .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRIXeGDPLx .display-5 {
    line-height: 1;
  }
  .cid-rRIXeGDPLx .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRIXeGDPLx .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRIXeGDPLx .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRIXeGDPLx .content {
  padding-left: 3px;
}
.cid-rRIZmmbC7i {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRIZmmbC7i .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rRIZmmbC7i .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRIZmmbC7i .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRIZmmbC7i .mbr-figure,
  .cid-rRIZmmbC7i img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRIZmmbC7i .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRIZmmbC7i .mbr-author-desc {
  color: #000000;
}
.cid-rRIZmmbC7i h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRIZmmbC7i .text_block {
  margin-top: 0px;
}
.cid-rRIZmmbC7i .h2_block {
  margin-bottom: 20px;
}
.cid-rRIZmmbC7i .mbr-figure {
  align-self: flex-start;
}
.cid-rRIZmmbC7i .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rRIZmmbC7i .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rRIZmmbC7i .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rRIZmmbC7i .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rRIZmmbC7i .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-spX4xhehCs {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-spX4xhehCs .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-spX4xhehCs .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-spX4xhehCs .mbr-author-desc {
  color: #ffffff;
}
.cid-spX4xhehCs .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-spX4xhehCs .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-spX4xhehCs .mbr-figure,
  .cid-spX4xhehCs img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-spX4xhehCs h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-spX4xhehCs .text_block {
  margin-top: 0px;
}
.cid-spX4xhehCs .h2_block {
  margin-bottom: 20px;
}
.cid-spX4xhehCs .mbr-figure {
  align-self: flex-start;
}
.cid-spX4xhehCs .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: white !important;
}
.cid-spX4xhehCs .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-spX4xhehCs svg polygon {
  fill: white ;
}
.cid-spX4xhehCs a:hover {
  Color: #F9CEB2 !important;
}
.cid-spX4xhehCs a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-spX4xhehCs .btn-black-outline:hover,
.cid-spX4xhehCs .btn-black-outline:focus,
.cid-spX4xhehCs .btn-black-outline.focus,
.cid-spX4xhehCs .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-spX4xhehCs .btn-white-outline:hover,
.cid-spX4xhehCs .btn-white-outline:focus,
.cid-spX4xhehCs .btn-white-outline.focus,
.cid-spX4xhehCs .btn-white-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-spX4xhehCs .display-5 {
    line-height: 1;
  }
  .cid-spX4xhehCs .btn {
    font-size: 1.5rem !important;
  }
  .cid-spX4xhehCs .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-spX4xhehCs .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-spX4xhehCs .content {
  padding-left: 3px;
}
.cid-rRIZyfKlte {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRIZyfKlte .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRIZyfKlte h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRIZyfKlte p {
  color: #767676;
  text-align: left;
}
.cid-rRIZyfKlte .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRIZyfKlte .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRIZyfKlte .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRIZyfKlte .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRIZyfKlte .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRIZyfKlte .notched-box:before,
.cid-rRIZyfKlte .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRIZyfKlte .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRIZyfKlte .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRIZyfKlte .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRIZyfKlte .border:before,
.cid-rRIZyfKlte .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRIZyfKlte .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRIZyfKlte .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRIZyfKlte .mbr-author-name {
  padding-left: 40px;
}
.cid-rRIZyfKlte P {
  color: #ffffff;
}
.cid-rRIZyfKlte .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRIZJxVvZW {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRIZJxVvZW .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRIZJxVvZW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRIZJxVvZW p {
  color: #767676;
  text-align: left;
}
.cid-rRIZJxVvZW .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRIZJxVvZW .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRIZJxVvZW .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRIZJxVvZW .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRIZJxVvZW .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRIZJxVvZW .notched-box:before,
.cid-rRIZJxVvZW .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRIZJxVvZW .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRIZJxVvZW .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRIZJxVvZW .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRIZJxVvZW .border:before,
.cid-rRIZJxVvZW .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRIZJxVvZW .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRIZJxVvZW .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRIZJxVvZW .mbr-author-name {
  padding-left: 40px;
}
.cid-rRIZJxVvZW P {
  color: #ffffff;
}
.cid-rRIZJxVvZW .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRIZKIVZBJ {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRIZKIVZBJ .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRIZKIVZBJ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRIZKIVZBJ p {
  color: #767676;
  text-align: left;
}
.cid-rRIZKIVZBJ .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRIZKIVZBJ .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRIZKIVZBJ .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRIZKIVZBJ .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRIZKIVZBJ .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRIZKIVZBJ .notched-box:before,
.cid-rRIZKIVZBJ .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRIZKIVZBJ .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRIZKIVZBJ .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRIZKIVZBJ .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRIZKIVZBJ .border:before,
.cid-rRIZKIVZBJ .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRIZKIVZBJ .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRIZKIVZBJ .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRIZKIVZBJ .mbr-author-name {
  padding-left: 40px;
}
.cid-rRIZKIVZBJ P {
  color: #ffffff;
}
.cid-rRIZKIVZBJ .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRJ0cx4vkl {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRJ0cx4vkl .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRJ0cx4vkl h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRJ0cx4vkl .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRIZWwbmLM {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-rRIZWwbmLM .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRIZWwbmLM .video-block {
    width: 100% !important;
  }
}
.cid-rRIZWwbmLM .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRJ0kNawhp {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRJ0kNawhp .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRJ0kNawhp h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRJ0kNawhp .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRJ0kNawhp .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRJ0Gfjmaa {
  background-image: url("../../../assets/images/theaterneumarkt-8-zentrumfuerpolitischeschoenheit-l1007108-1600x1067.jpg");
}
.cid-rRJ0Gfjmaa P {
  color: #767676;
}
.cid-rRMgSOyQkN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRMgSOyQkN .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRMgSOyQkN h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRMgSOyQkN .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRMgSOyQkN .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-spWUPBAcxC {
  background: #ffffff;
}
.cid-spWUPBAcxC .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-spWUPBAcxC figcaption {
  position: relative;
}
.cid-spWUPBAcxC figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-spWUPBAcxC .image-block {
    width: 100% !important;
  }
}
.cid-rRJ1M6jNH4 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRJ1M6jNH4 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRJ1M6jNH4 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRJ1M6jNH4 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRJ1M6jNH4 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRJ21ygpJo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRJ21ygpJo h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRJ21ygpJo p {
  color: #767676;
  text-align: left;
}
.cid-rRJ21ygpJo .card-box {
  padding-top: 2rem;
}
.cid-rRJ21ygpJo .card-wrapper {
  height: 100%;
}
.cid-rRJ27HDG70 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRJ27HDG70 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRJ27HDG70 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRJ27HDG70 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRJ28Vn85s {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRJ28Vn85s .images-container.container-fluid {
  padding: 0;
}
.cid-rRJ28Vn85s .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRJ28Vn85s .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRJ28Vn85s .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRJ28Vn85s .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRJ28Vn85s .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRJ28Vn85s .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRJ28Vn85s .img-item {
    width: 100% !important;
  }
  .cid-rRJ28Vn85s .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRJ2qeFMUw {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRJ2qeFMUw .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRJ2qeFMUw h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRJ2qeFMUw .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRJ2qeFMUw .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRJ2diJlTi {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRJ2diJlTi .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRJ2diJlTi .video-block {
    width: 100% !important;
  }
}
.cid-rRJ2diJlTi .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRJ2tevuLm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRJ2tevuLm .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rRJ2tevuLm .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRJ2tevuLm .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRJ2tevuLm .mbr-figure,
  .cid-rRJ2tevuLm img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRJ2tevuLm .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRJ2tevuLm .mbr-author-desc {
  color: #000000;
}
.cid-rRJ2tevuLm h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRJ2tevuLm .text_block {
  margin-top: 0px;
}
.cid-rRJ2tevuLm .h2_block {
  margin-bottom: 20px;
}
.cid-rRJ2tevuLm .mbr-figure {
  align-self: flex-start;
}
.cid-rRJ2tevuLm .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rRJ2tevuLm .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rRJ2tevuLm .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rRJ2tevuLm .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rRJ2tevuLm .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rRJ2SpojsI {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRJ2SpojsI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRJ2SpojsI p {
  color: #767676;
  text-align: left;
}
.cid-rRJ2SpojsI .card-box {
  padding-top: 2rem;
}
.cid-rRJ2SpojsI .card-wrapper {
  height: 100%;
}
.cid-rRJ2wZaLMa {
  background-image: url("../../../assets/images/img-2667-2000x1500.jpg");
}
.cid-rRJ2wZaLMa P {
  color: #767676;
}
.cid-rRJ2vIJyET {
  background-image: url("../../../assets/images/theaterneumarkt-8-zentrumfuerpolitischeschoenheit-l1007131-1600x1067.jpg");
}
.cid-rRJ2vIJyET P {
  color: #767676;
}
.cid-rRMaHYHZVj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRMaHYHZVj .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRMaHYHZVj h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRMaHYHZVj .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRMaHYHZVj .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-spWXxmeq1V {
  background: #ffffff;
}
.cid-spWXxmeq1V .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-spWXxmeq1V figcaption {
  position: relative;
}
.cid-spWXxmeq1V figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-spWXxmeq1V .image-block {
    width: 100% !important;
  }
}
.cid-spWYDptHTq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-spWYDptHTq h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spWYDptHTq p {
  color: #767676;
  text-align: left;
}
.cid-spWYDptHTq .card-box {
  padding-top: 2rem;
}
.cid-spWYDptHTq .card-wrapper {
  height: 100%;
}
.cid-rU5m4qCRuH {
  background: #ffffff;
}
.cid-rU5m4qCRuH .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rU5m4qCRuH figcaption {
  position: relative;
}
.cid-rU5m4qCRuH figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rU5m4qCRuH .image-block {
    width: 100% !important;
  }
}
.cid-rRJ2UQa1Ui {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRJ2UQa1Ui .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRJ2UQa1Ui h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRJ2UQa1Ui .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRJ2XfCrQt {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRJ2XfCrQt .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRJ2XfCrQt .video-block {
    width: 100% !important;
  }
}
.cid-rRJ2XfCrQt .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-spWZ2E4twK {
  background: #ffffff;
}
.cid-spWZ2E4twK .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-spWZ2E4twK figcaption {
  position: relative;
}
.cid-spWZ2E4twK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-spWZ2E4twK .image-block {
    width: 100% !important;
  }
}
.cid-rRJ3im4N0s {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRJ3im4N0s .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRJ3im4N0s h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRJ3im4N0s .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRJ3C0kypw {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRJ3C0kypw h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  line-height: 1.2;
}
.cid-rRJ3C0kypw p {
  color: #767676;
  text-align: left;
}
.cid-rRJ3C0kypw .card-box {
  padding-top: 2rem;
}
.cid-rRJ3C0kypw .card-wrapper {
  height: 100%;
}
.cid-rRJ3C0kypw P {
  color: #1d1d1b;
}
.cid-u7yVgsFoLI {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVgsFoLI .content {
    text-align: center;
  }
  .cid-u7yVgsFoLI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVgsFoLI .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVgsFoLI .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVgsFoLI .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVgsFoLI .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVgsFoLI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVgsFoLI .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVgsFoLI .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVgsFoLI .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVgsFoLI .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVgsFoLI .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVgsFoLI .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVgsFoLI .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVgsFoLI H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVgsFoLI P {
  color: #ffffff;
}
.cid-u7yVgsFoLI .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVgsFoLI .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVgsFoLI .logo_footer {
  position: relative;
}
.cid-u7yVgsFoLI .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVgsFoLI .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVgsFoLI .col,
  .cid-u7yVgsFoLI .col-1,
  .cid-u7yVgsFoLI .col-10,
  .cid-u7yVgsFoLI .col-11,
  .cid-u7yVgsFoLI .col-12,
  .cid-u7yVgsFoLI .col-2,
  .cid-u7yVgsFoLI .col-3,
  .cid-u7yVgsFoLI .col-4,
  .cid-u7yVgsFoLI .col-5,
  .cid-u7yVgsFoLI .col-6,
  .cid-u7yVgsFoLI .col-7,
  .cid-u7yVgsFoLI .col-8,
  .cid-u7yVgsFoLI .col-9,
  .cid-u7yVgsFoLI .col-auto,
  .cid-u7yVgsFoLI .col-lg,
  .cid-u7yVgsFoLI .col-lg-1,
  .cid-u7yVgsFoLI .col-lg-10,
  .cid-u7yVgsFoLI .col-lg-11,
  .cid-u7yVgsFoLI .col-lg-12,
  .cid-u7yVgsFoLI .col-lg-2,
  .cid-u7yVgsFoLI .col-lg-3,
  .cid-u7yVgsFoLI .col-lg-4,
  .cid-u7yVgsFoLI .col-lg-5,
  .cid-u7yVgsFoLI .col-lg-6,
  .cid-u7yVgsFoLI .col-lg-7,
  .cid-u7yVgsFoLI .col-lg-8,
  .cid-u7yVgsFoLI .col-lg-9,
  .cid-u7yVgsFoLI .col-lg-auto,
  .cid-u7yVgsFoLI .col-md,
  .cid-u7yVgsFoLI .col-md-1,
  .cid-u7yVgsFoLI .col-md-10,
  .cid-u7yVgsFoLI .col-md-11,
  .cid-u7yVgsFoLI .col-md-12,
  .cid-u7yVgsFoLI .col-md-2,
  .cid-u7yVgsFoLI .col-md-3,
  .cid-u7yVgsFoLI .col-md-4,
  .cid-u7yVgsFoLI .col-md-5,
  .cid-u7yVgsFoLI .col-md-6,
  .cid-u7yVgsFoLI .col-md-7,
  .cid-u7yVgsFoLI .col-md-8,
  .cid-u7yVgsFoLI .col-md-9,
  .cid-u7yVgsFoLI .col-md-auto,
  .cid-u7yVgsFoLI .col-sm,
  .cid-u7yVgsFoLI .col-sm-1,
  .cid-u7yVgsFoLI .col-sm-10,
  .cid-u7yVgsFoLI .col-sm-11,
  .cid-u7yVgsFoLI .col-sm-12,
  .cid-u7yVgsFoLI .col-sm-2,
  .cid-u7yVgsFoLI .col-sm-3,
  .cid-u7yVgsFoLI .col-sm-4,
  .cid-u7yVgsFoLI .col-sm-5,
  .cid-u7yVgsFoLI .col-sm-6,
  .cid-u7yVgsFoLI .col-sm-7,
  .cid-u7yVgsFoLI .col-sm-8,
  .cid-u7yVgsFoLI .col-sm-9,
  .cid-u7yVgsFoLI .col-sm-auto,
  .cid-u7yVgsFoLI .col-xl,
  .cid-u7yVgsFoLI .col-xl-1,
  .cid-u7yVgsFoLI .col-xl-10,
  .cid-u7yVgsFoLI .col-xl-11,
  .cid-u7yVgsFoLI .col-xl-12,
  .cid-u7yVgsFoLI .col-xl-2,
  .cid-u7yVgsFoLI .col-xl-3,
  .cid-u7yVgsFoLI .col-xl-4,
  .cid-u7yVgsFoLI .col-xl-5,
  .cid-u7yVgsFoLI .col-xl-6,
  .cid-u7yVgsFoLI .col-xl-7,
  .cid-u7yVgsFoLI .col-xl-8,
  .cid-u7yVgsFoLI .col-xl-9,
  .cid-u7yVgsFoLI .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVgsFoLI .content {
    text-align: left;
  }
  .cid-u7yVgsFoLI .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVgsFoLI .logo_footer_box {
    position: relative;
  }
  .cid-u7yVgsFoLI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVgsFoLI .logo_footer {
    position: relative;
  }
  .cid-u7yVgsFoLI .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVgsFoLI .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRwwm9vOzL {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRwwm9vOzL {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rRwwzqUsG9 {
  background-image: url("../../../assets/images/trammer-zpsmuc-20180718-19-2000x1333.jpg");
}
.cid-rRwwzqUsG9 P {
  color: #767676;
}
.cid-rRwwABiOhB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwwABiOhB .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRwwABiOhB .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRwwABiOhB .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rRwwABiOhB .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRwwABiOhB .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRwwABiOhB .mbr-figure,
  .cid-rRwwABiOhB img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRwwABiOhB h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwwABiOhB .text_block {
  margin-top: 0px;
}
.cid-rRwwABiOhB .h2_block {
  margin-bottom: 20px;
}
.cid-rRwwABiOhB .mbr-figure {
  align-self: flex-start;
}
.cid-rRwwABiOhB .display-5 {
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRwwABiOhB .display-7 {
  font-size: 1.2rem;
}
.cid-rRwwABiOhB .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRwwABiOhB a:hover {
  Color: #a76645 !important;
}
.cid-rRwwABiOhB a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRwwABiOhB .btn-black-outline:hover,
.cid-rRwwABiOhB .btn-black-outline:focus,
.cid-rRwwABiOhB .btn-black-outline.focus,
.cid-rRwwABiOhB .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRwwABiOhB .display-5 {
    line-height: 1;
  }
  .cid-rRwwABiOhB .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRwwABiOhB .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRwwABiOhB .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRwwABiOhB .content {
  padding-left: 3px;
}
.cid-rRwwXqLgEN {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRwwXqLgEN .images-container.container-fluid {
  padding: 0;
}
.cid-rRwwXqLgEN .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRwwXqLgEN .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRwwXqLgEN .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRwwXqLgEN .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRwwXqLgEN .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRwwXqLgEN .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRwwXqLgEN .img-item {
    width: 100% !important;
  }
  .cid-rRwwXqLgEN .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRwwYI3ar3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRwwYI3ar3 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRwwYI3ar3 p {
  color: #767676;
  text-align: left;
}
.cid-rRwwYI3ar3 .card-box {
  padding-top: 2rem;
}
.cid-rRwwYI3ar3 .card-wrapper {
  height: 100%;
}
.cid-tIu5YLpfGu {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tIu5YLpfGu .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tIu5YLpfGu .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-tIu5YLpfGu .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tIu5YLpfGu .mbr-figure,
  .cid-tIu5YLpfGu img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-tIu5YLpfGu .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tIu5YLpfGu .mbr-author-desc {
  color: #000000;
}
.cid-tIu5YLpfGu h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tIu5YLpfGu .text_block {
  margin-top: 0px;
}
.cid-tIu5YLpfGu .h2_block {
  margin-bottom: 20px;
}
.cid-tIu5YLpfGu .mbr-figure {
  align-self: flex-start;
}
.cid-tIu5YLpfGu .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-tIu5YLpfGu .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tIu5YLpfGu .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-tIu5YLpfGu a:hover {
  Color: #a76645 !important;
}
.cid-tIu5YLpfGu a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tIu5YLpfGu .btn-black-outline:hover,
.cid-tIu5YLpfGu .btn-black-outline:focus,
.cid-tIu5YLpfGu .btn-black-outline.focus,
.cid-tIu5YLpfGu .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tIu5YLpfGu .display-5 {
    line-height: 1;
  }
  .cid-tIu5YLpfGu .btn {
    font-size: 1.5rem !important;
  }
  .cid-tIu5YLpfGu .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tIu5YLpfGu .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRwx6d1e7i {
  background: #ffffff;
}
.cid-rRwx6d1e7i .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRwx6d1e7i figcaption {
  position: relative;
}
.cid-rRwx6d1e7i figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRwx6d1e7i .image-block {
    width: 300% !important;
  }
}
.cid-tIu7eahSfg {
  background: #ffffff;
}
.cid-tIu7eahSfg .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tIu7eahSfg figcaption {
  position: relative;
}
.cid-tIu7eahSfg figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tIu7eahSfg .image-block {
    width: 100% !important;
  }
}
.cid-tIu4FkcPAF {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIu4FkcPAF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tIu4FkcPAF p {
  color: #767676;
  text-align: left;
}
.cid-tIu4FkcPAF .card-box {
  padding-top: 2rem;
}
.cid-tIu4FkcPAF .card-wrapper {
  height: 100%;
}
.cid-rRwze7R2Pq {
  background-image: url("../../../assets/images/trammer-zpsmuc-20180718-36-2000x1333.jpg");
}
.cid-rRwze7R2Pq P {
  color: #767676;
}
.cid-u7yVdNzwV0 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVdNzwV0 .content {
    text-align: center;
  }
  .cid-u7yVdNzwV0 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVdNzwV0 .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVdNzwV0 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVdNzwV0 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVdNzwV0 .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVdNzwV0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVdNzwV0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVdNzwV0 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVdNzwV0 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVdNzwV0 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVdNzwV0 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVdNzwV0 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVdNzwV0 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVdNzwV0 H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVdNzwV0 P {
  color: #ffffff;
}
.cid-u7yVdNzwV0 .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVdNzwV0 .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVdNzwV0 .logo_footer {
  position: relative;
}
.cid-u7yVdNzwV0 .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVdNzwV0 .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVdNzwV0 .col,
  .cid-u7yVdNzwV0 .col-1,
  .cid-u7yVdNzwV0 .col-10,
  .cid-u7yVdNzwV0 .col-11,
  .cid-u7yVdNzwV0 .col-12,
  .cid-u7yVdNzwV0 .col-2,
  .cid-u7yVdNzwV0 .col-3,
  .cid-u7yVdNzwV0 .col-4,
  .cid-u7yVdNzwV0 .col-5,
  .cid-u7yVdNzwV0 .col-6,
  .cid-u7yVdNzwV0 .col-7,
  .cid-u7yVdNzwV0 .col-8,
  .cid-u7yVdNzwV0 .col-9,
  .cid-u7yVdNzwV0 .col-auto,
  .cid-u7yVdNzwV0 .col-lg,
  .cid-u7yVdNzwV0 .col-lg-1,
  .cid-u7yVdNzwV0 .col-lg-10,
  .cid-u7yVdNzwV0 .col-lg-11,
  .cid-u7yVdNzwV0 .col-lg-12,
  .cid-u7yVdNzwV0 .col-lg-2,
  .cid-u7yVdNzwV0 .col-lg-3,
  .cid-u7yVdNzwV0 .col-lg-4,
  .cid-u7yVdNzwV0 .col-lg-5,
  .cid-u7yVdNzwV0 .col-lg-6,
  .cid-u7yVdNzwV0 .col-lg-7,
  .cid-u7yVdNzwV0 .col-lg-8,
  .cid-u7yVdNzwV0 .col-lg-9,
  .cid-u7yVdNzwV0 .col-lg-auto,
  .cid-u7yVdNzwV0 .col-md,
  .cid-u7yVdNzwV0 .col-md-1,
  .cid-u7yVdNzwV0 .col-md-10,
  .cid-u7yVdNzwV0 .col-md-11,
  .cid-u7yVdNzwV0 .col-md-12,
  .cid-u7yVdNzwV0 .col-md-2,
  .cid-u7yVdNzwV0 .col-md-3,
  .cid-u7yVdNzwV0 .col-md-4,
  .cid-u7yVdNzwV0 .col-md-5,
  .cid-u7yVdNzwV0 .col-md-6,
  .cid-u7yVdNzwV0 .col-md-7,
  .cid-u7yVdNzwV0 .col-md-8,
  .cid-u7yVdNzwV0 .col-md-9,
  .cid-u7yVdNzwV0 .col-md-auto,
  .cid-u7yVdNzwV0 .col-sm,
  .cid-u7yVdNzwV0 .col-sm-1,
  .cid-u7yVdNzwV0 .col-sm-10,
  .cid-u7yVdNzwV0 .col-sm-11,
  .cid-u7yVdNzwV0 .col-sm-12,
  .cid-u7yVdNzwV0 .col-sm-2,
  .cid-u7yVdNzwV0 .col-sm-3,
  .cid-u7yVdNzwV0 .col-sm-4,
  .cid-u7yVdNzwV0 .col-sm-5,
  .cid-u7yVdNzwV0 .col-sm-6,
  .cid-u7yVdNzwV0 .col-sm-7,
  .cid-u7yVdNzwV0 .col-sm-8,
  .cid-u7yVdNzwV0 .col-sm-9,
  .cid-u7yVdNzwV0 .col-sm-auto,
  .cid-u7yVdNzwV0 .col-xl,
  .cid-u7yVdNzwV0 .col-xl-1,
  .cid-u7yVdNzwV0 .col-xl-10,
  .cid-u7yVdNzwV0 .col-xl-11,
  .cid-u7yVdNzwV0 .col-xl-12,
  .cid-u7yVdNzwV0 .col-xl-2,
  .cid-u7yVdNzwV0 .col-xl-3,
  .cid-u7yVdNzwV0 .col-xl-4,
  .cid-u7yVdNzwV0 .col-xl-5,
  .cid-u7yVdNzwV0 .col-xl-6,
  .cid-u7yVdNzwV0 .col-xl-7,
  .cid-u7yVdNzwV0 .col-xl-8,
  .cid-u7yVdNzwV0 .col-xl-9,
  .cid-u7yVdNzwV0 .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVdNzwV0 .content {
    text-align: left;
  }
  .cid-u7yVdNzwV0 .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVdNzwV0 .logo_footer_box {
    position: relative;
  }
  .cid-u7yVdNzwV0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVdNzwV0 .logo_footer {
    position: relative;
  }
  .cid-u7yVdNzwV0 .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVdNzwV0 .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRrlzuNLrV {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRrlzuNLrV {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rRrmpJ6dgH {
  padding-top: 75px;
  padding-bottom: 75px;
  background: #ffffff;
}
.cid-rRrmpJ6dgH .images-container.container-fluid {
  padding: 0;
}
.cid-rRrmpJ6dgH .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRrmpJ6dgH .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRrmpJ6dgH .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRrmpJ6dgH .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRrmpJ6dgH .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRrmpJ6dgH .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRrmpJ6dgH .img-item {
    width: 100% !important;
  }
  .cid-rRrmpJ6dgH .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRrmGVVxWz {
  background: #000000;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-rRrmGVVxWz .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRrmGVVxWz .video-block {
    width: 100% !important;
  }
}
.cid-rRrmGVVxWz .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRrmRVYupP {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #f9ceb2;
}
.cid-rRrmRVYupP .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRrmRVYupP h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRrmRVYupP .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRrmRVYupP .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rUTQoO94rT {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-10-1500x622.jpg");
}
.cid-rUTQoO94rT H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rUTQoO94rT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rUTQoO94rT span {
  visibility: hidden;
}
.cid-rUTQoO94rT .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-rUTQoO94rT span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rRrna5OO9K {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/luftbild-complex-vin-2000x778.jpg");
}
.cid-rRrna5OO9K p {
  color: #767676;
}
.cid-rRrna5OO9K .mbr-section-subtitle {
  color: #767676;
}
.cid-rRrna5OO9K .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rRrna5OO9K .panel-group {
  width: 100%;
}
.cid-rRrna5OO9K .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rRrna5OO9K .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rRrna5OO9K .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rRrna5OO9K .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rRrna5OO9K .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rRrna5OO9K .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rRrna5OO9K .mbr-figure {
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-rRrna5OO9K .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-rRrusLBjKY {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRrusLBjKY H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRrusLBjKY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rRrrXZHzps {
  background-image: url("../../../assets/images/the-new-nazi-government-in-1933-1024x1001.jpg");
}
.cid-rRrrXZHzps P {
  color: #767676;
}
.cid-rRrs7PTsGi {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRrs7PTsGi h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrs7PTsGi p {
  color: #767676;
  text-align: left;
}
.cid-rRrs7PTsGi .card-box {
  padding-top: 2rem;
}
.cid-rRrs7PTsGi .card-wrapper {
  height: 100%;
}
.cid-rRrt3KAczY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRrt3KAczY .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRrt3KAczY h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRrt3KAczY .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRrt3KAczY .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRrtdLqgKD {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-11-2000x1448.png");
}
.cid-rRrtdLqgKD .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRrtdLqgKD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrtdLqgKD p {
  color: #767676;
  text-align: left;
}
.cid-rRrtdLqgKD .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRrtdLqgKD .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRrtdLqgKD .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRrtdLqgKD .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRrtdLqgKD .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRrtdLqgKD .notched-box:before,
.cid-rRrtdLqgKD .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRrtdLqgKD .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRrtdLqgKD .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRrtdLqgKD .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRrtdLqgKD .border:before,
.cid-rRrtdLqgKD .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRrtdLqgKD .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRrtdLqgKD .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRrtdLqgKD .mbr-author-name {
  padding-left: 40px;
}
.cid-rRrtdLqgKD P {
  color: #000000;
}
.cid-rRrtdLqgKD .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-tgK6Eu65WB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-14-1500x622.jpg");
}
.cid-tgK6Eu65WB P {
  color: #767676;
}
.cid-tgK6Eu65WB .display-2 {
  font-size: 3rem;
  font-weight: 300;
}
.cid-tgK6Eu65WB h2 {
  font-size: 6vw !important;
  font-weight: bold !important;
  text-align: center;
  line-height: 0.9em;
  color: white;
}
.cid-tgK6Eu65WB .animation_center {
  padding: 5vh 0px;
}
.cid-tgK6Eu65WB .banner {
  width: 100%;
  height: auto;
}
.cid-tgK6Eu65WB .black {
  background-color: #fff !important;
}
.cid-tgK6Eu65WB .AniContainer {
  padding: 5em 0em;
}
.cid-tgK6Eu65WB span {
  visibility: hidden;
}
.cid-tgK6Eu65WB span.blick {
  visibility: visible;
}
@media (max-width: 768px) {
  .cid-tgK6Eu65WB .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-tgK6Eu65WB .mbr-text,
.cid-tgK6Eu65WB .mbr-section-btn {
  color: #ffffff;
}
.cid-rRrtg1OWzZ {
  background-image: url("../../../assets/images/zps-gedenkenheisstkaempfen-0015-v2-1-2000x1334.jpg");
}
.cid-rRrtg1OWzZ P {
  color: #767676;
}
.cid-rRrtiuJ9dP {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRrtiuJ9dP H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRrtiuJ9dP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rRrtiuJ9dP a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 white;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 white;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 white;
  cursor: pointer;
  padding-bottom: 3px;
  color: white !important;
}
.cid-rRrtiuJ9dP a:hover {
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  color: #F9CEB2 !important;
}
.cid-rRrtkMuZsW {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-rRrtkMuZsW .images-container.container-fluid {
  padding: 0;
}
.cid-rRrtkMuZsW .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRrtkMuZsW .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRrtkMuZsW .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRrtkMuZsW .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRrtkMuZsW .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRrtkMuZsW .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRrtkMuZsW .img-item {
    width: 100% !important;
  }
  .cid-rRrtkMuZsW .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rUTSZdmXGl {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-7-1500x622.jpg");
}
.cid-rUTSZdmXGl H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rUTSZdmXGl .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rUTSZdmXGl .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rUTSZdmXGl .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRrtmWVsdJ {
  background-image: url("../../../assets/images/zps-gedenkenheisstkaempfen-0014-v2-2000x1334.jpg");
}
.cid-rRrtmWVsdJ P {
  color: #767676;
}
.cid-rRrtrfSSap {
  background-image: url("../../../assets/images/img-8001-2000x1333.jpg");
}
.cid-rRrtrfSSap P {
  color: #767676;
}
.cid-rRrtulcneK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRrtulcneK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrtulcneK p {
  color: #767676;
  text-align: left;
}
.cid-rRrtulcneK .card-box {
  padding-top: 2rem;
}
.cid-rRrtulcneK .card-wrapper {
  height: 100%;
}
.cid-rRrtpntjr6 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-9-2000x1402.png");
}
.cid-rRrtpntjr6 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRrtpntjr6 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRrtpntjr6 .breites_Zitat,
  .cid-rRrtpntjr6 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRrtAvlsh8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRrtAvlsh8 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRrtAvlsh8 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRrtAvlsh8 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRrtAvlsh8 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRrtydwwtC {
  background: #ffffff;
}
.cid-rRrtydwwtC .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRrtydwwtC figcaption {
  position: relative;
}
.cid-rRrtydwwtC figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRrtydwwtC .image-block {
    width: 100% !important;
  }
}
.cid-rRrtw7rtHu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRrtw7rtHu .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRrtw7rtHu h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRrtw7rtHu .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRrtw7rtHu .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRrtER1SvM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRrtER1SvM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrtER1SvM p {
  color: #767676;
  text-align: left;
}
.cid-rRrtER1SvM .card-box {
  padding-top: 2rem;
}
.cid-rRrtER1SvM .card-wrapper {
  height: 100%;
}
.cid-rRrtT8iJS6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRrtT8iJS6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrtT8iJS6 p {
  color: #767676;
  text-align: left;
}
.cid-rRrtT8iJS6 .card-box {
  padding-top: 2rem;
}
.cid-rRrtT8iJS6 .card-wrapper {
  height: 100%;
}
.cid-sa6yD5S7em {
  padding-top: 45px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-12-2000x1448.png");
}
.cid-sa6yD5S7em .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sa6yD5S7em h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sa6yD5S7em p {
  color: #767676;
  text-align: left;
}
.cid-sa6yD5S7em .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sa6yD5S7em .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sa6yD5S7em .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sa6yD5S7em .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sa6yD5S7em .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sa6yD5S7em .notched-box:before,
.cid-sa6yD5S7em .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-sa6yD5S7em .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sa6yD5S7em .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sa6yD5S7em .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sa6yD5S7em .border:before,
.cid-sa6yD5S7em .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-sa6yD5S7em .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sa6yD5S7em .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sa6yD5S7em .mbr-author-name {
  padding-left: 40px;
}
.cid-sa6yD5S7em P {
  color: #000000;
}
.cid-sa6yD5S7em .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-sdcvkaFgJn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-11-2000x1448.png");
}
.cid-sdcvkaFgJn .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sdcvkaFgJn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sdcvkaFgJn p {
  color: #767676;
  text-align: left;
}
.cid-sdcvkaFgJn .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sdcvkaFgJn .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sdcvkaFgJn .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sdcvkaFgJn .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sdcvkaFgJn .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sdcvkaFgJn .notched-box:before,
.cid-sdcvkaFgJn .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-sdcvkaFgJn .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sdcvkaFgJn .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sdcvkaFgJn .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sdcvkaFgJn .border:before,
.cid-sdcvkaFgJn .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-sdcvkaFgJn .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sdcvkaFgJn .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sdcvkaFgJn .mbr-author-name {
  padding-left: 40px;
}
.cid-sdcvkaFgJn P {
  color: #000000;
}
.cid-sdcvkaFgJn .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rUUaIi2Zzj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-12-2000x1448.png");
}
.cid-rUUaIi2Zzj .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rUUaIi2Zzj h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUUaIi2Zzj p {
  color: #767676;
  text-align: left;
}
.cid-rUUaIi2Zzj .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rUUaIi2Zzj .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUUaIi2Zzj .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rUUaIi2Zzj .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUUaIi2Zzj .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rUUaIi2Zzj .notched-box:before,
.cid-rUUaIi2Zzj .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rUUaIi2Zzj .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rUUaIi2Zzj .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rUUaIi2Zzj .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rUUaIi2Zzj .border:before,
.cid-rUUaIi2Zzj .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rUUaIi2Zzj .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rUUaIi2Zzj .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rUUaIi2Zzj .mbr-author-name {
  padding-left: 40px;
}
.cid-rUUaIi2Zzj P {
  color: #000000;
}
.cid-rUUaIi2Zzj .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rUUaIi2Zzj a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rUUaIi2Zzj a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUUaJ6EMJf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-12-2000x1448.png");
}
.cid-rUUaJ6EMJf .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rUUaJ6EMJf h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUUaJ6EMJf p {
  color: #767676;
  text-align: left;
}
.cid-rUUaJ6EMJf .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rUUaJ6EMJf .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUUaJ6EMJf .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rUUaJ6EMJf .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUUaJ6EMJf .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rUUaJ6EMJf .notched-box:before,
.cid-rUUaJ6EMJf .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rUUaJ6EMJf .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rUUaJ6EMJf .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rUUaJ6EMJf .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rUUaJ6EMJf .border:before,
.cid-rUUaJ6EMJf .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rUUaJ6EMJf .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rUUaJ6EMJf .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rUUaJ6EMJf .mbr-author-name {
  padding-left: 40px;
}
.cid-rUUaJ6EMJf P {
  color: #000000;
}
.cid-rUUaJ6EMJf .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rUUaJ6EMJf a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rUUaJ6EMJf a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-saLGZzdoJX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-12-2000x1448.png");
}
.cid-saLGZzdoJX .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-saLGZzdoJX h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-saLGZzdoJX p {
  color: #767676;
  text-align: left;
}
.cid-saLGZzdoJX .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-saLGZzdoJX .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-saLGZzdoJX .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-saLGZzdoJX .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-saLGZzdoJX .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-saLGZzdoJX .notched-box:before,
.cid-saLGZzdoJX .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-saLGZzdoJX .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-saLGZzdoJX .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-saLGZzdoJX .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-saLGZzdoJX .border:before,
.cid-saLGZzdoJX .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-saLGZzdoJX .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-saLGZzdoJX .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-saLGZzdoJX .mbr-author-name {
  padding-left: 40px;
}
.cid-saLGZzdoJX P {
  color: #000000;
  line-height: 1.3;
}
.cid-saLGZzdoJX .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rUUg5yKc0q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-12-2000x1448.png");
}
.cid-rUUg5yKc0q .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rUUg5yKc0q h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUUg5yKc0q p {
  color: #767676;
  text-align: left;
}
.cid-rUUg5yKc0q .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rUUg5yKc0q .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUUg5yKc0q .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rUUg5yKc0q .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUUg5yKc0q .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rUUg5yKc0q .notched-box:before,
.cid-rUUg5yKc0q .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rUUg5yKc0q .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rUUg5yKc0q .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rUUg5yKc0q .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rUUg5yKc0q .border:before,
.cid-rUUg5yKc0q .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rUUg5yKc0q .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rUUg5yKc0q .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rUUg5yKc0q .mbr-author-name {
  padding-left: 40px;
}
.cid-rUUg5yKc0q P {
  color: #000000;
}
.cid-rUUg5yKc0q .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rUUg5yKc0q a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rUUg5yKc0q a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-saLNKbGN3o {
  padding-top: 0px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/asche-12-2000x1448.png");
}
.cid-saLNKbGN3o .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-saLNKbGN3o h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-saLNKbGN3o p {
  color: #767676;
  text-align: left;
}
.cid-saLNKbGN3o .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-saLNKbGN3o .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-saLNKbGN3o .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-saLNKbGN3o .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-saLNKbGN3o .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-saLNKbGN3o .notched-box:before,
.cid-saLNKbGN3o .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-saLNKbGN3o .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-saLNKbGN3o .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-saLNKbGN3o .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-saLNKbGN3o .border:before,
.cid-saLNKbGN3o .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-saLNKbGN3o .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-saLNKbGN3o .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-saLNKbGN3o .mbr-author-name {
  padding-left: 40px;
}
.cid-saLNKbGN3o P {
  color: #000000;
  line-height: 1.3;
}
.cid-saLNKbGN3o .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRrtW1zZHG {
  background-image: url("../../../assets/images/bundestag-kopie-2000x861.jpg");
}
.cid-rRrtW1zZHG P {
  color: #767676;
}
.cid-rRru3oc6Yx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRru3oc6Yx .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRru3oc6Yx .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRru3oc6Yx .mbr-author-desc {
  color: #232;
}
.cid-rRru3oc6Yx .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRru3oc6Yx .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRru3oc6Yx .mbr-figure,
  .cid-rRru3oc6Yx img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRru3oc6Yx h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRru3oc6Yx .text_block {
  margin-top: 0px;
}
.cid-rRru3oc6Yx .h2_block {
  margin-bottom: 20px;
}
.cid-rRru3oc6Yx .mbr-figure {
  align-self: flex-start;
}
.cid-rRru3oc6Yx .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRru3oc6Yx .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRru3oc6Yx a:hover {
  Color: #a76645 !important;
}
.cid-rRru3oc6Yx a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRru3oc6Yx .btn-black-outline:hover,
.cid-rRru3oc6Yx .btn-black-outline:focus,
.cid-rRru3oc6Yx .btn-black-outline.focus,
.cid-rRru3oc6Yx .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRru3oc6Yx .display-5 {
    line-height: 1;
  }
  .cid-rRru3oc6Yx .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRru3oc6Yx .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRru3oc6Yx .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRru3oc6Yx .content {
  padding-left: 3px;
}
.cid-rRru6H1jWo {
  background-image: url("../../../assets/images/nie-wieder-auschwitz-am-bundestag-1280x853.jpg");
}
.cid-rRru6H1jWo P {
  color: #767676;
}
.cid-sdcym4KATS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-7-1784x2561.png");
}
.cid-sdcym4KATS .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sdcym4KATS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sdcym4KATS p {
  color: #767676;
  text-align: left;
}
.cid-sdcym4KATS .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sdcym4KATS .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sdcym4KATS .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sdcym4KATS .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sdcym4KATS .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sdcym4KATS .notched-box:before,
.cid-sdcym4KATS .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-sdcym4KATS .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sdcym4KATS .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sdcym4KATS .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sdcym4KATS .border:before,
.cid-sdcym4KATS .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-sdcym4KATS .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sdcym4KATS .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sdcym4KATS .mbr-author-name {
  padding-left: 40px;
}
.cid-sdcym4KATS P {
  color: #000000;
  line-height: 1.3;
}
.cid-sdcym4KATS .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRruajlVgt {
  background-image: url("../../../assets/images/045-2000x1125.jpg");
}
.cid-rRruajlVgt P {
  color: #767676;
}
.cid-rRrup152YD {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rRrup152YD .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
}
.cid-rRrup152YD .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rRrup152YD .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRrup152YD .mbr-figure,
  .cid-rRrup152YD img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRrup152YD .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRrup152YD h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRrup152YD .h2_block {
  margin-bottom: 20px;
}
.cid-saLoeiOePd {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-9-1500x622.jpg");
}
.cid-saLoeiOePd H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-saLoeiOePd .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-saLoeiOePd .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-saLoeiOePd .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRrur2Dwvi {
  background-image: url("../../../assets/images/zps-gedenkenheisstkaempfen-0351-v2-2000x1333.jpg");
}
.cid-rRrur2Dwvi P {
  color: #767676;
}
.cid-saLp3L155x {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-saLp3L155x .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-saLp3L155x h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-saLp3L155x p {
  color: #767676;
  text-align: left;
}
.cid-saLp3L155x .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-saLp3L155x .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-saLp3L155x .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-saLp3L155x .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-saLp3L155x .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-saLp3L155x .notched-box:before,
.cid-saLp3L155x .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-saLp3L155x .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-saLp3L155x .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-saLp3L155x .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-saLp3L155x .border:before,
.cid-saLp3L155x .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-saLp3L155x .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-saLp3L155x .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-saLp3L155x .mbr-author-name {
  padding-left: 40px;
}
.cid-saLp3L155x P {
  color: #ffffff;
}
.cid-saLp3L155x .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-saLp3L155x a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-saLp3L155x a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-saLtPh4BA4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-saLtPh4BA4 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-saLtPh4BA4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-saLtPh4BA4 p {
  color: #767676;
  text-align: left;
}
.cid-saLtPh4BA4 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-saLtPh4BA4 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-saLtPh4BA4 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-saLtPh4BA4 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-saLtPh4BA4 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-saLtPh4BA4 .notched-box:before,
.cid-saLtPh4BA4 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-saLtPh4BA4 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-saLtPh4BA4 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-saLtPh4BA4 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-saLtPh4BA4 .border:before,
.cid-saLtPh4BA4 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-saLtPh4BA4 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-saLtPh4BA4 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-saLtPh4BA4 .mbr-author-name {
  padding-left: 40px;
}
.cid-saLtPh4BA4 P {
  color: #ffffff;
}
.cid-saLtPh4BA4 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-saLtPh4BA4 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-saLtPh4BA4 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-se4vZi2Mk0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-se4vZi2Mk0 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-se4vZi2Mk0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-se4vZi2Mk0 p {
  color: #767676;
  text-align: left;
}
.cid-se4vZi2Mk0 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-se4vZi2Mk0 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-se4vZi2Mk0 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-se4vZi2Mk0 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-se4vZi2Mk0 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-se4vZi2Mk0 .notched-box:before,
.cid-se4vZi2Mk0 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-se4vZi2Mk0 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-se4vZi2Mk0 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-se4vZi2Mk0 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-se4vZi2Mk0 .border:before,
.cid-se4vZi2Mk0 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-se4vZi2Mk0 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-se4vZi2Mk0 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-se4vZi2Mk0 .mbr-author-name {
  padding-left: 40px;
}
.cid-se4vZi2Mk0 P {
  color: #ffffff;
}
.cid-se4vZi2Mk0 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-se4vZi2Mk0 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-se4vZi2Mk0 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-saLuWWObUQ {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-saLuWWObUQ .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-saLuWWObUQ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-saLuWWObUQ p {
  color: #767676;
  text-align: left;
}
.cid-saLuWWObUQ .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-saLuWWObUQ .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-saLuWWObUQ .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-saLuWWObUQ .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-saLuWWObUQ .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-saLuWWObUQ .notched-box:before,
.cid-saLuWWObUQ .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-saLuWWObUQ .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-saLuWWObUQ .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-saLuWWObUQ .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-saLuWWObUQ .border:before,
.cid-saLuWWObUQ .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-saLuWWObUQ .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-saLuWWObUQ .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-saLuWWObUQ .mbr-author-name {
  padding-left: 40px;
}
.cid-saLuWWObUQ P {
  color: #ffffff;
}
.cid-saLuWWObUQ .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-saLuWWObUQ a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-saLuWWObUQ a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ucct76haP0 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-ucct76haP0 .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-ucct76haP0 .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-ucct76haP0 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-ucct76haP0 .mbr-figure,
  .cid-ucct76haP0 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-ucct76haP0 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-ucct76haP0 .mbr-author-desc {
  color: #000000;
}
.cid-ucct76haP0 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ucct76haP0 .text_block {
  margin-top: 0px;
}
.cid-ucct76haP0 .h2_block {
  margin-bottom: 20px;
}
.cid-ucct76haP0 .mbr-figure {
  align-self: flex-start;
}
.cid-ucct76haP0 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-ucct76haP0 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-ucct76haP0 .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-ucct76haP0 a svg polygon {
  fill: white !important;
}
.cid-ucct76haP0 a:hover {
  Color: #F9CEB2!important;
}
.cid-ucct76haP0 a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ucct76haP0 .btn-white-outline:hover,
.cid-ucct76haP0 .btn-white-outline:focus,
.cid-ucct76haP0 .btn-white-outline.focus,
.cid-ucct76haP0 .btn-white-outline.active,
.cid-ucct76haP0 .btn-black-outline:hover,
.cid-ucct76haP0 .btn-black-outline:focus,
.cid-ucct76haP0 .btn-black-outline.focus,
.cid-ucct76haP0 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ucct76haP0 .display-5 {
    line-height: 1;
  }
  .cid-ucct76haP0 .btn {
    font-size: 1.5rem !important;
  }
  .cid-ucct76haP0 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-ucct76haP0 .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-sa6wcD6ZVR {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-13-2000x1333.png");
}
.cid-sa6wcD6ZVR H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sa6wcD6ZVR .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sa6wcD6ZVR .breites_Zitat,
  .cid-sa6wcD6ZVR .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRruxpuzX2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRruxpuzX2 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRruxpuzX2 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRruxpuzX2 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRruxpuzX2 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRrujFpY59 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRrujFpY59 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRrujFpY59 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrujFpY59 p {
  color: #767676;
  text-align: left;
}
.cid-rRrujFpY59 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRrujFpY59 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRrujFpY59 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRrujFpY59 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRrujFpY59 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRrujFpY59 .notched-box:before,
.cid-rRrujFpY59 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRrujFpY59 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRrujFpY59 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRrujFpY59 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRrujFpY59 .border:before,
.cid-rRrujFpY59 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRrujFpY59 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRrujFpY59 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRrujFpY59 .mbr-author-name {
  padding-left: 40px;
}
.cid-rRrujFpY59 P {
  color: #000000;
  line-height: 1.3;
}
.cid-rRrujFpY59 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rUU1gWIMWA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rUU1gWIMWA .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rUU1gWIMWA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUU1gWIMWA p {
  color: #767676;
  text-align: left;
}
.cid-rUU1gWIMWA .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rUU1gWIMWA .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUU1gWIMWA .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rUU1gWIMWA .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUU1gWIMWA .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rUU1gWIMWA .notched-box:before,
.cid-rUU1gWIMWA .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rUU1gWIMWA .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rUU1gWIMWA .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rUU1gWIMWA .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rUU1gWIMWA .border:before,
.cid-rUU1gWIMWA .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rUU1gWIMWA .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rUU1gWIMWA .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rUU1gWIMWA .mbr-author-name {
  padding-left: 40px;
}
.cid-rUU1gWIMWA P {
  color: #000000;
  line-height: 1.3;
}
.cid-rUU1gWIMWA .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rUU2DYTuax {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rUU2DYTuax .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rUU2DYTuax h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUU2DYTuax p {
  color: #767676;
  text-align: left;
}
.cid-rUU2DYTuax .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rUU2DYTuax .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUU2DYTuax .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rUU2DYTuax .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUU2DYTuax .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rUU2DYTuax .notched-box:before,
.cid-rUU2DYTuax .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rUU2DYTuax .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rUU2DYTuax .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rUU2DYTuax .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rUU2DYTuax .border:before,
.cid-rUU2DYTuax .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rUU2DYTuax .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rUU2DYTuax .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rUU2DYTuax .mbr-author-name {
  padding-left: 40px;
}
.cid-rUU2DYTuax P {
  color: #000000;
  line-height: 1.3;
}
.cid-rUU2DYTuax .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rUU3PuCXZ6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rUU3PuCXZ6 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rUU3PuCXZ6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUU3PuCXZ6 p {
  color: #767676;
  text-align: left;
}
.cid-rUU3PuCXZ6 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rUU3PuCXZ6 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUU3PuCXZ6 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rUU3PuCXZ6 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUU3PuCXZ6 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rUU3PuCXZ6 .notched-box:before,
.cid-rUU3PuCXZ6 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rUU3PuCXZ6 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rUU3PuCXZ6 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rUU3PuCXZ6 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rUU3PuCXZ6 .border:before,
.cid-rUU3PuCXZ6 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rUU3PuCXZ6 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rUU3PuCXZ6 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rUU3PuCXZ6 .mbr-author-name {
  padding-left: 40px;
}
.cid-rUU3PuCXZ6 P {
  color: #000000;
  line-height: 1.3;
}
.cid-rUU3PuCXZ6 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rUU5w6t5WL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rUU5w6t5WL .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rUU5w6t5WL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUU5w6t5WL p {
  color: #767676;
  text-align: left;
}
.cid-rUU5w6t5WL .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rUU5w6t5WL .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUU5w6t5WL .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rUU5w6t5WL .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUU5w6t5WL .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rUU5w6t5WL .notched-box:before,
.cid-rUU5w6t5WL .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rUU5w6t5WL .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rUU5w6t5WL .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rUU5w6t5WL .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rUU5w6t5WL .border:before,
.cid-rUU5w6t5WL .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rUU5w6t5WL .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rUU5w6t5WL .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rUU5w6t5WL .mbr-author-name {
  padding-left: 40px;
}
.cid-rUU5w6t5WL P {
  color: #000000;
  line-height: 1.3;
}
.cid-rUU5w6t5WL .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-saLIUVONBi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-saLIUVONBi .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-saLIUVONBi h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-saLIUVONBi p {
  color: #767676;
  text-align: left;
}
.cid-saLIUVONBi .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-saLIUVONBi .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-saLIUVONBi .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-saLIUVONBi .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-saLIUVONBi .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-saLIUVONBi .notched-box:before,
.cid-saLIUVONBi .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-saLIUVONBi .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-saLIUVONBi .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-saLIUVONBi .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-saLIUVONBi .border:before,
.cid-saLIUVONBi .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-saLIUVONBi .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-saLIUVONBi .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-saLIUVONBi .mbr-author-name {
  padding-left: 40px;
}
.cid-saLIUVONBi P {
  color: #000000;
  line-height: 1.3;
}
.cid-saLIUVONBi .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-saLJpAzJl5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-saLJpAzJl5 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-saLJpAzJl5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-saLJpAzJl5 p {
  color: #767676;
  text-align: left;
}
.cid-saLJpAzJl5 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-saLJpAzJl5 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-saLJpAzJl5 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-saLJpAzJl5 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-saLJpAzJl5 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-saLJpAzJl5 .notched-box:before,
.cid-saLJpAzJl5 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-saLJpAzJl5 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-saLJpAzJl5 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-saLJpAzJl5 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-saLJpAzJl5 .border:before,
.cid-saLJpAzJl5 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-saLJpAzJl5 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-saLJpAzJl5 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-saLJpAzJl5 .mbr-author-name {
  padding-left: 40px;
}
.cid-saLJpAzJl5 P {
  color: #000000;
  line-height: 1.3;
}
.cid-saLJpAzJl5 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rUUZBQ9SJy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rUUZBQ9SJy .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rUUZBQ9SJy h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUUZBQ9SJy p {
  color: #767676;
  text-align: left;
}
.cid-rUUZBQ9SJy .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rUUZBQ9SJy .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUUZBQ9SJy .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rUUZBQ9SJy .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUUZBQ9SJy .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rUUZBQ9SJy .notched-box:before,
.cid-rUUZBQ9SJy .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rUUZBQ9SJy .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rUUZBQ9SJy .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rUUZBQ9SJy .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rUUZBQ9SJy .border:before,
.cid-rUUZBQ9SJy .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rUUZBQ9SJy .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rUUZBQ9SJy .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rUUZBQ9SJy .mbr-author-name {
  padding-left: 40px;
}
.cid-rUUZBQ9SJy P {
  color: #000000;
  line-height: 1.3;
}
.cid-rUUZBQ9SJy .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rUV0pakSiv {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rUV0pakSiv .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rUV0pakSiv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUV0pakSiv p {
  color: #767676;
  text-align: left;
}
.cid-rUV0pakSiv .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rUV0pakSiv .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUV0pakSiv .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rUV0pakSiv .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUV0pakSiv .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rUV0pakSiv .notched-box:before,
.cid-rUV0pakSiv .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rUV0pakSiv .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rUV0pakSiv .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rUV0pakSiv .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rUV0pakSiv .border:before,
.cid-rUV0pakSiv .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rUV0pakSiv .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rUV0pakSiv .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rUV0pakSiv .mbr-author-name {
  padding-left: 40px;
}
.cid-rUV0pakSiv P {
  color: #000000;
  line-height: 1.3;
}
.cid-rUV0pakSiv .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-sdcoFwVlhd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-7-1500x622.jpg");
}
.cid-sdcoFwVlhd P {
  color: #767676;
}
.cid-sdcoFwVlhd .display-2 {
  font-size: 3rem;
  font-weight: 300;
}
.cid-sdcoFwVlhd h1 {
  font-size: 6vw !important;
  font-weight: bold !important;
  text-align: center;
  line-height: 0.9em;
  color: white;
}
.cid-sdcoFwVlhd .animation_center {
  padding: 5vh 0px;
}
.cid-sdcoFwVlhd .banner {
  width: 100%;
  height: auto;
}
.cid-sdcoFwVlhd .black {
  background-color: #fff !important;
}
.cid-sdcoFwVlhd .AniContainer {
  padding: 5em 0em;
}
.cid-sdcoFwVlhd span {
  visibility: hidden;
}
.cid-sdcoFwVlhd span.blick {
  visibility: visible;
}
@media (max-width: 768px) {
  .cid-sdcoFwVlhd .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-sdcoFwVlhd .mbr-text,
.cid-sdcoFwVlhd .mbr-section-btn {
  color: #ffffff;
}
.cid-rRruAK8GF2 {
  background-image: url("../../../assets/images/eimasacw4aaexus-800x548.jpg");
}
.cid-rRruAK8GF2 P {
  color: #767676;
}
.cid-rRrv0xt791 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRrv0xt791 .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRrv0xt791 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRrv0xt791 .mbr-author-desc {
  color: #232;
}
.cid-rRrv0xt791 .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRrv0xt791 .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRrv0xt791 .mbr-figure,
  .cid-rRrv0xt791 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRrv0xt791 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRrv0xt791 .text_block {
  margin-top: 0px;
}
.cid-rRrv0xt791 .h2_block {
  margin-bottom: 20px;
}
.cid-rRrv0xt791 .mbr-figure {
  align-self: flex-start;
}
.cid-rRrv0xt791 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRrv0xt791 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRrv0xt791 a:hover {
  Color: #a76645 !important;
}
.cid-rRrv0xt791 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRrv0xt791 .btn-black-outline:hover,
.cid-rRrv0xt791 .btn-black-outline:focus,
.cid-rRrv0xt791 .btn-black-outline.focus,
.cid-rRrv0xt791 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRrv0xt791 .display-5 {
    line-height: 1;
  }
  .cid-rRrv0xt791 .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRrv0xt791 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRrv0xt791 .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRrv0xt791 .content {
  padding-left: 3px;
}
.cid-rRrv2vEsLm {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRrv2vEsLm H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRrv2vEsLm .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRrv2vEsLm .breites_Zitat,
  .cid-rRrv2vEsLm .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRrv56xbXy {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f9ceb2;
}
.cid-rRrv56xbXy .images-container.container-fluid {
  padding: 0;
}
.cid-rRrv56xbXy .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRrv56xbXy .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRrv56xbXy .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRrv56xbXy .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRrv56xbXy .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRrv56xbXy .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRrv56xbXy .img-item {
    width: 100% !important;
  }
  .cid-rRrv56xbXy .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-saLxVjokw9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-15-2000x1330.png");
}
.cid-saLxVjokw9 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-saLxVjokw9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-saLxVjokw9 p {
  color: #767676;
  text-align: left;
}
.cid-saLxVjokw9 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-saLxVjokw9 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-saLxVjokw9 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-saLxVjokw9 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-saLxVjokw9 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-saLxVjokw9 .notched-box:before,
.cid-saLxVjokw9 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-saLxVjokw9 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-saLxVjokw9 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-saLxVjokw9 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-saLxVjokw9 .border:before,
.cid-saLxVjokw9 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-saLxVjokw9 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-saLxVjokw9 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-saLxVjokw9 .mbr-author-name {
  padding-left: 40px;
}
.cid-saLxVjokw9 P {
  color: #000000;
  line-height: 1.3;
}
.cid-saLxVjokw9 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRrv6p0PKI {
  background-image: url("../../../assets/images/zps-gedenkenheisstkaempfen-402-2000x1333.jpg");
}
.cid-rRrv6p0PKI P {
  color: #767676;
}
.cid-rRrv9igpZv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRrv9igpZv .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRrv9igpZv h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRrv9igpZv .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRrv9igpZv .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRrvb31moP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRrvb31moP h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrvb31moP p {
  color: #767676;
  text-align: left;
}
.cid-rRrvb31moP .card-box {
  padding-top: 2rem;
}
.cid-rRrvb31moP .card-wrapper {
  height: 100%;
}
.cid-rRrvdlrA64 {
  background-image: url("../../../assets/images/zps-gedenkenheisstkaempfen-516-1333x2000.jpg");
}
.cid-rRrvdlrA64 P {
  color: #767676;
}
.cid-rRrveG7kZe {
  background-image: url("../../../assets/images/zps-gedenkenheisstkaempfen-512-2000x1333.jpg");
}
.cid-rRrveG7kZe P {
  color: #767676;
}
.cid-rRrviWmd0Y {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRrviWmd0Y H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRrviWmd0Y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rRrvkFSROn {
  background-image: url("../../../assets/images/zps-gedenkenheisstkaempfen-411-2000x1333.jpg");
}
.cid-rRrvkFSROn P {
  color: #767676;
}
.cid-rRrvlFvIZj {
  background-image: url("../../../assets/images/zps-chemnitz-12-2000x1333.jpg");
}
.cid-rRrvlFvIZj P {
  color: #767676;
}
.cid-rRrpnt65T0 {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/partikel-haut-2000x1333.jpg");
}
.cid-rRrpnt65T0 .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRrpnt65T0 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRrpnt65T0 .mbr-author-desc {
  color: #ffffff;
}
.cid-rRrpnt65T0 .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRrpnt65T0 .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRrpnt65T0 .mbr-figure,
  .cid-rRrpnt65T0 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRrpnt65T0 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRrpnt65T0 .text_block {
  margin-top: 0px;
}
.cid-rRrpnt65T0 .h2_block {
  margin-bottom: 20px;
}
.cid-rRrpnt65T0 .mbr-figure {
  align-self: flex-start;
}
.cid-rRrpnt65T0 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: white !important;
}
.cid-rRrpnt65T0 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRrpnt65T0 svg polygon {
  fill: white ;
}
.cid-rRrpnt65T0 a:hover {
  Color: #F9CEB2 !important;
}
.cid-rRrpnt65T0 a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRrpnt65T0 .btn-black-outline:hover,
.cid-rRrpnt65T0 .btn-black-outline:focus,
.cid-rRrpnt65T0 .btn-black-outline.focus,
.cid-rRrpnt65T0 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-rRrpnt65T0 .btn-white-outline:hover,
.cid-rRrpnt65T0 .btn-white-outline:focus,
.cid-rRrpnt65T0 .btn-white-outline.focus,
.cid-rRrpnt65T0 .btn-white-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRrpnt65T0 .display-5 {
    line-height: 1;
  }
  .cid-rRrpnt65T0 .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRrpnt65T0 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRrpnt65T0 .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRrpnt65T0 .content {
  padding-left: 3px;
}
.cid-rRrvnGZTeh {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-5-1500x302.jpg");
}
.cid-rRrvnGZTeh H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-rRrvnGZTeh .mbr-section-subtitle {
  color: #000000;
}
.cid-rRrvnGZTeh section {
  background-color: none;
}
.cid-rRrvnGZTeh .logo_footer {
  position: relative;
  right: 100px;
}
.cid-rRrvpYwpgQ {
  background-image: url("../../../assets/images/042-2000x1125.jpg");
}
.cid-rRrvpYwpgQ P {
  color: #767676;
}
.cid-rRrvSzXhVV {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRrvSzXhVV h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrvSzXhVV p {
  color: #767676;
  text-align: left;
}
.cid-rRrvSzXhVV .card-box {
  padding-top: 2rem;
}
.cid-rRrvSzXhVV .card-wrapper {
  height: 100%;
}
.cid-rRrwlHV69t {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRrwlHV69t .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRrwlHV69t h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRrwlHV69t .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRrwlHV69t .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRrwnw91M2 {
  background-image: url("../../../assets/images/bildschirmfoto-2019-12-01-um-12.43.25-1864x1292.png");
}
.cid-rRrwnw91M2 P {
  color: #767676;
}
.cid-saLsCNE9FC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-saLsCNE9FC .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-saLsCNE9FC h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-saLsCNE9FC p {
  color: #767676;
  text-align: left;
}
.cid-saLsCNE9FC .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-saLsCNE9FC .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-saLsCNE9FC .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-saLsCNE9FC .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-saLsCNE9FC .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-saLsCNE9FC .notched-box:before,
.cid-saLsCNE9FC .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-saLsCNE9FC .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-saLsCNE9FC .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-saLsCNE9FC .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-saLsCNE9FC .border:before,
.cid-saLsCNE9FC .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-saLsCNE9FC .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-saLsCNE9FC .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-saLsCNE9FC .mbr-author-name {
  padding-left: 40px;
}
.cid-saLsCNE9FC P {
  color: #ffffff;
}
.cid-saLsCNE9FC .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-saLsCNE9FC a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-saLsCNE9FC a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRrwy4UjI3 {
  background-image: url("../../../assets/images/damm-6-2000x1125.jpg");
}
.cid-rRrwy4UjI3 P {
  color: #767676;
}
.cid-rRrwpQ5dcf {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #f9ceb2;
}
.cid-rRrwpQ5dcf .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRrwpQ5dcf h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRrwpQ5dcf .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRrwpQ5dcf .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRrwrt1S8S {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rRrwrt1S8S .images-container.container-fluid {
  padding: 0;
}
.cid-rRrwrt1S8S .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRrwrt1S8S .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRrwrt1S8S .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRrwrt1S8S .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRrwrt1S8S .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRrwrt1S8S .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRrwrt1S8S .img-item {
    width: 100% !important;
  }
  .cid-rRrwrt1S8S .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRrwvOZcmT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/damm-ubersicht-quer-web-2000x1527.jpg");
}
.cid-rRrwvOZcmT p {
  color: #767676;
}
.cid-rRrwvOZcmT .mbr-section-subtitle {
  color: #767676;
}
.cid-rRrwvOZcmT .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rRrwvOZcmT .panel-group {
  width: 100%;
}
.cid-rRrwvOZcmT .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rRrwvOZcmT .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rRrwvOZcmT .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rRrwvOZcmT .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rRrwvOZcmT .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rRrwvOZcmT .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rRrwvOZcmT .mbr-figure {
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .cid-rRrwvOZcmT .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
  }
}
.cid-rRrwudgO9D {
  background-image: url("../../../assets/images/dji-0597-1-2000x1125.jpg");
}
.cid-rRrwudgO9D P {
  color: #767676;
}
.cid-rUTSbp0cIZ {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-7-1500x622.jpg");
}
.cid-rUTSbp0cIZ H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rUTSbp0cIZ .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rUTSbp0cIZ .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rUTSbp0cIZ .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRrwyCiIu8 {
  background-image: url("../../../assets/images/img-8795-2-2000x1333.jpg");
}
.cid-rRrwyCiIu8 P {
  color: #767676;
}
.cid-rRrwzJbaHr {
  background-image: url("../../../assets/images/img-8896-2000x1333.jpg");
}
.cid-rRrwzJbaHr P {
  color: #767676;
}
.cid-rRwjRQqHYj {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-rRwjRQqHYj .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRwjRQqHYj .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRwjRQqHYj .mbr-author-desc {
  color: #000000;
}
.cid-rRwjRQqHYj .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRwjRQqHYj .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRwjRQqHYj .mbr-figure,
  .cid-rRwjRQqHYj img {
    max-height: 190px;
    width: auto;
    margin: auto;
  }
}
.cid-rRwjRQqHYj h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwjRQqHYj .text_block {
  margin-top: 0px;
}
.cid-rRwjRQqHYj .h2_block {
  margin-bottom: 20px;
}
.cid-rRwjRQqHYj .mbr-figure {
  align-self: flex-start;
}
.cid-rRwjRQqHYj .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: black !important;
}
.cid-rRwjRQqHYj .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRwjRQqHYj svg polygon {
  fill: black ;
}
.cid-rRwjRQqHYj a:hover {
  Color: #a76645 !important;
}
.cid-rRwjRQqHYj a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRwjRQqHYj .btn-black-outline:hover,
.cid-rRwjRQqHYj .btn-black-outline:focus,
.cid-rRwjRQqHYj .btn-black-outline.focus,
.cid-rRwjRQqHYj .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-rRwjRQqHYj .btn-white-outline:hover,
.cid-rRwjRQqHYj .btn-white-outline:focus,
.cid-rRwjRQqHYj .btn-white-outline.focus,
.cid-rRwjRQqHYj .btn-white-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRwjRQqHYj .display-5 {
    line-height: 1;
  }
  .cid-rRwjRQqHYj .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRwjRQqHYj .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRwjRQqHYj .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRwjRQqHYj .content {
  padding-left: 3px;
}
.cid-rRrwABe0oq {
  background-image: url("../../../assets/images/img-8905-2000x1333.jpg");
}
.cid-rRrwABe0oq P {
  color: #767676;
}
.cid-rSQH9lhDT3 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rSQH9lhDT3 .mbr-text {
  color: #ffffff;
}
.cid-rSQH9lhDT3 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem !important;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSQH9lhDT3 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSQH9lhDT3 p {
  line-height: 1.4;
  font-weight: 200;
}
.cid-rRrwTEYyOZ {
  padding-top: 45px;
  padding-bottom: 0px;
  background: #000000;
}
.cid-rRrwTEYyOZ .images-container.container-fluid {
  padding: 0;
}
.cid-rRrwTEYyOZ .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRrwTEYyOZ .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRrwTEYyOZ .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRrwTEYyOZ .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRrwTEYyOZ .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRrwTEYyOZ .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRrwTEYyOZ .img-item {
    width: 100% !important;
  }
  .cid-rRrwTEYyOZ .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRrwVSz1Xt {
  padding-top: 15px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-rRrwVSz1Xt .images-container.container-fluid {
  padding: 0;
}
.cid-rRrwVSz1Xt .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRrwVSz1Xt .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRrwVSz1Xt .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRrwVSz1Xt .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRrwVSz1Xt .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRrwVSz1Xt .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRrwVSz1Xt .img-item {
    width: 100% !important;
  }
  .cid-rRrwVSz1Xt .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-saLKBoevBd {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-4-1500x490.jpg");
}
.cid-saLKBoevBd H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-saLKBoevBd .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-saLKBoevBd .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-saLKBoevBd .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRrx3tZXFa {
  background-image: url("../../../assets/images/dji-0589-2-2000x1125.jpg");
}
.cid-rRrx3tZXFa h2 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRrx3tZXFa .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRrxbdDn7v {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/karte-web-2000x1391.jpg");
}
.cid-rRrxbdDn7v p {
  color: #767676;
}
.cid-rRrxbdDn7v .mbr-section-subtitle {
  color: #767676;
}
.cid-rRrxbdDn7v .accordion-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-rRrxbdDn7v .panel-group {
  width: 100%;
}
.cid-rRrxbdDn7v .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-rRrxbdDn7v .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-rRrxbdDn7v .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-rRrxbdDn7v .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rRrxbdDn7v .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-rRrxbdDn7v .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rRrxbdDn7v .mbr-figure {
  -webkit-align-self: flex-start;
  align-self: flex-start;
  padding-left: 4rem;
  padding-left: 0;
  padding-right: 4rem;
}
.cid-rRrxbdDn7v .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-rRrxbdDn7v .media-container-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rRrxbdDn7v .mbr-figure {
    padding-right: 0;
    padding-left: 0;
    padding-top: 2rem;
    padding-top: 0;
    padding-bottom: 2rem;
  }
}
.cid-rRrxgLEQZD {
  background-image: url("../../../assets/images/012-2000x1127.jpg");
}
.cid-rRrxgLEQZD P {
  color: #767676;
}
.cid-rUUUdynEMl {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rUUUdynEMl .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rUUUdynEMl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUUUdynEMl p {
  color: #767676;
  text-align: left;
}
.cid-rUUUdynEMl .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rUUUdynEMl .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUUUdynEMl .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rUUUdynEMl .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUUUdynEMl .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rUUUdynEMl .notched-box:before,
.cid-rUUUdynEMl .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rUUUdynEMl .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rUUUdynEMl .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rUUUdynEMl .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rUUUdynEMl .border:before,
.cid-rUUUdynEMl .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rUUUdynEMl .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rUUUdynEMl .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rUUUdynEMl .mbr-author-name {
  padding-left: 40px;
}
.cid-rUUUdynEMl P {
  color: #000000;
  line-height: 1.3;
}
.cid-rUUUdynEMl .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rUUWAzUhjg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rUUWAzUhjg .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rUUWAzUhjg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUUWAzUhjg p {
  color: #767676;
  text-align: left;
}
.cid-rUUWAzUhjg .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rUUWAzUhjg .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUUWAzUhjg .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rUUWAzUhjg .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUUWAzUhjg .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rUUWAzUhjg .notched-box:before,
.cid-rUUWAzUhjg .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rUUWAzUhjg .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rUUWAzUhjg .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rUUWAzUhjg .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rUUWAzUhjg .border:before,
.cid-rUUWAzUhjg .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rUUWAzUhjg .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rUUWAzUhjg .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rUUWAzUhjg .mbr-author-name {
  padding-left: 40px;
}
.cid-rUUWAzUhjg P {
  color: #000000;
  line-height: 1.3;
}
.cid-rUUWAzUhjg .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-saLRrcby1G {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-saLRrcby1G .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-saLRrcby1G h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-saLRrcby1G p {
  color: #767676;
  text-align: left;
}
.cid-saLRrcby1G .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-saLRrcby1G .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-saLRrcby1G .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-saLRrcby1G .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-saLRrcby1G .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-saLRrcby1G .notched-box:before,
.cid-saLRrcby1G .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-saLRrcby1G .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-saLRrcby1G .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-saLRrcby1G .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-saLRrcby1G .border:before,
.cid-saLRrcby1G .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-saLRrcby1G .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-saLRrcby1G .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-saLRrcby1G .mbr-author-name {
  padding-left: 40px;
}
.cid-saLRrcby1G P {
  color: #000000;
  line-height: 1.3;
}
.cid-saLRrcby1G .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-saLRXVwbpR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-saLRXVwbpR .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-saLRXVwbpR h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-saLRXVwbpR p {
  color: #767676;
  text-align: left;
}
.cid-saLRXVwbpR .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-saLRXVwbpR .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-saLRXVwbpR .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-saLRXVwbpR .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-saLRXVwbpR .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-saLRXVwbpR .notched-box:before,
.cid-saLRXVwbpR .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-saLRXVwbpR .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-saLRXVwbpR .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-saLRXVwbpR .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-saLRXVwbpR .border:before,
.cid-saLRXVwbpR .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-saLRXVwbpR .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-saLRXVwbpR .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-saLRXVwbpR .mbr-author-name {
  padding-left: 40px;
}
.cid-saLRXVwbpR P {
  color: #000000;
  line-height: 1.3;
}
.cid-saLRXVwbpR .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-sboVDOmKSp {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-sboVDOmKSp .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sboVDOmKSp h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sboVDOmKSp p {
  color: #767676;
  text-align: left;
}
.cid-sboVDOmKSp .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sboVDOmKSp .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sboVDOmKSp .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sboVDOmKSp .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sboVDOmKSp .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sboVDOmKSp .notched-box:before,
.cid-sboVDOmKSp .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-sboVDOmKSp .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sboVDOmKSp .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sboVDOmKSp .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sboVDOmKSp .border:before,
.cid-sboVDOmKSp .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-sboVDOmKSp .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sboVDOmKSp .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sboVDOmKSp .mbr-author-name {
  padding-left: 40px;
}
.cid-sboVDOmKSp P {
  color: #000000;
}
.cid-sboVDOmKSp .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-sboVDOmKSp a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sboVDOmKSp a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRroHqJdSZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRroHqJdSZ .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRroHqJdSZ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRroHqJdSZ .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRroHqJdSZ .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-sJKRObxuEs {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-sJKRObxuEs .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-sJKRObxuEs .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-sJKRObxuEs .mbr-author-desc {
  color: #000000;
}
.cid-sJKRObxuEs .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-sJKRObxuEs .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-sJKRObxuEs .mbr-figure,
  .cid-sJKRObxuEs img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-sJKRObxuEs h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sJKRObxuEs .text_block {
  margin-top: 0px;
}
.cid-sJKRObxuEs .h2_block {
  margin-bottom: 20px;
}
.cid-sJKRObxuEs .mbr-figure {
  align-self: flex-start;
}
.cid-sJKRObxuEs .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: black !important;
}
.cid-sJKRObxuEs .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-sJKRObxuEs svg polygon {
  fill: black ;
}
.cid-sJKRObxuEs a:hover {
  Color: #a76645 !important;
}
.cid-sJKRObxuEs a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sJKRObxuEs .btn-black-outline:hover,
.cid-sJKRObxuEs .btn-black-outline:focus,
.cid-sJKRObxuEs .btn-black-outline.focus,
.cid-sJKRObxuEs .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-sJKRObxuEs .btn-white-outline:hover,
.cid-sJKRObxuEs .btn-white-outline:focus,
.cid-sJKRObxuEs .btn-white-outline.focus,
.cid-sJKRObxuEs .btn-white-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-sJKRObxuEs .display-5 {
    line-height: 1;
  }
  .cid-sJKRObxuEs .btn {
    font-size: 1.5rem !important;
  }
  .cid-sJKRObxuEs .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-sJKRObxuEs .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-sJKRObxuEs .content {
  padding-left: 3px;
}
.cid-rRrxiwKg3m {
  background: #ffffff;
}
.cid-rRrxiwKg3m .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRrxiwKg3m figcaption {
  position: relative;
}
.cid-rRrxiwKg3m figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRrxiwKg3m .image-block {
    width: 100% !important;
  }
}
.cid-rRrxlgQ4hy {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRrxlgQ4hy .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
}
.cid-rRrxlgQ4hy .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rRrxlgQ4hy .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRrxlgQ4hy .mbr-figure,
  .cid-rRrxlgQ4hy img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRrxlgQ4hy .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRrxlgQ4hy h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRrxlgQ4hy .h2_block {
  margin-bottom: 20px;
}
.cid-rRrxo7a88d {
  background: #ffffff;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-rRrxo7a88d .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRrxo7a88d .video-block {
    width: 100% !important;
  }
}
.cid-rRrxo7a88d .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRrxq4vwKG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRrxq4vwKG h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrxq4vwKG p {
  color: #767676;
  text-align: left;
}
.cid-rRrxq4vwKG .card-box {
  padding-top: 2rem;
}
.cid-rRrxq4vwKG .card-wrapper {
  height: 100%;
}
.cid-rRwohE9bPI {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRwohE9bPI H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRwohE9bPI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u7yUXPahas {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yUXPahas .content {
    text-align: center;
  }
  .cid-u7yUXPahas .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yUXPahas .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yUXPahas .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yUXPahas .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yUXPahas .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yUXPahas .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yUXPahas .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yUXPahas .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yUXPahas .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yUXPahas .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yUXPahas .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yUXPahas .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yUXPahas .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yUXPahas H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yUXPahas P {
  color: #ffffff;
}
.cid-u7yUXPahas .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yUXPahas .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yUXPahas .logo_footer {
  position: relative;
}
.cid-u7yUXPahas .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yUXPahas .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yUXPahas .col,
  .cid-u7yUXPahas .col-1,
  .cid-u7yUXPahas .col-10,
  .cid-u7yUXPahas .col-11,
  .cid-u7yUXPahas .col-12,
  .cid-u7yUXPahas .col-2,
  .cid-u7yUXPahas .col-3,
  .cid-u7yUXPahas .col-4,
  .cid-u7yUXPahas .col-5,
  .cid-u7yUXPahas .col-6,
  .cid-u7yUXPahas .col-7,
  .cid-u7yUXPahas .col-8,
  .cid-u7yUXPahas .col-9,
  .cid-u7yUXPahas .col-auto,
  .cid-u7yUXPahas .col-lg,
  .cid-u7yUXPahas .col-lg-1,
  .cid-u7yUXPahas .col-lg-10,
  .cid-u7yUXPahas .col-lg-11,
  .cid-u7yUXPahas .col-lg-12,
  .cid-u7yUXPahas .col-lg-2,
  .cid-u7yUXPahas .col-lg-3,
  .cid-u7yUXPahas .col-lg-4,
  .cid-u7yUXPahas .col-lg-5,
  .cid-u7yUXPahas .col-lg-6,
  .cid-u7yUXPahas .col-lg-7,
  .cid-u7yUXPahas .col-lg-8,
  .cid-u7yUXPahas .col-lg-9,
  .cid-u7yUXPahas .col-lg-auto,
  .cid-u7yUXPahas .col-md,
  .cid-u7yUXPahas .col-md-1,
  .cid-u7yUXPahas .col-md-10,
  .cid-u7yUXPahas .col-md-11,
  .cid-u7yUXPahas .col-md-12,
  .cid-u7yUXPahas .col-md-2,
  .cid-u7yUXPahas .col-md-3,
  .cid-u7yUXPahas .col-md-4,
  .cid-u7yUXPahas .col-md-5,
  .cid-u7yUXPahas .col-md-6,
  .cid-u7yUXPahas .col-md-7,
  .cid-u7yUXPahas .col-md-8,
  .cid-u7yUXPahas .col-md-9,
  .cid-u7yUXPahas .col-md-auto,
  .cid-u7yUXPahas .col-sm,
  .cid-u7yUXPahas .col-sm-1,
  .cid-u7yUXPahas .col-sm-10,
  .cid-u7yUXPahas .col-sm-11,
  .cid-u7yUXPahas .col-sm-12,
  .cid-u7yUXPahas .col-sm-2,
  .cid-u7yUXPahas .col-sm-3,
  .cid-u7yUXPahas .col-sm-4,
  .cid-u7yUXPahas .col-sm-5,
  .cid-u7yUXPahas .col-sm-6,
  .cid-u7yUXPahas .col-sm-7,
  .cid-u7yUXPahas .col-sm-8,
  .cid-u7yUXPahas .col-sm-9,
  .cid-u7yUXPahas .col-sm-auto,
  .cid-u7yUXPahas .col-xl,
  .cid-u7yUXPahas .col-xl-1,
  .cid-u7yUXPahas .col-xl-10,
  .cid-u7yUXPahas .col-xl-11,
  .cid-u7yUXPahas .col-xl-12,
  .cid-u7yUXPahas .col-xl-2,
  .cid-u7yUXPahas .col-xl-3,
  .cid-u7yUXPahas .col-xl-4,
  .cid-u7yUXPahas .col-xl-5,
  .cid-u7yUXPahas .col-xl-6,
  .cid-u7yUXPahas .col-xl-7,
  .cid-u7yUXPahas .col-xl-8,
  .cid-u7yUXPahas .col-xl-9,
  .cid-u7yUXPahas .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yUXPahas .content {
    text-align: left;
  }
  .cid-u7yUXPahas .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yUXPahas .logo_footer_box {
    position: relative;
  }
  .cid-u7yUXPahas .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yUXPahas .logo_footer {
    position: relative;
  }
  .cid-u7yUXPahas .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yUXPahas .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRahVVjtM5 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRahVVjtM5 {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tQpVVvKV5M {
  background: #ffffff;
}
.cid-tQpVVvKV5M .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tQpVVvKV5M figcaption {
  position: relative;
}
.cid-tQpVVvKV5M figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tQpVVvKV5M .image-block {
    width: 100% !important;
  }
}
.cid-rRao3ZsugU {
  background: #ffffff;
}
.cid-rRao3ZsugU .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRao3ZsugU figcaption {
  position: relative;
}
.cid-rRao3ZsugU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRao3ZsugU .image-block {
    width: 300% !important;
  }
}
.cid-rU5sXzeP4w {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rU5sXzeP4w .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rU5sXzeP4w .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rU5sXzeP4w .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rU5sXzeP4w .mbr-figure,
  .cid-rU5sXzeP4w img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rU5sXzeP4w .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rU5sXzeP4w .mbr-author-desc {
  color: #000000;
}
.cid-rU5sXzeP4w h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rU5sXzeP4w .text_block {
  margin-top: 0px;
}
.cid-rU5sXzeP4w .h2_block {
  margin-bottom: 20px;
}
.cid-rU5sXzeP4w .mbr-figure {
  align-self: flex-start;
}
.cid-rU5sXzeP4w .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rU5sXzeP4w .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rU5sXzeP4w .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-rU5sXzeP4w a:hover {
  Color: #a76645 !important;
}
.cid-rU5sXzeP4w a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rU5sXzeP4w .btn-black-outline:hover,
.cid-rU5sXzeP4w .btn-black-outline:focus,
.cid-rU5sXzeP4w .btn-black-outline.focus,
.cid-rU5sXzeP4w .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rU5sXzeP4w .display-5 {
    line-height: 1;
  }
  .cid-rU5sXzeP4w .btn {
    font-size: 1.5rem !important;
  }
  .cid-rU5sXzeP4w .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rU5sXzeP4w .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRao4E35LP {
  background: #ffffff;
}
.cid-rRao4E35LP .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRao4E35LP figcaption {
  position: relative;
}
.cid-rRao4E35LP figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRao4E35LP .image-block {
    width: 300% !important;
  }
}
.cid-rRaiis9E8r {
  background-image: url("../../../assets/images/50-60-zps-bundestag-nick-jaussi-2015-2000x1335.jpg");
}
.cid-rRaiis9E8r h1 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRaiis9E8r .space_down_50 {
  margin-bottom: 50px;
}
#custom-html-1si iframe {
  margin-bottom: -20px;
}
.cid-u7yUerYYyK {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yUerYYyK .content {
    text-align: center;
  }
  .cid-u7yUerYYyK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yUerYYyK .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yUerYYyK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yUerYYyK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yUerYYyK .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yUerYYyK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yUerYYyK .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yUerYYyK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yUerYYyK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yUerYYyK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yUerYYyK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yUerYYyK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yUerYYyK .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yUerYYyK H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yUerYYyK P {
  color: #ffffff;
}
.cid-u7yUerYYyK .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yUerYYyK .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yUerYYyK .logo_footer {
  position: relative;
}
.cid-u7yUerYYyK .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yUerYYyK .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yUerYYyK .col,
  .cid-u7yUerYYyK .col-1,
  .cid-u7yUerYYyK .col-10,
  .cid-u7yUerYYyK .col-11,
  .cid-u7yUerYYyK .col-12,
  .cid-u7yUerYYyK .col-2,
  .cid-u7yUerYYyK .col-3,
  .cid-u7yUerYYyK .col-4,
  .cid-u7yUerYYyK .col-5,
  .cid-u7yUerYYyK .col-6,
  .cid-u7yUerYYyK .col-7,
  .cid-u7yUerYYyK .col-8,
  .cid-u7yUerYYyK .col-9,
  .cid-u7yUerYYyK .col-auto,
  .cid-u7yUerYYyK .col-lg,
  .cid-u7yUerYYyK .col-lg-1,
  .cid-u7yUerYYyK .col-lg-10,
  .cid-u7yUerYYyK .col-lg-11,
  .cid-u7yUerYYyK .col-lg-12,
  .cid-u7yUerYYyK .col-lg-2,
  .cid-u7yUerYYyK .col-lg-3,
  .cid-u7yUerYYyK .col-lg-4,
  .cid-u7yUerYYyK .col-lg-5,
  .cid-u7yUerYYyK .col-lg-6,
  .cid-u7yUerYYyK .col-lg-7,
  .cid-u7yUerYYyK .col-lg-8,
  .cid-u7yUerYYyK .col-lg-9,
  .cid-u7yUerYYyK .col-lg-auto,
  .cid-u7yUerYYyK .col-md,
  .cid-u7yUerYYyK .col-md-1,
  .cid-u7yUerYYyK .col-md-10,
  .cid-u7yUerYYyK .col-md-11,
  .cid-u7yUerYYyK .col-md-12,
  .cid-u7yUerYYyK .col-md-2,
  .cid-u7yUerYYyK .col-md-3,
  .cid-u7yUerYYyK .col-md-4,
  .cid-u7yUerYYyK .col-md-5,
  .cid-u7yUerYYyK .col-md-6,
  .cid-u7yUerYYyK .col-md-7,
  .cid-u7yUerYYyK .col-md-8,
  .cid-u7yUerYYyK .col-md-9,
  .cid-u7yUerYYyK .col-md-auto,
  .cid-u7yUerYYyK .col-sm,
  .cid-u7yUerYYyK .col-sm-1,
  .cid-u7yUerYYyK .col-sm-10,
  .cid-u7yUerYYyK .col-sm-11,
  .cid-u7yUerYYyK .col-sm-12,
  .cid-u7yUerYYyK .col-sm-2,
  .cid-u7yUerYYyK .col-sm-3,
  .cid-u7yUerYYyK .col-sm-4,
  .cid-u7yUerYYyK .col-sm-5,
  .cid-u7yUerYYyK .col-sm-6,
  .cid-u7yUerYYyK .col-sm-7,
  .cid-u7yUerYYyK .col-sm-8,
  .cid-u7yUerYYyK .col-sm-9,
  .cid-u7yUerYYyK .col-sm-auto,
  .cid-u7yUerYYyK .col-xl,
  .cid-u7yUerYYyK .col-xl-1,
  .cid-u7yUerYYyK .col-xl-10,
  .cid-u7yUerYYyK .col-xl-11,
  .cid-u7yUerYYyK .col-xl-12,
  .cid-u7yUerYYyK .col-xl-2,
  .cid-u7yUerYYyK .col-xl-3,
  .cid-u7yUerYYyK .col-xl-4,
  .cid-u7yUerYYyK .col-xl-5,
  .cid-u7yUerYYyK .col-xl-6,
  .cid-u7yUerYYyK .col-xl-7,
  .cid-u7yUerYYyK .col-xl-8,
  .cid-u7yUerYYyK .col-xl-9,
  .cid-u7yUerYYyK .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yUerYYyK .content {
    text-align: left;
  }
  .cid-u7yUerYYyK .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yUerYYyK .logo_footer_box {
    position: relative;
  }
  .cid-u7yUerYYyK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yUerYYyK .logo_footer {
    position: relative;
  }
  .cid-u7yUerYYyK .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yUerYYyK .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rR5qt7qnbR {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rR5qt7qnbR {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rR5qKPE1GV {
  background-image: url("../../../assets/images/01-29-die-bruecke-zps-nick-jaussi-2015-2000x1335.jpg");
}
.cid-rR5qKPE1GV h1 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rR5qKPE1GV .space_down_50 {
  margin-bottom: 50px;
}
#custom-html-1xa iframe {
  margin-bottom: -20px;
}
.cid-rRagmcxlOc {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rRagmcxlOc .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rRagmcxlOc .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rRagmcxlOc .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rROE0MBLBo {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-5-1500x302.jpg");
}
.cid-rROE0MBLBo H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-rROE0MBLBo .mbr-section-subtitle {
  color: #000000;
}
.cid-rROE0MBLBo section {
  background-color: none;
}
.cid-rROE0MBLBo .logo_footer {
  position: relative;
  right: 100px;
}
.cid-u7yU72Qwzf {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yU72Qwzf .content {
    text-align: center;
  }
  .cid-u7yU72Qwzf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yU72Qwzf .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yU72Qwzf .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yU72Qwzf .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yU72Qwzf .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yU72Qwzf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yU72Qwzf .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yU72Qwzf .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yU72Qwzf .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yU72Qwzf .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yU72Qwzf .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yU72Qwzf .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yU72Qwzf .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yU72Qwzf H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yU72Qwzf P {
  color: #ffffff;
}
.cid-u7yU72Qwzf .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yU72Qwzf .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yU72Qwzf .logo_footer {
  position: relative;
}
.cid-u7yU72Qwzf .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yU72Qwzf .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yU72Qwzf .col,
  .cid-u7yU72Qwzf .col-1,
  .cid-u7yU72Qwzf .col-10,
  .cid-u7yU72Qwzf .col-11,
  .cid-u7yU72Qwzf .col-12,
  .cid-u7yU72Qwzf .col-2,
  .cid-u7yU72Qwzf .col-3,
  .cid-u7yU72Qwzf .col-4,
  .cid-u7yU72Qwzf .col-5,
  .cid-u7yU72Qwzf .col-6,
  .cid-u7yU72Qwzf .col-7,
  .cid-u7yU72Qwzf .col-8,
  .cid-u7yU72Qwzf .col-9,
  .cid-u7yU72Qwzf .col-auto,
  .cid-u7yU72Qwzf .col-lg,
  .cid-u7yU72Qwzf .col-lg-1,
  .cid-u7yU72Qwzf .col-lg-10,
  .cid-u7yU72Qwzf .col-lg-11,
  .cid-u7yU72Qwzf .col-lg-12,
  .cid-u7yU72Qwzf .col-lg-2,
  .cid-u7yU72Qwzf .col-lg-3,
  .cid-u7yU72Qwzf .col-lg-4,
  .cid-u7yU72Qwzf .col-lg-5,
  .cid-u7yU72Qwzf .col-lg-6,
  .cid-u7yU72Qwzf .col-lg-7,
  .cid-u7yU72Qwzf .col-lg-8,
  .cid-u7yU72Qwzf .col-lg-9,
  .cid-u7yU72Qwzf .col-lg-auto,
  .cid-u7yU72Qwzf .col-md,
  .cid-u7yU72Qwzf .col-md-1,
  .cid-u7yU72Qwzf .col-md-10,
  .cid-u7yU72Qwzf .col-md-11,
  .cid-u7yU72Qwzf .col-md-12,
  .cid-u7yU72Qwzf .col-md-2,
  .cid-u7yU72Qwzf .col-md-3,
  .cid-u7yU72Qwzf .col-md-4,
  .cid-u7yU72Qwzf .col-md-5,
  .cid-u7yU72Qwzf .col-md-6,
  .cid-u7yU72Qwzf .col-md-7,
  .cid-u7yU72Qwzf .col-md-8,
  .cid-u7yU72Qwzf .col-md-9,
  .cid-u7yU72Qwzf .col-md-auto,
  .cid-u7yU72Qwzf .col-sm,
  .cid-u7yU72Qwzf .col-sm-1,
  .cid-u7yU72Qwzf .col-sm-10,
  .cid-u7yU72Qwzf .col-sm-11,
  .cid-u7yU72Qwzf .col-sm-12,
  .cid-u7yU72Qwzf .col-sm-2,
  .cid-u7yU72Qwzf .col-sm-3,
  .cid-u7yU72Qwzf .col-sm-4,
  .cid-u7yU72Qwzf .col-sm-5,
  .cid-u7yU72Qwzf .col-sm-6,
  .cid-u7yU72Qwzf .col-sm-7,
  .cid-u7yU72Qwzf .col-sm-8,
  .cid-u7yU72Qwzf .col-sm-9,
  .cid-u7yU72Qwzf .col-sm-auto,
  .cid-u7yU72Qwzf .col-xl,
  .cid-u7yU72Qwzf .col-xl-1,
  .cid-u7yU72Qwzf .col-xl-10,
  .cid-u7yU72Qwzf .col-xl-11,
  .cid-u7yU72Qwzf .col-xl-12,
  .cid-u7yU72Qwzf .col-xl-2,
  .cid-u7yU72Qwzf .col-xl-3,
  .cid-u7yU72Qwzf .col-xl-4,
  .cid-u7yU72Qwzf .col-xl-5,
  .cid-u7yU72Qwzf .col-xl-6,
  .cid-u7yU72Qwzf .col-xl-7,
  .cid-u7yU72Qwzf .col-xl-8,
  .cid-u7yU72Qwzf .col-xl-9,
  .cid-u7yU72Qwzf .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yU72Qwzf .content {
    text-align: left;
  }
  .cid-u7yU72Qwzf .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yU72Qwzf .logo_footer_box {
    position: relative;
  }
  .cid-u7yU72Qwzf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yU72Qwzf .logo_footer {
    position: relative;
  }
  .cid-u7yU72Qwzf .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yU72Qwzf .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rQZg3k7Ton {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rQZg3k7Ton {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rQZlYYZdVj {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rQZlYYZdVj .testimonial-text {
  font-style: italic;
  color: #f9ceb2;
  font-weight: 300;
}
.cid-rQZlYYZdVj .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rQZlYYZdVj .mbr-author-desc {
  color: #ffffff;
}
.cid-rQZlYYZdVj .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rQZlYYZdVj .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rQZlYYZdVj .mbr-figure,
  .cid-rQZlYYZdVj img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rQZlYYZdVj h2 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #ffffff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rQZlYYZdVj h1 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #ffffff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rQZlYYZdVj .text_block {
  margin-top: 70px;
}
.cid-rQZlYYZdVj .h2_block {
  margin-bottom: 20px;
}
.cid-rQZlYYZdVj .mbr-figure {
  align-self: flex-start;
}
.cid-rQZlYYZdVj .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}
.cid-rQZlYYZdVj .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rQZlYYZdVj a:hover {
  Color: #a76645 !important;
}
.cid-rQZlYYZdVj a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rQZlYYZdVj .btn-black-outline:hover,
.cid-rQZlYYZdVj .btn-black-outline:focus,
.cid-rQZlYYZdVj .btn-black-outline.focus,
.cid-rQZlYYZdVj .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rQZlYYZdVj .display-5 {
    line-height: 1;
  }
  .cid-rQZlYYZdVj .btn {
    font-size: 1.5rem !important;
  }
  .cid-rQZlYYZdVj .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-siFtKwTlWj {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-siFtKwTlWj H2 {
  color: #000000;
  line-height: 1.2;
  font-size: 3rem;
  font-weight: 300;
}
.cid-siFtKwTlWj .mbr-section-subtitle {
  color: #000000;
}
.cid-siFtKwTlWj span {
  visibility: hidden;
}
.cid-siFtKwTlWj .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-siFtKwTlWj span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rQZnkdtKA9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-11-2000x1448.png");
}
.cid-rQZnkdtKA9 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rQZnkdtKA9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rQZnkdtKA9 p {
  color: #767676;
  text-align: left;
}
.cid-rQZnkdtKA9 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rQZnkdtKA9 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rQZnkdtKA9 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rQZnkdtKA9 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rQZnkdtKA9 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rQZnkdtKA9 .notched-box:before,
.cid-rQZnkdtKA9 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rQZnkdtKA9 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rQZnkdtKA9 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rQZnkdtKA9 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rQZnkdtKA9 .border:before,
.cid-rQZnkdtKA9 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rQZnkdtKA9 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rQZnkdtKA9 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rQZnkdtKA9 .mbr-author-name {
  padding-left: 40px;
}
.cid-rQZnkdtKA9 P {
  color: #000000;
}
.cid-rQZnkdtKA9 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-uqID6T3qR2 {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-grau-2000-2000x1335.jpg");
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.cid-uqID6T3qR2 .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-uqID6T3qR2 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-uqID6T3qR2 .mbr-author-desc {
  color: #1d1d1b;
}
.cid-uqID6T3qR2 .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-uqID6T3qR2 .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uqID6T3qR2 .mbr-figure,
  .cid-uqID6T3qR2 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-uqID6T3qR2 h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uqID6T3qR2 .text_block {
  margin-top: 0px;
}
.cid-uqID6T3qR2 .h2_block {
  margin-bottom: 20px;
}
.cid-uqID6T3qR2 .mbr-figure {
  align-self: flex-start;
}
.cid-uqID6T3qR2 .display-7 {
  font-size: 1.5rem;
  font-weight: 400;
}
.cid-uqID6T3qR2 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  fon-style: italic;
}
.cid-uqID6T3qR2 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uqID6T3qR2 a:hover {
  Color: #a76645 !important;
}
.cid-uqID6T3qR2 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uqID6T3qR2 .btn-black-outline:hover,
.cid-uqID6T3qR2 .btn-black-outline:focus,
.cid-uqID6T3qR2 .btn-black-outline.focus,
.cid-uqID6T3qR2 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uqID6T3qR2 .display-5 {
    line-height: 1;
  }
  .cid-uqID6T3qR2 .btn {
    font-size: 1.5rem !important;
  }
  .cid-uqID6T3qR2 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uqID6T3qR2 .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-uqID6T3qR2 .content {
  padding-left: 3px;
}
.cid-uqID7IkELk {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-grau-2000-2000x1335.jpg");
}
.cid-uqID7IkELk H2 {
  color: #e40027;
  line-height: 1.2;
}
.cid-uqID7IkELk H3 {
  font-weight: bold;
}
.cid-uqID7IkELk .mbr-section-subtitle {
  color: #000000;
}
.cid-uqID8VVHh4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-grau-2000-2000x1335.jpg");
}
.cid-uqID8VVHh4 .mbr-section-subtitle P {
  text-align: left;
}
.cid-uqID8VVHh4 h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  margin-left: -0.5rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uqID8VVHh4 .space_down_50 {
  margin-bottom: 50px;
}
.cid-uqID9IqbPe {
  background: #efefef;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-uqID9IqbPe .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-uqID9IqbPe .video-block {
    width: 100% !important;
  }
}
.cid-uqID9IqbPe .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uqIDap1kKb {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-grau-2000-2000x1335.jpg");
}
.cid-uqIDap1kKb H2 {
  color: #e40027;
  line-height: 1.2;
}
.cid-uqIDap1kKb H3 {
  font-weight: bold;
}
.cid-uqIDap1kKb .mbr-section-subtitle {
  color: #000000;
}
.cid-uqIDap1kKb span {
  visibility: hidden;
}
.cid-uqIDap1kKb .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-uqIDap1kKb span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-uqIDaZ4TVr {
  padding-top: 30px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-grau-2000-2000x1335.jpg");
}
.cid-uqIDaZ4TVr .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-uqIDaZ4TVr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uqIDaZ4TVr p {
  color: #767676;
  text-align: left;
}
.cid-uqIDaZ4TVr .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-uqIDaZ4TVr .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-uqIDaZ4TVr .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-uqIDaZ4TVr .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uqIDaZ4TVr .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uqIDaZ4TVr .notched-box:before,
.cid-uqIDaZ4TVr .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-uqIDaZ4TVr .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-uqIDaZ4TVr .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-uqIDaZ4TVr .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-uqIDaZ4TVr .border:before,
.cid-uqIDaZ4TVr .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-uqIDaZ4TVr .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-uqIDaZ4TVr .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-uqIDaZ4TVr .mbr-author-name {
  padding-left: 40px;
}
.cid-uqIDaZ4TVr P {
  color: #000000;
  line-height: 1.3;
}
.cid-uqIDaZ4TVr .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rQZrIACIQ8 {
  background: #f9ceb2;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-rQZrIACIQ8 .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rQZrIACIQ8 .video-block {
    width: 100% !important;
  }
}
.cid-rQZrIACIQ8 .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tgK3JCGKgf {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-4-web-2-1200x675.jpg");
}
.cid-tgK3JCGKgf H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-tgK3JCGKgf .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-tgK3JCGKgf .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-tgK3JCGKgf .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-tgK3JCGKgf a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-tgK3JCGKgf a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-umKTNznotk {
  background: #f9ceb2;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-umKTNznotk .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-umKTNznotk .video-block {
    width: 100% !important;
  }
}
.cid-umKTNznotk .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rQZvK6HgLK {
  background: #f9ceb2;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-rQZvK6HgLK .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rQZvK6HgLK .video-block {
    width: 100% !important;
  }
}
.cid-rQZvK6HgLK .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rQZvLiFPJo {
  background: #f9ceb2;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-rQZvLiFPJo .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rQZvLiFPJo .video-block {
    width: 100% !important;
  }
}
.cid-rQZvLiFPJo .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-utmWAG7Y1b {
  background: #f9ceb2;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-utmWAG7Y1b .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-utmWAG7Y1b .video-block {
    width: 100% !important;
  }
}
.cid-utmWAG7Y1b .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRpKwiSgKm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRpKwiSgKm .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRpKwiSgKm h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRpKwiSgKm .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRpKwiSgKm .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-se4jqHB9jz {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-4-1500x352.jpg");
}
.cid-se4jqHB9jz H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-se4jqHB9jz .mbr-section-subtitle {
  color: #000000;
}
.cid-se4jqHB9jz span {
  visibility: hidden;
}
.cid-se4jqHB9jz .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4jqHB9jz span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rQZAVn4YYG {
  background-image: url("../../../assets/images/glover-philipp-ruch-691-1497x1473.jpg");
}
.cid-rQZAVn4YYG P {
  color: #767676;
}
.cid-rRpMZssM4D {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRpMZssM4D .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRpMZssM4D h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRpMZssM4D .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRpMZssM4D .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRpNK3AJXB {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-5-1500x302.jpg");
}
.cid-rRpNK3AJXB H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRpNK3AJXB .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRpNK3AJXB .breites_Zitat,
  .cid-rRpNK3AJXB .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRpPBmJPM1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRpPBmJPM1 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRpPBmJPM1 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRpPBmJPM1 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRpPBmJPM1 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRpQxWvtH4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRpQxWvtH4 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rRpQxWvtH4 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRpQxWvtH4 .space_down_50 {
  margin-bottom: 50px;
}
.cid-t9tUf8vPsE {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t9tUf8vPsE .aktions_section {
  z-index: 99999;
}
.cid-t9tUf8vPsE .item:focus,
.cid-t9tUf8vPsE span:focus {
  outline: none;
}
.cid-t9tUf8vPsE .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-t9tUf8vPsE .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-t9tUf8vPsE .item-btn,
.cid-t9tUf8vPsE h4,
.cid-t9tUf8vPsE h5 {
  margin: 0;
}
.cid-t9tUf8vPsE .item-content {
  padding-top: 1rem;
}
.cid-t9tUf8vPsE .item-title {
  color: #ffffff;
}
.cid-t9tUf8vPsE .abstand {
  margin-top: -10px;
}
.cid-t9tUf8vPsE h2 {
  font-weight: 700 !important;
  padding-left: 0.3rem;
  padding-right: 0.6rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 0.2px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t9tUf8vPsE h5 {
  color: #a76645 !important;
}
.cid-t9tUf8vPsE h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-t9tUf8vPsE .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t9tUf8vPsE .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t9tUf8vPsE .item-subtitle {
  color: #1d1d1b;
}
.cid-t9tUf8vPsE .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-t9tUf8vPsE .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-t9tUf8vPsE .item-text {
  color: #1d1d1b;
}
.cid-t9tUf8vPsE .space_down_50 {
  margin-bottom: 50px;
}
.cid-t9tUf8vPsE item-text {
  color: #1d1d1b;
}
.cid-t9tUf8vPsE .hiddden {
  display: none !important;
}
.cid-t9tUf8vPsE .shoow {
  display: block !important;
}
.cid-t9tUf8vPsE a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-t9tUf8vPsE a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t9tUf8vPsE .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-t9tUf8vPsE .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-t9tUf8vPsE .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-t9tUf8vPsE .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-t9tUf8vPsE .embla {
  overflow: hidden;
}
.cid-t9tUf8vPsE .embla__container {
  display: flex;
  will-change: transform;
}
.cid-t9tUf8vPsE .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-t9tUf8vPsE .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-t9tUf8vPsE .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-t9tUf8vPsE .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-t9tUf8vPsE .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-t9tUf8vPsE .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-t9tUf8vPsE .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-t9tUf8vPsE .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-t9tUf8vPsE .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-t9tUf8vPsE .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-t9tUf8vPsE .item-content {
    margin-top: 1rem;
  }
  .cid-t9tUf8vPsE .item {
    padding-bottom: 1rem;
  }
  .cid-t9tUf8vPsE .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-t9tUf8vPsE h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-t9tUf8vPsE .item-wrapper {
    width: 35vw;
  }
  .cid-t9tUf8vPsE .embla__slide {
    padding: 0px;
  }
  .cid-t9tUf8vPsE .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-t9tUf8vPsE .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-t9tUf8vPsE .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-t9tUf8vPsE .embla__button {
    bottom: -0.5rem;
  }
}
.cid-rQZE1BldmP {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rQZE1BldmP .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rQZE1BldmP .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rQZE1BldmP .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rQZE1BldmP a svg polygon {
  fill: white !important;
}
.cid-rQZE1BldmP a:hover {
  Color: #F9CEB2!important;
}
.cid-rQZE1BldmP a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rQZE1BldmP .btn-white-outline:hover,
.cid-rQZE1BldmP .btn-white-outline:focus,
.cid-rQZE1BldmP .btn-white-outline.focus,
.cid-rQZE1BldmP .btn-white-outline.active,
.cid-rQZE1BldmP .btn-black-outline:hover,
.cid-rQZE1BldmP .btn-black-outline:focus,
.cid-rQZE1BldmP .btn-black-outline.focus,
.cid-rQZE1BldmP .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rQZE1BldmP .display-5 {
    line-height: 1;
  }
  .cid-rQZE1BldmP .btn {
    font-size: 1.5rem !important;
  }
  .cid-rQZE1BldmP .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7yTXJy3xr {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yTXJy3xr .content {
    text-align: center;
  }
  .cid-u7yTXJy3xr .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yTXJy3xr .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yTXJy3xr .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yTXJy3xr .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yTXJy3xr .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yTXJy3xr .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yTXJy3xr .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yTXJy3xr .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yTXJy3xr .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yTXJy3xr .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yTXJy3xr .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yTXJy3xr .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yTXJy3xr .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yTXJy3xr H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yTXJy3xr P {
  color: #ffffff;
}
.cid-u7yTXJy3xr .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yTXJy3xr .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yTXJy3xr .logo_footer {
  position: relative;
}
.cid-u7yTXJy3xr .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yTXJy3xr .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yTXJy3xr .col,
  .cid-u7yTXJy3xr .col-1,
  .cid-u7yTXJy3xr .col-10,
  .cid-u7yTXJy3xr .col-11,
  .cid-u7yTXJy3xr .col-12,
  .cid-u7yTXJy3xr .col-2,
  .cid-u7yTXJy3xr .col-3,
  .cid-u7yTXJy3xr .col-4,
  .cid-u7yTXJy3xr .col-5,
  .cid-u7yTXJy3xr .col-6,
  .cid-u7yTXJy3xr .col-7,
  .cid-u7yTXJy3xr .col-8,
  .cid-u7yTXJy3xr .col-9,
  .cid-u7yTXJy3xr .col-auto,
  .cid-u7yTXJy3xr .col-lg,
  .cid-u7yTXJy3xr .col-lg-1,
  .cid-u7yTXJy3xr .col-lg-10,
  .cid-u7yTXJy3xr .col-lg-11,
  .cid-u7yTXJy3xr .col-lg-12,
  .cid-u7yTXJy3xr .col-lg-2,
  .cid-u7yTXJy3xr .col-lg-3,
  .cid-u7yTXJy3xr .col-lg-4,
  .cid-u7yTXJy3xr .col-lg-5,
  .cid-u7yTXJy3xr .col-lg-6,
  .cid-u7yTXJy3xr .col-lg-7,
  .cid-u7yTXJy3xr .col-lg-8,
  .cid-u7yTXJy3xr .col-lg-9,
  .cid-u7yTXJy3xr .col-lg-auto,
  .cid-u7yTXJy3xr .col-md,
  .cid-u7yTXJy3xr .col-md-1,
  .cid-u7yTXJy3xr .col-md-10,
  .cid-u7yTXJy3xr .col-md-11,
  .cid-u7yTXJy3xr .col-md-12,
  .cid-u7yTXJy3xr .col-md-2,
  .cid-u7yTXJy3xr .col-md-3,
  .cid-u7yTXJy3xr .col-md-4,
  .cid-u7yTXJy3xr .col-md-5,
  .cid-u7yTXJy3xr .col-md-6,
  .cid-u7yTXJy3xr .col-md-7,
  .cid-u7yTXJy3xr .col-md-8,
  .cid-u7yTXJy3xr .col-md-9,
  .cid-u7yTXJy3xr .col-md-auto,
  .cid-u7yTXJy3xr .col-sm,
  .cid-u7yTXJy3xr .col-sm-1,
  .cid-u7yTXJy3xr .col-sm-10,
  .cid-u7yTXJy3xr .col-sm-11,
  .cid-u7yTXJy3xr .col-sm-12,
  .cid-u7yTXJy3xr .col-sm-2,
  .cid-u7yTXJy3xr .col-sm-3,
  .cid-u7yTXJy3xr .col-sm-4,
  .cid-u7yTXJy3xr .col-sm-5,
  .cid-u7yTXJy3xr .col-sm-6,
  .cid-u7yTXJy3xr .col-sm-7,
  .cid-u7yTXJy3xr .col-sm-8,
  .cid-u7yTXJy3xr .col-sm-9,
  .cid-u7yTXJy3xr .col-sm-auto,
  .cid-u7yTXJy3xr .col-xl,
  .cid-u7yTXJy3xr .col-xl-1,
  .cid-u7yTXJy3xr .col-xl-10,
  .cid-u7yTXJy3xr .col-xl-11,
  .cid-u7yTXJy3xr .col-xl-12,
  .cid-u7yTXJy3xr .col-xl-2,
  .cid-u7yTXJy3xr .col-xl-3,
  .cid-u7yTXJy3xr .col-xl-4,
  .cid-u7yTXJy3xr .col-xl-5,
  .cid-u7yTXJy3xr .col-xl-6,
  .cid-u7yTXJy3xr .col-xl-7,
  .cid-u7yTXJy3xr .col-xl-8,
  .cid-u7yTXJy3xr .col-xl-9,
  .cid-u7yTXJy3xr .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yTXJy3xr .content {
    text-align: left;
  }
  .cid-u7yTXJy3xr .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yTXJy3xr .logo_footer_box {
    position: relative;
  }
  .cid-u7yTXJy3xr .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yTXJy3xr .logo_footer {
    position: relative;
  }
  .cid-u7yTXJy3xr .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yTXJy3xr .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rQZFlmYxON {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rQZFlmYxON {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-ta8JunKCbo {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ta8JunKCbo .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ta8JunKCbo h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ta8JunKCbo h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ta8JunKCbo .space_down_50 {
  margin-bottom: 50px;
}
.cid-rQZFyJccbJ {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-rQZFyJccbJ .image-block {
  margin: auto;
}
.cid-rQZFyJccbJ figcaption {
  position: relative;
}
.cid-rQZFyJccbJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rQZFyJccbJ .image-block {
    width: 100% !important;
  }
}
.cid-twBnLCtrXi {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-twBnLCtrXi .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-twBnLCtrXi h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-twBnLCtrXi .space_down_50 {
  margin-bottom: 50px;
}
.cid-twBnLCtrXi .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-twBohmMPYA {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-twBohmMPYA .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-twBohmMPYA h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-twBohmMPYA .space_down_30 {
  margin-bottom: 30px;
}
.cid-twBohmMPYA .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRgB5IMbTr {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRgB5IMbTr .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRgB5IMbTr h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRgB5IMbTr .space_down_30 {
  margin-bottom: 30px;
}
.cid-u7yU4NDVUC {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yU4NDVUC .content {
    text-align: center;
  }
  .cid-u7yU4NDVUC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yU4NDVUC .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yU4NDVUC .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yU4NDVUC .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yU4NDVUC .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yU4NDVUC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yU4NDVUC .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yU4NDVUC .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yU4NDVUC .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yU4NDVUC .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yU4NDVUC .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yU4NDVUC .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yU4NDVUC .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yU4NDVUC H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yU4NDVUC P {
  color: #ffffff;
}
.cid-u7yU4NDVUC .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yU4NDVUC .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yU4NDVUC .logo_footer {
  position: relative;
}
.cid-u7yU4NDVUC .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yU4NDVUC .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yU4NDVUC .col,
  .cid-u7yU4NDVUC .col-1,
  .cid-u7yU4NDVUC .col-10,
  .cid-u7yU4NDVUC .col-11,
  .cid-u7yU4NDVUC .col-12,
  .cid-u7yU4NDVUC .col-2,
  .cid-u7yU4NDVUC .col-3,
  .cid-u7yU4NDVUC .col-4,
  .cid-u7yU4NDVUC .col-5,
  .cid-u7yU4NDVUC .col-6,
  .cid-u7yU4NDVUC .col-7,
  .cid-u7yU4NDVUC .col-8,
  .cid-u7yU4NDVUC .col-9,
  .cid-u7yU4NDVUC .col-auto,
  .cid-u7yU4NDVUC .col-lg,
  .cid-u7yU4NDVUC .col-lg-1,
  .cid-u7yU4NDVUC .col-lg-10,
  .cid-u7yU4NDVUC .col-lg-11,
  .cid-u7yU4NDVUC .col-lg-12,
  .cid-u7yU4NDVUC .col-lg-2,
  .cid-u7yU4NDVUC .col-lg-3,
  .cid-u7yU4NDVUC .col-lg-4,
  .cid-u7yU4NDVUC .col-lg-5,
  .cid-u7yU4NDVUC .col-lg-6,
  .cid-u7yU4NDVUC .col-lg-7,
  .cid-u7yU4NDVUC .col-lg-8,
  .cid-u7yU4NDVUC .col-lg-9,
  .cid-u7yU4NDVUC .col-lg-auto,
  .cid-u7yU4NDVUC .col-md,
  .cid-u7yU4NDVUC .col-md-1,
  .cid-u7yU4NDVUC .col-md-10,
  .cid-u7yU4NDVUC .col-md-11,
  .cid-u7yU4NDVUC .col-md-12,
  .cid-u7yU4NDVUC .col-md-2,
  .cid-u7yU4NDVUC .col-md-3,
  .cid-u7yU4NDVUC .col-md-4,
  .cid-u7yU4NDVUC .col-md-5,
  .cid-u7yU4NDVUC .col-md-6,
  .cid-u7yU4NDVUC .col-md-7,
  .cid-u7yU4NDVUC .col-md-8,
  .cid-u7yU4NDVUC .col-md-9,
  .cid-u7yU4NDVUC .col-md-auto,
  .cid-u7yU4NDVUC .col-sm,
  .cid-u7yU4NDVUC .col-sm-1,
  .cid-u7yU4NDVUC .col-sm-10,
  .cid-u7yU4NDVUC .col-sm-11,
  .cid-u7yU4NDVUC .col-sm-12,
  .cid-u7yU4NDVUC .col-sm-2,
  .cid-u7yU4NDVUC .col-sm-3,
  .cid-u7yU4NDVUC .col-sm-4,
  .cid-u7yU4NDVUC .col-sm-5,
  .cid-u7yU4NDVUC .col-sm-6,
  .cid-u7yU4NDVUC .col-sm-7,
  .cid-u7yU4NDVUC .col-sm-8,
  .cid-u7yU4NDVUC .col-sm-9,
  .cid-u7yU4NDVUC .col-sm-auto,
  .cid-u7yU4NDVUC .col-xl,
  .cid-u7yU4NDVUC .col-xl-1,
  .cid-u7yU4NDVUC .col-xl-10,
  .cid-u7yU4NDVUC .col-xl-11,
  .cid-u7yU4NDVUC .col-xl-12,
  .cid-u7yU4NDVUC .col-xl-2,
  .cid-u7yU4NDVUC .col-xl-3,
  .cid-u7yU4NDVUC .col-xl-4,
  .cid-u7yU4NDVUC .col-xl-5,
  .cid-u7yU4NDVUC .col-xl-6,
  .cid-u7yU4NDVUC .col-xl-7,
  .cid-u7yU4NDVUC .col-xl-8,
  .cid-u7yU4NDVUC .col-xl-9,
  .cid-u7yU4NDVUC .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yU4NDVUC .content {
    text-align: left;
  }
  .cid-u7yU4NDVUC .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yU4NDVUC .logo_footer_box {
    position: relative;
  }
  .cid-u7yU4NDVUC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yU4NDVUC .logo_footer {
    position: relative;
  }
  .cid-u7yU4NDVUC .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yU4NDVUC .copyright > p {
  color: #f9ceb2;
}
.cid-rQSc4NxbfE :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-rQSc4NxbfE .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-rQSc4NxbfE .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rQSc4NxbfE a {
  font-style: normal;
}
.cid-rQSc4NxbfE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rQSc4NxbfE .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rQSc4NxbfE .nav-item:focus,
.cid-rQSc4NxbfE .nav-link:focus {
  outline: none;
}
.cid-rQSc4NxbfE .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-rQSc4NxbfE .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-rQSc4NxbfE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rQSc4NxbfE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rQSc4NxbfE .menu-logo {
  margin-right: auto;
}
.cid-rQSc4NxbfE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-rQSc4NxbfE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rQSc4NxbfE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rQSc4NxbfE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rQSc4NxbfE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rQSc4NxbfE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rQSc4NxbfE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rQSc4NxbfE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-rQSc4NxbfE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rQSc4NxbfE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rQSc4NxbfE .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rQSc4NxbfE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rQSc4NxbfE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rQSc4NxbfE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rQSc4NxbfE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rQSc4NxbfE .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-rQSc4NxbfE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-rQSc4NxbfE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rQSc4NxbfE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rQSc4NxbfE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rQSc4NxbfE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rQSc4NxbfE .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-rQSc4NxbfE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rQSc4NxbfE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rQSc4NxbfE button.navbar-toggler:focus {
  outline: none;
}
.cid-rQSc4NxbfE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rQSc4NxbfE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rQSc4NxbfE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rQSc4NxbfE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rQSc4NxbfE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rQSc4NxbfE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQSc4NxbfE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rQSc4NxbfE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rQSc4NxbfE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQSc4NxbfE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rQSc4NxbfE .collapsed .btn {
  display: flex;
}
.cid-rQSc4NxbfE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rQSc4NxbfE .collapsed .navbar-collapse.collapsing,
.cid-rQSc4NxbfE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rQSc4NxbfE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rQSc4NxbfE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rQSc4NxbfE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rQSc4NxbfE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rQSc4NxbfE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rQSc4NxbfE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-rQSc4NxbfE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rQSc4NxbfE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rQSc4NxbfE .collapsed button.navbar-toggler {
  display: block;
}
.cid-rQSc4NxbfE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rQSc4NxbfE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rQSc4NxbfE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rQSc4NxbfE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rQSc4NxbfE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rQSc4NxbfE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rQSc4NxbfE .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-rQSc4NxbfE .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-rQSc4NxbfE .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-rQSc4NxbfE .navbar-expand {
    flex-direction: column;
  }
  .cid-rQSc4NxbfE img {
    height: 3rem !important;
  }
  .cid-rQSc4NxbfE .btn {
    display: flex;
  }
  .cid-rQSc4NxbfE button.navbar-toggler {
    display: block;
  }
  .cid-rQSc4NxbfE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rQSc4NxbfE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rQSc4NxbfE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rQSc4NxbfE .navbar-collapse.collapsing,
  .cid-rQSc4NxbfE .navbar-collapse.show {
    display: block !important;
  }
  .cid-rQSc4NxbfE .navbar-collapse.collapsing .navbar-nav,
  .cid-rQSc4NxbfE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rQSc4NxbfE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rQSc4NxbfE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rQSc4NxbfE .navbar-collapse.collapsing .navbar-buttons,
  .cid-rQSc4NxbfE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rQSc4NxbfE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rQSc4NxbfE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rQSc4NxbfE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rQSc4NxbfE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rQSc4NxbfE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rQSc4NxbfE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rQSc4NxbfE .logo_s,
  .cid-rQSc4NxbfE .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-rQSc4NxbfE .menu-logo {
    flex-shrink: 3;
  }
}
.cid-rQSc4NxbfE .navbar-collapse {
  flex-basis: auto;
}
.cid-rQSc4NxbfE .nav-link:hover,
.cid-rQSc4NxbfE .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-rQSc4NxbfE .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-rQSc4NxbfE .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-rQSc4NxbfE .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-rQSc4NxbfE .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-rQSc4NxbfE .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-rQSc4NxbfE a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rQSc4NxbfE a:hover svg polygon,
.cid-rQSc4NxbfE a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rQSc4NxbfE .hidden {
  display: none !important;
}
.cid-rQSc4NxbfE .shoow {
  display: block !important;
}
.cid-rQSc4NxbfE .navbar-logo a,
.cid-rQSc4NxbfE .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-rQSc4NxbfE .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-rQSc4NxbfE .logo_s {
    height: 2rem !important;
  }
  .cid-rQSc4NxbfE .navbar-logo a img {
    left: 20px;
  }
  .cid-rQSc4NxbfE .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-rQSc4NxbfE .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-rQSc4NxbfE .stoerer_head,
  .cid-rQSc4NxbfE .stoerer_text {
    grid-row: 1;
  }
  .cid-rQSc4NxbfE .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-rQSc4NxbfE a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rR1Fj1YSEm {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rR1Fj1YSEm {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rR1FwYSECI {
  background-image: url("../../../assets/images/08-69-zps-gatow-nick-jaussi-2015-3000x2003-69-2000x1335.jpg");
}
.cid-rR1FwYSECI P {
  color: #767676;
}
.cid-rRq33fG2fY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRq33fG2fY .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRq33fG2fY h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRq33fG2fY .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRq33fG2fY .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rR1GjHPqIA {
  background: #000000;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-rR1GjHPqIA .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rR1GjHPqIA .video-block {
    width: 100% !important;
  }
}
.cid-rR1GjHPqIA .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRgrtTrKlJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRgrtTrKlJ .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRgrtTrKlJ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRgrtTrKlJ .space_down_30 {
  margin-bottom: 30px;
}
.cid-rR1HEdysoH {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rR1HEdysoH .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rR1HEdysoH .video-block {
    width: 100% !important;
  }
}
.cid-rR1HEdysoH .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rR1Ifa4wQ0 {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rR1Ifa4wQ0 .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rR1Ifa4wQ0 .video-block {
    width: 100% !important;
  }
}
.cid-rR1Ifa4wQ0 .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rR1J5FuHy4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rR1J5FuHy4 .images-container.container-fluid {
  padding: 0;
}
.cid-rR1J5FuHy4 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rR1J5FuHy4 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rR1J5FuHy4 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rR1J5FuHy4 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rR1J5FuHy4 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rR1J5FuHy4 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rR1J5FuHy4 .img-item {
    width: 100% !important;
  }
  .cid-rR1J5FuHy4 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rR1JAk9tqY {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rR1JAk9tqY .images-container.container-fluid {
  padding: 0;
}
.cid-rR1JAk9tqY .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rR1JAk9tqY .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rR1JAk9tqY .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rR1JAk9tqY .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rR1JAk9tqY .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rR1JAk9tqY .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rR1JAk9tqY .img-item {
    width: 100% !important;
  }
  .cid-rR1JAk9tqY .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-spXbIZBkF7 {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-16-2000x1330.png");
}
.cid-spXbIZBkF7 .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-spXbIZBkF7 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-spXbIZBkF7 .mbr-author-desc {
  color: #ffffff;
}
.cid-spXbIZBkF7 .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-spXbIZBkF7 .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-spXbIZBkF7 .mbr-figure,
  .cid-spXbIZBkF7 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-spXbIZBkF7 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-spXbIZBkF7 .text_block {
  margin-top: 0px;
}
.cid-spXbIZBkF7 .h2_block {
  margin-bottom: 20px;
}
.cid-spXbIZBkF7 .mbr-figure {
  align-self: flex-start;
}
.cid-spXbIZBkF7 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: white !important;
}
.cid-spXbIZBkF7 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-spXbIZBkF7 svg polygon {
  fill: white ;
}
.cid-spXbIZBkF7 a:hover {
  Color: #F9CEB2 !important;
}
.cid-spXbIZBkF7 a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-spXbIZBkF7 .btn-black-outline:hover,
.cid-spXbIZBkF7 .btn-black-outline:focus,
.cid-spXbIZBkF7 .btn-black-outline.focus,
.cid-spXbIZBkF7 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-spXbIZBkF7 .btn-white-outline:hover,
.cid-spXbIZBkF7 .btn-white-outline:focus,
.cid-spXbIZBkF7 .btn-white-outline.focus,
.cid-spXbIZBkF7 .btn-white-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-spXbIZBkF7 .display-5 {
    line-height: 1;
  }
  .cid-spXbIZBkF7 .btn {
    font-size: 1.5rem !important;
  }
  .cid-spXbIZBkF7 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-spXbIZBkF7 .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-spXbIZBkF7 .content {
  padding-left: 3px;
}
.cid-rRq3oAkxf1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRq3oAkxf1 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rRq3oAkxf1 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRq3oAkxf1 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rR3Vva7VJ5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-rR3Vva7VJ5 p {
  color: #767676;
}
.cid-rR3Vva7VJ5 .item:focus,
.cid-rR3Vva7VJ5 span:focus {
  outline: none;
}
.cid-rR3Vva7VJ5 .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-rR3Vva7VJ5 .item-wrapper {
  position: relative;
}
.cid-rR3Vva7VJ5 .item-btn,
.cid-rR3Vva7VJ5 h4,
.cid-rR3Vva7VJ5 h5 {
  margin: 0;
}
.cid-rR3Vva7VJ5 .item-content {
  padding-top: 2rem;
}
.cid-rR3Vva7VJ5 .abstand {
  margin-top: -10px;
}
.cid-rR3Vva7VJ5 h4 {
  line-height: 1.2;
}
.cid-rR3Vva7VJ5 .item-text h5,
.cid-rR3Vva7VJ5 .item-text h4 {
  color: #1d1d1b;
}
.cid-rR3Vva7VJ5 .item-wrapper:hover .card-img {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rR3Vva7VJ5 .item-wrapper:hover h4 a {
  color: #F9CEB2;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rR3Vva7VJ5 item-text {
  color: #1d1d1b;
}
.cid-rR3Vva7VJ5 .link_no_link {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-rR3Vva7VJ5 .display-5,
.cid-rR3Vva7VJ5 .btn {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  text-transform: uppercase ;
}
.cid-rR3Vva7VJ5 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rR3Vva7VJ5 .btn {
  border-width: 0px !important;
  padding: 0px;
  margin: 0px;
  display: inline-block;
}
.cid-rR3Vva7VJ5 .special_button {
  width: 100%;
}
.cid-rR3Vva7VJ5 .special_button a {
  text-align: left;
}
.cid-rR3Vva7VJ5 .display-5 {
  color: white !important;
}
.cid-rR3Vva7VJ5 svg polygon {
  fill: white ;
}
.cid-rR3Vva7VJ5 a:hover {
  Color: #F9CEB2 !important;
}
.cid-rR3Vva7VJ5 a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rR3Vva7VJ5 .btn-black-outline:hover,
.cid-rR3Vva7VJ5 .btn-black-outline:focus,
.cid-rR3Vva7VJ5 .btn-black-outline.focus,
.cid-rR3Vva7VJ5 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-rR3Vva7VJ5 .btn-white-outline:hover,
.cid-rR3Vva7VJ5 .btn-white-outline:focus,
.cid-rR3Vva7VJ5 .btn-white-outline.focus,
.cid-rR3Vva7VJ5 .btn-white-outline.active {
  background-color: rgba(255, 0, 0, 0.2) !important;
}
@media (max-width: 768px) {
  .cid-rR3Vva7VJ5 .display-5 {
    line-height: 1;
  }
  .cid-rR3Vva7VJ5 .btn {
    font-size: 1.5rem !important;
  }
  .cid-rR3Vva7VJ5 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rR2eAhuyYM {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rR2eAhuyYM .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rR2eAhuyYM .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rR2eAhuyYM .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rR2eAhuyYM a svg polygon {
  fill: white !important;
}
.cid-rR2eAhuyYM a:hover {
  Color: #F9CEB2!important;
}
.cid-rR2eAhuyYM a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rR2eAhuyYM .btn-white-outline:hover,
.cid-rR2eAhuyYM .btn-white-outline:focus,
.cid-rR2eAhuyYM .btn-white-outline.focus,
.cid-rR2eAhuyYM .btn-white-outline.active,
.cid-rR2eAhuyYM .btn-black-outline:hover,
.cid-rR2eAhuyYM .btn-black-outline:focus,
.cid-rR2eAhuyYM .btn-black-outline.focus,
.cid-rR2eAhuyYM .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rR2eAhuyYM .display-5 {
    line-height: 1;
  }
  .cid-rR2eAhuyYM .btn {
    font-size: 1.5rem !important;
  }
  .cid-rR2eAhuyYM .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7yU0aYDYD {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yU0aYDYD .content {
    text-align: center;
  }
  .cid-u7yU0aYDYD .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yU0aYDYD .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yU0aYDYD .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yU0aYDYD .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yU0aYDYD .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yU0aYDYD .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yU0aYDYD .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yU0aYDYD .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yU0aYDYD .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yU0aYDYD .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yU0aYDYD .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yU0aYDYD .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yU0aYDYD .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yU0aYDYD H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yU0aYDYD P {
  color: #ffffff;
}
.cid-u7yU0aYDYD .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yU0aYDYD .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yU0aYDYD .logo_footer {
  position: relative;
}
.cid-u7yU0aYDYD .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yU0aYDYD .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yU0aYDYD .col,
  .cid-u7yU0aYDYD .col-1,
  .cid-u7yU0aYDYD .col-10,
  .cid-u7yU0aYDYD .col-11,
  .cid-u7yU0aYDYD .col-12,
  .cid-u7yU0aYDYD .col-2,
  .cid-u7yU0aYDYD .col-3,
  .cid-u7yU0aYDYD .col-4,
  .cid-u7yU0aYDYD .col-5,
  .cid-u7yU0aYDYD .col-6,
  .cid-u7yU0aYDYD .col-7,
  .cid-u7yU0aYDYD .col-8,
  .cid-u7yU0aYDYD .col-9,
  .cid-u7yU0aYDYD .col-auto,
  .cid-u7yU0aYDYD .col-lg,
  .cid-u7yU0aYDYD .col-lg-1,
  .cid-u7yU0aYDYD .col-lg-10,
  .cid-u7yU0aYDYD .col-lg-11,
  .cid-u7yU0aYDYD .col-lg-12,
  .cid-u7yU0aYDYD .col-lg-2,
  .cid-u7yU0aYDYD .col-lg-3,
  .cid-u7yU0aYDYD .col-lg-4,
  .cid-u7yU0aYDYD .col-lg-5,
  .cid-u7yU0aYDYD .col-lg-6,
  .cid-u7yU0aYDYD .col-lg-7,
  .cid-u7yU0aYDYD .col-lg-8,
  .cid-u7yU0aYDYD .col-lg-9,
  .cid-u7yU0aYDYD .col-lg-auto,
  .cid-u7yU0aYDYD .col-md,
  .cid-u7yU0aYDYD .col-md-1,
  .cid-u7yU0aYDYD .col-md-10,
  .cid-u7yU0aYDYD .col-md-11,
  .cid-u7yU0aYDYD .col-md-12,
  .cid-u7yU0aYDYD .col-md-2,
  .cid-u7yU0aYDYD .col-md-3,
  .cid-u7yU0aYDYD .col-md-4,
  .cid-u7yU0aYDYD .col-md-5,
  .cid-u7yU0aYDYD .col-md-6,
  .cid-u7yU0aYDYD .col-md-7,
  .cid-u7yU0aYDYD .col-md-8,
  .cid-u7yU0aYDYD .col-md-9,
  .cid-u7yU0aYDYD .col-md-auto,
  .cid-u7yU0aYDYD .col-sm,
  .cid-u7yU0aYDYD .col-sm-1,
  .cid-u7yU0aYDYD .col-sm-10,
  .cid-u7yU0aYDYD .col-sm-11,
  .cid-u7yU0aYDYD .col-sm-12,
  .cid-u7yU0aYDYD .col-sm-2,
  .cid-u7yU0aYDYD .col-sm-3,
  .cid-u7yU0aYDYD .col-sm-4,
  .cid-u7yU0aYDYD .col-sm-5,
  .cid-u7yU0aYDYD .col-sm-6,
  .cid-u7yU0aYDYD .col-sm-7,
  .cid-u7yU0aYDYD .col-sm-8,
  .cid-u7yU0aYDYD .col-sm-9,
  .cid-u7yU0aYDYD .col-sm-auto,
  .cid-u7yU0aYDYD .col-xl,
  .cid-u7yU0aYDYD .col-xl-1,
  .cid-u7yU0aYDYD .col-xl-10,
  .cid-u7yU0aYDYD .col-xl-11,
  .cid-u7yU0aYDYD .col-xl-12,
  .cid-u7yU0aYDYD .col-xl-2,
  .cid-u7yU0aYDYD .col-xl-3,
  .cid-u7yU0aYDYD .col-xl-4,
  .cid-u7yU0aYDYD .col-xl-5,
  .cid-u7yU0aYDYD .col-xl-6,
  .cid-u7yU0aYDYD .col-xl-7,
  .cid-u7yU0aYDYD .col-xl-8,
  .cid-u7yU0aYDYD .col-xl-9,
  .cid-u7yU0aYDYD .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yU0aYDYD .content {
    text-align: left;
  }
  .cid-u7yU0aYDYD .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yU0aYDYD .logo_footer_box {
    position: relative;
  }
  .cid-u7yU0aYDYD .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yU0aYDYD .logo_footer {
    position: relative;
  }
  .cid-u7yU0aYDYD .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yU0aYDYD .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRwpyNdx9k {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRwpyNdx9k {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rRwpAR5Hok {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwpAR5Hok .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwpAR5Hok h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwpAR5Hok .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwpAR5Hok .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRwpDSJf8p {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRwpDSJf8p .images-container.container-fluid {
  padding: 0;
}
.cid-rRwpDSJf8p .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRwpDSJf8p .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRwpDSJf8p .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRwpDSJf8p .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRwpDSJf8p .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRwpDSJf8p .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRwpDSJf8p .img-item {
    width: 100% !important;
  }
  .cid-rRwpDSJf8p .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRwpGoFSjD {
  background-image: url("../../../assets/images/ds66928-3-v2.2-2000x1070.jpg");
}
.cid-rRwpGoFSjD P {
  color: #767676;
}
.cid-rRwqcSGMjG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwqcSGMjG .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwqcSGMjG h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwqcSGMjG .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwqcSGMjG .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRwqgYzehS {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRwqgYzehS H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRwqgYzehS .mbr-section-subtitle {
  color: #1d1d1b;
}
.cid-rRwqmmrpWK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwqmmrpWK .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwqmmrpWK h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwqmmrpWK .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwqmmrpWK .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-sxQHwr5pG5 {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-sxQHwr5pG5 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #ffffff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sxQHwr5pG5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sxQHwr5pG5 p {
  color: #767676;
  text-align: left;
}
.cid-sxQHwr5pG5 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sxQHwr5pG5 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sxQHwr5pG5 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sxQHwr5pG5 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sxQHwr5pG5 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sxQHwr5pG5 .notched-box:before,
.cid-sxQHwr5pG5 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-sxQHwr5pG5 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sxQHwr5pG5 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sxQHwr5pG5 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sxQHwr5pG5 .border:before,
.cid-sxQHwr5pG5 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-sxQHwr5pG5 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sxQHwr5pG5 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sxQHwr5pG5 .mbr-author-name {
  padding-left: 40px;
}
.cid-sxQHwr5pG5 P {
  color: #ffffff;
  line-height: 1.3;
}
.cid-sxQHwr5pG5 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRwqoFsveG {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRwqoFsveG H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRwqoFsveG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rRwquPkwSj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwquPkwSj .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwquPkwSj h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwquPkwSj .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwquPkwSj .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRwqyfKJMD {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRwqyfKJMD .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRwqyfKJMD h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwqyfKJMD .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRwqAQug5O {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRwqAQug5O h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRwqAQug5O p {
  color: #767676;
  text-align: left;
}
.cid-rRwqAQug5O .card-box {
  padding-top: 2rem;
}
.cid-rRwqAQug5O .card-wrapper {
  height: 100%;
}
.cid-rRwqAQug5O P {
  color: #1d1d1b;
}
.cid-rRwqDzahgG {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwqDzahgG .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwqDzahgG h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwqDzahgG .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwqDzahgG .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRwqYmE81Z {
  padding-top: 30px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-rRwqYmE81Z .images-container.container-fluid {
  padding: 0;
}
.cid-rRwqYmE81Z .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRwqYmE81Z .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRwqYmE81Z .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRwqYmE81Z .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRwqYmE81Z .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRwqYmE81Z .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRwqYmE81Z .img-item {
    width: 100% !important;
  }
  .cid-rRwqYmE81Z .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRwqVeZaR6 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRwqVeZaR6 H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-rRwqVeZaR6 .mbr-section-subtitle {
  color: #000000;
}
.cid-rRwqVeZaR6 section {
  background-color: none;
}
.cid-rRwqVeZaR6 .logo_footer {
  position: relative;
  right: 100px;
}
.cid-rRwr1mUYBJ {
  background: #ffffff;
}
.cid-rRwr1mUYBJ .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRwr1mUYBJ figcaption {
  position: relative;
}
.cid-rRwr1mUYBJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRwr1mUYBJ .image-block {
    width: 300% !important;
  }
}
.cid-rRwr3F4KFn {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-rRwr3F4KFn .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rRwr3F4KFn .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRwr3F4KFn .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRwr3F4KFn .mbr-figure,
  .cid-rRwr3F4KFn img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRwr3F4KFn .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRwr3F4KFn .mbr-author-desc {
  color: #000000;
}
.cid-rRwr3F4KFn h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwr3F4KFn .text_block {
  margin-top: 0px;
}
.cid-rRwr3F4KFn .h2_block {
  margin-bottom: 20px;
}
.cid-rRwr3F4KFn .mbr-figure {
  align-self: flex-start;
}
.cid-rRwr3F4KFn .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRwr3F4KFn .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRwr3F4KFn .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-rRwr3F4KFn a:hover {
  Color: #a76645 !important;
}
.cid-rRwr3F4KFn a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRwr3F4KFn .btn-black-outline:hover,
.cid-rRwr3F4KFn .btn-black-outline:focus,
.cid-rRwr3F4KFn .btn-black-outline.focus,
.cid-rRwr3F4KFn .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRwr3F4KFn .display-5 {
    line-height: 1;
  }
  .cid-rRwr3F4KFn .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRwr3F4KFn .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRwr3F4KFn .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRwr1VNwp4 {
  background: #ffffff;
}
.cid-rRwr1VNwp4 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRwr1VNwp4 figcaption {
  position: relative;
}
.cid-rRwr1VNwp4 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRwr1VNwp4 .image-block {
    width: 300% !important;
  }
}
.cid-rRwqJnMY0z {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-11-2000x1448.png");
}
.cid-rRwqJnMY0z H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRwqJnMY0z .mbr-section-subtitle {
  color: #1d1d1b;
}
.cid-rRwqLtgi9F {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwqLtgi9F .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwqLtgi9F h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwqLtgi9F .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwqLtgi9F .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-sxQIRZGZi0 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-10-1500x622.jpg");
}
.cid-sxQIRZGZi0 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-sxQIRZGZi0 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sxQIRZGZi0 span {
  visibility: hidden;
}
.cid-sxQIRZGZi0 .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-sxQIRZGZi0 span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rRwqMw05QP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwqMw05QP .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwqMw05QP h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwqMw05QP .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwqMw05QP .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-sxQJdURT4h {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sxQJdURT4h .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #ffffff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sxQJdURT4h h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sxQJdURT4h p {
  color: #767676;
  text-align: left;
}
.cid-sxQJdURT4h .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sxQJdURT4h .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sxQJdURT4h .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sxQJdURT4h .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sxQJdURT4h .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sxQJdURT4h .notched-box:before,
.cid-sxQJdURT4h .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-sxQJdURT4h .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sxQJdURT4h .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sxQJdURT4h .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sxQJdURT4h .border:before,
.cid-sxQJdURT4h .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-sxQJdURT4h .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sxQJdURT4h .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sxQJdURT4h .mbr-author-name {
  padding-left: 40px;
}
.cid-sxQJdURT4h P {
  color: #ffffff;
  line-height: 1.3;
}
.cid-sxQJdURT4h .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-sxQAzWrsb4 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-sxQAzWrsb4 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sxQAzWrsb4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sxQAzWrsb4 p {
  color: #767676;
  text-align: left;
}
.cid-sxQAzWrsb4 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sxQAzWrsb4 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sxQAzWrsb4 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sxQAzWrsb4 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sxQAzWrsb4 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sxQAzWrsb4 .notched-box:before,
.cid-sxQAzWrsb4 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-sxQAzWrsb4 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sxQAzWrsb4 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sxQAzWrsb4 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sxQAzWrsb4 .border:before,
.cid-sxQAzWrsb4 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-sxQAzWrsb4 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sxQAzWrsb4 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sxQAzWrsb4 .mbr-author-name {
  padding-left: 40px;
}
.cid-sxQAzWrsb4 P {
  color: #ffffff;
}
.cid-sxQAzWrsb4 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-sxQEs0EzC0 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-5-1500x1695.jpg");
}
.cid-sxQEs0EzC0 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-sxQEs0EzC0 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sxQEs0EzC0 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sxQEs0EzC0 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sxQEs0EzC0 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sxQEs0EzC0 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sxQECVP5bQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-sxQECVP5bQ .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sxQECVP5bQ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sxQECVP5bQ p {
  color: #767676;
  text-align: left;
}
.cid-sxQECVP5bQ .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sxQECVP5bQ .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sxQECVP5bQ .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sxQECVP5bQ .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sxQECVP5bQ .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sxQECVP5bQ .notched-box:before,
.cid-sxQECVP5bQ .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-sxQECVP5bQ .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sxQECVP5bQ .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sxQECVP5bQ .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sxQECVP5bQ .border:before,
.cid-sxQECVP5bQ .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-sxQECVP5bQ .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sxQECVP5bQ .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sxQECVP5bQ .mbr-author-name {
  padding-left: 40px;
}
.cid-sxQECVP5bQ P {
  color: #ffffff;
}
.cid-sxQECVP5bQ .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-uccwv3OB5c {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #f9ceb2;
}
.cid-uccwv3OB5c h1 {
  font-weight: 700 !important;
  font-size: 10rem;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
}
.cid-uccwv3OB5c .space_down_50 {
  margin-bottom: 50px;
}
.cid-uccwv3OB5c .mbr-text-u P {
  text-align: center;
  text-decoration: underline;
  font-weight: 600;
}
.cid-uccwv3OB5c .mbr-tex {
  text-align: left;
}
.cid-uccwv3OB5c .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uccwv3OB5c .display-btn {
  font-family: chivo;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-uccwv3OB5c .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-uccwv3OB5c a:hover {
  Color: #a76645;
}
.cid-uccwv3OB5c a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccwv3OB5c .btn-black-outline:hover,
.cid-uccwv3OB5c .btn-black-outline:focus,
.cid-uccwv3OB5c .btn-black-outline.focus,
.cid-uccwv3OB5c .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-uccwv3OB5c .display-5 {
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
  margin-bottom: 0px;
  margin-left: 1rem;
}
.cid-uccwv3OB5c .container {
  border-color: black;
  border-width: 5px;
  border-style: solid;
}
.cid-uccwv3OB5c .mbr-white {
  margin-top: 5rem;
}
.cid-uccwv3OB5c .mbr-figure {
  padding-top: 1.5rem;
  padding-left: 0.5rem;
  width: 65%;
}
.cid-uccwv3OB5c .testimonial-text {
  color: #f9ceb2;
}
@media (max-width: 768px) {
  .cid-uccwv3OB5c .display-btn {
    line-height: 1;
  }
  .cid-uccwv3OB5c .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccwv3OB5c .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7yV7HkX2L {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yV7HkX2L .content {
    text-align: center;
  }
  .cid-u7yV7HkX2L .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yV7HkX2L .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yV7HkX2L .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yV7HkX2L .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yV7HkX2L .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yV7HkX2L .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yV7HkX2L .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yV7HkX2L .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yV7HkX2L .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yV7HkX2L .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yV7HkX2L .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yV7HkX2L .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yV7HkX2L .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yV7HkX2L H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yV7HkX2L P {
  color: #ffffff;
}
.cid-u7yV7HkX2L .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yV7HkX2L .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yV7HkX2L .logo_footer {
  position: relative;
}
.cid-u7yV7HkX2L .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yV7HkX2L .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yV7HkX2L .col,
  .cid-u7yV7HkX2L .col-1,
  .cid-u7yV7HkX2L .col-10,
  .cid-u7yV7HkX2L .col-11,
  .cid-u7yV7HkX2L .col-12,
  .cid-u7yV7HkX2L .col-2,
  .cid-u7yV7HkX2L .col-3,
  .cid-u7yV7HkX2L .col-4,
  .cid-u7yV7HkX2L .col-5,
  .cid-u7yV7HkX2L .col-6,
  .cid-u7yV7HkX2L .col-7,
  .cid-u7yV7HkX2L .col-8,
  .cid-u7yV7HkX2L .col-9,
  .cid-u7yV7HkX2L .col-auto,
  .cid-u7yV7HkX2L .col-lg,
  .cid-u7yV7HkX2L .col-lg-1,
  .cid-u7yV7HkX2L .col-lg-10,
  .cid-u7yV7HkX2L .col-lg-11,
  .cid-u7yV7HkX2L .col-lg-12,
  .cid-u7yV7HkX2L .col-lg-2,
  .cid-u7yV7HkX2L .col-lg-3,
  .cid-u7yV7HkX2L .col-lg-4,
  .cid-u7yV7HkX2L .col-lg-5,
  .cid-u7yV7HkX2L .col-lg-6,
  .cid-u7yV7HkX2L .col-lg-7,
  .cid-u7yV7HkX2L .col-lg-8,
  .cid-u7yV7HkX2L .col-lg-9,
  .cid-u7yV7HkX2L .col-lg-auto,
  .cid-u7yV7HkX2L .col-md,
  .cid-u7yV7HkX2L .col-md-1,
  .cid-u7yV7HkX2L .col-md-10,
  .cid-u7yV7HkX2L .col-md-11,
  .cid-u7yV7HkX2L .col-md-12,
  .cid-u7yV7HkX2L .col-md-2,
  .cid-u7yV7HkX2L .col-md-3,
  .cid-u7yV7HkX2L .col-md-4,
  .cid-u7yV7HkX2L .col-md-5,
  .cid-u7yV7HkX2L .col-md-6,
  .cid-u7yV7HkX2L .col-md-7,
  .cid-u7yV7HkX2L .col-md-8,
  .cid-u7yV7HkX2L .col-md-9,
  .cid-u7yV7HkX2L .col-md-auto,
  .cid-u7yV7HkX2L .col-sm,
  .cid-u7yV7HkX2L .col-sm-1,
  .cid-u7yV7HkX2L .col-sm-10,
  .cid-u7yV7HkX2L .col-sm-11,
  .cid-u7yV7HkX2L .col-sm-12,
  .cid-u7yV7HkX2L .col-sm-2,
  .cid-u7yV7HkX2L .col-sm-3,
  .cid-u7yV7HkX2L .col-sm-4,
  .cid-u7yV7HkX2L .col-sm-5,
  .cid-u7yV7HkX2L .col-sm-6,
  .cid-u7yV7HkX2L .col-sm-7,
  .cid-u7yV7HkX2L .col-sm-8,
  .cid-u7yV7HkX2L .col-sm-9,
  .cid-u7yV7HkX2L .col-sm-auto,
  .cid-u7yV7HkX2L .col-xl,
  .cid-u7yV7HkX2L .col-xl-1,
  .cid-u7yV7HkX2L .col-xl-10,
  .cid-u7yV7HkX2L .col-xl-11,
  .cid-u7yV7HkX2L .col-xl-12,
  .cid-u7yV7HkX2L .col-xl-2,
  .cid-u7yV7HkX2L .col-xl-3,
  .cid-u7yV7HkX2L .col-xl-4,
  .cid-u7yV7HkX2L .col-xl-5,
  .cid-u7yV7HkX2L .col-xl-6,
  .cid-u7yV7HkX2L .col-xl-7,
  .cid-u7yV7HkX2L .col-xl-8,
  .cid-u7yV7HkX2L .col-xl-9,
  .cid-u7yV7HkX2L .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yV7HkX2L .content {
    text-align: left;
  }
  .cid-u7yV7HkX2L .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yV7HkX2L .logo_footer_box {
    position: relative;
  }
  .cid-u7yV7HkX2L .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yV7HkX2L .logo_footer {
    position: relative;
  }
  .cid-u7yV7HkX2L .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yV7HkX2L .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rSUBP8rdYz {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rSUBP8rdYz {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rSUBTvxjbb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSUBTvxjbb .mbr-text {
  color: #ffffff;
}
.cid-rSUBTvxjbb h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem !important;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSUBTvxjbb h1 {
  padding-left: 0.5rem;
  padding-right: 1rem;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem !important;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSUBTvxjbb .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSUBTvxjbb p {
  line-height: 1.4;
}
.cid-rSUCUZW3zJ {
  background: #f9ceb2;
}
.cid-rSUCUZW3zJ .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSUCUZW3zJ figcaption {
  position: relative;
}
.cid-rSUCUZW3zJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSUCUZW3zJ .image-block {
    width: 300% !important;
  }
}
.cid-rSUCEEEDes {
  background-image: url("../../../assets/images/zps-deinestele-0309-v2-2000x3000.jpg");
}
.cid-rSUCEEEDes h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSUCEEEDes .space_down_50 {
  margin-bottom: 50px;
}
.cid-rUeRHyc2VK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeRHyc2VK .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeRHyc2VK .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeRHyc2VK .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeRHyc2VK a svg polygon {
  fill: white !important;
}
.cid-rUeRHyc2VK a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeRHyc2VK a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeRHyc2VK .btn-white-outline:hover,
.cid-rUeRHyc2VK .btn-white-outline:focus,
.cid-rUeRHyc2VK .btn-white-outline.focus,
.cid-rUeRHyc2VK .btn-white-outline.active,
.cid-rUeRHyc2VK .btn-black-outline:hover,
.cid-rUeRHyc2VK .btn-black-outline:focus,
.cid-rUeRHyc2VK .btn-black-outline.focus,
.cid-rUeRHyc2VK .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeRHyc2VK .display-5 {
    line-height: 1;
  }
  .cid-rUeRHyc2VK .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeRHyc2VK .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUfcU4PKJ1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rUfcU4PKJ1 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rUfcU4PKJ1 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUfcU4PKJ1 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rUfcU4PKJ1 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSUEh7V9pB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rSUEh7V9pB .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSUEh7V9pB .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rSUEh7V9pB .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rSUEh7V9pB a svg polygon {
  fill: white !important;
}
.cid-rSUEh7V9pB a:hover {
  Color: #F9CEB2!important;
}
.cid-rSUEh7V9pB a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSUEh7V9pB .btn-white-outline:hover,
.cid-rSUEh7V9pB .btn-white-outline:focus,
.cid-rSUEh7V9pB .btn-white-outline.focus,
.cid-rSUEh7V9pB .btn-white-outline.active,
.cid-rSUEh7V9pB .btn-black-outline:hover,
.cid-rSUEh7V9pB .btn-black-outline:focus,
.cid-rSUEh7V9pB .btn-black-outline.focus,
.cid-rSUEh7V9pB .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rSUEh7V9pB .display-5 {
    line-height: 1;
  }
  .cid-rSUEh7V9pB .btn {
    font-size: 1.5rem !important;
  }
  .cid-rSUEh7V9pB .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rSUEiiudNs {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rSUEiiudNs .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSUEiiudNs .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rSUEiiudNs .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rSUEiiudNs a svg polygon {
  fill: white !important;
}
.cid-rSUEiiudNs a:hover {
  Color: #F9CEB2!important;
}
.cid-rSUEiiudNs a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSUEiiudNs .btn-white-outline:hover,
.cid-rSUEiiudNs .btn-white-outline:focus,
.cid-rSUEiiudNs .btn-white-outline.focus,
.cid-rSUEiiudNs .btn-white-outline.active,
.cid-rSUEiiudNs .btn-black-outline:hover,
.cid-rSUEiiudNs .btn-black-outline:focus,
.cid-rSUEiiudNs .btn-black-outline.focus,
.cid-rSUEiiudNs .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rSUEiiudNs .display-5 {
    line-height: 1;
  }
  .cid-rSUEiiudNs .btn {
    font-size: 1.5rem !important;
  }
  .cid-rSUEiiudNs .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rSV1hxVSeo {
  background-image: url("../../../assets/images/zps-scholl2017-2000x1331.jpg");
}
.cid-rSV1hxVSeo h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSV1hxVSeo .space_down_50 {
  margin-bottom: 50px;
}
.cid-rUeSwh59X6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeSwh59X6 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeSwh59X6 .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeSwh59X6 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeSwh59X6 a svg polygon {
  fill: white !important;
}
.cid-rUeSwh59X6 a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeSwh59X6 a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeSwh59X6 .btn-white-outline:hover,
.cid-rUeSwh59X6 .btn-white-outline:focus,
.cid-rUeSwh59X6 .btn-white-outline.focus,
.cid-rUeSwh59X6 .btn-white-outline.active,
.cid-rUeSwh59X6 .btn-black-outline:hover,
.cid-rUeSwh59X6 .btn-black-outline:focus,
.cid-rUeSwh59X6 .btn-black-outline.focus,
.cid-rUeSwh59X6 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeSwh59X6 .display-5 {
    line-height: 1;
  }
  .cid-rUeSwh59X6 .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeSwh59X6 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rSUPNbh59a {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSUPNbh59a .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSUPNbh59a h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSUPNbh59a .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSUPNbh59a .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rUeTucvqnj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeTucvqnj .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeTucvqnj .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeTucvqnj .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeTucvqnj a svg polygon {
  fill: white !important;
}
.cid-rUeTucvqnj a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeTucvqnj a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeTucvqnj .btn-white-outline:hover,
.cid-rUeTucvqnj .btn-white-outline:focus,
.cid-rUeTucvqnj .btn-white-outline.focus,
.cid-rUeTucvqnj .btn-white-outline.active,
.cid-rUeTucvqnj .btn-black-outline:hover,
.cid-rUeTucvqnj .btn-black-outline:focus,
.cid-rUeTucvqnj .btn-black-outline.focus,
.cid-rUeTucvqnj .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeTucvqnj .display-5 {
    line-height: 1;
  }
  .cid-rUeTucvqnj .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeTucvqnj .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeTuAClns {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rUeTuAClns .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeTuAClns .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeTuAClns .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeTuAClns a svg polygon {
  fill: white !important;
}
.cid-rUeTuAClns a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeTuAClns a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeTuAClns .btn-white-outline:hover,
.cid-rUeTuAClns .btn-white-outline:focus,
.cid-rUeTuAClns .btn-white-outline.focus,
.cid-rUeTuAClns .btn-white-outline.active,
.cid-rUeTuAClns .btn-black-outline:hover,
.cid-rUeTuAClns .btn-black-outline:focus,
.cid-rUeTuAClns .btn-black-outline.focus,
.cid-rUeTuAClns .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeTuAClns .display-5 {
    line-height: 1;
  }
  .cid-rUeTuAClns .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeTuAClns .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeTzDsMo9 {
  background-image: url("../../../assets/images/zentrumfuerpolitischeschoenheit-fluechtlingefressen-0252-1600x1066-30-1600x1066.jpg");
}
.cid-rUeTzDsMo9 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeTzDsMo9 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rUeTByYnFp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeTByYnFp .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeTByYnFp .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeTByYnFp .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeTByYnFp a svg polygon {
  fill: white !important;
}
.cid-rUeTByYnFp a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeTByYnFp a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeTByYnFp .btn-white-outline:hover,
.cid-rUeTByYnFp .btn-white-outline:focus,
.cid-rUeTByYnFp .btn-white-outline.focus,
.cid-rUeTByYnFp .btn-white-outline.active,
.cid-rUeTByYnFp .btn-black-outline:hover,
.cid-rUeTByYnFp .btn-black-outline:focus,
.cid-rUeTByYnFp .btn-black-outline.focus,
.cid-rUeTByYnFp .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeTByYnFp .display-5 {
    line-height: 1;
  }
  .cid-rUeTByYnFp .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeTByYnFp .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeTPILF0i {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rUeTPILF0i .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rUeTPILF0i h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeTPILF0i .space_down_30 {
  margin-bottom: 30px;
}
.cid-rUeTPILF0i .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rUeXNNXMq0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUeXNNXMq0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUeXNNXMq0 p {
  color: #767676;
  text-align: left;
}
.cid-rUeXNNXMq0 .card-box {
  padding-top: 2rem;
}
.cid-rUeXNNXMq0 .card-wrapper {
  height: 100%;
}
.cid-rUeXNNXMq0 .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rUeXNNXMq0 .video-block {
    width: 100% !important;
  }
}
.cid-rUeXNNXMq0 .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUf1kzQsbW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUf1kzQsbW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUf1kzQsbW p {
  color: #767676;
  text-align: left;
}
.cid-rUf1kzQsbW .card-box {
  padding-top: 2rem;
}
.cid-rUf1kzQsbW .card-wrapper {
  height: 100%;
}
.cid-rUf1kzQsbW .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rUf1kzQsbW .video-block {
    width: 100% !important;
  }
}
.cid-rUf1kzQsbW .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUf1PQzqWm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUf1PQzqWm h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUf1PQzqWm p {
  color: #767676;
  text-align: left;
}
.cid-rUf1PQzqWm .card-box {
  padding-top: 2rem;
}
.cid-rUf1PQzqWm .card-wrapper {
  height: 100%;
}
.cid-rUf1PQzqWm .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rUf1PQzqWm .video-block {
    width: 100% !important;
  }
}
.cid-rUf1PQzqWm .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeTVvaQuH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeTVvaQuH .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeTVvaQuH .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeTVvaQuH .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeTVvaQuH a svg polygon {
  fill: white !important;
}
.cid-rUeTVvaQuH a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeTVvaQuH a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeTVvaQuH .btn-white-outline:hover,
.cid-rUeTVvaQuH .btn-white-outline:focus,
.cid-rUeTVvaQuH .btn-white-outline.focus,
.cid-rUeTVvaQuH .btn-white-outline.active,
.cid-rUeTVvaQuH .btn-black-outline:hover,
.cid-rUeTVvaQuH .btn-black-outline:focus,
.cid-rUeTVvaQuH .btn-black-outline.focus,
.cid-rUeTVvaQuH .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeTVvaQuH .display-5 {
    line-height: 1;
  }
  .cid-rUeTVvaQuH .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeTVvaQuH .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeTVVFqWY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rUeTVVFqWY .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeTVVFqWY .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeTVVFqWY .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeTVVFqWY a svg polygon {
  fill: white !important;
}
.cid-rUeTVVFqWY a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeTVVFqWY a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeTVVFqWY .btn-white-outline:hover,
.cid-rUeTVVFqWY .btn-white-outline:focus,
.cid-rUeTVVFqWY .btn-white-outline.focus,
.cid-rUeTVVFqWY .btn-white-outline.active,
.cid-rUeTVVFqWY .btn-black-outline:hover,
.cid-rUeTVVFqWY .btn-black-outline:focus,
.cid-rUeTVVFqWY .btn-black-outline.focus,
.cid-rUeTVVFqWY .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeTVVFqWY .display-5 {
    line-height: 1;
  }
  .cid-rUeTVVFqWY .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeTVVFqWY .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeTZ46Z6M {
  background-image: url("../../../assets/images/c82a0831-5760x3840-98-2000x1333.jpg");
}
.cid-rUeTZ46Z6M h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeTZ46Z6M .space_down_50 {
  margin-bottom: 50px;
}
.cid-rUeU2kHBHt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeU2kHBHt .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeU2kHBHt .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeU2kHBHt .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeU2kHBHt a svg polygon {
  fill: white !important;
}
.cid-rUeU2kHBHt a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeU2kHBHt a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeU2kHBHt .btn-white-outline:hover,
.cid-rUeU2kHBHt .btn-white-outline:focus,
.cid-rUeU2kHBHt .btn-white-outline.focus,
.cid-rUeU2kHBHt .btn-white-outline.active,
.cid-rUeU2kHBHt .btn-black-outline:hover,
.cid-rUeU2kHBHt .btn-black-outline:focus,
.cid-rUeU2kHBHt .btn-black-outline.focus,
.cid-rUeU2kHBHt .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeU2kHBHt .display-5 {
    line-height: 1;
  }
  .cid-rUeU2kHBHt .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeU2kHBHt .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeU0fMgOI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rUeU0fMgOI .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rUeU0fMgOI h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeU0fMgOI .space_down_30 {
  margin-bottom: 30px;
}
.cid-rUeU0fMgOI .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rUf3mn5H9K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUf3mn5H9K h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUf3mn5H9K p {
  color: #767676;
  text-align: left;
}
.cid-rUf3mn5H9K .card-box {
  padding-top: 2rem;
}
.cid-rUf3mn5H9K .card-wrapper {
  height: 100%;
}
.cid-rUf3mn5H9K .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rUf3mn5H9K .video-block {
    width: 100% !important;
  }
}
.cid-rUf3mn5H9K .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeU3Bskw2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeU3Bskw2 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeU3Bskw2 .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeU3Bskw2 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeU3Bskw2 a svg polygon {
  fill: white !important;
}
.cid-rUeU3Bskw2 a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeU3Bskw2 a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeU3Bskw2 .btn-white-outline:hover,
.cid-rUeU3Bskw2 .btn-white-outline:focus,
.cid-rUeU3Bskw2 .btn-white-outline.focus,
.cid-rUeU3Bskw2 .btn-white-outline.active,
.cid-rUeU3Bskw2 .btn-black-outline:hover,
.cid-rUeU3Bskw2 .btn-black-outline:focus,
.cid-rUeU3Bskw2 .btn-black-outline.focus,
.cid-rUeU3Bskw2 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeU3Bskw2 .display-5 {
    line-height: 1;
  }
  .cid-rUeU3Bskw2 .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeU3Bskw2 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeU3RF670 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rUeU3RF670 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeU3RF670 .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeU3RF670 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeU3RF670 a svg polygon {
  fill: white !important;
}
.cid-rUeU3RF670 a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeU3RF670 a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeU3RF670 .btn-white-outline:hover,
.cid-rUeU3RF670 .btn-white-outline:focus,
.cid-rUeU3RF670 .btn-white-outline.focus,
.cid-rUeU3RF670 .btn-white-outline.active,
.cid-rUeU3RF670 .btn-black-outline:hover,
.cid-rUeU3RF670 .btn-black-outline:focus,
.cid-rUeU3RF670 .btn-black-outline.focus,
.cid-rUeU3RF670 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeU3RF670 .display-5 {
    line-height: 1;
  }
  .cid-rUeU3RF670 .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeU3RF670 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeUbvzSPT {
  background-image: url("../../../assets/images/schild1-5250x3500-36-2000x1333.jpg");
}
.cid-rUeUbvzSPT h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeUbvzSPT .space_down_50 {
  margin-bottom: 50px;
}
.cid-rUeUdovWel {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeUdovWel .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeUdovWel .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeUdovWel .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeUdovWel a svg polygon {
  fill: white !important;
}
.cid-rUeUdovWel a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeUdovWel a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeUdovWel .btn-white-outline:hover,
.cid-rUeUdovWel .btn-white-outline:focus,
.cid-rUeUdovWel .btn-white-outline.focus,
.cid-rUeUdovWel .btn-white-outline.active,
.cid-rUeUdovWel .btn-black-outline:hover,
.cid-rUeUdovWel .btn-black-outline:focus,
.cid-rUeUdovWel .btn-black-outline.focus,
.cid-rUeUdovWel .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeUdovWel .display-5 {
    line-height: 1;
  }
  .cid-rUeUdovWel .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeUdovWel .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeUfzKuyw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rUeUfzKuyw .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rUeUfzKuyw h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeUfzKuyw .space_down_30 {
  margin-bottom: 30px;
}
.cid-rUeUfzKuyw .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rUf4EymgpR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUf4EymgpR h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUf4EymgpR p {
  color: #767676;
  text-align: left;
}
.cid-rUf4EymgpR .card-box {
  padding-top: 2rem;
}
.cid-rUf4EymgpR .card-wrapper {
  height: 100%;
}
.cid-rUf4EymgpR .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rUf4EymgpR .video-block {
    width: 100% !important;
  }
}
.cid-rUf4EymgpR .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUf4FwI8Te {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUf4FwI8Te h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUf4FwI8Te p {
  color: #767676;
  text-align: left;
}
.cid-rUf4FwI8Te .card-box {
  padding-top: 2rem;
}
.cid-rUf4FwI8Te .card-wrapper {
  height: 100%;
}
.cid-rUf4FwI8Te .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rUf4FwI8Te .video-block {
    width: 100% !important;
  }
}
.cid-rUf4FwI8Te .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeUi0IvAY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeUi0IvAY .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeUi0IvAY .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeUi0IvAY .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeUi0IvAY a svg polygon {
  fill: white !important;
}
.cid-rUeUi0IvAY a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeUi0IvAY a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeUi0IvAY .btn-white-outline:hover,
.cid-rUeUi0IvAY .btn-white-outline:focus,
.cid-rUeUi0IvAY .btn-white-outline.focus,
.cid-rUeUi0IvAY .btn-white-outline.active,
.cid-rUeUi0IvAY .btn-black-outline:hover,
.cid-rUeUi0IvAY .btn-black-outline:focus,
.cid-rUeUi0IvAY .btn-black-outline.focus,
.cid-rUeUi0IvAY .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeUi0IvAY .display-5 {
    line-height: 1;
  }
  .cid-rUeUi0IvAY .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeUi0IvAY .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeUikXGXt {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rUeUikXGXt .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeUikXGXt .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeUikXGXt .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeUikXGXt a svg polygon {
  fill: white !important;
}
.cid-rUeUikXGXt a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeUikXGXt a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeUikXGXt .btn-white-outline:hover,
.cid-rUeUikXGXt .btn-white-outline:focus,
.cid-rUeUikXGXt .btn-white-outline.focus,
.cid-rUeUikXGXt .btn-white-outline.active,
.cid-rUeUikXGXt .btn-black-outline:hover,
.cid-rUeUikXGXt .btn-black-outline:focus,
.cid-rUeUikXGXt .btn-black-outline.focus,
.cid-rUeUikXGXt .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeUikXGXt .display-5 {
    line-height: 1;
  }
  .cid-rUeUikXGXt .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeUikXGXt .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeUlIYYiG {
  background-image: url("../../../assets/images/zps-familienministerium-neugebauer-14-4070x2708-60-2000x1331.jpg");
}
.cid-rUeUlIYYiG h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeUlIYYiG .space_down_50 {
  margin-bottom: 50px;
}
.cid-rUeUnb0eZp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeUnb0eZp .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeUnb0eZp .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeUnb0eZp .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeUnb0eZp a svg polygon {
  fill: white !important;
}
.cid-rUeUnb0eZp a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeUnb0eZp a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeUnb0eZp .btn-white-outline:hover,
.cid-rUeUnb0eZp .btn-white-outline:focus,
.cid-rUeUnb0eZp .btn-white-outline.focus,
.cid-rUeUnb0eZp .btn-white-outline.active,
.cid-rUeUnb0eZp .btn-black-outline:hover,
.cid-rUeUnb0eZp .btn-black-outline:focus,
.cid-rUeUnb0eZp .btn-black-outline.focus,
.cid-rUeUnb0eZp .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeUnb0eZp .display-5 {
    line-height: 1;
  }
  .cid-rUeUnb0eZp .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeUnb0eZp .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeUoKavZK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rUeUoKavZK .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rUeUoKavZK h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeUoKavZK .space_down_30 {
  margin-bottom: 30px;
}
.cid-rUeUoKavZK .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rUf6KgggeL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUf6KgggeL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUf6KgggeL p {
  color: #767676;
  text-align: left;
}
.cid-rUf6KgggeL .card-box {
  padding-top: 2rem;
}
.cid-rUf6KgggeL .card-wrapper {
  height: 100%;
}
.cid-rUf6KgggeL .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rUf6KgggeL .video-block {
    width: 100% !important;
  }
}
.cid-rUf6KgggeL .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUf6LhTs3I {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUf6LhTs3I h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUf6LhTs3I p {
  color: #767676;
  text-align: left;
}
.cid-rUf6LhTs3I .card-box {
  padding-top: 2rem;
}
.cid-rUf6LhTs3I .card-wrapper {
  height: 100%;
}
.cid-rUf6LhTs3I .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rUf6LhTs3I .video-block {
    width: 100% !important;
  }
}
.cid-rUf6LhTs3I .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUf6Mkk48e {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUf6Mkk48e h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUf6Mkk48e p {
  color: #767676;
  text-align: left;
}
.cid-rUf6Mkk48e .card-box {
  padding-top: 2rem;
}
.cid-rUf6Mkk48e .card-wrapper {
  height: 100%;
}
.cid-rUf6Mkk48e .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rUf6Mkk48e .video-block {
    width: 100% !important;
  }
}
.cid-rUf6Mkk48e .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUf6NmwUBv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUf6NmwUBv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUf6NmwUBv p {
  color: #767676;
  text-align: left;
}
.cid-rUf6NmwUBv .card-box {
  padding-top: 2rem;
}
.cid-rUf6NmwUBv .card-wrapper {
  height: 100%;
}
.cid-rUf6NmwUBv .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rUf6NmwUBv .video-block {
    width: 100% !important;
  }
}
.cid-rUf6NmwUBv .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeUpR1OaK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeUpR1OaK .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeUpR1OaK .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeUpR1OaK .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeUpR1OaK a svg polygon {
  fill: white !important;
}
.cid-rUeUpR1OaK a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeUpR1OaK a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeUpR1OaK .btn-white-outline:hover,
.cid-rUeUpR1OaK .btn-white-outline:focus,
.cid-rUeUpR1OaK .btn-white-outline.focus,
.cid-rUeUpR1OaK .btn-white-outline.active,
.cid-rUeUpR1OaK .btn-black-outline:hover,
.cid-rUeUpR1OaK .btn-black-outline:focus,
.cid-rUeUpR1OaK .btn-black-outline.focus,
.cid-rUeUpR1OaK .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeUpR1OaK .display-5 {
    line-height: 1;
  }
  .cid-rUeUpR1OaK .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeUpR1OaK .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeUqafHge {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rUeUqafHge .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeUqafHge .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeUqafHge .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeUqafHge a svg polygon {
  fill: white !important;
}
.cid-rUeUqafHge a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeUqafHge a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeUqafHge .btn-white-outline:hover,
.cid-rUeUqafHge .btn-white-outline:focus,
.cid-rUeUqafHge .btn-white-outline.focus,
.cid-rUeUqafHge .btn-white-outline.active,
.cid-rUeUqafHge .btn-black-outline:hover,
.cid-rUeUqafHge .btn-black-outline:focus,
.cid-rUeUqafHge .btn-black-outline.focus,
.cid-rUeUqafHge .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeUqafHge .display-5 {
    line-height: 1;
  }
  .cid-rUeUqafHge .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeUqafHge .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeUvzsbUo {
  background-image: url("../../../assets/images/25000euronacht-0041-v2-6144x4096-58-2000x1333.jpg");
}
.cid-rUeUvzsbUo h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeUvzsbUo .space_down_50 {
  margin-bottom: 50px;
}
.cid-rUeUx1sMXz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeUx1sMXz .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeUx1sMXz .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeUx1sMXz .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeUx1sMXz a svg polygon {
  fill: white !important;
}
.cid-rUeUx1sMXz a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeUx1sMXz a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeUx1sMXz .btn-white-outline:hover,
.cid-rUeUx1sMXz .btn-white-outline:focus,
.cid-rUeUx1sMXz .btn-white-outline.focus,
.cid-rUeUx1sMXz .btn-white-outline.active,
.cid-rUeUx1sMXz .btn-black-outline:hover,
.cid-rUeUx1sMXz .btn-black-outline:focus,
.cid-rUeUx1sMXz .btn-black-outline.focus,
.cid-rUeUx1sMXz .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeUx1sMXz .display-5 {
    line-height: 1;
  }
  .cid-rUeUx1sMXz .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeUx1sMXz .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeUyjEPFu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rUeUyjEPFu .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rUeUyjEPFu h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeUyjEPFu .space_down_30 {
  margin-bottom: 30px;
}
.cid-rUeUyjEPFu .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rUf8poyqse {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUf8poyqse h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUf8poyqse p {
  color: #767676;
  text-align: left;
}
.cid-rUf8poyqse .card-box {
  padding-top: 2rem;
}
.cid-rUf8poyqse .card-wrapper {
  height: 100%;
}
.cid-rUf8poyqse .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rUf8poyqse .video-block {
    width: 100% !important;
  }
}
.cid-rUf8poyqse .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeUzorZDA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeUzorZDA .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeUzorZDA .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeUzorZDA .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeUzorZDA a svg polygon {
  fill: white !important;
}
.cid-rUeUzorZDA a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeUzorZDA a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeUzorZDA .btn-white-outline:hover,
.cid-rUeUzorZDA .btn-white-outline:focus,
.cid-rUeUzorZDA .btn-white-outline.focus,
.cid-rUeUzorZDA .btn-white-outline.active,
.cid-rUeUzorZDA .btn-black-outline:hover,
.cid-rUeUzorZDA .btn-black-outline:focus,
.cid-rUeUzorZDA .btn-black-outline.focus,
.cid-rUeUzorZDA .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeUzorZDA .display-5 {
    line-height: 1;
  }
  .cid-rUeUzorZDA .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeUzorZDA .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeUzIgXyQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rUeUzIgXyQ .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeUzIgXyQ .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeUzIgXyQ .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeUzIgXyQ a svg polygon {
  fill: white !important;
}
.cid-rUeUzIgXyQ a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeUzIgXyQ a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeUzIgXyQ .btn-white-outline:hover,
.cid-rUeUzIgXyQ .btn-white-outline:focus,
.cid-rUeUzIgXyQ .btn-white-outline.focus,
.cid-rUeUzIgXyQ .btn-white-outline.active,
.cid-rUeUzIgXyQ .btn-black-outline:hover,
.cid-rUeUzIgXyQ .btn-black-outline:focus,
.cid-rUeUzIgXyQ .btn-black-outline.focus,
.cid-rUeUzIgXyQ .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeUzIgXyQ .display-5 {
    line-height: 1;
  }
  .cid-rUeUzIgXyQ .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeUzIgXyQ .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeUDF1yJO {
  background-image: url("../../../assets/images/headerpillar-neu-3520x2348-38-2000x1334.jpg");
}
.cid-rUeUDF1yJO h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeUDF1yJO .space_down_50 {
  margin-bottom: 50px;
}
.cid-rUeUFn0Z5m {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeUFn0Z5m .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeUFn0Z5m .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeUFn0Z5m .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeUFn0Z5m a svg polygon {
  fill: white !important;
}
.cid-rUeUFn0Z5m a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeUFn0Z5m a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeUFn0Z5m .btn-white-outline:hover,
.cid-rUeUFn0Z5m .btn-white-outline:focus,
.cid-rUeUFn0Z5m .btn-white-outline.focus,
.cid-rUeUFn0Z5m .btn-white-outline.active,
.cid-rUeUFn0Z5m .btn-black-outline:hover,
.cid-rUeUFn0Z5m .btn-black-outline:focus,
.cid-rUeUFn0Z5m .btn-black-outline.focus,
.cid-rUeUFn0Z5m .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeUFn0Z5m .display-5 {
    line-height: 1;
  }
  .cid-rUeUFn0Z5m .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeUFn0Z5m .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeUKxTOi7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rUeUKxTOi7 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rUeUKxTOi7 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeUKxTOi7 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rUeUKxTOi7 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rUf9eQatW2 {
  background: #ffffff;
}
.cid-rUf9eQatW2 .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rUf9eQatW2 .video-block {
    width: 100% !important;
  }
}
.cid-rUf9eQatW2 .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeULvAHFI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rUeULvAHFI .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeULvAHFI .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeULvAHFI .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeULvAHFI a svg polygon {
  fill: white !important;
}
.cid-rUeULvAHFI a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeULvAHFI a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeULvAHFI .btn-white-outline:hover,
.cid-rUeULvAHFI .btn-white-outline:focus,
.cid-rUeULvAHFI .btn-white-outline.focus,
.cid-rUeULvAHFI .btn-white-outline.active,
.cid-rUeULvAHFI .btn-black-outline:hover,
.cid-rUeULvAHFI .btn-black-outline:focus,
.cid-rUeULvAHFI .btn-black-outline.focus,
.cid-rUeULvAHFI .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeULvAHFI .display-5 {
    line-height: 1;
  }
  .cid-rUeULvAHFI .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeULvAHFI .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rUeULK9lrU {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-rUeULK9lrU .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rUeULK9lrU .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rUeULK9lrU .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rUeULK9lrU a svg polygon {
  fill: white !important;
}
.cid-rUeULK9lrU a:hover {
  Color: #F9CEB2!important;
}
.cid-rUeULK9lrU a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rUeULK9lrU .btn-white-outline:hover,
.cid-rUeULK9lrU .btn-white-outline:focus,
.cid-rUeULK9lrU .btn-white-outline.focus,
.cid-rUeULK9lrU .btn-white-outline.active,
.cid-rUeULK9lrU .btn-black-outline:hover,
.cid-rUeULK9lrU .btn-black-outline:focus,
.cid-rUeULK9lrU .btn-black-outline.focus,
.cid-rUeULK9lrU .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rUeULK9lrU .display-5 {
    line-height: 1;
  }
  .cid-rUeULK9lrU .btn {
    font-size: 1.5rem !important;
  }
  .cid-rUeULK9lrU .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7A8uGEtwZ {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7A8uGEtwZ .content {
    text-align: center;
  }
  .cid-u7A8uGEtwZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7A8uGEtwZ .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7A8uGEtwZ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7A8uGEtwZ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7A8uGEtwZ .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7A8uGEtwZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7A8uGEtwZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7A8uGEtwZ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7A8uGEtwZ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7A8uGEtwZ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7A8uGEtwZ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7A8uGEtwZ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7A8uGEtwZ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7A8uGEtwZ H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7A8uGEtwZ P {
  color: #ffffff;
}
.cid-u7A8uGEtwZ .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7A8uGEtwZ .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7A8uGEtwZ .logo_footer {
  position: relative;
}
.cid-u7A8uGEtwZ .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7A8uGEtwZ .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7A8uGEtwZ .col,
  .cid-u7A8uGEtwZ .col-1,
  .cid-u7A8uGEtwZ .col-10,
  .cid-u7A8uGEtwZ .col-11,
  .cid-u7A8uGEtwZ .col-12,
  .cid-u7A8uGEtwZ .col-2,
  .cid-u7A8uGEtwZ .col-3,
  .cid-u7A8uGEtwZ .col-4,
  .cid-u7A8uGEtwZ .col-5,
  .cid-u7A8uGEtwZ .col-6,
  .cid-u7A8uGEtwZ .col-7,
  .cid-u7A8uGEtwZ .col-8,
  .cid-u7A8uGEtwZ .col-9,
  .cid-u7A8uGEtwZ .col-auto,
  .cid-u7A8uGEtwZ .col-lg,
  .cid-u7A8uGEtwZ .col-lg-1,
  .cid-u7A8uGEtwZ .col-lg-10,
  .cid-u7A8uGEtwZ .col-lg-11,
  .cid-u7A8uGEtwZ .col-lg-12,
  .cid-u7A8uGEtwZ .col-lg-2,
  .cid-u7A8uGEtwZ .col-lg-3,
  .cid-u7A8uGEtwZ .col-lg-4,
  .cid-u7A8uGEtwZ .col-lg-5,
  .cid-u7A8uGEtwZ .col-lg-6,
  .cid-u7A8uGEtwZ .col-lg-7,
  .cid-u7A8uGEtwZ .col-lg-8,
  .cid-u7A8uGEtwZ .col-lg-9,
  .cid-u7A8uGEtwZ .col-lg-auto,
  .cid-u7A8uGEtwZ .col-md,
  .cid-u7A8uGEtwZ .col-md-1,
  .cid-u7A8uGEtwZ .col-md-10,
  .cid-u7A8uGEtwZ .col-md-11,
  .cid-u7A8uGEtwZ .col-md-12,
  .cid-u7A8uGEtwZ .col-md-2,
  .cid-u7A8uGEtwZ .col-md-3,
  .cid-u7A8uGEtwZ .col-md-4,
  .cid-u7A8uGEtwZ .col-md-5,
  .cid-u7A8uGEtwZ .col-md-6,
  .cid-u7A8uGEtwZ .col-md-7,
  .cid-u7A8uGEtwZ .col-md-8,
  .cid-u7A8uGEtwZ .col-md-9,
  .cid-u7A8uGEtwZ .col-md-auto,
  .cid-u7A8uGEtwZ .col-sm,
  .cid-u7A8uGEtwZ .col-sm-1,
  .cid-u7A8uGEtwZ .col-sm-10,
  .cid-u7A8uGEtwZ .col-sm-11,
  .cid-u7A8uGEtwZ .col-sm-12,
  .cid-u7A8uGEtwZ .col-sm-2,
  .cid-u7A8uGEtwZ .col-sm-3,
  .cid-u7A8uGEtwZ .col-sm-4,
  .cid-u7A8uGEtwZ .col-sm-5,
  .cid-u7A8uGEtwZ .col-sm-6,
  .cid-u7A8uGEtwZ .col-sm-7,
  .cid-u7A8uGEtwZ .col-sm-8,
  .cid-u7A8uGEtwZ .col-sm-9,
  .cid-u7A8uGEtwZ .col-sm-auto,
  .cid-u7A8uGEtwZ .col-xl,
  .cid-u7A8uGEtwZ .col-xl-1,
  .cid-u7A8uGEtwZ .col-xl-10,
  .cid-u7A8uGEtwZ .col-xl-11,
  .cid-u7A8uGEtwZ .col-xl-12,
  .cid-u7A8uGEtwZ .col-xl-2,
  .cid-u7A8uGEtwZ .col-xl-3,
  .cid-u7A8uGEtwZ .col-xl-4,
  .cid-u7A8uGEtwZ .col-xl-5,
  .cid-u7A8uGEtwZ .col-xl-6,
  .cid-u7A8uGEtwZ .col-xl-7,
  .cid-u7A8uGEtwZ .col-xl-8,
  .cid-u7A8uGEtwZ .col-xl-9,
  .cid-u7A8uGEtwZ .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7A8uGEtwZ .content {
    text-align: left;
  }
  .cid-u7A8uGEtwZ .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7A8uGEtwZ .logo_footer_box {
    position: relative;
  }
  .cid-u7A8uGEtwZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7A8uGEtwZ .logo_footer {
    position: relative;
  }
  .cid-u7A8uGEtwZ .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7A8uGEtwZ .copyright > p {
  color: #f9ceb2;
}
.cid-rQSbQaWTrL :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-rQSbQaWTrL .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-rQSbQaWTrL .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rQSbQaWTrL a {
  font-style: normal;
}
.cid-rQSbQaWTrL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rQSbQaWTrL .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rQSbQaWTrL .nav-item:focus,
.cid-rQSbQaWTrL .nav-link:focus {
  outline: none;
}
.cid-rQSbQaWTrL .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-rQSbQaWTrL .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-rQSbQaWTrL .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rQSbQaWTrL .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rQSbQaWTrL .menu-logo {
  margin-right: auto;
}
.cid-rQSbQaWTrL .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-rQSbQaWTrL .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rQSbQaWTrL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rQSbQaWTrL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rQSbQaWTrL .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rQSbQaWTrL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rQSbQaWTrL .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rQSbQaWTrL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-rQSbQaWTrL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rQSbQaWTrL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rQSbQaWTrL .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rQSbQaWTrL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rQSbQaWTrL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rQSbQaWTrL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rQSbQaWTrL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rQSbQaWTrL .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-rQSbQaWTrL .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-rQSbQaWTrL .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rQSbQaWTrL .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rQSbQaWTrL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rQSbQaWTrL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rQSbQaWTrL .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-rQSbQaWTrL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rQSbQaWTrL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rQSbQaWTrL button.navbar-toggler:focus {
  outline: none;
}
.cid-rQSbQaWTrL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rQSbQaWTrL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rQSbQaWTrL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rQSbQaWTrL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rQSbQaWTrL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rQSbQaWTrL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQSbQaWTrL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rQSbQaWTrL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rQSbQaWTrL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rQSbQaWTrL .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rQSbQaWTrL .collapsed .btn {
  display: flex;
}
.cid-rQSbQaWTrL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rQSbQaWTrL .collapsed .navbar-collapse.collapsing,
.cid-rQSbQaWTrL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rQSbQaWTrL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rQSbQaWTrL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rQSbQaWTrL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rQSbQaWTrL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rQSbQaWTrL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rQSbQaWTrL .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-rQSbQaWTrL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rQSbQaWTrL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rQSbQaWTrL .collapsed button.navbar-toggler {
  display: block;
}
.cid-rQSbQaWTrL .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rQSbQaWTrL .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rQSbQaWTrL .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rQSbQaWTrL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rQSbQaWTrL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rQSbQaWTrL .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rQSbQaWTrL .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-rQSbQaWTrL .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-rQSbQaWTrL .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-rQSbQaWTrL .navbar-expand {
    flex-direction: column;
  }
  .cid-rQSbQaWTrL img {
    height: 3rem !important;
  }
  .cid-rQSbQaWTrL .btn {
    display: flex;
  }
  .cid-rQSbQaWTrL button.navbar-toggler {
    display: block;
  }
  .cid-rQSbQaWTrL .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rQSbQaWTrL .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rQSbQaWTrL .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rQSbQaWTrL .navbar-collapse.collapsing,
  .cid-rQSbQaWTrL .navbar-collapse.show {
    display: block !important;
  }
  .cid-rQSbQaWTrL .navbar-collapse.collapsing .navbar-nav,
  .cid-rQSbQaWTrL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rQSbQaWTrL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rQSbQaWTrL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rQSbQaWTrL .navbar-collapse.collapsing .navbar-buttons,
  .cid-rQSbQaWTrL .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rQSbQaWTrL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rQSbQaWTrL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rQSbQaWTrL .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rQSbQaWTrL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rQSbQaWTrL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rQSbQaWTrL .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rQSbQaWTrL .logo_s,
  .cid-rQSbQaWTrL .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-rQSbQaWTrL .menu-logo {
    flex-shrink: 3;
  }
}
.cid-rQSbQaWTrL .navbar-collapse {
  flex-basis: auto;
}
.cid-rQSbQaWTrL .nav-link:hover,
.cid-rQSbQaWTrL .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-rQSbQaWTrL .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-rQSbQaWTrL .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-rQSbQaWTrL .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-rQSbQaWTrL .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-rQSbQaWTrL .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-rQSbQaWTrL a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rQSbQaWTrL a:hover svg polygon,
.cid-rQSbQaWTrL a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rQSbQaWTrL .hidden {
  display: none !important;
}
.cid-rQSbQaWTrL .shoow {
  display: block !important;
}
.cid-rQSbQaWTrL .navbar-logo a,
.cid-rQSbQaWTrL .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-rQSbQaWTrL .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-rQSbQaWTrL .logo_s {
    height: 2rem !important;
  }
  .cid-rQSbQaWTrL .navbar-logo a img {
    left: 20px;
  }
  .cid-rQSbQaWTrL .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-rQSbQaWTrL .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-rQSbQaWTrL .stoerer_head,
  .cid-rQSbQaWTrL .stoerer_text {
    grid-row: 1;
  }
  .cid-rQSbQaWTrL .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-rQSbQaWTrL a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rR1xAapQBQ {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rR1xAapQBQ {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rR1AFLszO5 {
  background-image: url("../../../assets/images/zentrumfuerpolitischeschoenheit-zps-465-2000xca2000-2000x1986.jpg");
}
.cid-rR1AFLszO5 P {
  color: #767676;
}
.cid-rR1y2nKyC2 {
  padding-top: 135px;
  padding-bottom: 105px;
  background-color: #f9ceb2;
}
.cid-rR1y2nKyC2 P {
  color: #767676;
}
.cid-rR1y2nKyC2 .display-2 {
  font-size: 3rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-rR1y2nKyC2 .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-rR1y2nKyC2 .mbr-text,
.cid-rR1y2nKyC2 .mbr-section-btn {
  color: #1d1d1b;
}
.cid-rRguXzpeng {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRguXzpeng .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRguXzpeng h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRguXzpeng .space_down_30 {
  margin-bottom: 30px;
}
.cid-rR1CyQfzCw {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rR1CyQfzCw .images-container.container-fluid {
  padding: 0;
}
.cid-rR1CyQfzCw .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rR1CyQfzCw .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rR1CyQfzCw .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rR1CyQfzCw .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rR1CyQfzCw .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rR1CyQfzCw .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rR1CyQfzCw .img-item {
    width: 100% !important;
  }
  .cid-rR1CyQfzCw .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRgvYGOOtw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRgvYGOOtw .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRgvYGOOtw h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRgvYGOOtw .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRq2MMhmAD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRq2MMhmAD .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rRq2MMhmAD h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRq2MMhmAD .space_down_50 {
  margin-bottom: 50px;
}
.cid-rR3Va2YEQA {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-rR3Va2YEQA p {
  color: #767676;
}
.cid-rR3Va2YEQA .item:focus,
.cid-rR3Va2YEQA span:focus {
  outline: none;
}
.cid-rR3Va2YEQA .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-rR3Va2YEQA .item-wrapper {
  position: relative;
}
.cid-rR3Va2YEQA .item-btn,
.cid-rR3Va2YEQA h4,
.cid-rR3Va2YEQA h5 {
  margin: 0;
}
.cid-rR3Va2YEQA .item-content {
  padding-top: 2rem;
}
.cid-rR3Va2YEQA .abstand {
  margin-top: -10px;
}
.cid-rR3Va2YEQA h4 {
  line-height: 1.2;
}
.cid-rR3Va2YEQA .item-text h5,
.cid-rR3Va2YEQA .item-text h4 {
  color: #1d1d1b;
}
.cid-rR3Va2YEQA .item-wrapper:hover .card-img {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rR3Va2YEQA .item-wrapper:hover h4 a {
  color: #F9CEB2;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rR3Va2YEQA item-text {
  color: #1d1d1b;
}
.cid-rR3Va2YEQA .link_no_link {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-rR3Va2YEQA .display-5,
.cid-rR3Va2YEQA .btn {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  text-transform: uppercase ;
}
.cid-rR3Va2YEQA .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rR3Va2YEQA .btn {
  border-width: 0px !important;
  padding: 0px;
  margin: 0px;
  display: inline-block;
}
.cid-rR3Va2YEQA .special_button {
  width: 100%;
}
.cid-rR3Va2YEQA .special_button a {
  text-align: left;
}
.cid-rR3Va2YEQA .display-5 {
  color: white !important;
}
.cid-rR3Va2YEQA svg polygon {
  fill: white ;
}
.cid-rR3Va2YEQA a:hover {
  Color: #F9CEB2 !important;
}
.cid-rR3Va2YEQA a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rR3Va2YEQA .btn-black-outline:hover,
.cid-rR3Va2YEQA .btn-black-outline:focus,
.cid-rR3Va2YEQA .btn-black-outline.focus,
.cid-rR3Va2YEQA .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-rR3Va2YEQA .btn-white-outline:hover,
.cid-rR3Va2YEQA .btn-white-outline:focus,
.cid-rR3Va2YEQA .btn-white-outline.focus,
.cid-rR3Va2YEQA .btn-white-outline.active {
  background-color: rgba(255, 0, 0, 0.2) !important;
}
@media (max-width: 768px) {
  .cid-rR3Va2YEQA .display-5 {
    line-height: 1;
  }
  .cid-rR3Va2YEQA .btn {
    font-size: 1.5rem !important;
  }
  .cid-rR3Va2YEQA .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rR1EQMhFab {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rR1EQMhFab .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rR1EQMhFab .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-rR1EQMhFab .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rR1EQMhFab a svg polygon {
  fill: white !important;
}
.cid-rR1EQMhFab a:hover {
  Color: #F9CEB2!important;
}
.cid-rR1EQMhFab a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rR1EQMhFab .btn-white-outline:hover,
.cid-rR1EQMhFab .btn-white-outline:focus,
.cid-rR1EQMhFab .btn-white-outline.focus,
.cid-rR1EQMhFab .btn-white-outline.active,
.cid-rR1EQMhFab .btn-black-outline:hover,
.cid-rR1EQMhFab .btn-black-outline:focus,
.cid-rR1EQMhFab .btn-black-outline.focus,
.cid-rR1EQMhFab .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rR1EQMhFab .display-5 {
    line-height: 1;
  }
  .cid-rR1EQMhFab .btn {
    font-size: 1.5rem !important;
  }
  .cid-rR1EQMhFab .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7yU2ngLDt {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yU2ngLDt .content {
    text-align: center;
  }
  .cid-u7yU2ngLDt .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yU2ngLDt .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yU2ngLDt .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yU2ngLDt .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yU2ngLDt .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yU2ngLDt .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yU2ngLDt .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yU2ngLDt .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yU2ngLDt .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yU2ngLDt .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yU2ngLDt .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yU2ngLDt .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yU2ngLDt .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yU2ngLDt H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yU2ngLDt P {
  color: #ffffff;
}
.cid-u7yU2ngLDt .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yU2ngLDt .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yU2ngLDt .logo_footer {
  position: relative;
}
.cid-u7yU2ngLDt .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yU2ngLDt .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yU2ngLDt .col,
  .cid-u7yU2ngLDt .col-1,
  .cid-u7yU2ngLDt .col-10,
  .cid-u7yU2ngLDt .col-11,
  .cid-u7yU2ngLDt .col-12,
  .cid-u7yU2ngLDt .col-2,
  .cid-u7yU2ngLDt .col-3,
  .cid-u7yU2ngLDt .col-4,
  .cid-u7yU2ngLDt .col-5,
  .cid-u7yU2ngLDt .col-6,
  .cid-u7yU2ngLDt .col-7,
  .cid-u7yU2ngLDt .col-8,
  .cid-u7yU2ngLDt .col-9,
  .cid-u7yU2ngLDt .col-auto,
  .cid-u7yU2ngLDt .col-lg,
  .cid-u7yU2ngLDt .col-lg-1,
  .cid-u7yU2ngLDt .col-lg-10,
  .cid-u7yU2ngLDt .col-lg-11,
  .cid-u7yU2ngLDt .col-lg-12,
  .cid-u7yU2ngLDt .col-lg-2,
  .cid-u7yU2ngLDt .col-lg-3,
  .cid-u7yU2ngLDt .col-lg-4,
  .cid-u7yU2ngLDt .col-lg-5,
  .cid-u7yU2ngLDt .col-lg-6,
  .cid-u7yU2ngLDt .col-lg-7,
  .cid-u7yU2ngLDt .col-lg-8,
  .cid-u7yU2ngLDt .col-lg-9,
  .cid-u7yU2ngLDt .col-lg-auto,
  .cid-u7yU2ngLDt .col-md,
  .cid-u7yU2ngLDt .col-md-1,
  .cid-u7yU2ngLDt .col-md-10,
  .cid-u7yU2ngLDt .col-md-11,
  .cid-u7yU2ngLDt .col-md-12,
  .cid-u7yU2ngLDt .col-md-2,
  .cid-u7yU2ngLDt .col-md-3,
  .cid-u7yU2ngLDt .col-md-4,
  .cid-u7yU2ngLDt .col-md-5,
  .cid-u7yU2ngLDt .col-md-6,
  .cid-u7yU2ngLDt .col-md-7,
  .cid-u7yU2ngLDt .col-md-8,
  .cid-u7yU2ngLDt .col-md-9,
  .cid-u7yU2ngLDt .col-md-auto,
  .cid-u7yU2ngLDt .col-sm,
  .cid-u7yU2ngLDt .col-sm-1,
  .cid-u7yU2ngLDt .col-sm-10,
  .cid-u7yU2ngLDt .col-sm-11,
  .cid-u7yU2ngLDt .col-sm-12,
  .cid-u7yU2ngLDt .col-sm-2,
  .cid-u7yU2ngLDt .col-sm-3,
  .cid-u7yU2ngLDt .col-sm-4,
  .cid-u7yU2ngLDt .col-sm-5,
  .cid-u7yU2ngLDt .col-sm-6,
  .cid-u7yU2ngLDt .col-sm-7,
  .cid-u7yU2ngLDt .col-sm-8,
  .cid-u7yU2ngLDt .col-sm-9,
  .cid-u7yU2ngLDt .col-sm-auto,
  .cid-u7yU2ngLDt .col-xl,
  .cid-u7yU2ngLDt .col-xl-1,
  .cid-u7yU2ngLDt .col-xl-10,
  .cid-u7yU2ngLDt .col-xl-11,
  .cid-u7yU2ngLDt .col-xl-12,
  .cid-u7yU2ngLDt .col-xl-2,
  .cid-u7yU2ngLDt .col-xl-3,
  .cid-u7yU2ngLDt .col-xl-4,
  .cid-u7yU2ngLDt .col-xl-5,
  .cid-u7yU2ngLDt .col-xl-6,
  .cid-u7yU2ngLDt .col-xl-7,
  .cid-u7yU2ngLDt .col-xl-8,
  .cid-u7yU2ngLDt .col-xl-9,
  .cid-u7yU2ngLDt .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yU2ngLDt .content {
    text-align: left;
  }
  .cid-u7yU2ngLDt .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yU2ngLDt .logo_footer_box {
    position: relative;
  }
  .cid-u7yU2ngLDt .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yU2ngLDt .logo_footer {
    position: relative;
  }
  .cid-u7yU2ngLDt .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yU2ngLDt .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rSQnXCGfpJ {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rSQnXCGfpJ {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rSQopXumJg {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f9ceb2;
}
.cid-rSQopXumJg .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rSQopXumJg .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rSQopXumJg .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rSQoHQiVAK {
  padding-top: 45px;
  padding-bottom: 135px;
  background-color: #f9ceb2;
}
.cid-rSQoHQiVAK h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSQoHQiVAK .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSQytxkerO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSQytxkerO .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSQytxkerO .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rSQytxkerO .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rSQytxkerO a:hover {
  Color: #a76645;
}
.cid-rSQytxkerO a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSQytxkerO .btn-black-outline:hover,
.cid-rSQytxkerO .btn-black-outline:focus,
.cid-rSQytxkerO .btn-black-outline.focus,
.cid-rSQytxkerO .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rSQytxkerO .display-5 {
    line-height: 1;
  }
  .cid-rSQytxkerO .btn {
    font-size: 1.5rem !important;
  }
  .cid-rSQytxkerO .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tJOhttPeog {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-tJOhttPeog .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tJOhttPeog .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-tJOhttPeog .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tJOhttPeog a:hover {
  Color: #a76645;
}
.cid-tJOhttPeog a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tJOhttPeog .btn-black-outline:hover,
.cid-tJOhttPeog .btn-black-outline:focus,
.cid-tJOhttPeog .btn-black-outline.focus,
.cid-tJOhttPeog .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tJOhttPeog .display-5 {
    line-height: 1;
  }
  .cid-tJOhttPeog .btn {
    font-size: 1.5rem !important;
  }
  .cid-tJOhttPeog .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7yUgQob7w {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yUgQob7w .content {
    text-align: center;
  }
  .cid-u7yUgQob7w .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yUgQob7w .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yUgQob7w .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yUgQob7w .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yUgQob7w .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yUgQob7w .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yUgQob7w .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yUgQob7w .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yUgQob7w .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yUgQob7w .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yUgQob7w .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yUgQob7w .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yUgQob7w .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yUgQob7w H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yUgQob7w P {
  color: #ffffff;
}
.cid-u7yUgQob7w .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yUgQob7w .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yUgQob7w .logo_footer {
  position: relative;
}
.cid-u7yUgQob7w .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yUgQob7w .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yUgQob7w .col,
  .cid-u7yUgQob7w .col-1,
  .cid-u7yUgQob7w .col-10,
  .cid-u7yUgQob7w .col-11,
  .cid-u7yUgQob7w .col-12,
  .cid-u7yUgQob7w .col-2,
  .cid-u7yUgQob7w .col-3,
  .cid-u7yUgQob7w .col-4,
  .cid-u7yUgQob7w .col-5,
  .cid-u7yUgQob7w .col-6,
  .cid-u7yUgQob7w .col-7,
  .cid-u7yUgQob7w .col-8,
  .cid-u7yUgQob7w .col-9,
  .cid-u7yUgQob7w .col-auto,
  .cid-u7yUgQob7w .col-lg,
  .cid-u7yUgQob7w .col-lg-1,
  .cid-u7yUgQob7w .col-lg-10,
  .cid-u7yUgQob7w .col-lg-11,
  .cid-u7yUgQob7w .col-lg-12,
  .cid-u7yUgQob7w .col-lg-2,
  .cid-u7yUgQob7w .col-lg-3,
  .cid-u7yUgQob7w .col-lg-4,
  .cid-u7yUgQob7w .col-lg-5,
  .cid-u7yUgQob7w .col-lg-6,
  .cid-u7yUgQob7w .col-lg-7,
  .cid-u7yUgQob7w .col-lg-8,
  .cid-u7yUgQob7w .col-lg-9,
  .cid-u7yUgQob7w .col-lg-auto,
  .cid-u7yUgQob7w .col-md,
  .cid-u7yUgQob7w .col-md-1,
  .cid-u7yUgQob7w .col-md-10,
  .cid-u7yUgQob7w .col-md-11,
  .cid-u7yUgQob7w .col-md-12,
  .cid-u7yUgQob7w .col-md-2,
  .cid-u7yUgQob7w .col-md-3,
  .cid-u7yUgQob7w .col-md-4,
  .cid-u7yUgQob7w .col-md-5,
  .cid-u7yUgQob7w .col-md-6,
  .cid-u7yUgQob7w .col-md-7,
  .cid-u7yUgQob7w .col-md-8,
  .cid-u7yUgQob7w .col-md-9,
  .cid-u7yUgQob7w .col-md-auto,
  .cid-u7yUgQob7w .col-sm,
  .cid-u7yUgQob7w .col-sm-1,
  .cid-u7yUgQob7w .col-sm-10,
  .cid-u7yUgQob7w .col-sm-11,
  .cid-u7yUgQob7w .col-sm-12,
  .cid-u7yUgQob7w .col-sm-2,
  .cid-u7yUgQob7w .col-sm-3,
  .cid-u7yUgQob7w .col-sm-4,
  .cid-u7yUgQob7w .col-sm-5,
  .cid-u7yUgQob7w .col-sm-6,
  .cid-u7yUgQob7w .col-sm-7,
  .cid-u7yUgQob7w .col-sm-8,
  .cid-u7yUgQob7w .col-sm-9,
  .cid-u7yUgQob7w .col-sm-auto,
  .cid-u7yUgQob7w .col-xl,
  .cid-u7yUgQob7w .col-xl-1,
  .cid-u7yUgQob7w .col-xl-10,
  .cid-u7yUgQob7w .col-xl-11,
  .cid-u7yUgQob7w .col-xl-12,
  .cid-u7yUgQob7w .col-xl-2,
  .cid-u7yUgQob7w .col-xl-3,
  .cid-u7yUgQob7w .col-xl-4,
  .cid-u7yUgQob7w .col-xl-5,
  .cid-u7yUgQob7w .col-xl-6,
  .cid-u7yUgQob7w .col-xl-7,
  .cid-u7yUgQob7w .col-xl-8,
  .cid-u7yUgQob7w .col-xl-9,
  .cid-u7yUgQob7w .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yUgQob7w .content {
    text-align: left;
  }
  .cid-u7yUgQob7w .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yUgQob7w .logo_footer_box {
    position: relative;
  }
  .cid-u7yUgQob7w .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yUgQob7w .logo_footer {
    position: relative;
  }
  .cid-u7yUgQob7w .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yUgQob7w .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRat8XdZ8W {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRat8XdZ8W {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rRaR8WFiqB {
  background: #ffffff;
}
.cid-rRaR8WFiqB .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRaR8WFiqB figcaption {
  position: relative;
}
.cid-rRaR8WFiqB figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRaR8WFiqB .image-block {
    width: 300% !important;
  }
}
.cid-rRaUwMiVaO {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRaUwMiVaO .testimonial-text {
  font-weight: 200;
  color: #000000;
  text-align: left;
}
.cid-rRaUwMiVaO .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRaUwMiVaO .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRaUwMiVaO .mbr-figure,
  .cid-rRaUwMiVaO img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRaUwMiVaO .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRaUwMiVaO .mbr-author-desc {
  color: #000000;
}
.cid-rRaUwMiVaO h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRaUwMiVaO .text_block {
  margin-top: 0px;
}
.cid-rRaUwMiVaO .h2_block {
  margin-bottom: 20px;
}
.cid-rRaUwMiVaO .mbr-figure {
  align-self: flex-start;
}
.cid-rRaUwMiVaO .display-5 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  font-style: italic;
}
.cid-rRaUwMiVaO .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRaUwMiVaO .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-rRaUwMiVaO a:hover {
  Color: #a76645 !important;
}
.cid-rRaUwMiVaO a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRaUwMiVaO .btn-black-outline:hover,
.cid-rRaUwMiVaO .btn-black-outline:focus,
.cid-rRaUwMiVaO .btn-black-outline.focus,
.cid-rRaUwMiVaO .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRaUwMiVaO .display-5 {
    line-height: 1;
    font-size: 1.3rem;
  }
  .cid-rRaUwMiVaO .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRaUwMiVaO .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRaUwMiVaO .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-sxdBqsMbFm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sxdBqsMbFm .mbr-text,
.cid-sxdBqsMbFm blockquote {
  color: #767676;
}
.cid-sxdBqsMbFm .fundraisingbox {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #fff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #fff;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #fff;
}
.cid-sjeCuu2rZO {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sjeCuu2rZO .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-sjeCuu2rZO h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sjeCuu2rZO .space_down_50 {
  margin-bottom: 50px;
}
.cid-rUge62gWWa {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rUge62gWWa h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUge62gWWa p {
  color: #767676;
  text-align: left;
}
.cid-rUge62gWWa .card-box {
  padding-top: 2rem;
}
.cid-rUge62gWWa .card-wrapper {
  height: 100%;
}
.cid-rUge62gWWa P {
  color: #1d1d1b;
}
.cid-ueaNji7L68 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ueaNji7L68 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ueaNji7L68 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-ueaNji7L68 .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-ueaNji7L68 a:hover {
  Color: #a76645;
}
.cid-ueaNji7L68 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ueaNji7L68 .btn-black-outline:hover,
.cid-ueaNji7L68 .btn-black-outline:focus,
.cid-ueaNji7L68 .btn-black-outline.focus,
.cid-ueaNji7L68 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ueaNji7L68 .display-5 {
    line-height: 1;
  }
  .cid-ueaNji7L68 .btn {
    font-size: 1.5rem !important;
  }
  .cid-ueaNji7L68 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRaRlbAZRf {
  background: #ffffff;
}
.cid-rRaRlbAZRf .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRaRlbAZRf figcaption {
  position: relative;
}
.cid-rRaRlbAZRf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRaRlbAZRf .image-block {
    width: 300% !important;
  }
}
.cid-rU5qY9Iwam {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-14-2000x1333.png");
}
.cid-rU5qY9Iwam H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-rU5qY9Iwam .mbr-section-subtitle {
  color: #000000;
}
.cid-rU5qY9Iwam span {
  visibility: hidden;
}
.cid-rU5qY9Iwam .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-rU5qY9Iwam span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-s1Bc3tz65u {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-s1Bc3tz65u .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-s1Bc3tz65u .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-s1Bc3tz65u .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tItX6cb0Q4 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-tItX6cb0Q4 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tItX6cb0Q4 .display-5 {
  font-size: 2rem;
  color: black;
}
.cid-tItX6cb0Q4 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tItX6cb0Q4 a svg polygon {
  fill: black !important;
}
.cid-tItX6cb0Q4 a:hover {
  Color: #F9CEB2!important;
}
.cid-tItX6cb0Q4 a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tItX6cb0Q4 .btn-white-outline:hover,
.cid-tItX6cb0Q4 .btn-white-outline:focus,
.cid-tItX6cb0Q4 .btn-white-outline.focus,
.cid-tItX6cb0Q4 .btn-white-outline.active,
.cid-tItX6cb0Q4 .btn-black-outline:hover,
.cid-tItX6cb0Q4 .btn-black-outline:focus,
.cid-tItX6cb0Q4 .btn-black-outline.focus,
.cid-tItX6cb0Q4 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tItX6cb0Q4 .display-5 {
    line-height: 1;
  }
  .cid-tItX6cb0Q4 .btn {
    font-size: 1.5rem !important;
  }
  .cid-tItX6cb0Q4 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRaWsz7ZDk {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-4-1500x1695.jpg");
}
.cid-rRaWsz7ZDk .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRaWsz7ZDk h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRaWsz7ZDk p {
  color: #767676;
  text-align: left;
}
.cid-rRaWsz7ZDk .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRaWsz7ZDk .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRaWsz7ZDk .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRaWsz7ZDk .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRaWsz7ZDk .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRaWsz7ZDk .notched-box:before,
.cid-rRaWsz7ZDk .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRaWsz7ZDk .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRaWsz7ZDk .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRaWsz7ZDk .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRaWsz7ZDk .border:before,
.cid-rRaWsz7ZDk .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRaWsz7ZDk .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRaWsz7ZDk .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRaWsz7ZDk .mbr-author-name {
  padding-left: 40px;
}
.cid-rRaWsz7ZDk P {
  color: #ffffff;
}
.cid-rRaWsz7ZDk .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-sjeCbMNsfR {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-16-2000x1330.png");
}
.cid-sjeCbMNsfR H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-sjeCbMNsfR .mbr-section-subtitle {
  color: #000000;
}
.cid-sjeCbMNsfR span {
  visibility: hidden;
}
.cid-sjeCbMNsfR .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-sjeCbMNsfR span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rU5noioPJh {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rU5noioPJh .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
  text-align: right;
}
.cid-rU5noioPJh .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rU5noioPJh .mbr-author-desc {
  color: #1d1d1b;
  text-align: right;
}
.cid-rU5noioPJh .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rU5noioPJh .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rU5noioPJh .mbr-figure,
  .cid-rU5noioPJh img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rU5noioPJh h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rU5noioPJh .text_block {
  margin-top: 0px;
}
.cid-rU5noioPJh .h2_block {
  margin-bottom: 20px;
  text-align: right;
}
.cid-rU5noioPJh .mbr-figure {
  align-self: flex-start;
}
.cid-rU5noioPJh .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rU5noioPJh .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rU5noioPJh a:hover {
  Color: #a76645 !important;
}
.cid-rU5noioPJh a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rU5noioPJh .btn-black-outline:hover,
.cid-rU5noioPJh .btn-black-outline:focus,
.cid-rU5noioPJh .btn-black-outline.focus,
.cid-rU5noioPJh .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rU5noioPJh .display-5 {
    line-height: 1;
  }
  .cid-rU5noioPJh .btn {
    font-size: 1.5rem !important;
  }
  .cid-rU5noioPJh .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rU5noioPJh .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rU5noioPJh .content {
  padding-left: 3px;
}
.cid-sjeAc3JaNW {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-10-1500x622.jpg");
}
.cid-sjeAc3JaNW H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-sjeAc3JaNW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sjeAc3JaNW span {
  visibility: hidden;
}
.cid-sjeAc3JaNW .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-sjeAc3JaNW span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-tPKzS3EAcb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tPKzS3EAcb h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tPKzS3EAcb p {
  color: #767676;
  text-align: left;
}
.cid-tPKzS3EAcb .card-box {
  padding-top: 2rem;
}
.cid-tPKzS3EAcb .card-wrapper {
  height: 100%;
}
.cid-ug8B6Wjqay {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ug8B6Wjqay .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ug8B6Wjqay .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-ug8B6Wjqay .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-ug8B6Wjqay a svg polygon {
  fill: white !important;
}
.cid-ug8B6Wjqay a:hover {
  Color: #F9CEB2!important;
}
.cid-ug8B6Wjqay a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ug8B6Wjqay .btn-white-outline:hover,
.cid-ug8B6Wjqay .btn-white-outline:focus,
.cid-ug8B6Wjqay .btn-white-outline.focus,
.cid-ug8B6Wjqay .btn-white-outline.active,
.cid-ug8B6Wjqay .btn-black-outline:hover,
.cid-ug8B6Wjqay .btn-black-outline:focus,
.cid-ug8B6Wjqay .btn-black-outline.focus,
.cid-ug8B6Wjqay .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ug8B6Wjqay .display-5 {
    line-height: 1;
  }
  .cid-ug8B6Wjqay .btn {
    font-size: 1.5rem !important;
  }
  .cid-ug8B6Wjqay .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7yTSBRT8M {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yTSBRT8M .content {
    text-align: center;
  }
  .cid-u7yTSBRT8M .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yTSBRT8M .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yTSBRT8M .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yTSBRT8M .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yTSBRT8M .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yTSBRT8M .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yTSBRT8M .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yTSBRT8M .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yTSBRT8M .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yTSBRT8M .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yTSBRT8M .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yTSBRT8M .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yTSBRT8M .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yTSBRT8M H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yTSBRT8M P {
  color: #ffffff;
}
.cid-u7yTSBRT8M .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yTSBRT8M .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yTSBRT8M .logo_footer {
  position: relative;
}
.cid-u7yTSBRT8M .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yTSBRT8M .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yTSBRT8M .col,
  .cid-u7yTSBRT8M .col-1,
  .cid-u7yTSBRT8M .col-10,
  .cid-u7yTSBRT8M .col-11,
  .cid-u7yTSBRT8M .col-12,
  .cid-u7yTSBRT8M .col-2,
  .cid-u7yTSBRT8M .col-3,
  .cid-u7yTSBRT8M .col-4,
  .cid-u7yTSBRT8M .col-5,
  .cid-u7yTSBRT8M .col-6,
  .cid-u7yTSBRT8M .col-7,
  .cid-u7yTSBRT8M .col-8,
  .cid-u7yTSBRT8M .col-9,
  .cid-u7yTSBRT8M .col-auto,
  .cid-u7yTSBRT8M .col-lg,
  .cid-u7yTSBRT8M .col-lg-1,
  .cid-u7yTSBRT8M .col-lg-10,
  .cid-u7yTSBRT8M .col-lg-11,
  .cid-u7yTSBRT8M .col-lg-12,
  .cid-u7yTSBRT8M .col-lg-2,
  .cid-u7yTSBRT8M .col-lg-3,
  .cid-u7yTSBRT8M .col-lg-4,
  .cid-u7yTSBRT8M .col-lg-5,
  .cid-u7yTSBRT8M .col-lg-6,
  .cid-u7yTSBRT8M .col-lg-7,
  .cid-u7yTSBRT8M .col-lg-8,
  .cid-u7yTSBRT8M .col-lg-9,
  .cid-u7yTSBRT8M .col-lg-auto,
  .cid-u7yTSBRT8M .col-md,
  .cid-u7yTSBRT8M .col-md-1,
  .cid-u7yTSBRT8M .col-md-10,
  .cid-u7yTSBRT8M .col-md-11,
  .cid-u7yTSBRT8M .col-md-12,
  .cid-u7yTSBRT8M .col-md-2,
  .cid-u7yTSBRT8M .col-md-3,
  .cid-u7yTSBRT8M .col-md-4,
  .cid-u7yTSBRT8M .col-md-5,
  .cid-u7yTSBRT8M .col-md-6,
  .cid-u7yTSBRT8M .col-md-7,
  .cid-u7yTSBRT8M .col-md-8,
  .cid-u7yTSBRT8M .col-md-9,
  .cid-u7yTSBRT8M .col-md-auto,
  .cid-u7yTSBRT8M .col-sm,
  .cid-u7yTSBRT8M .col-sm-1,
  .cid-u7yTSBRT8M .col-sm-10,
  .cid-u7yTSBRT8M .col-sm-11,
  .cid-u7yTSBRT8M .col-sm-12,
  .cid-u7yTSBRT8M .col-sm-2,
  .cid-u7yTSBRT8M .col-sm-3,
  .cid-u7yTSBRT8M .col-sm-4,
  .cid-u7yTSBRT8M .col-sm-5,
  .cid-u7yTSBRT8M .col-sm-6,
  .cid-u7yTSBRT8M .col-sm-7,
  .cid-u7yTSBRT8M .col-sm-8,
  .cid-u7yTSBRT8M .col-sm-9,
  .cid-u7yTSBRT8M .col-sm-auto,
  .cid-u7yTSBRT8M .col-xl,
  .cid-u7yTSBRT8M .col-xl-1,
  .cid-u7yTSBRT8M .col-xl-10,
  .cid-u7yTSBRT8M .col-xl-11,
  .cid-u7yTSBRT8M .col-xl-12,
  .cid-u7yTSBRT8M .col-xl-2,
  .cid-u7yTSBRT8M .col-xl-3,
  .cid-u7yTSBRT8M .col-xl-4,
  .cid-u7yTSBRT8M .col-xl-5,
  .cid-u7yTSBRT8M .col-xl-6,
  .cid-u7yTSBRT8M .col-xl-7,
  .cid-u7yTSBRT8M .col-xl-8,
  .cid-u7yTSBRT8M .col-xl-9,
  .cid-u7yTSBRT8M .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yTSBRT8M .content {
    text-align: left;
  }
  .cid-u7yTSBRT8M .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yTSBRT8M .logo_footer_box {
    position: relative;
  }
  .cid-u7yTSBRT8M .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yTSBRT8M .logo_footer {
    position: relative;
  }
  .cid-u7yTSBRT8M .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yTSBRT8M .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rSJmvNkGHX {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rSJmvNkGHX {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rSJmSq19Gm {
  background-image: url("../../../assets/images/schuld2-copy-2000x1123.jpg");
}
.cid-rSJmSq19Gm P {
  color: #767676;
}
.cid-rSJmTtlnBk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSJmTtlnBk .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSJmTtlnBk h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJmTtlnBk .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSJmTtlnBk .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJmUQYZ9G {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSJmUQYZ9G .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSJmUQYZ9G .video-block {
    width: 100% !important;
  }
}
.cid-rSJmUQYZ9G .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJmWDqER3 {
  background: #ffffff;
}
.cid-rSJmWDqER3 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJmWDqER3 figcaption {
  position: relative;
}
.cid-rSJmWDqER3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJmWDqER3 .image-block {
    width: 100% !important;
  }
}
.cid-rSJmZhV65R {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSJmZhV65R .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSJmZhV65R h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJmZhV65R .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSJn26aS31 {
  padding-top: 0px;
  padding-bottom: 90px;
  background: #ffffff;
}
.cid-rSJn26aS31 .images-container.container-fluid {
  padding: 0;
}
.cid-rSJn26aS31 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
  width: 100% !important;
}
.cid-rSJn26aS31 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rSJn26aS31 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rSJn26aS31 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rSJn26aS31 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rSJn26aS31 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rSJn26aS31 .img-item {
    width: 100% !important;
  }
  .cid-rSJn26aS31 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rSJn4wc75e {
  background-image: url("../../../assets/images/schuld3-2000x1250.jpg");
}
.cid-rSJn4wc75e P {
  color: #767676;
}
.cid-rSJn7Afsbf {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSJn7Afsbf .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
}
.cid-rSJn7Afsbf .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rSJn7Afsbf .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rSJn7Afsbf .mbr-figure,
  .cid-rSJn7Afsbf img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rSJn7Afsbf .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rSJn7Afsbf h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJn7Afsbf .h2_block {
  margin-bottom: 20px;
}
.cid-rSJn7Afsbf .mbr-figure {
  align-self: flex-start;
}
.cid-rSJnemvi5L {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSJnemvi5L .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSJnemvi5L h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJnemvi5L .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSJnemvi5L .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u7yVGpNFy6 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVGpNFy6 .content {
    text-align: center;
  }
  .cid-u7yVGpNFy6 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVGpNFy6 .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVGpNFy6 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVGpNFy6 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVGpNFy6 .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVGpNFy6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVGpNFy6 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVGpNFy6 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVGpNFy6 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVGpNFy6 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVGpNFy6 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVGpNFy6 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVGpNFy6 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVGpNFy6 H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVGpNFy6 P {
  color: #ffffff;
}
.cid-u7yVGpNFy6 .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVGpNFy6 .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVGpNFy6 .logo_footer {
  position: relative;
}
.cid-u7yVGpNFy6 .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVGpNFy6 .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVGpNFy6 .col,
  .cid-u7yVGpNFy6 .col-1,
  .cid-u7yVGpNFy6 .col-10,
  .cid-u7yVGpNFy6 .col-11,
  .cid-u7yVGpNFy6 .col-12,
  .cid-u7yVGpNFy6 .col-2,
  .cid-u7yVGpNFy6 .col-3,
  .cid-u7yVGpNFy6 .col-4,
  .cid-u7yVGpNFy6 .col-5,
  .cid-u7yVGpNFy6 .col-6,
  .cid-u7yVGpNFy6 .col-7,
  .cid-u7yVGpNFy6 .col-8,
  .cid-u7yVGpNFy6 .col-9,
  .cid-u7yVGpNFy6 .col-auto,
  .cid-u7yVGpNFy6 .col-lg,
  .cid-u7yVGpNFy6 .col-lg-1,
  .cid-u7yVGpNFy6 .col-lg-10,
  .cid-u7yVGpNFy6 .col-lg-11,
  .cid-u7yVGpNFy6 .col-lg-12,
  .cid-u7yVGpNFy6 .col-lg-2,
  .cid-u7yVGpNFy6 .col-lg-3,
  .cid-u7yVGpNFy6 .col-lg-4,
  .cid-u7yVGpNFy6 .col-lg-5,
  .cid-u7yVGpNFy6 .col-lg-6,
  .cid-u7yVGpNFy6 .col-lg-7,
  .cid-u7yVGpNFy6 .col-lg-8,
  .cid-u7yVGpNFy6 .col-lg-9,
  .cid-u7yVGpNFy6 .col-lg-auto,
  .cid-u7yVGpNFy6 .col-md,
  .cid-u7yVGpNFy6 .col-md-1,
  .cid-u7yVGpNFy6 .col-md-10,
  .cid-u7yVGpNFy6 .col-md-11,
  .cid-u7yVGpNFy6 .col-md-12,
  .cid-u7yVGpNFy6 .col-md-2,
  .cid-u7yVGpNFy6 .col-md-3,
  .cid-u7yVGpNFy6 .col-md-4,
  .cid-u7yVGpNFy6 .col-md-5,
  .cid-u7yVGpNFy6 .col-md-6,
  .cid-u7yVGpNFy6 .col-md-7,
  .cid-u7yVGpNFy6 .col-md-8,
  .cid-u7yVGpNFy6 .col-md-9,
  .cid-u7yVGpNFy6 .col-md-auto,
  .cid-u7yVGpNFy6 .col-sm,
  .cid-u7yVGpNFy6 .col-sm-1,
  .cid-u7yVGpNFy6 .col-sm-10,
  .cid-u7yVGpNFy6 .col-sm-11,
  .cid-u7yVGpNFy6 .col-sm-12,
  .cid-u7yVGpNFy6 .col-sm-2,
  .cid-u7yVGpNFy6 .col-sm-3,
  .cid-u7yVGpNFy6 .col-sm-4,
  .cid-u7yVGpNFy6 .col-sm-5,
  .cid-u7yVGpNFy6 .col-sm-6,
  .cid-u7yVGpNFy6 .col-sm-7,
  .cid-u7yVGpNFy6 .col-sm-8,
  .cid-u7yVGpNFy6 .col-sm-9,
  .cid-u7yVGpNFy6 .col-sm-auto,
  .cid-u7yVGpNFy6 .col-xl,
  .cid-u7yVGpNFy6 .col-xl-1,
  .cid-u7yVGpNFy6 .col-xl-10,
  .cid-u7yVGpNFy6 .col-xl-11,
  .cid-u7yVGpNFy6 .col-xl-12,
  .cid-u7yVGpNFy6 .col-xl-2,
  .cid-u7yVGpNFy6 .col-xl-3,
  .cid-u7yVGpNFy6 .col-xl-4,
  .cid-u7yVGpNFy6 .col-xl-5,
  .cid-u7yVGpNFy6 .col-xl-6,
  .cid-u7yVGpNFy6 .col-xl-7,
  .cid-u7yVGpNFy6 .col-xl-8,
  .cid-u7yVGpNFy6 .col-xl-9,
  .cid-u7yVGpNFy6 .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVGpNFy6 .content {
    text-align: left;
  }
  .cid-u7yVGpNFy6 .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVGpNFy6 .logo_footer_box {
    position: relative;
  }
  .cid-u7yVGpNFy6 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVGpNFy6 .logo_footer {
    position: relative;
  }
  .cid-u7yVGpNFy6 .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVGpNFy6 .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRQbyEey7f {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRQbyEey7f {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rRQbC9LCEi {
  background-image: url("../../../assets/images/img-0005-1-2000x1333.jpg");
}
.cid-rRQbC9LCEi P {
  color: #767676;
}
.cid-rRQcbf9HYr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRQcbf9HYr .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRQcbf9HYr h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRQcbf9HYr .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRQcbf9HYr .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u5B3b1ph33 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u5B3b1ph33 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u5B3b1ph33 p {
  color: #767676;
  text-align: left;
}
.cid-u5B3b1ph33 .card-box {
  padding-top: 2rem;
}
.cid-u5B3b1ph33 .card-wrapper {
  height: 100%;
}
.cid-u5B3b1ph33 P {
  text-align: left;
}
.cid-u6UwskU2kp {
  padding-top: 30px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-u6UwskU2kp .images-container.container-fluid {
  padding: 0;
}
.cid-u6UwskU2kp .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-u6UwskU2kp .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-u6UwskU2kp .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-u6UwskU2kp .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-u6UwskU2kp .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-u6UwskU2kp .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-u6UwskU2kp .img-item {
    width: 100% !important;
  }
  .cid-u6UwskU2kp .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRQk7pxItK {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRQk7pxItK .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRQk7pxItK .video-block {
    width: 100% !important;
  }
}
.cid-rRQk7pxItK .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRQdZwuDev {
  padding-top: 135px;
  padding-bottom: 105px;
  background-color: #f9ceb2;
}
.cid-rRQdZwuDev P {
  color: #767676;
}
.cid-rRQdZwuDev .display-2 {
  font-size: 3rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-rRQdZwuDev .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-rRQdZwuDev .mbr-text,
.cid-rRQdZwuDev .mbr-section-btn {
  color: #1d1d1b;
}
.cid-rRQega45Fa {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRQega45Fa .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRQega45Fa h2 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRQega45Fa .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRQepSUqt9 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRQepSUqt9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRQepSUqt9 p {
  color: #767676;
  text-align: left;
}
.cid-rRQepSUqt9 .card-box {
  padding-top: 2rem;
}
.cid-rRQepSUqt9 .card-wrapper {
  height: 100%;
}
.cid-rRQepSUqt9 P {
  color: #1d1d1b;
}
.cid-rRQeNoIHEF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRQeNoIHEF .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRQeNoIHEF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRQeNoIHEF .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRQeNoIHEF .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRQf9Yq1Vx {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRQf9Yq1Vx .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRQf9Yq1Vx .video-block {
    width: 100% !important;
  }
}
.cid-rRQf9Yq1Vx .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRQfyka2fJ {
  background-image: url("../../../assets/images/dsc-5059-cut-1998x1368-22-copy-1998x1368.jpg");
}
.cid-rRQfyka2fJ P {
  color: #767676;
}
.cid-rRQfGAl8nL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRQfGAl8nL .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRQfGAl8nL h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRQfGAl8nL .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRQfGAl8nL .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRQg7gyh7H {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRQg7gyh7H .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rRQg7gyh7H .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRQg7gyh7H .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRQg7gyh7H .mbr-figure,
  .cid-rRQg7gyh7H img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRQg7gyh7H .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRQg7gyh7H .mbr-author-desc {
  color: #000000;
}
.cid-rRQg7gyh7H h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRQg7gyh7H .text_block {
  margin-top: 0px;
}
.cid-rRQg7gyh7H .h2_block {
  margin-bottom: 20px;
}
.cid-rRQg7gyh7H .mbr-figure {
  align-self: flex-start;
}
.cid-rRQg7gyh7H .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rRQg7gyh7H .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rRQg7gyh7H .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rRQg7gyh7H .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rRQg7gyh7H .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rRQgmiT1ez {
  background-image: url("../../../assets/images/img-1309ab-900x600.jpg");
}
.cid-rRQgmiT1ez P {
  color: #767676;
}
.cid-rRQgpZqILb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRQgpZqILb .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rRQgpZqILb .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRQgpZqILb .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRQgpZqILb .mbr-figure,
  .cid-rRQgpZqILb img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRQgpZqILb .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRQgpZqILb .mbr-author-desc {
  color: #000000;
}
.cid-rRQgpZqILb h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRQgpZqILb .text_block {
  margin-top: 0px;
}
.cid-rRQgpZqILb .h2_block {
  margin-bottom: 20px;
}
.cid-rRQgpZqILb .mbr-figure {
  align-self: flex-start;
}
.cid-rRQgpZqILb .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rRQgpZqILb .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rRQgpZqILb .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rRQgpZqILb .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rRQgpZqILb .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rRQgwxcGjT {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRQgwxcGjT .images-container.container-fluid {
  padding: 0;
}
.cid-rRQgwxcGjT .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRQgwxcGjT .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRQgwxcGjT .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRQgwxcGjT .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRQgwxcGjT .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRQgwxcGjT .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRQgwxcGjT .img-item {
    width: 100% !important;
  }
  .cid-rRQgwxcGjT .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rUeN4l61vf {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rUeN4l61vf .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rUeN4l61vf .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rUeN4l61vf .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rUeN4l61vf .mbr-figure,
  .cid-rUeN4l61vf img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rUeN4l61vf .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rUeN4l61vf .mbr-author-desc {
  color: #000000;
}
.cid-rUeN4l61vf h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rUeN4l61vf .text_block {
  margin-top: 0px;
}
.cid-rUeN4l61vf .h2_block {
  margin-bottom: 20px;
}
.cid-rUeN4l61vf .mbr-figure {
  align-self: flex-start;
}
.cid-rUeN4l61vf .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rUeN4l61vf .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rUeN4l61vf .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rUeN4l61vf .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rUeN4l61vf .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rRQh88Yn4o {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRQh88Yn4o .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRQh88Yn4o .video-block {
    width: 100% !important;
  }
}
.cid-rRQh88Yn4o .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRQhi7hsng {
  background-image: url("../../../assets/images/img-6466-800x533.jpg");
}
.cid-rRQhi7hsng P {
  color: #767676;
}
.cid-rRQhs0aaVs {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRQhs0aaVs .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRQhs0aaVs h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRQhs0aaVs .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRQhs0aaVs .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRQhMTiQoZ {
  background: #ffffff;
  padding-top: 45px;
  padding-bottom: 75px;
}
.cid-rRQhMTiQoZ .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRQhMTiQoZ .video-block {
    width: 100% !important;
  }
}
.cid-rRQhMTiQoZ .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRQmg51D3k {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRQmg51D3k .images-container.container-fluid {
  padding: 0;
}
.cid-rRQmg51D3k .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRQmg51D3k .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRQmg51D3k .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRQmg51D3k .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRQmg51D3k .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRQmg51D3k .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRQmg51D3k .img-item {
    width: 100% !important;
  }
  .cid-rRQmg51D3k .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRQiJaF0YU {
  background-image: url("../../../assets/images/img-6459-433x650.jpg");
}
.cid-rRQiJaF0YU P {
  color: #767676;
}
.cid-rRQi3i3p75 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRQi3i3p75 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRQi3i3p75 p {
  color: #767676;
  text-align: left;
}
.cid-rRQi3i3p75 .card-box {
  padding-top: 2rem;
}
.cid-rRQi3i3p75 .card-wrapper {
  height: 100%;
}
.cid-rRQi6iQSjl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRQi6iQSjl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRQi6iQSjl p {
  color: #767676;
  text-align: left;
}
.cid-rRQi6iQSjl .card-box {
  padding-top: 2rem;
}
.cid-rRQi6iQSjl .card-wrapper {
  height: 100%;
}
.cid-rRQjdGHcKX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRQjdGHcKX .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRQjdGHcKX h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRQjdGHcKX .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRQjdGHcKX .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u7yVVYYfQY {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVVYYfQY .content {
    text-align: center;
  }
  .cid-u7yVVYYfQY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVVYYfQY .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVVYYfQY .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVVYYfQY .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVVYYfQY .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVVYYfQY .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVVYYfQY .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVVYYfQY .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVVYYfQY .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVVYYfQY .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVVYYfQY .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVVYYfQY .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVVYYfQY .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVVYYfQY H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVVYYfQY P {
  color: #ffffff;
}
.cid-u7yVVYYfQY .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVVYYfQY .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVVYYfQY .logo_footer {
  position: relative;
}
.cid-u7yVVYYfQY .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVVYYfQY .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVVYYfQY .col,
  .cid-u7yVVYYfQY .col-1,
  .cid-u7yVVYYfQY .col-10,
  .cid-u7yVVYYfQY .col-11,
  .cid-u7yVVYYfQY .col-12,
  .cid-u7yVVYYfQY .col-2,
  .cid-u7yVVYYfQY .col-3,
  .cid-u7yVVYYfQY .col-4,
  .cid-u7yVVYYfQY .col-5,
  .cid-u7yVVYYfQY .col-6,
  .cid-u7yVVYYfQY .col-7,
  .cid-u7yVVYYfQY .col-8,
  .cid-u7yVVYYfQY .col-9,
  .cid-u7yVVYYfQY .col-auto,
  .cid-u7yVVYYfQY .col-lg,
  .cid-u7yVVYYfQY .col-lg-1,
  .cid-u7yVVYYfQY .col-lg-10,
  .cid-u7yVVYYfQY .col-lg-11,
  .cid-u7yVVYYfQY .col-lg-12,
  .cid-u7yVVYYfQY .col-lg-2,
  .cid-u7yVVYYfQY .col-lg-3,
  .cid-u7yVVYYfQY .col-lg-4,
  .cid-u7yVVYYfQY .col-lg-5,
  .cid-u7yVVYYfQY .col-lg-6,
  .cid-u7yVVYYfQY .col-lg-7,
  .cid-u7yVVYYfQY .col-lg-8,
  .cid-u7yVVYYfQY .col-lg-9,
  .cid-u7yVVYYfQY .col-lg-auto,
  .cid-u7yVVYYfQY .col-md,
  .cid-u7yVVYYfQY .col-md-1,
  .cid-u7yVVYYfQY .col-md-10,
  .cid-u7yVVYYfQY .col-md-11,
  .cid-u7yVVYYfQY .col-md-12,
  .cid-u7yVVYYfQY .col-md-2,
  .cid-u7yVVYYfQY .col-md-3,
  .cid-u7yVVYYfQY .col-md-4,
  .cid-u7yVVYYfQY .col-md-5,
  .cid-u7yVVYYfQY .col-md-6,
  .cid-u7yVVYYfQY .col-md-7,
  .cid-u7yVVYYfQY .col-md-8,
  .cid-u7yVVYYfQY .col-md-9,
  .cid-u7yVVYYfQY .col-md-auto,
  .cid-u7yVVYYfQY .col-sm,
  .cid-u7yVVYYfQY .col-sm-1,
  .cid-u7yVVYYfQY .col-sm-10,
  .cid-u7yVVYYfQY .col-sm-11,
  .cid-u7yVVYYfQY .col-sm-12,
  .cid-u7yVVYYfQY .col-sm-2,
  .cid-u7yVVYYfQY .col-sm-3,
  .cid-u7yVVYYfQY .col-sm-4,
  .cid-u7yVVYYfQY .col-sm-5,
  .cid-u7yVVYYfQY .col-sm-6,
  .cid-u7yVVYYfQY .col-sm-7,
  .cid-u7yVVYYfQY .col-sm-8,
  .cid-u7yVVYYfQY .col-sm-9,
  .cid-u7yVVYYfQY .col-sm-auto,
  .cid-u7yVVYYfQY .col-xl,
  .cid-u7yVVYYfQY .col-xl-1,
  .cid-u7yVVYYfQY .col-xl-10,
  .cid-u7yVVYYfQY .col-xl-11,
  .cid-u7yVVYYfQY .col-xl-12,
  .cid-u7yVVYYfQY .col-xl-2,
  .cid-u7yVVYYfQY .col-xl-3,
  .cid-u7yVVYYfQY .col-xl-4,
  .cid-u7yVVYYfQY .col-xl-5,
  .cid-u7yVVYYfQY .col-xl-6,
  .cid-u7yVVYYfQY .col-xl-7,
  .cid-u7yVVYYfQY .col-xl-8,
  .cid-u7yVVYYfQY .col-xl-9,
  .cid-u7yVVYYfQY .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVVYYfQY .content {
    text-align: left;
  }
  .cid-u7yVVYYfQY .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVVYYfQY .logo_footer_box {
    position: relative;
  }
  .cid-u7yVVYYfQY .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVVYYfQY .logo_footer {
    position: relative;
  }
  .cid-u7yVVYYfQY .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVVYYfQY .copyright > p {
  color: #f9ceb2;
}
.cid-rYi3CCOmD2 :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-rYi3CCOmD2 .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-rYi3CCOmD2 .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-rYi3CCOmD2 a {
  font-style: normal;
}
.cid-rYi3CCOmD2 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rYi3CCOmD2 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-rYi3CCOmD2 .nav-item:focus,
.cid-rYi3CCOmD2 .nav-link:focus {
  outline: none;
}
.cid-rYi3CCOmD2 .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-rYi3CCOmD2 .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-rYi3CCOmD2 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-rYi3CCOmD2 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rYi3CCOmD2 .menu-logo {
  margin-right: auto;
}
.cid-rYi3CCOmD2 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-rYi3CCOmD2 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rYi3CCOmD2 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rYi3CCOmD2 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rYi3CCOmD2 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rYi3CCOmD2 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rYi3CCOmD2 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rYi3CCOmD2 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-rYi3CCOmD2 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rYi3CCOmD2 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rYi3CCOmD2 .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rYi3CCOmD2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rYi3CCOmD2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rYi3CCOmD2 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rYi3CCOmD2 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rYi3CCOmD2 .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-rYi3CCOmD2 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-rYi3CCOmD2 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rYi3CCOmD2 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rYi3CCOmD2 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rYi3CCOmD2 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rYi3CCOmD2 .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-rYi3CCOmD2 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rYi3CCOmD2 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rYi3CCOmD2 button.navbar-toggler:focus {
  outline: none;
}
.cid-rYi3CCOmD2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rYi3CCOmD2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rYi3CCOmD2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rYi3CCOmD2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rYi3CCOmD2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rYi3CCOmD2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYi3CCOmD2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rYi3CCOmD2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rYi3CCOmD2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rYi3CCOmD2 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-rYi3CCOmD2 .collapsed .btn {
  display: flex;
}
.cid-rYi3CCOmD2 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rYi3CCOmD2 .collapsed .navbar-collapse.collapsing,
.cid-rYi3CCOmD2 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rYi3CCOmD2 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rYi3CCOmD2 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rYi3CCOmD2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rYi3CCOmD2 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rYi3CCOmD2 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rYi3CCOmD2 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-rYi3CCOmD2 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rYi3CCOmD2 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-rYi3CCOmD2 .collapsed button.navbar-toggler {
  display: block;
}
.cid-rYi3CCOmD2 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rYi3CCOmD2 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rYi3CCOmD2 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rYi3CCOmD2 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rYi3CCOmD2 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rYi3CCOmD2 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-rYi3CCOmD2 .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-rYi3CCOmD2 .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-rYi3CCOmD2 .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-rYi3CCOmD2 .navbar-expand {
    flex-direction: column;
  }
  .cid-rYi3CCOmD2 img {
    height: 3rem !important;
  }
  .cid-rYi3CCOmD2 .btn {
    display: flex;
  }
  .cid-rYi3CCOmD2 button.navbar-toggler {
    display: block;
  }
  .cid-rYi3CCOmD2 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rYi3CCOmD2 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rYi3CCOmD2 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rYi3CCOmD2 .navbar-collapse.collapsing,
  .cid-rYi3CCOmD2 .navbar-collapse.show {
    display: block !important;
  }
  .cid-rYi3CCOmD2 .navbar-collapse.collapsing .navbar-nav,
  .cid-rYi3CCOmD2 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rYi3CCOmD2 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rYi3CCOmD2 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rYi3CCOmD2 .navbar-collapse.collapsing .navbar-buttons,
  .cid-rYi3CCOmD2 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rYi3CCOmD2 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rYi3CCOmD2 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rYi3CCOmD2 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rYi3CCOmD2 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rYi3CCOmD2 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rYi3CCOmD2 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-rYi3CCOmD2 .logo_s,
  .cid-rYi3CCOmD2 .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-rYi3CCOmD2 .menu-logo {
    flex-shrink: 3;
  }
}
.cid-rYi3CCOmD2 .navbar-collapse {
  flex-basis: auto;
}
.cid-rYi3CCOmD2 .nav-link:hover,
.cid-rYi3CCOmD2 .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-rYi3CCOmD2 .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-rYi3CCOmD2 .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-rYi3CCOmD2 .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-rYi3CCOmD2 .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-rYi3CCOmD2 .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-rYi3CCOmD2 a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rYi3CCOmD2 a:hover svg polygon,
.cid-rYi3CCOmD2 a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rYi3CCOmD2 .hidden {
  display: none !important;
}
.cid-rYi3CCOmD2 .shoow {
  display: block !important;
}
.cid-rYi3CCOmD2 .navbar-logo a,
.cid-rYi3CCOmD2 .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-rYi3CCOmD2 .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-rYi3CCOmD2 .logo_s {
    height: 2rem !important;
  }
  .cid-rYi3CCOmD2 .navbar-logo a img {
    left: 20px;
  }
  .cid-rYi3CCOmD2 .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-rYi3CCOmD2 .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-rYi3CCOmD2 .stoerer_head,
  .cid-rYi3CCOmD2 .stoerer_text {
    grid-row: 1;
  }
  .cid-rYi3CCOmD2 .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-rYi3CCOmD2 a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rYi3CD8iGV {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rYi3CD8iGV {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rYi861laE6 {
  background-image: url("../../../assets/images/1-7kcgz-q6kd-rgv2cbipmvg-640x424.jpg");
}
.cid-rYi861laE6 h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rYi861laE6 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rYi861laE6 H3 {
  color: #ffffff;
}
.cid-rYi3CDTcPK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYi3CDTcPK .mbr-text,
.cid-rYi3CDTcPK blockquote {
  color: #767676;
}
.cid-rYi3CDTcPK .mbr-text {
  color: #1d1d1b;
}
.cid-rYi3CDTcPK .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYi3CDTcPK h3 {
  font-size: inherit;
}
.cid-rYi3CFx0Bn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYi3CFx0Bn .mbr-text,
.cid-rYi3CFx0Bn blockquote {
  color: #767676;
}
.cid-rYi3CFx0Bn .mbr-text {
  color: #1d1d1b;
}
.cid-rYi3CFx0Bn .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYi3CFx0Bn p {
  margin-bottom: 0px;
}
.cid-rYi3CDH1Dt {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYi3CDH1Dt .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rYi3CDH1Dt .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-rYi3CDH1Dt .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-rYi3CDH1Dt .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-rYi3CDH1Dt .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rYi3CDH1Dt .testimonial-text {
  text-align: left;
}
.cid-rYi9nZPNmI {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rYi9nZPNmI .mbr-text,
.cid-rYi9nZPNmI blockquote {
  color: #767676;
}
.cid-rYi9nZPNmI .mbr-text {
  color: #1d1d1b;
}
.cid-rYi9nZPNmI .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYi9nZPNmI p {
  margin-bottom: 0px;
}
.cid-rYi9nZPNmI .mbr-text P {
  text-align: left;
}
.cid-rYi9IFy59h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYi9IFy59h .mbr-text,
.cid-rYi9IFy59h blockquote {
  color: #767676;
}
.cid-rYi9IFy59h .mbr-text {
  color: #1d1d1b;
}
.cid-rYi9IFy59h .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYi9IFy59h h3 {
  font-size: inherit;
}
.cid-rYi9IFy59h .mbr-text H3 {
  text-align: left;
}
.cid-rYi9OxTQ0s {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYi9OxTQ0s .mbr-text,
.cid-rYi9OxTQ0s blockquote {
  color: #767676;
}
.cid-rYi9OxTQ0s .mbr-text {
  color: #1d1d1b;
}
.cid-rYi9OxTQ0s .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYi9OxTQ0s p {
  margin-bottom: 0px;
}
.cid-rYi9OxTQ0s .mbr-text P {
  text-align: left;
}
.cid-rYiacXCo69 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYiacXCo69 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rYiacXCo69 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-rYiacXCo69 .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-rYiacXCo69 .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-rYiacXCo69 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rYiajlcM63 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYiajlcM63 .mbr-text,
.cid-rYiajlcM63 blockquote {
  color: #767676;
}
.cid-rYiajlcM63 .mbr-text {
  color: #1d1d1b;
}
.cid-rYiajlcM63 .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYiajlcM63 h3 {
  font-size: inherit;
}
.cid-rYiajlcM63 .mbr-text H3 {
  text-align: left;
}
.cid-rYiaopmptD {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rYiaopmptD .mbr-text,
.cid-rYiaopmptD blockquote {
  color: #767676;
}
.cid-rYiaopmptD .mbr-text {
  color: #1d1d1b;
}
.cid-rYiaopmptD .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYiaopmptD p {
  margin-bottom: 0px;
}
.cid-rYiaopmptD .mbr-text P {
  text-align: left;
}
.cid-rYi3CEktRf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYi3CEktRf .testimonial-text {
  font-weight: 400;
  color: #1d1d1b;
  text-align: left;
}
.cid-rYi3CEktRf .mbr-text {
  line-height: 1.32 !important;
}
.cid-rYi3CEktRf .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rYi3CEktRf .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rYi3CEktRf .h2_block {
  margin-bottom: 20px;
}
.cid-rYi3CEktRf .px-3 {
  padding-left: 0rem !important;
}
.cid-rYi3CEktRf .py-2 {
  padding-top: 0rem !important;
  padding-bottom: .0rem !important;
}
.cid-rYi3CEktRf .pr-lg-5 {
  padding-right: 1rem !important;
}
.cid-rYi3CEktRf .mbr-figure {
  margin-top: 20px;
  float: left;
}
.cid-rYi3CEktRf .media-content,
.cid-rYi3CEktRf .mbr-figure {
  align-self: flex-start;
}
.cid-rYi3CEktRf p {
  margin-bottom: 0px;
}
.cid-rYi3CEktRf .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 991px) {
  .cid-rYi3CEktRf .mbr-figure,
  .cid-rYi3CEktRf img {
    width: 100%;
    margin-top: 20px;
    margin: auto;
  }
  .cid-rYi3CEktRf .col-10,
  .cid-rYi3CEktRf .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-rYi3CEktRf .pr-lg-5 {
    padding-right: 0rem !important;
    padding-top: 1rem !important;
  }
  .cid-rYi3CEktRf .media-content {
    padding-top: 1.5rem !important;
  }
}
@media (max-width: 768px) {
  .cid-rYi3CEktRf .col-10,
  .cid-rYi3CEktRf .col-md-8 {
    max-width: 100%;
  }
}
.cid-rYi3CEktRf h3 {
  margin-top: 1rem;
  color: #1d1d1b;
}
.cid-rYiaKX6AIt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYiaKX6AIt .mbr-text,
.cid-rYiaKX6AIt blockquote {
  color: #767676;
}
.cid-rYiaKX6AIt .mbr-text {
  color: #1d1d1b;
}
.cid-rYiaKX6AIt .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYiaKX6AIt p {
  margin-bottom: 0px;
}
.cid-rYiaKX6AIt .mbr-text P {
  text-align: left;
}
.cid-rYi3CG0d0n {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 15px;
}
.cid-rYi3CG0d0n .video-block {
  margin: 10px auto 10px auto;
}
.cid-rYi3CG0d0n .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-rYi3CG0d0n .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .cid-rYi3CG0d0n .video-block {
    width: 100% !important;
  }
}
.cid-rYi3CG0d0n .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rYi3CG0d0n .testimonial-text {
  text-align: left;
}
.cid-rYiaWvngRP {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYiaWvngRP .mbr-text,
.cid-rYiaWvngRP blockquote {
  color: #767676;
}
.cid-rYiaWvngRP .mbr-text {
  color: #1d1d1b;
}
.cid-rYiaWvngRP .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYiaWvngRP p {
  margin-bottom: 0px;
}
.cid-rYiaWvngRP .mbr-text P {
  text-align: left;
}
.cid-rYib1uNVvM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYib1uNVvM .mbr-text,
.cid-rYib1uNVvM blockquote {
  color: #767676;
}
.cid-rYib1uNVvM .mbr-text {
  color: #1d1d1b;
}
.cid-rYib1uNVvM .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYib1uNVvM h3 {
  font-size: inherit;
}
.cid-rYib1uNVvM .mbr-text H3 {
  text-align: left;
}
.cid-rYib2CROlQ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYib2CROlQ .mbr-text,
.cid-rYib2CROlQ blockquote {
  color: #767676;
}
.cid-rYib2CROlQ .mbr-text {
  color: #1d1d1b;
}
.cid-rYib2CROlQ .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYib2CROlQ p {
  margin-bottom: 0px;
}
.cid-rYib2CROlQ .mbr-text P {
  text-align: left;
}
.cid-rYib8XEn9f {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYib8XEn9f P {
  color: #767676;
}
.cid-rYib8XEn9f .display-2 {
  font-size: 3rem;
  font-weight: 200;
}
.cid-rYib8XEn9f .justify-content-md-right {
  justify-content: flex-end !important;
}
@media (max-width: 768px) {
  .cid-rYib8XEn9f .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-rYiclEfuKu {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYiclEfuKu .mbr-text,
.cid-rYiclEfuKu blockquote {
  color: #767676;
}
.cid-rYiclEfuKu .mbr-text {
  color: #1d1d1b;
}
.cid-rYiclEfuKu .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYiclEfuKu p {
  margin-bottom: 0px;
}
.cid-rYiclEfuKu .mbr-text P {
  text-align: left;
}
.cid-rYicpHIPeg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYicpHIPeg .mbr-text,
.cid-rYicpHIPeg blockquote {
  color: #767676;
}
.cid-rYicpHIPeg .mbr-text {
  color: #1d1d1b;
}
.cid-rYicpHIPeg .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYicpHIPeg h3 {
  font-size: inherit;
}
.cid-rYicpHIPeg .mbr-text H3 {
  text-align: left;
}
.cid-rYicqQv5GD {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYicqQv5GD .mbr-text,
.cid-rYicqQv5GD blockquote {
  color: #767676;
}
.cid-rYicqQv5GD .mbr-text {
  color: #1d1d1b;
}
.cid-rYicqQv5GD .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYicqQv5GD p {
  margin-bottom: 0px;
}
.cid-rYicqQv5GD .mbr-text P {
  text-align: left;
}
.cid-rYicG90CTI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYicG90CTI .mbr-text,
.cid-rYicG90CTI blockquote {
  color: #767676;
}
.cid-rYicG90CTI .mbr-text {
  color: #1d1d1b;
}
.cid-rYicG90CTI .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYicG90CTI h3 {
  font-size: inherit;
}
.cid-rYicG90CTI .mbr-text H3 {
  text-align: left;
}
.cid-rYicHfmjKF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYicHfmjKF .mbr-text,
.cid-rYicHfmjKF blockquote {
  color: #767676;
}
.cid-rYicHfmjKF .mbr-text {
  color: #1d1d1b;
}
.cid-rYicHfmjKF .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYicHfmjKF p {
  margin-bottom: 0px;
}
.cid-rYicHfmjKF .mbr-text P {
  text-align: left;
}
.cid-rYicOup7UR {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYicOup7UR .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rYicOup7UR .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-rYicOup7UR .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-rYicOup7UR .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-rYicOup7UR .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rYicYqILOF {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYicYqILOF .mbr-text,
.cid-rYicYqILOF blockquote {
  color: #767676;
}
.cid-rYicYqILOF .mbr-text {
  color: #1d1d1b;
}
.cid-rYicYqILOF .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYicYqILOF h3 {
  font-size: inherit;
}
.cid-rYicYqILOF .mbr-text H3 {
  text-align: left;
}
.cid-rYid28BGOT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYid28BGOT .mbr-text,
.cid-rYid28BGOT blockquote {
  color: #767676;
}
.cid-rYid28BGOT .mbr-text {
  color: #1d1d1b;
}
.cid-rYid28BGOT .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYid28BGOT p {
  margin-bottom: 0px;
}
.cid-rYid28BGOT .mbr-text P {
  text-align: left;
}
.cid-rYid4ZgOLD {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYid4ZgOLD .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rYid4ZgOLD .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-rYid4ZgOLD .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-rYid4ZgOLD .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-rYid4ZgOLD .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rYidfnMygu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYidfnMygu .mbr-text,
.cid-rYidfnMygu blockquote {
  color: #767676;
}
.cid-rYidfnMygu .mbr-text {
  color: #1d1d1b;
}
.cid-rYidfnMygu .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYidfnMygu p {
  margin-bottom: 0px;
}
.cid-rYidfnMygu .mbr-text P {
  text-align: left;
}
.cid-rYidn5jT5W {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYidn5jT5W .mbr-text,
.cid-rYidn5jT5W blockquote {
  color: #767676;
}
.cid-rYidn5jT5W .mbr-text {
  color: #1d1d1b;
}
.cid-rYidn5jT5W .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYidn5jT5W h3 {
  font-size: inherit;
}
.cid-rYidn5jT5W .mbr-text H3 {
  text-align: left;
}
.cid-rYido2OSUA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rYido2OSUA .mbr-text,
.cid-rYido2OSUA blockquote {
  color: #767676;
}
.cid-rYido2OSUA .mbr-text {
  color: #1d1d1b;
}
.cid-rYido2OSUA .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYido2OSUA p {
  margin-bottom: 0px;
}
.cid-rYido2OSUA .mbr-text P {
  text-align: left;
}
.cid-rYidAgvVAh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYidAgvVAh .testimonial-text {
  font-weight: 400;
  color: #1d1d1b;
}
.cid-rYidAgvVAh .mbr-text {
  line-height: 1.32 !important;
}
.cid-rYidAgvVAh .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rYidAgvVAh .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-rYidAgvVAh .h2_block {
  margin-bottom: 20px;
}
.cid-rYidAgvVAh .px-3 {
  padding-left: 0rem !important;
}
.cid-rYidAgvVAh .py-2 {
  padding-top: 0rem !important;
  padding-bottom: .0rem !important;
}
.cid-rYidAgvVAh .pr-lg-5 {
  padding-right: 1rem !important;
}
.cid-rYidAgvVAh .mbr-figure {
  margin-top: 20px;
  float: left;
}
.cid-rYidAgvVAh .media-content,
.cid-rYidAgvVAh .mbr-figure {
  align-self: flex-start;
}
.cid-rYidAgvVAh p {
  margin-bottom: 0px;
}
.cid-rYidAgvVAh .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 991px) {
  .cid-rYidAgvVAh .mbr-figure,
  .cid-rYidAgvVAh img {
    width: 100%;
    margin-top: 20px;
    margin: auto;
  }
  .cid-rYidAgvVAh .col-10,
  .cid-rYidAgvVAh .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-rYidAgvVAh .pr-lg-5 {
    padding-right: 0rem !important;
    padding-top: 1rem !important;
  }
  .cid-rYidAgvVAh .media-content {
    padding-top: 1.5rem !important;
  }
}
@media (max-width: 768px) {
  .cid-rYidAgvVAh .col-10,
  .cid-rYidAgvVAh .col-md-8 {
    max-width: 100%;
  }
}
.cid-rYidAgvVAh h3 {
  margin-top: 1rem;
  color: #1d1d1b;
}
.cid-rYidFn3Tsv {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYidFn3Tsv .mbr-text,
.cid-rYidFn3Tsv blockquote {
  color: #767676;
}
.cid-rYidFn3Tsv .mbr-text {
  color: #1d1d1b;
}
.cid-rYidFn3Tsv .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYidFn3Tsv p {
  margin-bottom: 0px;
}
.cid-rYidFn3Tsv .mbr-text P {
  text-align: left;
}
.cid-rYidWMdxZ3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYidWMdxZ3 .mbr-text,
.cid-rYidWMdxZ3 blockquote {
  color: #767676;
}
.cid-rYidWMdxZ3 .mbr-text {
  color: #1d1d1b;
}
.cid-rYidWMdxZ3 .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYidWMdxZ3 h3 {
  font-size: inherit;
}
.cid-rYidWMdxZ3 .mbr-text H3 {
  text-align: left;
}
.cid-rYidXvK6vH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYidXvK6vH .mbr-text,
.cid-rYidXvK6vH blockquote {
  color: #767676;
}
.cid-rYidXvK6vH .mbr-text {
  color: #1d1d1b;
}
.cid-rYidXvK6vH .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYidXvK6vH p {
  margin-bottom: 0px;
}
.cid-rYidXvK6vH .mbr-text P {
  text-align: left;
}
.cid-rYie14UwtF {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rYie14UwtF .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rYie14UwtF .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-rYie14UwtF .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-rYie14UwtF .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-rYie14UwtF .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rYim7A34PW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYim7A34PW .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rYim7A34PW .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-rYim7A34PW .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-rYim7A34PW .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-rYim7A34PW .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rYiej4vwRO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYiej4vwRO .mbr-text,
.cid-rYiej4vwRO blockquote {
  color: #767676;
}
.cid-rYiej4vwRO .mbr-text {
  color: #1d1d1b;
}
.cid-rYiej4vwRO .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYiej4vwRO p {
  margin-bottom: 0px;
}
.cid-rYiej4vwRO .mbr-text P {
  text-align: left;
}
.cid-rYim8g400T {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYim8g400T .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rYim8g400T .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-rYim8g400T .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-rYim8g400T .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-rYim8g400T .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rYieOcSMEl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rYieOcSMEl .mbr-text,
.cid-rYieOcSMEl blockquote {
  color: #767676;
}
.cid-rYieOcSMEl .mbr-text {
  color: #1d1d1b;
}
.cid-rYieOcSMEl .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYieOcSMEl h3 {
  font-size: inherit;
}
.cid-rYieOcSMEl .mbr-text H3 {
  text-align: left;
}
.cid-rYieQa3lrY {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rYieQa3lrY .mbr-text,
.cid-rYieQa3lrY blockquote {
  color: #767676;
}
.cid-rYieQa3lrY .mbr-text {
  color: #1d1d1b;
}
.cid-rYieQa3lrY .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-rYieQa3lrY p {
  margin-bottom: 0px;
}
.cid-rYieQa3lrY .mbr-text P {
  text-align: left;
}
.cid-u7A8z2vLT1 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7A8z2vLT1 .content {
    text-align: center;
  }
  .cid-u7A8z2vLT1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7A8z2vLT1 .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7A8z2vLT1 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7A8z2vLT1 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7A8z2vLT1 .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7A8z2vLT1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7A8z2vLT1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7A8z2vLT1 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7A8z2vLT1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7A8z2vLT1 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7A8z2vLT1 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7A8z2vLT1 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7A8z2vLT1 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7A8z2vLT1 H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7A8z2vLT1 P {
  color: #ffffff;
}
.cid-u7A8z2vLT1 .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7A8z2vLT1 .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7A8z2vLT1 .logo_footer {
  position: relative;
}
.cid-u7A8z2vLT1 .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7A8z2vLT1 .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7A8z2vLT1 .col,
  .cid-u7A8z2vLT1 .col-1,
  .cid-u7A8z2vLT1 .col-10,
  .cid-u7A8z2vLT1 .col-11,
  .cid-u7A8z2vLT1 .col-12,
  .cid-u7A8z2vLT1 .col-2,
  .cid-u7A8z2vLT1 .col-3,
  .cid-u7A8z2vLT1 .col-4,
  .cid-u7A8z2vLT1 .col-5,
  .cid-u7A8z2vLT1 .col-6,
  .cid-u7A8z2vLT1 .col-7,
  .cid-u7A8z2vLT1 .col-8,
  .cid-u7A8z2vLT1 .col-9,
  .cid-u7A8z2vLT1 .col-auto,
  .cid-u7A8z2vLT1 .col-lg,
  .cid-u7A8z2vLT1 .col-lg-1,
  .cid-u7A8z2vLT1 .col-lg-10,
  .cid-u7A8z2vLT1 .col-lg-11,
  .cid-u7A8z2vLT1 .col-lg-12,
  .cid-u7A8z2vLT1 .col-lg-2,
  .cid-u7A8z2vLT1 .col-lg-3,
  .cid-u7A8z2vLT1 .col-lg-4,
  .cid-u7A8z2vLT1 .col-lg-5,
  .cid-u7A8z2vLT1 .col-lg-6,
  .cid-u7A8z2vLT1 .col-lg-7,
  .cid-u7A8z2vLT1 .col-lg-8,
  .cid-u7A8z2vLT1 .col-lg-9,
  .cid-u7A8z2vLT1 .col-lg-auto,
  .cid-u7A8z2vLT1 .col-md,
  .cid-u7A8z2vLT1 .col-md-1,
  .cid-u7A8z2vLT1 .col-md-10,
  .cid-u7A8z2vLT1 .col-md-11,
  .cid-u7A8z2vLT1 .col-md-12,
  .cid-u7A8z2vLT1 .col-md-2,
  .cid-u7A8z2vLT1 .col-md-3,
  .cid-u7A8z2vLT1 .col-md-4,
  .cid-u7A8z2vLT1 .col-md-5,
  .cid-u7A8z2vLT1 .col-md-6,
  .cid-u7A8z2vLT1 .col-md-7,
  .cid-u7A8z2vLT1 .col-md-8,
  .cid-u7A8z2vLT1 .col-md-9,
  .cid-u7A8z2vLT1 .col-md-auto,
  .cid-u7A8z2vLT1 .col-sm,
  .cid-u7A8z2vLT1 .col-sm-1,
  .cid-u7A8z2vLT1 .col-sm-10,
  .cid-u7A8z2vLT1 .col-sm-11,
  .cid-u7A8z2vLT1 .col-sm-12,
  .cid-u7A8z2vLT1 .col-sm-2,
  .cid-u7A8z2vLT1 .col-sm-3,
  .cid-u7A8z2vLT1 .col-sm-4,
  .cid-u7A8z2vLT1 .col-sm-5,
  .cid-u7A8z2vLT1 .col-sm-6,
  .cid-u7A8z2vLT1 .col-sm-7,
  .cid-u7A8z2vLT1 .col-sm-8,
  .cid-u7A8z2vLT1 .col-sm-9,
  .cid-u7A8z2vLT1 .col-sm-auto,
  .cid-u7A8z2vLT1 .col-xl,
  .cid-u7A8z2vLT1 .col-xl-1,
  .cid-u7A8z2vLT1 .col-xl-10,
  .cid-u7A8z2vLT1 .col-xl-11,
  .cid-u7A8z2vLT1 .col-xl-12,
  .cid-u7A8z2vLT1 .col-xl-2,
  .cid-u7A8z2vLT1 .col-xl-3,
  .cid-u7A8z2vLT1 .col-xl-4,
  .cid-u7A8z2vLT1 .col-xl-5,
  .cid-u7A8z2vLT1 .col-xl-6,
  .cid-u7A8z2vLT1 .col-xl-7,
  .cid-u7A8z2vLT1 .col-xl-8,
  .cid-u7A8z2vLT1 .col-xl-9,
  .cid-u7A8z2vLT1 .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7A8z2vLT1 .content {
    text-align: left;
  }
  .cid-u7A8z2vLT1 .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7A8z2vLT1 .logo_footer_box {
    position: relative;
  }
  .cid-u7A8z2vLT1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7A8z2vLT1 .logo_footer {
    position: relative;
  }
  .cid-u7A8z2vLT1 .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7A8z2vLT1 .copyright > p {
  color: #f9ceb2;
}
.cid-ser4rNr0dz :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-ser4rNr0dz .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-ser4rNr0dz .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-ser4rNr0dz a {
  font-style: normal;
}
.cid-ser4rNr0dz .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ser4rNr0dz .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-ser4rNr0dz .nav-item:focus,
.cid-ser4rNr0dz .nav-link:focus {
  outline: none;
}
.cid-ser4rNr0dz .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-ser4rNr0dz .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-ser4rNr0dz .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-ser4rNr0dz .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ser4rNr0dz .menu-logo {
  margin-right: auto;
}
.cid-ser4rNr0dz .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-ser4rNr0dz .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-ser4rNr0dz .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ser4rNr0dz .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ser4rNr0dz .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-ser4rNr0dz .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ser4rNr0dz .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-ser4rNr0dz .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-ser4rNr0dz .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ser4rNr0dz .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ser4rNr0dz .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ser4rNr0dz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ser4rNr0dz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ser4rNr0dz .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ser4rNr0dz .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ser4rNr0dz .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-ser4rNr0dz .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-ser4rNr0dz .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-ser4rNr0dz .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ser4rNr0dz .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ser4rNr0dz .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ser4rNr0dz .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-ser4rNr0dz .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ser4rNr0dz button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-ser4rNr0dz button.navbar-toggler:focus {
  outline: none;
}
.cid-ser4rNr0dz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ser4rNr0dz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ser4rNr0dz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ser4rNr0dz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ser4rNr0dz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ser4rNr0dz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ser4rNr0dz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ser4rNr0dz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ser4rNr0dz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ser4rNr0dz .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-ser4rNr0dz .collapsed .btn {
  display: flex;
}
.cid-ser4rNr0dz .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ser4rNr0dz .collapsed .navbar-collapse.collapsing,
.cid-ser4rNr0dz .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-ser4rNr0dz .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ser4rNr0dz .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ser4rNr0dz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ser4rNr0dz .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ser4rNr0dz .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ser4rNr0dz .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-ser4rNr0dz .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ser4rNr0dz .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-ser4rNr0dz .collapsed button.navbar-toggler {
  display: block;
}
.cid-ser4rNr0dz .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ser4rNr0dz .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ser4rNr0dz .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-ser4rNr0dz .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ser4rNr0dz .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ser4rNr0dz .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-ser4rNr0dz .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-ser4rNr0dz .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-ser4rNr0dz .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-ser4rNr0dz .navbar-expand {
    flex-direction: column;
  }
  .cid-ser4rNr0dz img {
    height: 3rem !important;
  }
  .cid-ser4rNr0dz .btn {
    display: flex;
  }
  .cid-ser4rNr0dz button.navbar-toggler {
    display: block;
  }
  .cid-ser4rNr0dz .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ser4rNr0dz .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ser4rNr0dz .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ser4rNr0dz .navbar-collapse.collapsing,
  .cid-ser4rNr0dz .navbar-collapse.show {
    display: block !important;
  }
  .cid-ser4rNr0dz .navbar-collapse.collapsing .navbar-nav,
  .cid-ser4rNr0dz .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ser4rNr0dz .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ser4rNr0dz .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ser4rNr0dz .navbar-collapse.collapsing .navbar-buttons,
  .cid-ser4rNr0dz .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ser4rNr0dz .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ser4rNr0dz .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ser4rNr0dz .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-ser4rNr0dz .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ser4rNr0dz .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ser4rNr0dz .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-ser4rNr0dz .logo_s,
  .cid-ser4rNr0dz .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-ser4rNr0dz .menu-logo {
    flex-shrink: 3;
  }
}
.cid-ser4rNr0dz .navbar-collapse {
  flex-basis: auto;
}
.cid-ser4rNr0dz .nav-link:hover,
.cid-ser4rNr0dz .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-ser4rNr0dz .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-ser4rNr0dz .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-ser4rNr0dz .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-ser4rNr0dz .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-ser4rNr0dz .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-ser4rNr0dz a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ser4rNr0dz a:hover svg polygon,
.cid-ser4rNr0dz a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ser4rNr0dz .hidden {
  display: none !important;
}
.cid-ser4rNr0dz .shoow {
  display: block !important;
}
.cid-ser4rNr0dz .navbar-logo a,
.cid-ser4rNr0dz .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-ser4rNr0dz .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-ser4rNr0dz .logo_s {
    height: 2rem !important;
  }
  .cid-ser4rNr0dz .navbar-logo a img {
    left: 20px;
  }
  .cid-ser4rNr0dz .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-ser4rNr0dz .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-ser4rNr0dz .stoerer_head,
  .cid-ser4rNr0dz .stoerer_text {
    grid-row: 1;
  }
  .cid-ser4rNr0dz .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-ser4rNr0dz a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-ser4rNZdbY {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-ser4rNZdbY {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-sermRkyFwm {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f4c8af;
}
.cid-sermRkyFwm .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-sermRkyFwm .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-sermRkyFwm .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-sermRkyFwm .mbr-figure,
  .cid-sermRkyFwm img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-sermRkyFwm .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-sermRkyFwm h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sermRkyFwm .h2_block {
  margin-bottom: 20px;
}
.cid-sermRkyFwm .mbr-text {
  line-heigt: 1.2 !important;
}
#custom-html-1ve iframe {
  margin-bottom: -20px;
}
.cid-ser4rP1Xrl {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-5-1500x302.jpg");
}
.cid-ser4rP1Xrl H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-ser4rP1Xrl .mbr-section-subtitle {
  color: #000000;
}
.cid-ser4rP1Xrl section {
  background-color: none;
}
.cid-ser4rP1Xrl .logo_footer {
  position: relative;
  right: 100px;
}
.cid-u7yU9DBwef {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yU9DBwef .content {
    text-align: center;
  }
  .cid-u7yU9DBwef .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yU9DBwef .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yU9DBwef .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yU9DBwef .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yU9DBwef .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yU9DBwef .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yU9DBwef .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yU9DBwef .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yU9DBwef .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yU9DBwef .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yU9DBwef .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yU9DBwef .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yU9DBwef .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yU9DBwef H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yU9DBwef P {
  color: #ffffff;
}
.cid-u7yU9DBwef .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yU9DBwef .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yU9DBwef .logo_footer {
  position: relative;
}
.cid-u7yU9DBwef .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yU9DBwef .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yU9DBwef .col,
  .cid-u7yU9DBwef .col-1,
  .cid-u7yU9DBwef .col-10,
  .cid-u7yU9DBwef .col-11,
  .cid-u7yU9DBwef .col-12,
  .cid-u7yU9DBwef .col-2,
  .cid-u7yU9DBwef .col-3,
  .cid-u7yU9DBwef .col-4,
  .cid-u7yU9DBwef .col-5,
  .cid-u7yU9DBwef .col-6,
  .cid-u7yU9DBwef .col-7,
  .cid-u7yU9DBwef .col-8,
  .cid-u7yU9DBwef .col-9,
  .cid-u7yU9DBwef .col-auto,
  .cid-u7yU9DBwef .col-lg,
  .cid-u7yU9DBwef .col-lg-1,
  .cid-u7yU9DBwef .col-lg-10,
  .cid-u7yU9DBwef .col-lg-11,
  .cid-u7yU9DBwef .col-lg-12,
  .cid-u7yU9DBwef .col-lg-2,
  .cid-u7yU9DBwef .col-lg-3,
  .cid-u7yU9DBwef .col-lg-4,
  .cid-u7yU9DBwef .col-lg-5,
  .cid-u7yU9DBwef .col-lg-6,
  .cid-u7yU9DBwef .col-lg-7,
  .cid-u7yU9DBwef .col-lg-8,
  .cid-u7yU9DBwef .col-lg-9,
  .cid-u7yU9DBwef .col-lg-auto,
  .cid-u7yU9DBwef .col-md,
  .cid-u7yU9DBwef .col-md-1,
  .cid-u7yU9DBwef .col-md-10,
  .cid-u7yU9DBwef .col-md-11,
  .cid-u7yU9DBwef .col-md-12,
  .cid-u7yU9DBwef .col-md-2,
  .cid-u7yU9DBwef .col-md-3,
  .cid-u7yU9DBwef .col-md-4,
  .cid-u7yU9DBwef .col-md-5,
  .cid-u7yU9DBwef .col-md-6,
  .cid-u7yU9DBwef .col-md-7,
  .cid-u7yU9DBwef .col-md-8,
  .cid-u7yU9DBwef .col-md-9,
  .cid-u7yU9DBwef .col-md-auto,
  .cid-u7yU9DBwef .col-sm,
  .cid-u7yU9DBwef .col-sm-1,
  .cid-u7yU9DBwef .col-sm-10,
  .cid-u7yU9DBwef .col-sm-11,
  .cid-u7yU9DBwef .col-sm-12,
  .cid-u7yU9DBwef .col-sm-2,
  .cid-u7yU9DBwef .col-sm-3,
  .cid-u7yU9DBwef .col-sm-4,
  .cid-u7yU9DBwef .col-sm-5,
  .cid-u7yU9DBwef .col-sm-6,
  .cid-u7yU9DBwef .col-sm-7,
  .cid-u7yU9DBwef .col-sm-8,
  .cid-u7yU9DBwef .col-sm-9,
  .cid-u7yU9DBwef .col-sm-auto,
  .cid-u7yU9DBwef .col-xl,
  .cid-u7yU9DBwef .col-xl-1,
  .cid-u7yU9DBwef .col-xl-10,
  .cid-u7yU9DBwef .col-xl-11,
  .cid-u7yU9DBwef .col-xl-12,
  .cid-u7yU9DBwef .col-xl-2,
  .cid-u7yU9DBwef .col-xl-3,
  .cid-u7yU9DBwef .col-xl-4,
  .cid-u7yU9DBwef .col-xl-5,
  .cid-u7yU9DBwef .col-xl-6,
  .cid-u7yU9DBwef .col-xl-7,
  .cid-u7yU9DBwef .col-xl-8,
  .cid-u7yU9DBwef .col-xl-9,
  .cid-u7yU9DBwef .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yU9DBwef .content {
    text-align: left;
  }
  .cid-u7yU9DBwef .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yU9DBwef .logo_footer_box {
    position: relative;
  }
  .cid-u7yU9DBwef .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yU9DBwef .logo_footer {
    position: relative;
  }
  .cid-u7yU9DBwef .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yU9DBwef .copyright > p {
  color: #f9ceb2;
}
.cid-sevVpocw6B :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-sevVpocw6B .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-sevVpocw6B .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-sevVpocw6B a {
  font-style: normal;
}
.cid-sevVpocw6B .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sevVpocw6B .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sevVpocw6B .nav-item:focus,
.cid-sevVpocw6B .nav-link:focus {
  outline: none;
}
.cid-sevVpocw6B .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-sevVpocw6B .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-sevVpocw6B .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sevVpocw6B .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sevVpocw6B .menu-logo {
  margin-right: auto;
}
.cid-sevVpocw6B .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-sevVpocw6B .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sevVpocw6B .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sevVpocw6B .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sevVpocw6B .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sevVpocw6B .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sevVpocw6B .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sevVpocw6B .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-sevVpocw6B .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sevVpocw6B .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sevVpocw6B .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sevVpocw6B .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sevVpocw6B .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sevVpocw6B .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sevVpocw6B .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sevVpocw6B .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-sevVpocw6B .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-sevVpocw6B .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sevVpocw6B .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sevVpocw6B .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sevVpocw6B .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sevVpocw6B .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-sevVpocw6B .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sevVpocw6B button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sevVpocw6B button.navbar-toggler:focus {
  outline: none;
}
.cid-sevVpocw6B button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sevVpocw6B button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sevVpocw6B button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sevVpocw6B button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sevVpocw6B button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sevVpocw6B nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sevVpocw6B nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sevVpocw6B nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sevVpocw6B nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sevVpocw6B .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sevVpocw6B .collapsed .btn {
  display: flex;
}
.cid-sevVpocw6B .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sevVpocw6B .collapsed .navbar-collapse.collapsing,
.cid-sevVpocw6B .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sevVpocw6B .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sevVpocw6B .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sevVpocw6B .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sevVpocw6B .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sevVpocw6B .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sevVpocw6B .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-sevVpocw6B .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sevVpocw6B .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sevVpocw6B .collapsed button.navbar-toggler {
  display: block;
}
.cid-sevVpocw6B .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sevVpocw6B .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sevVpocw6B .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sevVpocw6B .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sevVpocw6B .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sevVpocw6B .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sevVpocw6B .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-sevVpocw6B .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-sevVpocw6B .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-sevVpocw6B .navbar-expand {
    flex-direction: column;
  }
  .cid-sevVpocw6B img {
    height: 3rem !important;
  }
  .cid-sevVpocw6B .btn {
    display: flex;
  }
  .cid-sevVpocw6B button.navbar-toggler {
    display: block;
  }
  .cid-sevVpocw6B .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sevVpocw6B .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sevVpocw6B .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sevVpocw6B .navbar-collapse.collapsing,
  .cid-sevVpocw6B .navbar-collapse.show {
    display: block !important;
  }
  .cid-sevVpocw6B .navbar-collapse.collapsing .navbar-nav,
  .cid-sevVpocw6B .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sevVpocw6B .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sevVpocw6B .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sevVpocw6B .navbar-collapse.collapsing .navbar-buttons,
  .cid-sevVpocw6B .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sevVpocw6B .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sevVpocw6B .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sevVpocw6B .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sevVpocw6B .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sevVpocw6B .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sevVpocw6B .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sevVpocw6B .logo_s,
  .cid-sevVpocw6B .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-sevVpocw6B .menu-logo {
    flex-shrink: 3;
  }
}
.cid-sevVpocw6B .navbar-collapse {
  flex-basis: auto;
}
.cid-sevVpocw6B .nav-link:hover,
.cid-sevVpocw6B .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-sevVpocw6B .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-sevVpocw6B .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-sevVpocw6B .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-sevVpocw6B .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-sevVpocw6B .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-sevVpocw6B a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sevVpocw6B a:hover svg polygon,
.cid-sevVpocw6B a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sevVpocw6B .hidden {
  display: none !important;
}
.cid-sevVpocw6B .shoow {
  display: block !important;
}
.cid-sevVpocw6B .navbar-logo a,
.cid-sevVpocw6B .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-sevVpocw6B .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-sevVpocw6B .logo_s {
    height: 2rem !important;
  }
  .cid-sevVpocw6B .navbar-logo a img {
    left: 20px;
  }
  .cid-sevVpocw6B .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-sevVpocw6B .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-sevVpocw6B .stoerer_head,
  .cid-sevVpocw6B .stoerer_text {
    grid-row: 1;
  }
  .cid-sevVpocw6B .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-sevVpocw6B a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-sevVpoUZTI {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-sevVpoUZTI {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-sevX6IEp5d {
  background: #ffffff;
}
.cid-sevX6IEp5d .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sevX6IEp5d figcaption {
  position: relative;
}
.cid-sevX6IEp5d figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sevX6IEp5d .image-block {
    width: 100% !important;
  }
}
.cid-soI8fshWgU {
  background: #000000;
  padding-top: 120px;
  padding-bottom: 45px;
}
.cid-soI8fshWgU .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-soI8fshWgU .video-block {
    width: 100% !important;
  }
}
.cid-soI8fshWgU .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sevVppdfGL {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-sevVppdfGL .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-sevVppdfGL h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sevVppdfGL .space_down_30 {
  margin-bottom: 30px;
}
.cid-sevVppdfGL .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-sevVppdfGL .testimonial-text {
  color: #000000;
}
.cid-soI9qmQMVx {
  background: #ffffff;
}
.cid-soI9qmQMVx .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-soI9qmQMVx figcaption {
  position: relative;
}
.cid-soI9qmQMVx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-soI9qmQMVx .image-block {
    width: 100% !important;
  }
}
.cid-smDV0tbvFo {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-10-1500x622.jpg");
}
.cid-smDV0tbvFo H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-smDV0tbvFo .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-smDV0tbvFo .breites_Zitat,
  .cid-smDV0tbvFo .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-smDWrvGzlH {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-smDWrvGzlH .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
}
.cid-smDWrvGzlH .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-smDWrvGzlH .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-smDWrvGzlH .mbr-figure,
  .cid-smDWrvGzlH img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-smDWrvGzlH .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-smDWrvGzlH h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-smDWrvGzlH .h2_block {
  margin-bottom: 20px;
}
.cid-smDWrvGzlH .mbr-figure {
  align-self: flex-start;
}
.cid-srs0igcLKn {
  background-image: url("../../../assets/images/unsere-waffen-52-2000x1333.jpg");
}
.cid-srs0igcLKn P {
  color: #767676;
}
.cid-sjlpy6RsAy {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sjlpy6RsAy .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-sjlpy6RsAy h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sjlpy6RsAy .space_down_30 {
  margin-bottom: 30px;
}
.cid-sjlpy6RsAy .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-sjlqyuAG5Y {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sjlqyuAG5Y .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-sjlqyuAG5Y .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-sjlqyuAG5Y .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-sjlqyuAG5Y a:hover {
  Color: #a76645;
}
.cid-sjlqyuAG5Y a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sjlqyuAG5Y .btn-black-outline:hover,
.cid-sjlqyuAG5Y .btn-black-outline:focus,
.cid-sjlqyuAG5Y .btn-black-outline.focus,
.cid-sjlqyuAG5Y .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-sjlqyuAG5Y .display-5 {
    line-height: 1;
  }
  .cid-sjlqyuAG5Y .btn {
    font-size: 1.5rem !important;
  }
  .cid-sjlqyuAG5Y .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-srs12HEYU5 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-srs12HEYU5 .image-block {
  margin: auto;
}
.cid-srs12HEYU5 figcaption {
  position: relative;
}
.cid-srs12HEYU5 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-srs12HEYU5 .image-block {
    width: 100% !important;
  }
}
.cid-siHp1JSYhB {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-siHp1JSYhB .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-siHp1JSYhB h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-siHp1JSYhB .space_down_30 {
  margin-bottom: 30px;
}
.cid-siHp1JSYhB .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-sewaWDEhMr {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 30px;
}
.cid-sewaWDEhMr .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-sewaWDEhMr .video-block {
    width: 100% !important;
  }
}
.cid-sewaWDEhMr .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-smDW6YahwQ {
  background: #ffffff;
}
.cid-smDW6YahwQ .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-smDW6YahwQ figcaption {
  position: relative;
}
.cid-smDW6YahwQ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-smDW6YahwQ .image-block {
    width: 100% !important;
  }
}
.cid-soI5GGMCJB {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-soI5GGMCJB .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-soI5GGMCJB h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-soI5GGMCJB .space_down_50 {
  margin-bottom: 50px;
}
.cid-siGAtpVgA2 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-siGAtpVgA2 .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-siGAtpVgA2 .modal-body .close {
  background: #1b1b1b;
}
.cid-siGAtpVgA2 .modal-body .close span {
  font-style: normal;
}
.cid-siGAtpVgA2 .carousel-inner > .active,
.cid-siGAtpVgA2 .carousel-inner > .next,
.cid-siGAtpVgA2 .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-siGAtpVgA2 .carousel-control .icon-next,
.cid-siGAtpVgA2 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-siGAtpVgA2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-siGAtpVgA2 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-siGAtpVgA2 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-siGAtpVgA2 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-siGAtpVgA2 .boxed-slider > div {
  position: relative;
}
.cid-siGAtpVgA2 .container img {
  width: 100%;
}
.cid-siGAtpVgA2 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-siGAtpVgA2 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-siGAtpVgA2 .mbr-table-cell {
  padding: 0;
}
.cid-siGAtpVgA2 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-siGAtpVgA2 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-siGAtpVgA2 .mbr-overlay {
  z-index: 1;
}
.cid-siGAtpVgA2 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-siGAtpVgA2 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-siGAtpVgA2 .carousel-item.active.right,
.cid-siGAtpVgA2 .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-siGAtpVgA2 .carousel-item.active.left,
.cid-siGAtpVgA2 .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-siGAtpVgA2 .carousel-item.active,
.cid-siGAtpVgA2 .carousel-item.next.left,
.cid-siGAtpVgA2 .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-siGAtpVgA2 .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 11;
}
.cid-siGAtpVgA2 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-siGAtpVgA2 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-siGAtpVgA2 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-siGAtpVgA2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-siGAtpVgA2 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-siGAtpVgA2 .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-siGAtpVgA2 .mbr-slider .carousel-indicators li.active,
.cid-siGAtpVgA2 .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-siGAtpVgA2 .mbr-slider .carousel-indicators li::after,
.cid-siGAtpVgA2 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-siGAtpVgA2 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-siGAtpVgA2 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-siGAtpVgA2 .mbr-slider > .container img {
  width: 100%;
}
.cid-siGAtpVgA2 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-siGAtpVgA2 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-siGAtpVgA2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-siGAtpVgA2 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-siGAtpVgA2 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-siGAtpVgA2 .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-siGAtpVgA2 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-siGAtpVgA2 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-siGAtpVgA2 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-siGAtpVgA2 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-siGAtpVgA2 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-siGAtpVgA2 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-siGAtpVgA2 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-siGAtpVgA2 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-siGAtpVgA2 .carousel-inner {
  height: 100%;
}
.cid-siGAtpVgA2 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-siGAtpVgA2 .image_wrapper {
  height: 400px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-siGAtpVgA2 .image_wrapper img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.cid-siGAtpVgA2 .carousel-item .container-slide {
  text-align: center;
}
.cid-siGAtpVgA2 .content-slider-wrap {
  width: 77%;
}
.cid-snXov1cM8G {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-16-2000x1333.png");
}
.cid-snXov1cM8G H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-snXov1cM8G .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-snXov1cM8G .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-snXov1cM8G .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-snXov1cM8G a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-snXov1cM8G a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-siHzd57q8V {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-siHzd57q8V .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-siHzd57q8V h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-siHzd57q8V .space_down_50 {
  margin-bottom: 50px;
}
.cid-siHzd57q8V a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-siHzd57q8V a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-srrYUyZi8J {
  background-image: url("../../../assets/images/unsere-waffen-5-2000x1125.jpg");
}
.cid-srrYUyZi8J P {
  color: #767676;
}
.cid-smDBZp5w42 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/304296278-huge.jpg");
}
.cid-smDBZp5w42 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-smDBZp5w42 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-smDBZp5w42 .breites_Zitat,
  .cid-smDBZp5w42 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-soI53a4Ol0 {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}
.cid-soI53a4Ol0 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-soI53a4Ol0 .video-block {
    width: 100% !important;
  }
}
.cid-smDVIC83Sl {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-smDVIC83Sl .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-smDVIC83Sl h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-smDVIC83Sl .space_down_30 {
  margin-bottom: 30px;
}
.cid-smDVIC83Sl .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-soIvzW14U4 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-16-2000x1333.png");
}
.cid-soIvzW14U4 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-soIvzW14U4 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-soIvzW14U4 .breites_Zitat,
  .cid-soIvzW14U4 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-sjlrkuzbPx {
  background: #ffffff;
}
.cid-sjlrkuzbPx .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sjlrkuzbPx figcaption {
  position: relative;
}
.cid-sjlrkuzbPx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sjlrkuzbPx .image-block {
    width: 100% !important;
  }
}
.cid-ss73LUeLPu {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ss73LUeLPu h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-ss73LUeLPu p {
  color: #767676;
  text-align: left;
}
.cid-ss73LUeLPu .card-box {
  padding-top: 2rem;
}
.cid-ss73LUeLPu .card-wrapper {
  height: 100%;
}
.cid-ss73QL15uZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ss73QL15uZ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-ss73QL15uZ p {
  color: #767676;
  text-align: left;
}
.cid-ss73QL15uZ .card-box {
  padding-top: 2rem;
}
.cid-ss73QL15uZ .card-wrapper {
  height: 100%;
}
.cid-ss73VwY1Ex {
  padding-top: 30px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-ss73VwY1Ex .images-container.container-fluid {
  padding: 0;
}
.cid-ss73VwY1Ex .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-ss73VwY1Ex .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-ss73VwY1Ex .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-ss73VwY1Ex .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-ss73VwY1Ex .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-ss73VwY1Ex .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-ss73VwY1Ex .img-item {
    width: 100% !important;
  }
  .cid-ss73VwY1Ex .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-snXqZZF9S9 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-5-1500x490.jpg");
}
.cid-snXqZZF9S9 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-snXqZZF9S9 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-snXqZZF9S9 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-snXqZZF9S9 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sew64aJEgN {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/soldatin-2000x778.jpg");
}
.cid-sew64aJEgN .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-sew64aJEgN .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-sew64aJEgN .mbr-author-desc {
  color: #ffffff;
}
.cid-sew64aJEgN .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-sew64aJEgN .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-sew64aJEgN .mbr-figure,
  .cid-sew64aJEgN img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-sew64aJEgN h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sew64aJEgN .text_block {
  margin-top: 0px;
}
.cid-sew64aJEgN .h2_block {
  margin-bottom: 20px;
}
.cid-sew64aJEgN .mbr-figure {
  align-self: flex-start;
}
.cid-sew64aJEgN .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: white !important;
}
.cid-sew64aJEgN .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-sew64aJEgN svg polygon {
  fill: white ;
}
.cid-sew64aJEgN a:hover {
  Color: #F9CEB2 !important;
}
.cid-sew64aJEgN a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sew64aJEgN .btn-black-outline:hover,
.cid-sew64aJEgN .btn-black-outline:focus,
.cid-sew64aJEgN .btn-black-outline.focus,
.cid-sew64aJEgN .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-sew64aJEgN .btn-white-outline:hover,
.cid-sew64aJEgN .btn-white-outline:focus,
.cid-sew64aJEgN .btn-white-outline.focus,
.cid-sew64aJEgN .btn-white-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-sew64aJEgN .display-5 {
    line-height: 1;
  }
  .cid-sew64aJEgN .btn {
    font-size: 1.5rem !important;
  }
  .cid-sew64aJEgN .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-sew64aJEgN .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-sew64aJEgN .content {
  padding-left: 3px;
}
.cid-ss7rvvjPlD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/304296278-huge.jpg");
}
.cid-ss7rvvjPlD .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-ss7rvvjPlD .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-ss7rvvjPlD .mbr-author-desc {
  color: #000000;
}
.cid-ss7rvvjPlD .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 0.1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-ss7rvvjPlD .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ss7rvvjPlD .mbr-figure,
  .cid-ss7rvvjPlD img {
    max-height: 190px;
    width: auto;
    margin: auto;
  }
}
.cid-ss7rvvjPlD h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ss7rvvjPlD .text_block {
  margin-top: 0px;
}
.cid-ss7rvvjPlD .h2_block {
  margin-bottom: 20px;
}
.cid-ss7rvvjPlD .mbr-figure {
  align-self: flex-start;
}
.cid-ss7rvvjPlD .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-ss7rvvjPlD .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-ss7rvvjPlD a:hover {
  Color: #a76645 !important;
}
.cid-ss7rvvjPlD a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ss7rvvjPlD .btn-black-outline:hover,
.cid-ss7rvvjPlD .btn-black-outline:focus,
.cid-ss7rvvjPlD .btn-black-outline.focus,
.cid-ss7rvvjPlD .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ss7rvvjPlD .display-5 {
    line-height: 1;
  }
  .cid-ss7rvvjPlD .btn {
    font-size: 1.5rem !important;
  }
  .cid-ss7rvvjPlD .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-ss7rvvjPlD .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-ss7rvvjPlD .content {
  padding-left: 3px;
}
.cid-smDusxF8C9 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-13-1500x622.jpg");
}
.cid-smDusxF8C9 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-smDusxF8C9 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-smDusxF8C9 .breites_Zitat,
  .cid-smDusxF8C9 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-smDBMyH8bS {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-smDBMyH8bS .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-smDBMyH8bS h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-smDBMyH8bS .space_down_30 {
  margin-bottom: 30px;
}
.cid-smDBMyH8bS .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-szazC5z6EH {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/unsere-waffen-28-2000x1430.jpg");
}
.cid-szazC5z6EH .display-7 {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: ;
  color: white !important;
}
.cid-szazC5z6EH .btn {
  font-weight: 400;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-szazC5z6EH .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: white !important;
}
.cid-szazC5z6EH .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-szazC5z6EH svg polygon {
  fill: white ;
}
.cid-szazC5z6EH a:hover {
  Color: #F9CEB2 !important;
}
.cid-szazC5z6EH a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-szazC5z6EH .btn-black-outline:hover,
.cid-szazC5z6EH .btn-black-outline:focus,
.cid-szazC5z6EH .btn-black-outline.focus,
.cid-szazC5z6EH .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-szazC5z6EH .btn-white-outline:hover,
.cid-szazC5z6EH .btn-white-outline:focus,
.cid-szazC5z6EH .btn-white-outline.focus,
.cid-szazC5z6EH .btn-white-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (min-width: 992px) {
  .cid-szazC5z6EH .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-szazC5z6EH .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-szazC5z6EH .mbr-text {
    text-align: center;
  }
}
.cid-spip7dWTSW {
  padding-top: 60px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/304296278-huge.jpg");
}
.cid-spip7dWTSW .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spip7dWTSW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spip7dWTSW p {
  color: #767676;
  text-align: left;
}
.cid-spip7dWTSW .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spip7dWTSW .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spip7dWTSW .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spip7dWTSW .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spip7dWTSW .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spip7dWTSW .notched-box:before,
.cid-spip7dWTSW .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spip7dWTSW .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spip7dWTSW .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spip7dWTSW .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spip7dWTSW .border:before,
.cid-spip7dWTSW .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spip7dWTSW .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spip7dWTSW .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spip7dWTSW .mbr-author-name {
  padding-left: 40px;
}
.cid-spip7dWTSW P {
  color: #000000;
  line-height: 1.3;
}
.cid-spip7dWTSW .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spip7VbkeR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/304296278-huge.jpg");
}
.cid-spip7VbkeR .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spip7VbkeR h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spip7VbkeR p {
  color: #767676;
  text-align: left;
}
.cid-spip7VbkeR .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spip7VbkeR .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spip7VbkeR .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spip7VbkeR .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spip7VbkeR .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spip7VbkeR .notched-box:before,
.cid-spip7VbkeR .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spip7VbkeR .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spip7VbkeR .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spip7VbkeR .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spip7VbkeR .border:before,
.cid-spip7VbkeR .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spip7VbkeR .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spip7VbkeR .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spip7VbkeR .mbr-author-name {
  padding-left: 40px;
}
.cid-spip7VbkeR P {
  color: #000000;
  line-height: 1.3;
}
.cid-spip7VbkeR .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spip8pM7CG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/304296278-huge.jpg");
}
.cid-spip8pM7CG .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spip8pM7CG h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spip8pM7CG p {
  color: #767676;
  text-align: left;
}
.cid-spip8pM7CG .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spip8pM7CG .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spip8pM7CG .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spip8pM7CG .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spip8pM7CG .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spip8pM7CG .notched-box:before,
.cid-spip8pM7CG .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spip8pM7CG .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spip8pM7CG .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spip8pM7CG .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spip8pM7CG .border:before,
.cid-spip8pM7CG .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spip8pM7CG .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spip8pM7CG .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spip8pM7CG .mbr-author-name {
  padding-left: 40px;
}
.cid-spip8pM7CG P {
  color: #000000;
  line-height: 1.3;
}
.cid-spip8pM7CG .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spip8SulST {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/304296278-huge.jpg");
}
.cid-spip8SulST .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spip8SulST h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spip8SulST p {
  color: #767676;
  text-align: left;
}
.cid-spip8SulST .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spip8SulST .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spip8SulST .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spip8SulST .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spip8SulST .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spip8SulST .notched-box:before,
.cid-spip8SulST .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spip8SulST .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spip8SulST .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spip8SulST .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spip8SulST .border:before,
.cid-spip8SulST .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spip8SulST .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spip8SulST .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spip8SulST .mbr-author-name {
  padding-left: 40px;
}
.cid-spip8SulST P {
  color: #000000;
  line-height: 1.3;
}
.cid-spip8SulST .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spip9nu9Y4 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/304296278-huge.jpg");
}
.cid-spip9nu9Y4 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spip9nu9Y4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spip9nu9Y4 p {
  color: #767676;
  text-align: left;
}
.cid-spip9nu9Y4 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spip9nu9Y4 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spip9nu9Y4 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spip9nu9Y4 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spip9nu9Y4 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spip9nu9Y4 .notched-box:before,
.cid-spip9nu9Y4 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spip9nu9Y4 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spip9nu9Y4 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spip9nu9Y4 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spip9nu9Y4 .border:before,
.cid-spip9nu9Y4 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spip9nu9Y4 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spip9nu9Y4 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spip9nu9Y4 .mbr-author-name {
  padding-left: 40px;
}
.cid-spip9nu9Y4 P {
  color: #000000;
  line-height: 1.3;
}
.cid-spip9nu9Y4 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-srseTtW1KL {
  background: #ffffff;
}
.cid-srseTtW1KL .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-srseTtW1KL figcaption {
  position: relative;
}
.cid-srseTtW1KL figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-srseTtW1KL .image-block {
    width: 100% !important;
  }
}
.cid-snXqnAf908 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-6-1500x490.jpg");
}
.cid-snXqnAf908 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-snXqnAf908 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-snXqnAf908 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-snXqnAf908 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-snXqnAf908 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-snXqnAf908 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-smDEVKr0Ho {
  background: #ffffff;
}
.cid-smDEVKr0Ho .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-smDEVKr0Ho figcaption {
  position: relative;
}
.cid-smDEVKr0Ho figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-smDEVKr0Ho .image-block {
    width: 100% !important;
  }
}
.cid-snXqqoOoXW {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-snXqqoOoXW .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-snXqqoOoXW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snXqqoOoXW p {
  color: #767676;
  text-align: left;
}
.cid-snXqqoOoXW .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-snXqqoOoXW .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-snXqqoOoXW .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-snXqqoOoXW .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snXqqoOoXW .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-snXqqoOoXW .notched-box:before,
.cid-snXqqoOoXW .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-snXqqoOoXW .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-snXqqoOoXW .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-snXqqoOoXW .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-snXqqoOoXW .border:before,
.cid-snXqqoOoXW .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-snXqqoOoXW .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-snXqqoOoXW .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-snXqqoOoXW .mbr-author-name {
  padding-left: 40px;
}
.cid-snXqqoOoXW P {
  color: #ffffff;
}
.cid-snXqqoOoXW .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-snXqqoOoXW a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-snXqqoOoXW a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-snXsTrj8Ts {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-snXsTrj8Ts .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-snXsTrj8Ts h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snXsTrj8Ts p {
  color: #767676;
  text-align: left;
}
.cid-snXsTrj8Ts .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-snXsTrj8Ts .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-snXsTrj8Ts .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-snXsTrj8Ts .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snXsTrj8Ts .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-snXsTrj8Ts .notched-box:before,
.cid-snXsTrj8Ts .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-snXsTrj8Ts .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-snXsTrj8Ts .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-snXsTrj8Ts .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-snXsTrj8Ts .border:before,
.cid-snXsTrj8Ts .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-snXsTrj8Ts .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-snXsTrj8Ts .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-snXsTrj8Ts .mbr-author-name {
  padding-left: 40px;
}
.cid-snXsTrj8Ts P {
  color: #ffffff;
}
.cid-snXsTrj8Ts .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-snXsTrj8Ts a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-snXsTrj8Ts a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-snXthjg04C {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-snXthjg04C .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-snXthjg04C h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snXthjg04C p {
  color: #767676;
  text-align: left;
}
.cid-snXthjg04C .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-snXthjg04C .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-snXthjg04C .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-snXthjg04C .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snXthjg04C .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-snXthjg04C .notched-box:before,
.cid-snXthjg04C .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-snXthjg04C .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-snXthjg04C .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-snXthjg04C .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-snXthjg04C .border:before,
.cid-snXthjg04C .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-snXthjg04C .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-snXthjg04C .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-snXthjg04C .mbr-author-name {
  padding-left: 40px;
}
.cid-snXthjg04C P {
  color: #ffffff;
}
.cid-snXthjg04C .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-snXthjg04C a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-snXthjg04C a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-smDEI00ElD {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-smDEI00ElD .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-smDEI00ElD h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-smDEI00ElD .space_down_30 {
  margin-bottom: 30px;
}
.cid-smDEI00ElD .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u6g2Ic6HHd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6g2Ic6HHd h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6g2Ic6HHd p {
  color: #767676;
  text-align: left;
}
.cid-u6g2Ic6HHd .card-box {
  padding-top: 2rem;
}
.cid-u6g2Ic6HHd .card-wrapper {
  height: 100%;
}
.cid-u6g2Ic6HHd P {
  text-align: left;
}
.cid-u6g2IWbwmn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6g2IWbwmn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6g2IWbwmn p {
  color: #767676;
  text-align: left;
}
.cid-u6g2IWbwmn .card-box {
  padding-top: 2rem;
}
.cid-u6g2IWbwmn .card-wrapper {
  height: 100%;
}
.cid-u6g2IWbwmn P {
  text-align: left;
}
.cid-srrXw9kDxc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-srrXw9kDxc .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-srrXw9kDxc .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-srrXw9kDxc .mbr-figure img {
    width: 100% !important;
  }
}
.cid-srrPAp1z2t {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #f9ceb2;
}
.cid-srrPAp1z2t h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-srrPAp1z2t p {
  color: #767676;
  text-align: left;
}
.cid-srrPAp1z2t .card-box {
  padding-top: 2rem;
}
.cid-srrPAp1z2t .card-wrapper {
  height: 100%;
}
.cid-u6g2JJLpXD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6g2JJLpXD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6g2JJLpXD p {
  color: #767676;
  text-align: left;
}
.cid-u6g2JJLpXD .card-box {
  padding-top: 2rem;
}
.cid-u6g2JJLpXD .card-wrapper {
  height: 100%;
}
.cid-u6g2JJLpXD P {
  text-align: left;
}
.cid-srrWeRtG2y {
  background: #ffffff;
}
.cid-srrWeRtG2y .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-srrWeRtG2y figcaption {
  position: relative;
}
.cid-srrWeRtG2y figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-srrWeRtG2y .image-block {
    width: 100% !important;
  }
}
.cid-srrS8jvKvg {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f9ceb2;
}
.cid-srrS8jvKvg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-srrS8jvKvg p {
  color: #767676;
  text-align: left;
}
.cid-srrS8jvKvg .card-box {
  padding-top: 2rem;
}
.cid-srrS8jvKvg .card-wrapper {
  height: 100%;
}
.cid-seIiCAJi9y {
  background: #ffffff;
}
.cid-seIiCAJi9y .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-seIiCAJi9y figcaption {
  position: relative;
}
.cid-seIiCAJi9y figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-seIiCAJi9y .image-block {
    width: 100% !important;
  }
}
.cid-smE6Ya2vMZ {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-10-1500x622.jpg");
}
.cid-smE6Ya2vMZ H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-smE6Ya2vMZ .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-smE6Ya2vMZ .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-smE6Ya2vMZ .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-smE6Ya2vMZ a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-smE6Ya2vMZ a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-smDFUAhp14 {
  background: #ffffff;
  padding-top: 90px;
  padding-bottom: 0px;
}
.cid-smDFUAhp14 .image-block {
  margin: auto;
}
.cid-smDFUAhp14 figcaption {
  position: relative;
}
.cid-smDFUAhp14 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-smDFUAhp14 .image-block {
    width: 100% !important;
  }
}
.cid-smDFP3ldxC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-smDFP3ldxC .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-smDFP3ldxC h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-smDFP3ldxC .space_down_30 {
  margin-bottom: 30px;
}
.cid-smDFP3ldxC .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-srsgBwbXKx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srsgBwbXKx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-srsgBwbXKx p {
  color: #767676;
  text-align: left;
}
.cid-srsgBwbXKx .card-box {
  padding-top: 2rem;
}
.cid-srsgBwbXKx .card-wrapper {
  height: 100%;
}
.cid-spiu11am6X {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-16-2000x1333.png");
}
.cid-spiu11am6X H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-spiu11am6X .mbr-section-subtitle {
  color: #000000;
}
@media (max-width: 768px) {
  .cid-spiu11am6X .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-spiu11am6X .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-smDJ4Vuk69 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-smDJ4Vuk69 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-smDJ4Vuk69 p {
  color: #767676;
  text-align: left;
}
.cid-smDJ4Vuk69 .card-box {
  padding-top: 2rem;
}
.cid-smDJ4Vuk69 .card-wrapper {
  height: 100%;
}
.cid-smDJ7eZdj4 {
  background: #ffffff;
}
.cid-smDJ7eZdj4 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-smDJ7eZdj4 figcaption {
  position: relative;
}
.cid-smDJ7eZdj4 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-smDJ7eZdj4 .image-block {
    width: 100% !important;
  }
}
.cid-ss7bp6kHWF {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ss7bp6kHWF .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ss7bp6kHWF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ss7bp6kHWF .space_down_50 {
  margin-bottom: 50px;
}
.cid-ss78ErEKg8 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ss78ErEKg8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-ss78ErEKg8 p {
  color: #767676;
  text-align: left;
}
.cid-ss78ErEKg8 .card-box {
  padding-top: 2rem;
}
.cid-ss78ErEKg8 .card-wrapper {
  height: 100%;
}
.cid-ss78ErEKg8 P {
  color: #1d1d1b;
}
.cid-ss78ErEKg8 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ss78ErEKg8 .display-5 {
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-ss78ErEKg8 .pfeil_button {
  height: 12px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-ss78ErEKg8 a:hover {
  Color: #a76645;
}
.cid-ss78ErEKg8 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ss78ErEKg8 .btn-black-outline:hover,
.cid-ss78ErEKg8 .btn-black-outline:focus,
.cid-ss78ErEKg8 .btn-black-outline.focus,
.cid-ss78ErEKg8 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ss78ErEKg8 .display-5 {
    line-height: 1;
  }
  .cid-ss78ErEKg8 .btn {
    font-size: 1.5rem !important;
  }
  .cid-ss78ErEKg8 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-ss6PjI9It6 {
  background: #ffffff;
}
.cid-ss6PjI9It6 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ss6PjI9It6 figcaption {
  position: relative;
}
.cid-ss6PjI9It6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ss6PjI9It6 .image-block {
    width: 100% !important;
  }
}
.cid-spiu4nSaMx {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-spiu4nSaMx .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spiu4nSaMx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spiu4nSaMx p {
  color: #767676;
  text-align: left;
}
.cid-spiu4nSaMx .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spiu4nSaMx .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spiu4nSaMx .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spiu4nSaMx .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spiu4nSaMx .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spiu4nSaMx .notched-box:before,
.cid-spiu4nSaMx .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-spiu4nSaMx .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spiu4nSaMx .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spiu4nSaMx .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spiu4nSaMx .border:before,
.cid-spiu4nSaMx .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-spiu4nSaMx .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spiu4nSaMx .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spiu4nSaMx .mbr-author-name {
  padding-left: 40px;
}
.cid-spiu4nSaMx P {
  color: #ffffff;
}
.cid-spiu4nSaMx .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spiu4nSaMx a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-spiu4nSaMx a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-spiu4X2czj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-spiu4X2czj .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spiu4X2czj h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spiu4X2czj p {
  color: #767676;
  text-align: left;
}
.cid-spiu4X2czj .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spiu4X2czj .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spiu4X2czj .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spiu4X2czj .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spiu4X2czj .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spiu4X2czj .notched-box:before,
.cid-spiu4X2czj .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-spiu4X2czj .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spiu4X2czj .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spiu4X2czj .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spiu4X2czj .border:before,
.cid-spiu4X2czj .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-spiu4X2czj .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spiu4X2czj .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spiu4X2czj .mbr-author-name {
  padding-left: 40px;
}
.cid-spiu4X2czj P {
  color: #ffffff;
}
.cid-spiu4X2czj .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spiu4X2czj a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-spiu4X2czj a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-spiu5DiZ72 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-spiu5DiZ72 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spiu5DiZ72 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spiu5DiZ72 p {
  color: #767676;
  text-align: left;
}
.cid-spiu5DiZ72 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spiu5DiZ72 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spiu5DiZ72 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spiu5DiZ72 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spiu5DiZ72 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spiu5DiZ72 .notched-box:before,
.cid-spiu5DiZ72 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-spiu5DiZ72 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spiu5DiZ72 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spiu5DiZ72 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spiu5DiZ72 .border:before,
.cid-spiu5DiZ72 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-spiu5DiZ72 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spiu5DiZ72 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spiu5DiZ72 .mbr-author-name {
  padding-left: 40px;
}
.cid-spiu5DiZ72 P {
  color: #ffffff;
}
.cid-spiu5DiZ72 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spiu5DiZ72 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-spiu5DiZ72 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-spiu67qfSx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-spiu67qfSx .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spiu67qfSx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spiu67qfSx p {
  color: #767676;
  text-align: left;
}
.cid-spiu67qfSx .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spiu67qfSx .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spiu67qfSx .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spiu67qfSx .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spiu67qfSx .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spiu67qfSx .notched-box:before,
.cid-spiu67qfSx .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-spiu67qfSx .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spiu67qfSx .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spiu67qfSx .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spiu67qfSx .border:before,
.cid-spiu67qfSx .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-spiu67qfSx .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spiu67qfSx .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spiu67qfSx .mbr-author-name {
  padding-left: 40px;
}
.cid-spiu67qfSx P {
  color: #ffffff;
}
.cid-spiu67qfSx .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spiu67qfSx a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-spiu67qfSx a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-spiu6zQHFr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-spiu6zQHFr .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spiu6zQHFr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spiu6zQHFr p {
  color: #767676;
  text-align: left;
}
.cid-spiu6zQHFr .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spiu6zQHFr .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spiu6zQHFr .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spiu6zQHFr .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spiu6zQHFr .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spiu6zQHFr .notched-box:before,
.cid-spiu6zQHFr .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-spiu6zQHFr .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spiu6zQHFr .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spiu6zQHFr .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spiu6zQHFr .border:before,
.cid-spiu6zQHFr .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-spiu6zQHFr .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spiu6zQHFr .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spiu6zQHFr .mbr-author-name {
  padding-left: 40px;
}
.cid-spiu6zQHFr P {
  color: #ffffff;
}
.cid-spiu6zQHFr .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spiu6zQHFr a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-spiu6zQHFr a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-spiu71QLnW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-spiu71QLnW .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spiu71QLnW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spiu71QLnW p {
  color: #767676;
  text-align: left;
}
.cid-spiu71QLnW .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spiu71QLnW .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spiu71QLnW .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spiu71QLnW .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spiu71QLnW .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spiu71QLnW .notched-box:before,
.cid-spiu71QLnW .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-spiu71QLnW .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spiu71QLnW .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spiu71QLnW .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spiu71QLnW .border:before,
.cid-spiu71QLnW .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-spiu71QLnW .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spiu71QLnW .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spiu71QLnW .mbr-author-name {
  padding-left: 40px;
}
.cid-spiu71QLnW P {
  color: #ffffff;
}
.cid-spiu71QLnW .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spiu71QLnW a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-spiu71QLnW a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-spiu7v7h2E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-spiu7v7h2E .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spiu7v7h2E h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spiu7v7h2E p {
  color: #767676;
  text-align: left;
}
.cid-spiu7v7h2E .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spiu7v7h2E .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spiu7v7h2E .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spiu7v7h2E .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spiu7v7h2E .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spiu7v7h2E .notched-box:before,
.cid-spiu7v7h2E .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-spiu7v7h2E .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spiu7v7h2E .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spiu7v7h2E .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spiu7v7h2E .border:before,
.cid-spiu7v7h2E .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-spiu7v7h2E .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spiu7v7h2E .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spiu7v7h2E .mbr-author-name {
  padding-left: 40px;
}
.cid-spiu7v7h2E P {
  color: #ffffff;
}
.cid-spiu7v7h2E .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spiu7v7h2E a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-spiu7v7h2E a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-spiu7WAvIV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-spiu7WAvIV .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spiu7WAvIV h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spiu7WAvIV p {
  color: #767676;
  text-align: left;
}
.cid-spiu7WAvIV .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spiu7WAvIV .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spiu7WAvIV .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spiu7WAvIV .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spiu7WAvIV .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spiu7WAvIV .notched-box:before,
.cid-spiu7WAvIV .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-spiu7WAvIV .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spiu7WAvIV .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spiu7WAvIV .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spiu7WAvIV .border:before,
.cid-spiu7WAvIV .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-spiu7WAvIV .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spiu7WAvIV .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spiu7WAvIV .mbr-author-name {
  padding-left: 40px;
}
.cid-spiu7WAvIV P {
  color: #ffffff;
}
.cid-spiu7WAvIV .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spiu7WAvIV a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-spiu7WAvIV a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-spiu8mWy67 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-spiu8mWy67 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spiu8mWy67 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spiu8mWy67 p {
  color: #767676;
  text-align: left;
}
.cid-spiu8mWy67 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spiu8mWy67 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spiu8mWy67 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spiu8mWy67 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spiu8mWy67 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spiu8mWy67 .notched-box:before,
.cid-spiu8mWy67 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-spiu8mWy67 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spiu8mWy67 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spiu8mWy67 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spiu8mWy67 .border:before,
.cid-spiu8mWy67 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-spiu8mWy67 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spiu8mWy67 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spiu8mWy67 .mbr-author-name {
  padding-left: 40px;
}
.cid-spiu8mWy67 P {
  color: #ffffff;
}
.cid-spiu8mWy67 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spiu8mWy67 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-spiu8mWy67 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-spiu95fkPB {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-13-1500x622.jpg");
}
.cid-spiu95fkPB H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-spiu95fkPB .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-spiu95fkPB .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-spiu95fkPB .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-srsykHhUMg {
  background: #ffffff;
}
.cid-srsykHhUMg .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-srsykHhUMg figcaption {
  position: relative;
}
.cid-srsykHhUMg figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-srsykHhUMg .image-block {
    width: 100% !important;
  }
}
.cid-srszgmpO01 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srszgmpO01 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-srszgmpO01 p {
  color: #767676;
  text-align: left;
}
.cid-srszgmpO01 .card-box {
  padding-top: 2rem;
}
.cid-srszgmpO01 .card-wrapper {
  height: 100%;
}
.cid-srsuA73gBO {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srsuA73gBO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-srsuA73gBO p {
  color: #767676;
  text-align: left;
}
.cid-srsuA73gBO .card-box {
  padding-top: 2rem;
}
.cid-srsuA73gBO .card-wrapper {
  height: 100%;
}
.cid-sszGYccbTY {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sszGYccbTY .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-sszGYccbTY h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sszGYccbTY .space_down_30 {
  margin-bottom: 30px;
}
.cid-sszGYccbTY .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-syIj4MQ7W9 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-syIj4MQ7W9 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-syIj4MQ7W9 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-syIj4MQ7W9 .space_down_50 {
  margin-bottom: 50px;
}
.cid-syIj5XgW9B {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-syIj5XgW9B .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-syIj5XgW9B .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-syIj5XgW9B .mbr-author-desc {
  color: #000000;
}
.cid-syIj5XgW9B .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-syIj5XgW9B .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-syIj5XgW9B .mbr-figure,
  .cid-syIj5XgW9B img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-syIj5XgW9B h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000000;
  color: #ffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-syIj5XgW9B .text_block {
  margin-top: 0px;
}
.cid-syIj5XgW9B .h2_block {
  margin-bottom: 20px;
}
.cid-syIj5XgW9B .mbr-figure {
  align-self: flex-start;
}
.cid-syIj5XgW9B .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: white !important;
}
.cid-syIj5XgW9B .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-syIj5XgW9B svg polygon {
  fill: white ;
}
.cid-syIj5XgW9B a:hover {
  Color: #F9CEB2 !important;
}
.cid-syIj5XgW9B a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-syIj5XgW9B .btn-black-outline:hover,
.cid-syIj5XgW9B .btn-black-outline:focus,
.cid-syIj5XgW9B .btn-black-outline.focus,
.cid-syIj5XgW9B .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-syIj5XgW9B .btn-white-outline:hover,
.cid-syIj5XgW9B .btn-white-outline:focus,
.cid-syIj5XgW9B .btn-white-outline.focus,
.cid-syIj5XgW9B .btn-white-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-syIj5XgW9B .display-5 {
    line-height: 1;
  }
  .cid-syIj5XgW9B .btn {
    font-size: 1.5rem !important;
  }
  .cid-syIj5XgW9B .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-syIj5XgW9B .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-syIj5XgW9B .content {
  padding-left: 3px;
}
.cid-syIkrbPErc {
  background: #ffffff;
}
.cid-syIkrbPErc .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-syIkrbPErc figcaption {
  position: relative;
}
.cid-syIkrbPErc figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-syIkrbPErc .image-block {
    width: 100% !important;
  }
}
.cid-srsisvSzWt {
  background: #ffffff;
}
.cid-srsisvSzWt .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-srsisvSzWt figcaption {
  position: relative;
}
.cid-srsisvSzWt figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-srsisvSzWt .image-block {
    width: 100% !important;
  }
}
.cid-smDwZ9uMDn {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-smDwZ9uMDn .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-smDwZ9uMDn h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-smDwZ9uMDn .space_down_50 {
  margin-bottom: 50px;
}
.cid-srsrARPg4B {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srsrARPg4B h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-srsrARPg4B p {
  color: #767676;
  text-align: left;
}
.cid-srsrARPg4B .card-box {
  padding-top: 2rem;
}
.cid-srsrARPg4B .card-wrapper {
  height: 100%;
}
.cid-srsrARPg4B P {
  color: #1d1d1b;
}
.cid-srszwS5P8B {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-srszwS5P8B .images-container.container-fluid {
  padding: 0;
}
.cid-srszwS5P8B .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-srszwS5P8B .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-srszwS5P8B .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-srszwS5P8B .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-srszwS5P8B .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-srszwS5P8B .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-srszwS5P8B .img-item {
    width: 100% !important;
  }
  .cid-srszwS5P8B .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-srstJiAX0s {
  background: #ffffff;
}
.cid-srstJiAX0s .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-srstJiAX0s figcaption {
  position: relative;
}
.cid-srstJiAX0s figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-srstJiAX0s .image-block {
    width: 100% !important;
  }
}
.cid-srsv2v1gun {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srsv2v1gun .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-srsv2v1gun h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-srsv2v1gun .space_down_50 {
  margin-bottom: 50px;
}
.cid-srsv4Dx7Bo {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-srsv4Dx7Bo h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-srsv4Dx7Bo p {
  color: #767676;
  text-align: left;
}
.cid-srsv4Dx7Bo .card-box {
  padding-top: 2rem;
}
.cid-srsv4Dx7Bo .card-wrapper {
  height: 100%;
}
.cid-srsv4Dx7Bo P {
  color: #1d1d1b;
}
.cid-srsAhcT4v6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-srsAhcT4v6 .images-container.container-fluid {
  padding: 0;
}
.cid-srsAhcT4v6 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-srsAhcT4v6 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-srsAhcT4v6 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-srsAhcT4v6 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-srsAhcT4v6 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-srsAhcT4v6 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-srsAhcT4v6 .img-item {
    width: 100% !important;
  }
  .cid-srsAhcT4v6 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-srsCJT9lgw {
  background: #ffffff;
}
.cid-srsCJT9lgw .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-srsCJT9lgw figcaption {
  position: relative;
}
.cid-srsCJT9lgw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-srsCJT9lgw .image-block {
    width: 100% !important;
  }
}
.cid-srswXBsiGC {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srswXBsiGC h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-srswXBsiGC p {
  color: #767676;
  text-align: left;
}
.cid-srswXBsiGC .card-box {
  padding-top: 2rem;
}
.cid-srswXBsiGC .card-wrapper {
  height: 100%;
}
.cid-srswXBsiGC P {
  color: #1d1d1b;
}
.cid-srsGgL9i7a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srsGgL9i7a h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-srsGgL9i7a p {
  color: #767676;
  text-align: left;
}
.cid-srsGgL9i7a .card-box {
  padding-top: 2rem;
}
.cid-srsGgL9i7a .card-wrapper {
  height: 100%;
}
.cid-u6g5BuXyI7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u6g5BuXyI7 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6g5BuXyI7 p {
  color: #767676;
  text-align: left;
}
.cid-u6g5BuXyI7 .card-box {
  padding-top: 2rem;
}
.cid-u6g5BuXyI7 .card-wrapper {
  height: 100%;
}
.cid-u6g5BuXyI7 P {
  text-align: left;
}
.cid-ss6OzOKoOP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ss6OzOKoOP .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-ss6OzOKoOP .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-ss6OzOKoOP .mbr-figure img {
    width: 100% !important;
  }
}
.cid-srsDZOIjBb {
  background: #ffffff;
}
.cid-srsDZOIjBb .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-srsDZOIjBb figcaption {
  position: relative;
}
.cid-srsDZOIjBb figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-srsDZOIjBb .image-block {
    width: 100% !important;
  }
}
.cid-srsy2sOinm {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-srsy2sOinm h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-srsy2sOinm p {
  color: #767676;
  text-align: left;
}
.cid-srsy2sOinm .card-box {
  padding-top: 2rem;
}
.cid-srsy2sOinm .card-wrapper {
  height: 100%;
}
.cid-srsy2sOinm P {
  color: #1d1d1b;
}
.cid-sszGdnS6si {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-sszGdnS6si .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-sszGdnS6si h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sszGdnS6si .space_down_30 {
  margin-bottom: 30px;
}
.cid-sszGdnS6si .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ss6QEbmFmV {
  background: #ffffff;
}
.cid-ss6QEbmFmV .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ss6QEbmFmV figcaption {
  position: relative;
}
.cid-ss6QEbmFmV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ss6QEbmFmV .image-block {
    width: 100% !important;
  }
}
.cid-txgsoxCLJU {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-12-web-2000x1333.jpeg");
}
.cid-txgsoxCLJU H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-txgsoxCLJU .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-txgsoxCLJU .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-txgsoxCLJU .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-txgsoxCLJU a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-txgsoxCLJU a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ss6RScyVGL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ss6RScyVGL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-ss6RScyVGL p {
  color: #767676;
  text-align: left;
}
.cid-ss6RScyVGL .card-box {
  padding-top: 2rem;
}
.cid-ss6RScyVGL .card-wrapper {
  height: 100%;
}
.cid-tVFK7V818T {
  background: #ffffff;
}
.cid-tVFK7V818T .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tVFK7V818T figcaption {
  position: relative;
}
.cid-tVFK7V818T figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tVFK7V818T .image-block {
    width: 100% !important;
  }
}
.cid-tVFKdoBK3a {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVFKdoBK3a .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tVFKdoBK3a h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVFKdoBK3a .space_down_50 {
  margin-bottom: 50px;
}
.cid-tM5rnjSk7n {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tM5rnjSk7n .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tM5rnjSk7n h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tM5rnjSk7n .space_down_50 {
  margin-bottom: 50px;
}
.cid-tM5rnjSk7n .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tVFKcgasTP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tVFKcgasTP .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tVFKcgasTP h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVFKcgasTP .space_down_50 {
  margin-bottom: 50px;
}
.cid-tVFKcgasTP .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tVFLdKBtkW {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tVFLdKBtkW .image-block {
  margin: auto;
}
.cid-tVFLdKBtkW figcaption {
  position: relative;
}
.cid-tVFLdKBtkW figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tVFLdKBtkW .image-block {
    width: 100% !important;
  }
}
.cid-tM5ropu1pI {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tM5ropu1pI .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tM5ropu1pI .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-tM5ropu1pI .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tM5ropu1pI a:hover {
  Color: #a76645;
}
.cid-tM5ropu1pI a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tM5ropu1pI .btn-black-outline:hover,
.cid-tM5ropu1pI .btn-black-outline:focus,
.cid-tM5ropu1pI .btn-black-outline.focus,
.cid-tM5ropu1pI .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tM5ropu1pI .display-5 {
    line-height: 1;
  }
  .cid-tM5ropu1pI .btn {
    font-size: 1.5rem !important;
  }
  .cid-tM5ropu1pI .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tR4rI71CX4 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tR4rI71CX4 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tR4rI71CX4 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-tR4rI71CX4 .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tR4rI71CX4 a:hover {
  Color: #a76645;
}
.cid-tR4rI71CX4 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tR4rI71CX4 .btn-black-outline:hover,
.cid-tR4rI71CX4 .btn-black-outline:focus,
.cid-tR4rI71CX4 .btn-black-outline.focus,
.cid-tR4rI71CX4 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tR4rI71CX4 .display-5 {
    line-height: 1;
  }
  .cid-tR4rI71CX4 .btn {
    font-size: 1.5rem !important;
  }
  .cid-tR4rI71CX4 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tR4rJ96QaZ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tR4rJ96QaZ .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tR4rJ96QaZ .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-tR4rJ96QaZ .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tR4rJ96QaZ a:hover {
  Color: #a76645;
}
.cid-tR4rJ96QaZ a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tR4rJ96QaZ .btn-black-outline:hover,
.cid-tR4rJ96QaZ .btn-black-outline:focus,
.cid-tR4rJ96QaZ .btn-black-outline.focus,
.cid-tR4rJ96QaZ .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tR4rJ96QaZ .display-5 {
    line-height: 1;
  }
  .cid-tR4rJ96QaZ .btn {
    font-size: 1.5rem !important;
  }
  .cid-tR4rJ96QaZ .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tR4t55x7rW {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tR4t55x7rW .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tR4t55x7rW .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-tR4t55x7rW .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tR4t55x7rW a:hover {
  Color: #a76645;
}
.cid-tR4t55x7rW a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tR4t55x7rW .btn-black-outline:hover,
.cid-tR4t55x7rW .btn-black-outline:focus,
.cid-tR4t55x7rW .btn-black-outline.focus,
.cid-tR4t55x7rW .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tR4t55x7rW .display-5 {
    line-height: 1;
  }
  .cid-tR4t55x7rW .btn {
    font-size: 1.5rem !important;
  }
  .cid-tR4t55x7rW .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tVFKX6CpoA {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tVFKX6CpoA .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tVFKX6CpoA .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-tVFKX6CpoA .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tVFKX6CpoA a:hover {
  Color: #a76645;
}
.cid-tVFKX6CpoA a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVFKX6CpoA .btn-black-outline:hover,
.cid-tVFKX6CpoA .btn-black-outline:focus,
.cid-tVFKX6CpoA .btn-black-outline.focus,
.cid-tVFKX6CpoA .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVFKX6CpoA .display-5 {
    line-height: 1;
  }
  .cid-tVFKX6CpoA .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVFKX6CpoA .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tVFKnxN5Ce {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 60px;
}
.cid-tVFKnxN5Ce .image-block {
  margin: auto;
}
.cid-tVFKnxN5Ce figcaption {
  position: relative;
}
.cid-tVFKnxN5Ce figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tVFKnxN5Ce .image-block {
    width: 100% !important;
  }
}
.cid-tVFLHkbfDP {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/bg-camouflage-bright-w-2000x1183.jpg");
}
.cid-tVFLHkbfDP .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-tVFLHkbfDP h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tVFLHkbfDP p {
  color: #767676;
  text-align: left;
}
.cid-tVFLHkbfDP .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-tVFLHkbfDP .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tVFLHkbfDP .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tVFLHkbfDP .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tVFLHkbfDP .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tVFLHkbfDP .notched-box:before,
.cid-tVFLHkbfDP .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-tVFLHkbfDP .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-tVFLHkbfDP .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-tVFLHkbfDP .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-tVFLHkbfDP .border:before,
.cid-tVFLHkbfDP .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-tVFLHkbfDP .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-tVFLHkbfDP .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-tVFLHkbfDP .mbr-author-name {
  padding-left: 40px;
}
.cid-tVFLHkbfDP P {
  color: #000000;
  line-height: 1.3;
}
.cid-tVFLHkbfDP .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-smDAz65pB8 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-16-2000x1330.png");
}
.cid-smDAz65pB8 H2 {
  color: #171717;
  line-height: 1.2;
}
.cid-smDAz65pB8 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-smDAz65pB8 .breites_Zitat,
  .cid-smDAz65pB8 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-spisgeCK9o {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spisgeCK9o .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spisgeCK9o h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spisgeCK9o p {
  color: #767676;
  text-align: left;
}
.cid-spisgeCK9o .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spisgeCK9o .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spisgeCK9o .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spisgeCK9o .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spisgeCK9o .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spisgeCK9o .notched-box:before,
.cid-spisgeCK9o .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spisgeCK9o .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spisgeCK9o .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spisgeCK9o .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spisgeCK9o .border:before,
.cid-spisgeCK9o .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spisgeCK9o .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spisgeCK9o .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spisgeCK9o .mbr-author-name {
  padding-left: 40px;
}
.cid-spisgeCK9o P {
  color: #000000;
  line-height: 1.3;
}
.cid-spisgeCK9o .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spisgJqFbm {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-spisgJqFbm .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spisgJqFbm h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spisgJqFbm p {
  color: #767676;
  text-align: left;
}
.cid-spisgJqFbm .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spisgJqFbm .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spisgJqFbm .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spisgJqFbm .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spisgJqFbm .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spisgJqFbm .notched-box:before,
.cid-spisgJqFbm .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spisgJqFbm .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spisgJqFbm .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spisgJqFbm .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spisgJqFbm .border:before,
.cid-spisgJqFbm .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spisgJqFbm .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spisgJqFbm .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spisgJqFbm .mbr-author-name {
  padding-left: 40px;
}
.cid-spisgJqFbm P {
  color: #000000;
  line-height: 1.3;
}
.cid-spisgJqFbm .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-ss6VLAiRG1 {
  background-image: url("../../../assets/images/unserewaffen-zps-78.jpeg");
}
.cid-ss6VLAiRG1 P {
  color: #767676;
}
.cid-smDQwla087 {
  background: #ffffff;
}
.cid-smDQwla087 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-smDQwla087 figcaption {
  position: relative;
}
.cid-smDQwla087 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-smDQwla087 .image-block {
    width: 100% !important;
  }
}
.cid-txgspFQc7j {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-12b-web-2000x672.jpg");
}
.cid-txgspFQc7j H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-txgspFQc7j .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-txgspFQc7j .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-txgspFQc7j .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-txgspFQc7j a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-txgspFQc7j a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sjmqnZMKOh {
  background: #ffffff;
}
.cid-sjmqnZMKOh .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sjmqnZMKOh .mbr-figure {
  margin: 0 auto;
}
.cid-sjmqnZMKOh figcaption {
  position: relative;
}
.cid-sjmqnZMKOh figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sjmqnZMKOh .image-block {
    width: 100% !important;
  }
}
.cid-sevVpq0Hlt {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sevVpq0Hlt H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-sevVpq0Hlt .mbr-section-subtitle {
  color: #ffffff;
}
.cid-snXweTbfRW {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-snXweTbfRW .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-snXweTbfRW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snXweTbfRW p {
  color: #767676;
  text-align: left;
}
.cid-snXweTbfRW .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-snXweTbfRW .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-snXweTbfRW .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-snXweTbfRW .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snXweTbfRW .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-snXweTbfRW .notched-box:before,
.cid-snXweTbfRW .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-snXweTbfRW .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-snXweTbfRW .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-snXweTbfRW .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-snXweTbfRW .border:before,
.cid-snXweTbfRW .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-snXweTbfRW .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-snXweTbfRW .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-snXweTbfRW .mbr-author-name {
  padding-left: 40px;
}
.cid-snXweTbfRW P {
  color: #ffffff;
}
.cid-snXweTbfRW .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-snXweTbfRW a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-snXweTbfRW a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-snXwfUyEPK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-snXwfUyEPK .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-snXwfUyEPK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snXwfUyEPK p {
  color: #767676;
  text-align: left;
}
.cid-snXwfUyEPK .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-snXwfUyEPK .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-snXwfUyEPK .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-snXwfUyEPK .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snXwfUyEPK .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-snXwfUyEPK .notched-box:before,
.cid-snXwfUyEPK .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-snXwfUyEPK .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-snXwfUyEPK .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-snXwfUyEPK .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-snXwfUyEPK .border:before,
.cid-snXwfUyEPK .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-snXwfUyEPK .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-snXwfUyEPK .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-snXwfUyEPK .mbr-author-name {
  padding-left: 40px;
}
.cid-snXwfUyEPK P {
  color: #ffffff;
}
.cid-snXwfUyEPK .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-snXwfUyEPK a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-snXwfUyEPK a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-snXwhsgUCM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-snXwhsgUCM .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-snXwhsgUCM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snXwhsgUCM p {
  color: #767676;
  text-align: left;
}
.cid-snXwhsgUCM .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-snXwhsgUCM .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-snXwhsgUCM .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-snXwhsgUCM .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snXwhsgUCM .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-snXwhsgUCM .notched-box:before,
.cid-snXwhsgUCM .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-snXwhsgUCM .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-snXwhsgUCM .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-snXwhsgUCM .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-snXwhsgUCM .border:before,
.cid-snXwhsgUCM .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-snXwhsgUCM .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-snXwhsgUCM .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-snXwhsgUCM .mbr-author-name {
  padding-left: 40px;
}
.cid-snXwhsgUCM P {
  color: #ffffff;
}
.cid-snXwhsgUCM .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-snXwhsgUCM a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-snXwhsgUCM a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sevVprQAnA {
  background: #ffffff;
}
.cid-sevVprQAnA .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sevVprQAnA figcaption {
  position: relative;
}
.cid-sevVprQAnA figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sevVprQAnA .image-block {
    width: 300% !important;
  }
}
.cid-uccq15UCcw {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-uccq15UCcw .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-uccq15UCcw .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccq15UCcw .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccq15UCcw .mbr-figure,
  .cid-uccq15UCcw img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccq15UCcw .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccq15UCcw .mbr-author-desc {
  color: #000000;
}
.cid-uccq15UCcw h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccq15UCcw .text_block {
  margin-top: 0px;
}
.cid-uccq15UCcw .h2_block {
  margin-bottom: 20px;
}
.cid-uccq15UCcw .mbr-figure {
  align-self: flex-start;
}
.cid-uccq15UCcw .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccq15UCcw .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccq15UCcw .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccq15UCcw a svg polygon {
  fill: white !important;
}
.cid-uccq15UCcw a:hover {
  Color: #F9CEB2!important;
}
.cid-uccq15UCcw a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccq15UCcw .btn-white-outline:hover,
.cid-uccq15UCcw .btn-white-outline:focus,
.cid-uccq15UCcw .btn-white-outline.focus,
.cid-uccq15UCcw .btn-white-outline.active,
.cid-uccq15UCcw .btn-black-outline:hover,
.cid-uccq15UCcw .btn-black-outline:focus,
.cid-uccq15UCcw .btn-black-outline.focus,
.cid-uccq15UCcw .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccq15UCcw .display-5 {
    line-height: 1;
  }
  .cid-uccq15UCcw .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccq15UCcw .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccq15UCcw .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-sevVpshNxX {
  background: #ffffff;
}
.cid-sevVpshNxX .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sevVpshNxX figcaption {
  position: relative;
}
.cid-sevVpshNxX figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sevVpshNxX .image-block {
    width: 300% !important;
  }
}
.cid-snXue5fz30 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-snXue5fz30 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-snXue5fz30 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snXue5fz30 p {
  color: #767676;
  text-align: left;
}
.cid-snXue5fz30 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-snXue5fz30 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-snXue5fz30 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-snXue5fz30 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snXue5fz30 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-snXue5fz30 .notched-box:before,
.cid-snXue5fz30 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-snXue5fz30 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-snXue5fz30 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-snXue5fz30 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-snXue5fz30 .border:before,
.cid-snXue5fz30 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-snXue5fz30 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-snXue5fz30 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-snXue5fz30 .mbr-author-name {
  padding-left: 40px;
}
.cid-snXue5fz30 P {
  color: #ffffff;
}
.cid-snXue5fz30 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-snXue5fz30 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-snXue5fz30 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-snXufBMPzO {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-12-1500x622.jpg");
}
.cid-snXufBMPzO H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-snXufBMPzO .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-snXufBMPzO .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-snXufBMPzO .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-snXueuTTed {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-snXueuTTed .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-snXueuTTed h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-snXueuTTed p {
  color: #767676;
  text-align: left;
}
.cid-snXueuTTed .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-snXueuTTed .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-snXueuTTed .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-snXueuTTed .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-snXueuTTed .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-snXueuTTed .notched-box:before,
.cid-snXueuTTed .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-snXueuTTed .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-snXueuTTed .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-snXueuTTed .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-snXueuTTed .border:before,
.cid-snXueuTTed .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-snXueuTTed .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-snXueuTTed .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-snXueuTTed .mbr-author-name {
  padding-left: 40px;
}
.cid-snXueuTTed P {
  color: #ffffff;
}
.cid-snXueuTTed .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-snXueuTTed a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-snXueuTTed a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ss6QWrlJeR {
  background: #ffffff;
}
.cid-ss6QWrlJeR .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ss6QWrlJeR figcaption {
  position: relative;
}
.cid-ss6QWrlJeR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ss6QWrlJeR .image-block {
    width: 100% !important;
  }
}
.cid-sevVpsZlgG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sevVpsZlgG .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-sevVpsZlgG h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sevVpsZlgG .space_down_30 {
  margin-bottom: 30px;
}
.cid-sevVpsZlgG .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-ss6ZBX1HCt {
  background: #ffffff;
}
.cid-ss6ZBX1HCt .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ss6ZBX1HCt figcaption {
  position: relative;
}
.cid-ss6ZBX1HCt figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ss6ZBX1HCt .image-block {
    width: 100% !important;
  }
}
.cid-spWw9Z2tsr {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spWw9Z2tsr .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spWw9Z2tsr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spWw9Z2tsr p {
  color: #767676;
  text-align: left;
}
.cid-spWw9Z2tsr .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spWw9Z2tsr .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spWw9Z2tsr .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spWw9Z2tsr .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spWw9Z2tsr .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spWw9Z2tsr .notched-box:before,
.cid-spWw9Z2tsr .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spWw9Z2tsr .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spWw9Z2tsr .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spWw9Z2tsr .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spWw9Z2tsr .border:before,
.cid-spWw9Z2tsr .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spWw9Z2tsr .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spWw9Z2tsr .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spWw9Z2tsr .mbr-author-name {
  padding-left: 40px;
}
.cid-spWw9Z2tsr P {
  color: #000000;
  line-height: 1.3;
}
.cid-spWw9Z2tsr .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spWwaIIki1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spWwaIIki1 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spWwaIIki1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spWwaIIki1 p {
  color: #767676;
  text-align: left;
}
.cid-spWwaIIki1 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spWwaIIki1 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spWwaIIki1 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spWwaIIki1 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spWwaIIki1 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spWwaIIki1 .notched-box:before,
.cid-spWwaIIki1 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spWwaIIki1 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spWwaIIki1 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spWwaIIki1 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spWwaIIki1 .border:before,
.cid-spWwaIIki1 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spWwaIIki1 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spWwaIIki1 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spWwaIIki1 .mbr-author-name {
  padding-left: 40px;
}
.cid-spWwaIIki1 P {
  color: #000000;
  line-height: 1.3;
}
.cid-spWwaIIki1 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spWwbg9QmR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spWwbg9QmR .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spWwbg9QmR h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spWwbg9QmR p {
  color: #767676;
  text-align: left;
}
.cid-spWwbg9QmR .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spWwbg9QmR .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spWwbg9QmR .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spWwbg9QmR .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spWwbg9QmR .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spWwbg9QmR .notched-box:before,
.cid-spWwbg9QmR .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spWwbg9QmR .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spWwbg9QmR .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spWwbg9QmR .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spWwbg9QmR .border:before,
.cid-spWwbg9QmR .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spWwbg9QmR .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spWwbg9QmR .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spWwbg9QmR .mbr-author-name {
  padding-left: 40px;
}
.cid-spWwbg9QmR P {
  color: #000000;
  line-height: 1.3;
}
.cid-spWwbg9QmR .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spWwbK3DgN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spWwbK3DgN .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spWwbK3DgN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spWwbK3DgN p {
  color: #767676;
  text-align: left;
}
.cid-spWwbK3DgN .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spWwbK3DgN .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spWwbK3DgN .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spWwbK3DgN .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spWwbK3DgN .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spWwbK3DgN .notched-box:before,
.cid-spWwbK3DgN .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spWwbK3DgN .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spWwbK3DgN .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spWwbK3DgN .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spWwbK3DgN .border:before,
.cid-spWwbK3DgN .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spWwbK3DgN .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spWwbK3DgN .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spWwbK3DgN .mbr-author-name {
  padding-left: 40px;
}
.cid-spWwbK3DgN P {
  color: #000000;
  line-height: 1.3;
}
.cid-spWwbK3DgN .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spWwcgMEJx {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-spWwcgMEJx .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spWwcgMEJx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spWwcgMEJx p {
  color: #767676;
  text-align: left;
}
.cid-spWwcgMEJx .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spWwcgMEJx .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spWwcgMEJx .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spWwcgMEJx .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spWwcgMEJx .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spWwcgMEJx .notched-box:before,
.cid-spWwcgMEJx .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spWwcgMEJx .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spWwcgMEJx .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spWwcgMEJx .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spWwcgMEJx .border:before,
.cid-spWwcgMEJx .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spWwcgMEJx .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spWwcgMEJx .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spWwcgMEJx .mbr-author-name {
  padding-left: 40px;
}
.cid-spWwcgMEJx P {
  color: #000000;
  line-height: 1.3;
}
.cid-spWwcgMEJx .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spWweDtgGQ {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-4-1500x352.jpg");
}
.cid-spWweDtgGQ H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-spWweDtgGQ .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-spWweDtgGQ .breites_Zitat,
  .cid-spWweDtgGQ .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-spWwgaK6LE {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spWwgaK6LE .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spWwgaK6LE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spWwgaK6LE p {
  color: #767676;
  text-align: left;
}
.cid-spWwgaK6LE .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spWwgaK6LE .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spWwgaK6LE .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spWwgaK6LE .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spWwgaK6LE .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spWwgaK6LE .notched-box:before,
.cid-spWwgaK6LE .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spWwgaK6LE .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spWwgaK6LE .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spWwgaK6LE .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spWwgaK6LE .border:before,
.cid-spWwgaK6LE .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spWwgaK6LE .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spWwgaK6LE .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spWwgaK6LE .mbr-author-name {
  padding-left: 40px;
}
.cid-spWwgaK6LE P {
  color: #000000;
  line-height: 1.3;
}
.cid-spWwgaK6LE .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spWwgCxjcn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spWwgCxjcn .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spWwgCxjcn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spWwgCxjcn p {
  color: #767676;
  text-align: left;
}
.cid-spWwgCxjcn .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spWwgCxjcn .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spWwgCxjcn .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spWwgCxjcn .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spWwgCxjcn .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spWwgCxjcn .notched-box:before,
.cid-spWwgCxjcn .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spWwgCxjcn .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spWwgCxjcn .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spWwgCxjcn .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spWwgCxjcn .border:before,
.cid-spWwgCxjcn .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spWwgCxjcn .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spWwgCxjcn .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spWwgCxjcn .mbr-author-name {
  padding-left: 40px;
}
.cid-spWwgCxjcn P {
  color: #000000;
  line-height: 1.3;
}
.cid-spWwgCxjcn .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spWwh1BGzD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spWwh1BGzD .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spWwh1BGzD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spWwh1BGzD p {
  color: #767676;
  text-align: left;
}
.cid-spWwh1BGzD .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spWwh1BGzD .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spWwh1BGzD .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spWwh1BGzD .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spWwh1BGzD .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spWwh1BGzD .notched-box:before,
.cid-spWwh1BGzD .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spWwh1BGzD .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spWwh1BGzD .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spWwh1BGzD .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spWwh1BGzD .border:before,
.cid-spWwh1BGzD .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spWwh1BGzD .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spWwh1BGzD .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spWwh1BGzD .mbr-author-name {
  padding-left: 40px;
}
.cid-spWwh1BGzD P {
  color: #000000;
  line-height: 1.3;
}
.cid-spWwh1BGzD .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spWwhpiYg1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spWwhpiYg1 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spWwhpiYg1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spWwhpiYg1 p {
  color: #767676;
  text-align: left;
}
.cid-spWwhpiYg1 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spWwhpiYg1 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spWwhpiYg1 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spWwhpiYg1 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spWwhpiYg1 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spWwhpiYg1 .notched-box:before,
.cid-spWwhpiYg1 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spWwhpiYg1 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spWwhpiYg1 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spWwhpiYg1 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spWwhpiYg1 .border:before,
.cid-spWwhpiYg1 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spWwhpiYg1 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spWwhpiYg1 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spWwhpiYg1 .mbr-author-name {
  padding-left: 40px;
}
.cid-spWwhpiYg1 P {
  color: #000000;
  line-height: 1.3;
}
.cid-spWwhpiYg1 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spWwhSW01N {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spWwhSW01N .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spWwhSW01N h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spWwhSW01N p {
  color: #767676;
  text-align: left;
}
.cid-spWwhSW01N .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spWwhSW01N .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spWwhSW01N .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spWwhSW01N .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spWwhSW01N .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spWwhSW01N .notched-box:before,
.cid-spWwhSW01N .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spWwhSW01N .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spWwhSW01N .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spWwhSW01N .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spWwhSW01N .border:before,
.cid-spWwhSW01N .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spWwhSW01N .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spWwhSW01N .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spWwhSW01N .mbr-author-name {
  padding-left: 40px;
}
.cid-spWwhSW01N P {
  color: #000000;
  line-height: 1.3;
}
.cid-spWwhSW01N .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spWwkII4kc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spWwkII4kc .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spWwkII4kc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spWwkII4kc p {
  color: #767676;
  text-align: left;
}
.cid-spWwkII4kc .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spWwkII4kc .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spWwkII4kc .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spWwkII4kc .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spWwkII4kc .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spWwkII4kc .notched-box:before,
.cid-spWwkII4kc .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spWwkII4kc .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spWwkII4kc .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spWwkII4kc .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spWwkII4kc .border:before,
.cid-spWwkII4kc .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spWwkII4kc .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spWwkII4kc .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spWwkII4kc .mbr-author-name {
  padding-left: 40px;
}
.cid-spWwkII4kc P {
  color: #000000;
  line-height: 1.3;
}
.cid-spWwkII4kc .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-spWwlatbbO {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-spWwlatbbO .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-spWwlatbbO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spWwlatbbO p {
  color: #767676;
  text-align: left;
}
.cid-spWwlatbbO .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-spWwlatbbO .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-spWwlatbbO .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-spWwlatbbO .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-spWwlatbbO .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-spWwlatbbO .notched-box:before,
.cid-spWwlatbbO .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-spWwlatbbO .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-spWwlatbbO .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-spWwlatbbO .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-spWwlatbbO .border:before,
.cid-spWwlatbbO .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-spWwlatbbO .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-spWwlatbbO .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-spWwlatbbO .mbr-author-name {
  padding-left: 40px;
}
.cid-spWwlatbbO P {
  color: #000000;
  line-height: 1.3;
}
.cid-spWwlatbbO .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-ss70BHgjoc {
  background: #ffffff;
}
.cid-ss70BHgjoc .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ss70BHgjoc figcaption {
  position: relative;
}
.cid-ss70BHgjoc figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ss70BHgjoc .image-block {
    width: 100% !important;
  }
}
.cid-u7yUIBAbH0 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yUIBAbH0 .content {
    text-align: center;
  }
  .cid-u7yUIBAbH0 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yUIBAbH0 .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yUIBAbH0 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yUIBAbH0 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yUIBAbH0 .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yUIBAbH0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yUIBAbH0 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yUIBAbH0 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yUIBAbH0 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yUIBAbH0 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yUIBAbH0 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yUIBAbH0 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yUIBAbH0 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yUIBAbH0 H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yUIBAbH0 P {
  color: #ffffff;
}
.cid-u7yUIBAbH0 .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yUIBAbH0 .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yUIBAbH0 .logo_footer {
  position: relative;
}
.cid-u7yUIBAbH0 .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yUIBAbH0 .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yUIBAbH0 .col,
  .cid-u7yUIBAbH0 .col-1,
  .cid-u7yUIBAbH0 .col-10,
  .cid-u7yUIBAbH0 .col-11,
  .cid-u7yUIBAbH0 .col-12,
  .cid-u7yUIBAbH0 .col-2,
  .cid-u7yUIBAbH0 .col-3,
  .cid-u7yUIBAbH0 .col-4,
  .cid-u7yUIBAbH0 .col-5,
  .cid-u7yUIBAbH0 .col-6,
  .cid-u7yUIBAbH0 .col-7,
  .cid-u7yUIBAbH0 .col-8,
  .cid-u7yUIBAbH0 .col-9,
  .cid-u7yUIBAbH0 .col-auto,
  .cid-u7yUIBAbH0 .col-lg,
  .cid-u7yUIBAbH0 .col-lg-1,
  .cid-u7yUIBAbH0 .col-lg-10,
  .cid-u7yUIBAbH0 .col-lg-11,
  .cid-u7yUIBAbH0 .col-lg-12,
  .cid-u7yUIBAbH0 .col-lg-2,
  .cid-u7yUIBAbH0 .col-lg-3,
  .cid-u7yUIBAbH0 .col-lg-4,
  .cid-u7yUIBAbH0 .col-lg-5,
  .cid-u7yUIBAbH0 .col-lg-6,
  .cid-u7yUIBAbH0 .col-lg-7,
  .cid-u7yUIBAbH0 .col-lg-8,
  .cid-u7yUIBAbH0 .col-lg-9,
  .cid-u7yUIBAbH0 .col-lg-auto,
  .cid-u7yUIBAbH0 .col-md,
  .cid-u7yUIBAbH0 .col-md-1,
  .cid-u7yUIBAbH0 .col-md-10,
  .cid-u7yUIBAbH0 .col-md-11,
  .cid-u7yUIBAbH0 .col-md-12,
  .cid-u7yUIBAbH0 .col-md-2,
  .cid-u7yUIBAbH0 .col-md-3,
  .cid-u7yUIBAbH0 .col-md-4,
  .cid-u7yUIBAbH0 .col-md-5,
  .cid-u7yUIBAbH0 .col-md-6,
  .cid-u7yUIBAbH0 .col-md-7,
  .cid-u7yUIBAbH0 .col-md-8,
  .cid-u7yUIBAbH0 .col-md-9,
  .cid-u7yUIBAbH0 .col-md-auto,
  .cid-u7yUIBAbH0 .col-sm,
  .cid-u7yUIBAbH0 .col-sm-1,
  .cid-u7yUIBAbH0 .col-sm-10,
  .cid-u7yUIBAbH0 .col-sm-11,
  .cid-u7yUIBAbH0 .col-sm-12,
  .cid-u7yUIBAbH0 .col-sm-2,
  .cid-u7yUIBAbH0 .col-sm-3,
  .cid-u7yUIBAbH0 .col-sm-4,
  .cid-u7yUIBAbH0 .col-sm-5,
  .cid-u7yUIBAbH0 .col-sm-6,
  .cid-u7yUIBAbH0 .col-sm-7,
  .cid-u7yUIBAbH0 .col-sm-8,
  .cid-u7yUIBAbH0 .col-sm-9,
  .cid-u7yUIBAbH0 .col-sm-auto,
  .cid-u7yUIBAbH0 .col-xl,
  .cid-u7yUIBAbH0 .col-xl-1,
  .cid-u7yUIBAbH0 .col-xl-10,
  .cid-u7yUIBAbH0 .col-xl-11,
  .cid-u7yUIBAbH0 .col-xl-12,
  .cid-u7yUIBAbH0 .col-xl-2,
  .cid-u7yUIBAbH0 .col-xl-3,
  .cid-u7yUIBAbH0 .col-xl-4,
  .cid-u7yUIBAbH0 .col-xl-5,
  .cid-u7yUIBAbH0 .col-xl-6,
  .cid-u7yUIBAbH0 .col-xl-7,
  .cid-u7yUIBAbH0 .col-xl-8,
  .cid-u7yUIBAbH0 .col-xl-9,
  .cid-u7yUIBAbH0 .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yUIBAbH0 .content {
    text-align: left;
  }
  .cid-u7yUIBAbH0 .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yUIBAbH0 .logo_footer_box {
    position: relative;
  }
  .cid-u7yUIBAbH0 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yUIBAbH0 .logo_footer {
    position: relative;
  }
  .cid-u7yUIBAbH0 .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yUIBAbH0 .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRgIkVU5Kt {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRgIkVU5Kt {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-sBarTRR3tW {
  background-image: url("../../../assets/images/aris-header3-04-web-1600x768.jpg");
}
.cid-rRgJ9a2a4f {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRgJ9a2a4f .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRgJ9a2a4f h1 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRgJ9a2a4f .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRgJ9a2a4f .mbr-section-subtitle P {
  color: #000000;
}
.cid-rRgJ9a2a4f a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  color: #fff;
  padding-bottom: 3px;
}
.cid-rRgJ9a2a4f a:hover {
  color: #F9CEB2;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
}
.cid-rRgJDAZ1xz {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRgJDAZ1xz .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRgJDAZ1xz .video-block {
    width: 100% !important;
  }
}
.cid-rRgJDAZ1xz .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRgMFfPiSf {
  background-image: url("../../../assets/images/nazis-raus-1920x1440.jpg");
}
.cid-rRgMFfPiSf P {
  color: #767676;
}
.cid-rRgN56KCBx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-11-2000x1448.png");
}
.cid-rRgN56KCBx .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRgN56KCBx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRgN56KCBx p {
  color: #767676;
  text-align: left;
}
.cid-rRgN56KCBx .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRgN56KCBx .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRgN56KCBx .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRgN56KCBx .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRgN56KCBx .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRgN56KCBx .notched-box:before,
.cid-rRgN56KCBx .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRgN56KCBx .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRgN56KCBx .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRgN56KCBx .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRgN56KCBx .border:before,
.cid-rRgN56KCBx .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRgN56KCBx .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRgN56KCBx .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRgN56KCBx .mbr-author-name {
  padding-left: 40px;
}
.cid-rRgN56KCBx P {
  color: #000000;
}
.cid-rRgN56KCBx .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRgOiE9FLj {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #f9ceb2;
}
.cid-rRgOiE9FLj .images-container.container-fluid {
  padding: 0;
}
.cid-rRgOiE9FLj .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
  width: 100% !important;
}
.cid-rRgOiE9FLj .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRgOiE9FLj .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRgOiE9FLj .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRgOiE9FLj .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRgOiE9FLj .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
.cid-rRgOiE9FLj .media-container-row .img-item.item1 {
  padding: 0 11rem 0 0;
}
.cid-rRgOiE9FLj .empty {
  min-width: 100px;
  min-height: 50px;
}
@media (max-width: 992px) {
  .cid-rRgOiE9FLj .img-item {
    width: 100% !important;
  }
  .cid-rRgOiE9FLj .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRgOCZRgh2 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRgOCZRgh2 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRgOCZRgh2 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRgOCZRgh2 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRgOWA0XF4 {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rRgOWA0XF4 .images-container.container-fluid {
  padding: 0;
}
.cid-rRgOWA0XF4 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRgOWA0XF4 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRgOWA0XF4 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRgOWA0XF4 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRgOWA0XF4 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRgOWA0XF4 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRgOWA0XF4 .img-item {
    width: 100% !important;
  }
  .cid-rRgOWA0XF4 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRgPhugsKd {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRgPhugsKd .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRgPhugsKd .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRgPhugsKd .mbr-author-desc {
  color: #232;
}
.cid-rRgPhugsKd .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRgPhugsKd .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRgPhugsKd .mbr-figure,
  .cid-rRgPhugsKd img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-rRgPhugsKd h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRgPhugsKd .text_block {
  margin-top: 70px;
}
.cid-rRgPhugsKd .h2_block {
  margin-bottom: 20px;
}
.cid-rRgPhugsKd .mbr-figure {
  align-self: flex-start;
}
.cid-rRgPhugsKd .display-5 {
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}
.cid-rRgPhugsKd .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRgPhugsKd a:hover {
  Color: #a76645 !important;
}
.cid-rRgPhugsKd a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRgPhugsKd .btn-black-outline:hover,
.cid-rRgPhugsKd .btn-black-outline:focus,
.cid-rRgPhugsKd .btn-black-outline.focus,
.cid-rRgPhugsKd .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRgPhugsKd .display-5 {
    line-height: 1;
  }
  .cid-rRgPhugsKd .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRgPhugsKd .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRgQyU6oqk {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rRgQyU6oqk .images-container.container-fluid {
  padding: 0;
}
.cid-rRgQyU6oqk .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRgQyU6oqk .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRgQyU6oqk .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRgQyU6oqk .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRgQyU6oqk .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRgQyU6oqk .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRgQyU6oqk .img-item {
    width: 100% !important;
  }
  .cid-rRgQyU6oqk .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-u6fRu9NPva {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6fRu9NPva h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fRu9NPva p {
  color: #767676;
  text-align: left;
}
.cid-u6fRu9NPva .card-box {
  padding-top: 2rem;
}
.cid-u6fRu9NPva .card-wrapper {
  height: 100%;
}
.cid-u6fRu9NPva P {
  text-align: left;
}
.cid-rRgQDa1wEH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRgQDa1wEH .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
}
.cid-rRgQDa1wEH .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rRgQDa1wEH .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRgQDa1wEH .mbr-figure,
  .cid-rRgQDa1wEH img {
    max-height: 70px;
    width: auto;
    margin: auto;
  }
  .cid-rRgQDa1wEH .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRgQDa1wEH h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRgQDa1wEH .h2_block {
  margin-bottom: 20px;
}
.cid-rRgQDa1wEH .display-5 {
  line-height: 1.2;
}
.cid-rRgQHf5DbF {
  background-image: url("../../../assets/images/181203-heuteplus-8-1280x800.png");
}
.cid-rRgQHf5DbF P {
  color: #767676;
}
.cid-se4aXqFTM4 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-11-1500x622.jpg");
}
.cid-se4aXqFTM4 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-se4aXqFTM4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-se4aXqFTM4 span {
  visibility: hidden;
}
.cid-se4aXqFTM4 .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4aXqFTM4 span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rUbibCzDFI {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rUbibCzDFI .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rUbibCzDFI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUbibCzDFI p {
  color: #767676;
  text-align: left;
}
.cid-rUbibCzDFI .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rUbibCzDFI .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUbibCzDFI .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rUbibCzDFI .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUbibCzDFI .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rUbibCzDFI .notched-box:before,
.cid-rUbibCzDFI .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rUbibCzDFI .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rUbibCzDFI .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rUbibCzDFI .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rUbibCzDFI .border:before,
.cid-rUbibCzDFI .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rUbibCzDFI .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rUbibCzDFI .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rUbibCzDFI .mbr-author-name {
  padding-left: 40px;
}
.cid-rUbibCzDFI P {
  color: #000000;
  line-height: 1.3;
}
.cid-rUbibCzDFI .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rUbicmE6Hf {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rUbicmE6Hf .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rUbicmE6Hf h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rUbicmE6Hf p {
  color: #767676;
  text-align: left;
}
.cid-rUbicmE6Hf .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rUbicmE6Hf .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rUbicmE6Hf .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rUbicmE6Hf .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rUbicmE6Hf .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rUbicmE6Hf .notched-box:before,
.cid-rUbicmE6Hf .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rUbicmE6Hf .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rUbicmE6Hf .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rUbicmE6Hf .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rUbicmE6Hf .border:before,
.cid-rUbicmE6Hf .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rUbicmE6Hf .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rUbicmE6Hf .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rUbicmE6Hf .mbr-author-name {
  padding-left: 40px;
}
.cid-rUbicmE6Hf P {
  color: #000000;
  line-height: 1.3;
}
.cid-rUbicmE6Hf .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRqjfdussv {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRqjfdussv H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqjfdussv .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRqjfdussv .breites_Zitat,
  .cid-rRqjfdussv .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRgVNqKTMj {
  background-image: url("../../../assets/images/181201-zps-aris-header3-01-1600-1600x768.jpg");
}
.cid-rRgVNqKTMj P {
  color: #767676;
}
.cid-rRgW0jjFre {
  background: #ffffff;
}
.cid-rRgW0jjFre .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRgW0jjFre figcaption {
  position: relative;
}
.cid-rRgW0jjFre figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRgW0jjFre .image-block {
    width: 300% !important;
  }
}
.cid-rRgW1NWcI4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRgW1NWcI4 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRgW1NWcI4 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRgW1NWcI4 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRgW1NWcI4 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRgXQN5T2o {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRgXQN5T2o h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRgXQN5T2o p {
  color: #767676;
  text-align: left;
}
.cid-rRgXQN5T2o .card-box {
  padding-top: 2rem;
}
.cid-rRgXQN5T2o .card-wrapper {
  height: 100%;
}
.cid-rRgZ1z9Hzr {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRgZ1z9Hzr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRgZ1z9Hzr p {
  color: #767676;
  text-align: left;
}
.cid-rRgZ1z9Hzr .card-box {
  padding-top: 2rem;
}
.cid-rRgZ1z9Hzr .card-wrapper {
  height: 100%;
}
.cid-rRqjzlLUhA {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRqjzlLUhA H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqjzlLUhA .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRqjzlLUhA .breites_Zitat,
  .cid-rRqjzlLUhA .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRh0g6GN2X {
  background: #f9ceb2;
}
.cid-rRh0g6GN2X .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRh0g6GN2X figcaption {
  position: relative;
}
.cid-rRh0g6GN2X figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRh0g6GN2X .image-block {
    width: 300% !important;
  }
}
.cid-rRqjHi04FV {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-rRqjHi04FV H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqjHi04FV .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRqjHi04FV .breites_Zitat,
  .cid-rRqjHi04FV .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRh0pL6Ntv {
  background: #ffffff;
}
.cid-rRh0pL6Ntv .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRh0pL6Ntv figcaption {
  position: relative;
}
.cid-rRh0pL6Ntv figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRh0pL6Ntv .image-block {
    width: 100% !important;
  }
}
.cid-rRqjS9YbRg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRqjS9YbRg .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqjS9YbRg h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqjS9YbRg .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqjS9YbRg .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqnaXcZMP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRqnaXcZMP h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRqnaXcZMP p {
  color: #767676;
  text-align: left;
}
.cid-rRqnaXcZMP .card-box {
  padding-top: 2rem;
}
.cid-rRqnaXcZMP .card-wrapper {
  height: 100%;
}
.cid-rRqnaXcZMP P {
  color: #1d1d1b;
}
.cid-rRqokKaedC {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRqokKaedC .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqokKaedC h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqokKaedC .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqokKaedC .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqoyPHnIP {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRqoyPHnIP .images-container.container-fluid {
  padding: 0;
}
.cid-rRqoyPHnIP .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqoyPHnIP .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqoyPHnIP .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqoyPHnIP .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqoyPHnIP .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqoyPHnIP .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqoyPHnIP .img-item {
    width: 100% !important;
  }
  .cid-rRqoyPHnIP .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqpTN49p8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRqpTN49p8 .mbr-text {
  color: #1d1d1b;
}
.cid-rRqpTN49p8 .mbr-text p {
  background: #ffffff;
  padding: 1rem 0px !important;
}
.cid-rRqpTN49p8 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem !important;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqpTN49p8 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRqpTN49p8 p {
  line-height: 1.4;
}
.cid-rRqr3gGZL5 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-rRqr3gGZL5 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqr3gGZL5 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRqr3gGZL5 .breites_Zitat,
  .cid-rRqr3gGZL5 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRqroqkUe9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRqroqkUe9 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqroqkUe9 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqroqkUe9 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqroqkUe9 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqrM1L5bB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRqrM1L5bB h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRqrM1L5bB p {
  color: #767676;
  text-align: left;
}
.cid-rRqrM1L5bB .card-box {
  padding-top: 2rem;
}
.cid-rRqrM1L5bB .card-wrapper {
  height: 100%;
}
.cid-rRqrM1L5bB P {
  color: #1d1d1b;
}
.cid-rRqylTqUWi {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-rRqylTqUWi H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqylTqUWi .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRqylTqUWi .breites_Zitat,
  .cid-rRqylTqUWi .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRqysBrPia {
  background: #ffffff;
}
.cid-rRqysBrPia .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRqysBrPia figcaption {
  position: relative;
}
.cid-rRqysBrPia figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRqysBrPia .image-block {
    width: 300% !important;
  }
}
.cid-rRqywOQW4C {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRqywOQW4C H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqywOQW4C .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRqywOQW4C .breites_Zitat,
  .cid-rRqywOQW4C .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRqyFRhnSX {
  background-image: url("../../../assets/images/181201-zps-aris-header3-05-1600-1600x768.jpg");
}
.cid-rRqyFRhnSX P {
  color: #767676;
}
.cid-rRqyLFjEZd {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRqyLFjEZd H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRqyLFjEZd .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRqyLFjEZd .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRqyLFjEZd .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRqyPb5ebc {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRqyPb5ebc .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqyPb5ebc h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqyPb5ebc .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqyPb5ebc .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqySqWsae {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRqySqWsae .images-container.container-fluid {
  padding: 0;
}
.cid-rRqySqWsae .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqySqWsae .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqySqWsae .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqySqWsae .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqySqWsae .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqySqWsae .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqySqWsae .img-item {
    width: 100% !important;
  }
  .cid-rRqySqWsae .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqzki2FYo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRqzki2FYo h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRqzki2FYo p {
  color: #767676;
  text-align: left;
}
.cid-rRqzki2FYo .card-box {
  padding-top: 2rem;
}
.cid-rRqzki2FYo .card-wrapper {
  height: 100%;
}
.cid-rRqzwXeWcg {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-4-1500x1695.jpg");
}
.cid-rRqzwXeWcg .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRqzwXeWcg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRqzwXeWcg p {
  color: #767676;
  text-align: left;
}
.cid-rRqzwXeWcg .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRqzwXeWcg .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRqzwXeWcg .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRqzwXeWcg .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRqzwXeWcg .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRqzwXeWcg .notched-box:before,
.cid-rRqzwXeWcg .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRqzwXeWcg .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRqzwXeWcg .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRqzwXeWcg .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRqzwXeWcg .border:before,
.cid-rRqzwXeWcg .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRqzwXeWcg .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRqzwXeWcg .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRqzwXeWcg .mbr-author-name {
  padding-left: 40px;
}
.cid-rRqzwXeWcg P {
  color: #ffffff;
}
.cid-rRqzwXeWcg .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRqzBDUk9r {
  background-image: url("../../../assets/images/mdr-2-1279x716.png");
}
.cid-rRqzBDUk9r P {
  color: #767676;
}
.cid-rRqzE7JEhs {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRqzE7JEhs H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqzE7JEhs .mbr-section-subtitle {
  color: #1d1d1b;
}
.cid-rRqzSzBWzW {
  background: #ffffff;
}
.cid-rRqzSzBWzW .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRqzSzBWzW figcaption {
  position: relative;
}
.cid-rRqzSzBWzW figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRqzSzBWzW .image-block {
    width: 300% !important;
  }
}
.cid-rRqzVfUY12 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRqzVfUY12 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqzVfUY12 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRqzVfUY12 .breites_Zitat,
  .cid-rRqzVfUY12 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRqzYJ3gll {
  background-image: url("../../../assets/images/ndn-youtube-1280x800.png");
}
.cid-rRqzYJ3gll P {
  color: #767676;
}
.cid-rRqA1l0Hty {
  padding-top: 75px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRqA1l0Hty .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
}
.cid-rRqA1l0Hty .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rRqA1l0Hty .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRqA1l0Hty .mbr-figure,
  .cid-rRqA1l0Hty img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRqA1l0Hty .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRqA1l0Hty h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqA1l0Hty .h2_block {
  margin-bottom: 20px;
}
.cid-rRqA7ebIGq {
  background: #ffffff;
}
.cid-rRqA7ebIGq .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRqA7ebIGq figcaption {
  position: relative;
}
.cid-rRqA7ebIGq figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRqA7ebIGq .image-block {
    width: 100% !important;
  }
}
.cid-rRqAwDb0tT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRqAwDb0tT .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqAwDb0tT h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqAwDb0tT .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqAwDb0tT .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqAzFaedE {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRqAzFaedE .images-container.container-fluid {
  padding: 0;
}
.cid-rRqAzFaedE .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqAzFaedE .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqAzFaedE .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqAzFaedE .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqAzFaedE .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqAzFaedE .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqAzFaedE .img-item {
    width: 100% !important;
  }
  .cid-rRqAzFaedE .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqAKOKr3N {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRqAKOKr3N .images-container.container-fluid {
  padding: 0;
}
.cid-rRqAKOKr3N .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqAKOKr3N .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqAKOKr3N .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqAKOKr3N .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqAKOKr3N .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqAKOKr3N .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqAKOKr3N .img-item {
    width: 100% !important;
  }
  .cid-rRqAKOKr3N .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqAZeXnd5 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRqAZeXnd5 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRqAZeXnd5 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRqAZeXnd5 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRqAZeXnd5 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRqB2iCfTv {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRqB2iCfTv H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRqB2iCfTv .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRqB2iCfTv .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRqB2iCfTv .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-s8Xny4MSLt {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-s8Xny4MSLt H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-s8Xny4MSLt .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-s8Xny4MSLt .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-s8Xny4MSLt .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRqB6SbR4l {
  background-image: url("../../../assets/images/181203-heuteplus-1280x800.png");
}
.cid-rRqB6SbR4l P {
  color: #767676;
}
.cid-rRqB9QW97Q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRqB9QW97Q .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqB9QW97Q h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqB9QW97Q .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqB9QW97Q .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqBfYLVgg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRqBfYLVgg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRqBfYLVgg p {
  color: #767676;
  text-align: left;
}
.cid-rRqBfYLVgg .card-box {
  padding-top: 2rem;
}
.cid-rRqBfYLVgg .card-wrapper {
  height: 100%;
}
.cid-rRqBvCEc4C {
  background: #ffffff;
}
.cid-rRqBvCEc4C .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRqBvCEc4C figcaption {
  position: relative;
}
.cid-rRqBvCEc4C figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRqBvCEc4C .image-block {
    width: 100% !important;
  }
}
.cid-rRqBym9dHa {
  background-image: url("../../../assets/images/wefo-2000x1170.jpg");
}
.cid-rRqBym9dHa P {
  color: #767676;
}
.cid-rRqBEAXAAj {
  background: #ffffff;
}
.cid-rRqBEAXAAj .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRqBEAXAAj figcaption {
  position: relative;
}
.cid-rRqBEAXAAj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRqBEAXAAj .image-block {
    width: 300% !important;
  }
}
.cid-rRqBBn4mCq {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-11-2000x1448.png");
}
.cid-rRqBBn4mCq H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqBBn4mCq .mbr-section-subtitle {
  color: #1d1d1b;
}
.cid-rRqBJun65D {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRqBJun65D .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqBJun65D h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqBJun65D .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqBJun65D .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-rRqBJun65D a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  color: #fff;
  padding-bottom: 3px;
}
.cid-rRqBJun65D a:hover {
  color: #F9CEB2;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
}
.cid-rRqCnAzGDr {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-rRqCnAzGDr .images-container.container-fluid {
  padding: 0;
}
.cid-rRqCnAzGDr .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqCnAzGDr .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqCnAzGDr .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqCnAzGDr .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqCnAzGDr .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqCnAzGDr .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqCnAzGDr .img-item {
    width: 100% !important;
  }
  .cid-rRqCnAzGDr .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqCobGMV2 {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-rRqCobGMV2 .images-container.container-fluid {
  padding: 0;
}
.cid-rRqCobGMV2 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqCobGMV2 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqCobGMV2 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqCobGMV2 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqCobGMV2 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqCobGMV2 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqCobGMV2 .img-item {
    width: 100% !important;
  }
  .cid-rRqCobGMV2 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqCoQCR4x {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-rRqCoQCR4x .images-container.container-fluid {
  padding: 0;
}
.cid-rRqCoQCR4x .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqCoQCR4x .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqCoQCR4x .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqCoQCR4x .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqCoQCR4x .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqCoQCR4x .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqCoQCR4x .img-item {
    width: 100% !important;
  }
  .cid-rRqCoQCR4x .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tLR96rpUnO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tLR96rpUnO .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tLR96rpUnO h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tLR96rpUnO .space_down_50 {
  margin-bottom: 50px;
}
.cid-tLR96rpUnO .mbr-section-subtitle P {
  color: #ffffff;
  text-align: left;
}
.cid-tLR96rpUnO .quoteleft P {
  color: #888888;
  text-align: right;
}
.cid-tLR96rpUnO .quoteright P {
  color: #888888;
  text-align: left;
  position: absolute;
  bottom: 0;
}
.cid-tLR97sKhPq {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tLR97sKhPq .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tLR97sKhPq h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tLR97sKhPq .space_down_50 {
  margin-bottom: 50px;
}
.cid-tLR97sKhPq .mbr-section-subtitle P {
  color: #ffffff;
  text-align: left;
}
.cid-tLR97sKhPq .quoteleft P {
  color: #888888;
  text-align: right;
}
.cid-tLR97sKhPq .quoteright P {
  color: #888888;
  text-align: left;
  position: absolute;
  bottom: 0;
}
.cid-rRqD4LNWGA {
  padding-top: 45px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRqD4LNWGA .images-container.container-fluid {
  padding: 0;
}
.cid-rRqD4LNWGA .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqD4LNWGA .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqD4LNWGA .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqD4LNWGA .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqD4LNWGA .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqD4LNWGA .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqD4LNWGA .img-item {
    width: 100% !important;
  }
  .cid-rRqD4LNWGA .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqD6Jcs2X {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRqD6Jcs2X .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqD6Jcs2X h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqD6Jcs2X .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqD6Jcs2X .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqDeCTgWL {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRqDeCTgWL .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
}
.cid-rRqDeCTgWL .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rRqDeCTgWL .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRqDeCTgWL .mbr-figure,
  .cid-rRqDeCTgWL img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-rRqDeCTgWL .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRqDeCTgWL h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqDeCTgWL .h2_block {
  margin-bottom: 20px;
}
.cid-rRqDiUo546 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRqDiUo546 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqDiUo546 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRqDiUo546 .breites_Zitat,
  .cid-rRqDiUo546 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRqDpN9bXR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRqDpN9bXR .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqDpN9bXR h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqDpN9bXR .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqDpN9bXR .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqDv6CBGU {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRqDv6CBGU .images-container.container-fluid {
  padding: 0;
}
.cid-rRqDv6CBGU .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqDv6CBGU .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqDv6CBGU .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqDv6CBGU .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqDv6CBGU .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqDv6CBGU .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqDv6CBGU .img-item {
    width: 100% !important;
  }
  .cid-rRqDv6CBGU .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqDBglqC1 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRqDBglqC1 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqDBglqC1 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRqDBglqC1 .breites_Zitat,
  .cid-rRqDBglqC1 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRqDIbHgQG {
  background: #ffffff;
}
.cid-rRqDIbHgQG .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRqDIbHgQG figcaption {
  position: relative;
}
.cid-rRqDIbHgQG figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRqDIbHgQG .image-block {
    width: 300% !important;
  }
}
.cid-rRqDKVr6MC {
  background-image: url("../../../assets/images/bildschirmfoto-2019-03-21-um-15.29.03-2000x1384.png");
}
.cid-rRqDKVr6MC P {
  color: #767676;
}
.cid-rRqDVuKGSp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRqDVuKGSp .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqDVuKGSp h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqDVuKGSp .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqDVuKGSp .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqE2hauTz {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRqE2hauTz .images-container.container-fluid {
  padding: 0;
}
.cid-rRqE2hauTz .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqE2hauTz .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqE2hauTz .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqE2hauTz .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqE2hauTz .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqE2hauTz .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqE2hauTz .img-item {
    width: 100% !important;
  }
  .cid-rRqE2hauTz .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqE1HsMiC {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-rRqE1HsMiC .images-container.container-fluid {
  padding: 0;
}
.cid-rRqE1HsMiC .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqE1HsMiC .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqE1HsMiC .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqE1HsMiC .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqE1HsMiC .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqE1HsMiC .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqE1HsMiC .img-item {
    width: 100% !important;
  }
  .cid-rRqE1HsMiC .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqE7SjBko {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRqE7SjBko .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqE7SjBko h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqE7SjBko .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqE7SjBko .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqEfDaZXj {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRqEfDaZXj .images-container.container-fluid {
  padding: 0;
}
.cid-rRqEfDaZXj .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqEfDaZXj .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqEfDaZXj .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqEfDaZXj .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqEfDaZXj .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqEfDaZXj .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqEfDaZXj .img-item {
    width: 100% !important;
  }
  .cid-rRqEfDaZXj .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqEmRog0A {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-rRqEmRog0A H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqEmRog0A .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRqEmRog0A .breites_Zitat,
  .cid-rRqEmRog0A .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRqEChVkQM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRqEChVkQM .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqEChVkQM h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqEChVkQM .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqEChVkQM .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqEzGxZtK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRqEzGxZtK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRqEzGxZtK p {
  color: #767676;
  text-align: left;
}
.cid-rRqEzGxZtK .card-box {
  padding-top: 2rem;
}
.cid-rRqEzGxZtK .card-wrapper {
  height: 100%;
}
.cid-rRqEE3voAo {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRqEE3voAo .images-container.container-fluid {
  padding: 0;
}
.cid-rRqEE3voAo .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqEE3voAo .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqEE3voAo .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqEE3voAo .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqEE3voAo .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqEE3voAo .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqEE3voAo .img-item {
    width: 100% !important;
  }
  .cid-rRqEE3voAo .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqEKAtfP6 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRqEKAtfP6 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRqEKAtfP6 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRqEKAtfP6 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRqEKAtfP6 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRqELj1UsQ {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRqELj1UsQ H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRqELj1UsQ .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRqELj1UsQ .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRqELj1UsQ .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRgIThh7AB {
  background-image: url("../../../assets/images/181204-zps-aris-header3-03-1600-1600x768.jpg");
}
.cid-rRgIThh7AB P {
  color: #767676;
}
.cid-rRqEsl2ggj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRqEsl2ggj .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqEsl2ggj h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqEsl2ggj .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqEsl2ggj .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqEO3YoYZ {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRqEO3YoYZ .images-container.container-fluid {
  padding: 0;
}
.cid-rRqEO3YoYZ .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqEO3YoYZ .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqEO3YoYZ .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqEO3YoYZ .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqEO3YoYZ .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqEO3YoYZ .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqEO3YoYZ .img-item {
    width: 100% !important;
  }
  .cid-rRqEO3YoYZ .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqF01ik51 {
  background: #ffffff;
}
.cid-rRqF01ik51 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRqF01ik51 figcaption {
  position: relative;
}
.cid-rRqF01ik51 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRqF01ik51 .image-block {
    width: 100% !important;
  }
}
.cid-rRqEpEhdeC {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRqEpEhdeC H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqEpEhdeC .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRqEpEhdeC .breites_Zitat,
  .cid-rRqEpEhdeC .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRqF4aOV6m {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRqF4aOV6m .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRqF4aOV6m h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqF4aOV6m .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRr2Xxc1yR {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRr2Xxc1yR .images-container.container-fluid {
  padding: 0;
}
.cid-rRr2Xxc1yR .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRr2Xxc1yR .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRr2Xxc1yR .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRr2Xxc1yR .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRr2Xxc1yR .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRr2Xxc1yR .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRr2Xxc1yR .img-item {
    width: 100% !important;
  }
  .cid-rRr2Xxc1yR .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRqFmfjhNb {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRqFmfjhNb H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRqFmfjhNb .mbr-section-subtitle {
  color: #1d1d1b;
}
.cid-rRqFudWRf7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRqFudWRf7 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqFudWRf7 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqFudWRf7 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqFudWRf7 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqFx1Yq3f {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRqFx1Yq3f .images-container.container-fluid {
  padding: 0;
}
.cid-rRqFx1Yq3f .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRqFx1Yq3f .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRqFx1Yq3f .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRqFx1Yq3f .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRqFx1Yq3f .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRqFx1Yq3f .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRqFx1Yq3f .img-item {
    width: 100% !important;
  }
  .cid-rRqFx1Yq3f .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRr43xzGzC {
  background: #ffffff;
}
.cid-rRr43xzGzC .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRr43xzGzC figcaption {
  position: relative;
}
.cid-rRr43xzGzC figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRr43xzGzC .image-block {
    width: 300% !important;
  }
}
.cid-rRqFDIUvnh {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRqFDIUvnh .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRqFDIUvnh h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqFDIUvnh .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRqFU1wapG {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-rRqFU1wapG .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRqFU1wapG h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRqFU1wapG p {
  color: #767676;
  text-align: left;
}
.cid-rRqFU1wapG .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRqFU1wapG .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRqFU1wapG .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRqFU1wapG .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRqFU1wapG .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRqFU1wapG .notched-box:before,
.cid-rRqFU1wapG .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRqFU1wapG .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRqFU1wapG .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRqFU1wapG .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRqFU1wapG .border:before,
.cid-rRqFU1wapG .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRqFU1wapG .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRqFU1wapG .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRqFU1wapG .mbr-author-name {
  padding-left: 40px;
}
.cid-rRqFU1wapG P {
  color: #ffffff;
}
.cid-rRqFU1wapG .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRr681mGKd {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-rRr681mGKd .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRr681mGKd h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRr681mGKd p {
  color: #767676;
  text-align: left;
}
.cid-rRr681mGKd .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRr681mGKd .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRr681mGKd .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRr681mGKd .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRr681mGKd .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRr681mGKd .notched-box:before,
.cid-rRr681mGKd .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRr681mGKd .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRr681mGKd .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRr681mGKd .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRr681mGKd .border:before,
.cid-rRr681mGKd .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRr681mGKd .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRr681mGKd .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRr681mGKd .mbr-author-name {
  padding-left: 40px;
}
.cid-rRr681mGKd P {
  color: #ffffff;
}
.cid-rRr681mGKd .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-twAj4RUdV9 {
  background: #ffffff;
}
.cid-twAj4RUdV9 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-twAj4RUdV9 figcaption {
  position: relative;
}
.cid-twAj4RUdV9 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-twAj4RUdV9 .image-block {
    width: 100% !important;
  }
}
.cid-sBawOF0olc {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sBawOF0olc .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-sBawOF0olc h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sBawOF0olc .space_down_50 {
  margin-bottom: 50px;
}
.cid-sBaw62FMMU {
  background: #ffffff;
}
.cid-sBaw62FMMU .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sBaw62FMMU figcaption {
  position: relative;
}
.cid-sBaw62FMMU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sBaw62FMMU .image-block {
    width: 100% !important;
  }
}
.cid-rRqGecN6JW {
  background: #ffffff;
}
.cid-rRqGecN6JW .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRqGecN6JW figcaption {
  position: relative;
}
.cid-rRqGecN6JW figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRqGecN6JW .image-block {
    width: 300% !important;
  }
}
.cid-ucctz6nguM {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-ucctz6nguM .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-ucctz6nguM .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-ucctz6nguM .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-ucctz6nguM .mbr-figure,
  .cid-ucctz6nguM img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-ucctz6nguM .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-ucctz6nguM .mbr-author-desc {
  color: #000000;
}
.cid-ucctz6nguM h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ucctz6nguM .text_block {
  margin-top: 0px;
}
.cid-ucctz6nguM .h2_block {
  margin-bottom: 20px;
}
.cid-ucctz6nguM .mbr-figure {
  align-self: flex-start;
}
.cid-ucctz6nguM .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-ucctz6nguM .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-ucctz6nguM .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-ucctz6nguM a svg polygon {
  fill: white !important;
}
.cid-ucctz6nguM a:hover {
  Color: #F9CEB2!important;
}
.cid-ucctz6nguM a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ucctz6nguM .btn-white-outline:hover,
.cid-ucctz6nguM .btn-white-outline:focus,
.cid-ucctz6nguM .btn-white-outline.focus,
.cid-ucctz6nguM .btn-white-outline.active,
.cid-ucctz6nguM .btn-black-outline:hover,
.cid-ucctz6nguM .btn-black-outline:focus,
.cid-ucctz6nguM .btn-black-outline.focus,
.cid-ucctz6nguM .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ucctz6nguM .display-5 {
    line-height: 1;
  }
  .cid-ucctz6nguM .btn {
    font-size: 1.5rem !important;
  }
  .cid-ucctz6nguM .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-ucctz6nguM .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRqGeOYyAs {
  background: #ffffff;
}
.cid-rRqGeOYyAs .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRqGeOYyAs figcaption {
  position: relative;
}
.cid-rRqGeOYyAs figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRqGeOYyAs .image-block {
    width: 300% !important;
  }
}
.cid-rRqGjadtwT {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-rRqGjadtwT .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRqGjadtwT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRqGjadtwT p {
  color: #767676;
  text-align: left;
}
.cid-rRqGjadtwT .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRqGjadtwT .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRqGjadtwT .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRqGjadtwT .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRqGjadtwT .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRqGjadtwT .notched-box:before,
.cid-rRqGjadtwT .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRqGjadtwT .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRqGjadtwT .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRqGjadtwT .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRqGjadtwT .border:before,
.cid-rRqGjadtwT .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRqGjadtwT .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRqGjadtwT .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRqGjadtwT .mbr-author-name {
  padding-left: 40px;
}
.cid-rRqGjadtwT P {
  color: #ffffff;
}
.cid-rRqGjadtwT .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRr93Qo5ZX {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-rRr93Qo5ZX .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRr93Qo5ZX h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRr93Qo5ZX p {
  color: #767676;
  text-align: left;
}
.cid-rRr93Qo5ZX .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRr93Qo5ZX .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRr93Qo5ZX .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRr93Qo5ZX .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRr93Qo5ZX .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRr93Qo5ZX .notched-box:before,
.cid-rRr93Qo5ZX .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRr93Qo5ZX .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRr93Qo5ZX .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRr93Qo5ZX .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRr93Qo5ZX .border:before,
.cid-rRr93Qo5ZX .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRr93Qo5ZX .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRr93Qo5ZX .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRr93Qo5ZX .mbr-author-name {
  padding-left: 40px;
}
.cid-rRr93Qo5ZX P {
  color: #ffffff;
}
.cid-rRr93Qo5ZX .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRrb4Ha1X2 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-rRrb4Ha1X2 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRrb4Ha1X2 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrb4Ha1X2 p {
  color: #767676;
  text-align: left;
}
.cid-rRrb4Ha1X2 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRrb4Ha1X2 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRrb4Ha1X2 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRrb4Ha1X2 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRrb4Ha1X2 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRrb4Ha1X2 .notched-box:before,
.cid-rRrb4Ha1X2 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRrb4Ha1X2 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRrb4Ha1X2 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRrb4Ha1X2 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRrb4Ha1X2 .border:before,
.cid-rRrb4Ha1X2 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRrb4Ha1X2 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRrb4Ha1X2 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRrb4Ha1X2 .mbr-author-name {
  padding-left: 40px;
}
.cid-rRrb4Ha1X2 P {
  color: #ffffff;
}
.cid-rRrb4Ha1X2 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRqGmTOjjn {
  background-image: url("../../../assets/images/zps-presse-3-2000x1333.jpg");
}
.cid-rRqGmTOjjn P {
  color: #767676;
}
.cid-rRqGyp10x2 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRqGyp10x2 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRqGyp10x2 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRqGyp10x2 p {
  color: #767676;
  text-align: left;
}
.cid-rRqGyp10x2 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRqGyp10x2 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRqGyp10x2 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRqGyp10x2 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRqGyp10x2 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRqGyp10x2 .notched-box:before,
.cid-rRqGyp10x2 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRqGyp10x2 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRqGyp10x2 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRqGyp10x2 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRqGyp10x2 .border:before,
.cid-rRqGyp10x2 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRqGyp10x2 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRqGyp10x2 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRqGyp10x2 .mbr-author-name {
  padding-left: 40px;
}
.cid-rRqGyp10x2 P {
  color: #000000;
}
.cid-rRqGyp10x2 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRrdvj85yL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRrdvj85yL .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRrdvj85yL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrdvj85yL p {
  color: #767676;
  text-align: left;
}
.cid-rRrdvj85yL .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRrdvj85yL .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRrdvj85yL .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRrdvj85yL .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRrdvj85yL .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRrdvj85yL .notched-box:before,
.cid-rRrdvj85yL .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRrdvj85yL .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRrdvj85yL .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRrdvj85yL .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRrdvj85yL .border:before,
.cid-rRrdvj85yL .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRrdvj85yL .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRrdvj85yL .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRrdvj85yL .mbr-author-name {
  padding-left: 40px;
}
.cid-rRrdvj85yL P {
  color: #000000;
}
.cid-rRrdvj85yL .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRrdwdQ2YB {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRrdwdQ2YB .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRrdwdQ2YB h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrdwdQ2YB p {
  color: #767676;
  text-align: left;
}
.cid-rRrdwdQ2YB .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRrdwdQ2YB .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRrdwdQ2YB .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRrdwdQ2YB .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRrdwdQ2YB .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRrdwdQ2YB .notched-box:before,
.cid-rRrdwdQ2YB .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRrdwdQ2YB .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRrdwdQ2YB .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRrdwdQ2YB .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRrdwdQ2YB .border:before,
.cid-rRrdwdQ2YB .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRrdwdQ2YB .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRrdwdQ2YB .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRrdwdQ2YB .mbr-author-name {
  padding-left: 40px;
}
.cid-rRrdwdQ2YB P {
  color: #000000;
}
.cid-rRrdwdQ2YB .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRqGBs4ACx {
  background: #ffffff;
}
.cid-rRqGBs4ACx .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRqGBs4ACx figcaption {
  position: relative;
}
.cid-rRqGBs4ACx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRqGBs4ACx .image-block {
    width: 300% !important;
  }
}
.cid-rRqGE0kiDF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRqGE0kiDF .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRqGE0kiDF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRqGE0kiDF .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRqGE0kiDF .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRqGK8I2uQ {
  background-image: url("../../../assets/images/zps-presse-10-2000x1333.jpg");
}
.cid-rRqGK8I2uQ P {
  color: #767676;
}
.cid-rRqGOG3s1e {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #f9ceb2;
}
.cid-rRqGOG3s1e .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRqGOG3s1e h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRqGOG3s1e p {
  color: #767676;
  text-align: left;
}
.cid-rRqGOG3s1e .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRqGOG3s1e .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRqGOG3s1e .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRqGOG3s1e .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRqGOG3s1e .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRqGOG3s1e .notched-box:before,
.cid-rRqGOG3s1e .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRqGOG3s1e .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRqGOG3s1e .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRqGOG3s1e .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRqGOG3s1e .border:before,
.cid-rRqGOG3s1e .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRqGOG3s1e .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRqGOG3s1e .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRqGOG3s1e .mbr-author-name {
  padding-left: 40px;
}
.cid-rRqGOG3s1e P {
  color: #000000;
}
.cid-rRqGOG3s1e .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRrgfsV7l3 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9ceb2;
}
.cid-rRrgfsV7l3 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRrgfsV7l3 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrgfsV7l3 p {
  color: #767676;
  text-align: left;
}
.cid-rRrgfsV7l3 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRrgfsV7l3 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRrgfsV7l3 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRrgfsV7l3 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRrgfsV7l3 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRrgfsV7l3 .notched-box:before,
.cid-rRrgfsV7l3 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRrgfsV7l3 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRrgfsV7l3 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRrgfsV7l3 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRrgfsV7l3 .border:before,
.cid-rRrgfsV7l3 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRrgfsV7l3 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRrgfsV7l3 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRrgfsV7l3 .mbr-author-name {
  padding-left: 40px;
}
.cid-rRrgfsV7l3 P {
  color: #000000;
}
.cid-rRrgfsV7l3 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRrggEAETT {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-11-2000x1448.png");
}
.cid-rRrggEAETT .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRrggEAETT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrggEAETT p {
  color: #767676;
  text-align: left;
}
.cid-rRrggEAETT .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRrggEAETT .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRrggEAETT .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRrggEAETT .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRrggEAETT .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRrggEAETT .notched-box:before,
.cid-rRrggEAETT .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRrggEAETT .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRrggEAETT .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRrggEAETT .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRrggEAETT .border:before,
.cid-rRrggEAETT .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRrggEAETT .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRrggEAETT .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRrggEAETT .mbr-author-name {
  padding-left: 40px;
}
.cid-rRrggEAETT P {
  color: #000000;
}
.cid-rRrggEAETT .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRqGRG5yTH {
  background-image: url("../../../assets/images/zps-presse-11-2000x1333.jpg");
}
.cid-rRqGRG5yTH P {
  color: #767676;
}
.cid-rRqGVy5Yuc {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-rRqGVy5Yuc .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRqGVy5Yuc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRqGVy5Yuc p {
  color: #767676;
  text-align: left;
}
.cid-rRqGVy5Yuc .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRqGVy5Yuc .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRqGVy5Yuc .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRqGVy5Yuc .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRqGVy5Yuc .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRqGVy5Yuc .notched-box:before,
.cid-rRqGVy5Yuc .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRqGVy5Yuc .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRqGVy5Yuc .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRqGVy5Yuc .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRqGVy5Yuc .border:before,
.cid-rRqGVy5Yuc .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRqGVy5Yuc .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRqGVy5Yuc .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRqGVy5Yuc .mbr-author-name {
  padding-left: 40px;
}
.cid-rRqGVy5Yuc P {
  color: #ffffff;
}
.cid-rRqGVy5Yuc .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRrkfx72MP {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-rRrkfx72MP .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRrkfx72MP h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRrkfx72MP p {
  color: #767676;
  text-align: left;
}
.cid-rRrkfx72MP .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRrkfx72MP .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRrkfx72MP .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRrkfx72MP .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRrkfx72MP .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRrkfx72MP .notched-box:before,
.cid-rRrkfx72MP .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRrkfx72MP .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRrkfx72MP .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRrkfx72MP .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRrkfx72MP .border:before,
.cid-rRrkfx72MP .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRrkfx72MP .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRrkfx72MP .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRrkfx72MP .mbr-author-name {
  padding-left: 40px;
}
.cid-rRrkfx72MP P {
  color: #ffffff;
}
.cid-rRrkfx72MP .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u7yV1ywq5u {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yV1ywq5u .content {
    text-align: center;
  }
  .cid-u7yV1ywq5u .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yV1ywq5u .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yV1ywq5u .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yV1ywq5u .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yV1ywq5u .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yV1ywq5u .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yV1ywq5u .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yV1ywq5u .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yV1ywq5u .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yV1ywq5u .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yV1ywq5u .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yV1ywq5u .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yV1ywq5u .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yV1ywq5u H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yV1ywq5u P {
  color: #ffffff;
}
.cid-u7yV1ywq5u .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yV1ywq5u .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yV1ywq5u .logo_footer {
  position: relative;
}
.cid-u7yV1ywq5u .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yV1ywq5u .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yV1ywq5u .col,
  .cid-u7yV1ywq5u .col-1,
  .cid-u7yV1ywq5u .col-10,
  .cid-u7yV1ywq5u .col-11,
  .cid-u7yV1ywq5u .col-12,
  .cid-u7yV1ywq5u .col-2,
  .cid-u7yV1ywq5u .col-3,
  .cid-u7yV1ywq5u .col-4,
  .cid-u7yV1ywq5u .col-5,
  .cid-u7yV1ywq5u .col-6,
  .cid-u7yV1ywq5u .col-7,
  .cid-u7yV1ywq5u .col-8,
  .cid-u7yV1ywq5u .col-9,
  .cid-u7yV1ywq5u .col-auto,
  .cid-u7yV1ywq5u .col-lg,
  .cid-u7yV1ywq5u .col-lg-1,
  .cid-u7yV1ywq5u .col-lg-10,
  .cid-u7yV1ywq5u .col-lg-11,
  .cid-u7yV1ywq5u .col-lg-12,
  .cid-u7yV1ywq5u .col-lg-2,
  .cid-u7yV1ywq5u .col-lg-3,
  .cid-u7yV1ywq5u .col-lg-4,
  .cid-u7yV1ywq5u .col-lg-5,
  .cid-u7yV1ywq5u .col-lg-6,
  .cid-u7yV1ywq5u .col-lg-7,
  .cid-u7yV1ywq5u .col-lg-8,
  .cid-u7yV1ywq5u .col-lg-9,
  .cid-u7yV1ywq5u .col-lg-auto,
  .cid-u7yV1ywq5u .col-md,
  .cid-u7yV1ywq5u .col-md-1,
  .cid-u7yV1ywq5u .col-md-10,
  .cid-u7yV1ywq5u .col-md-11,
  .cid-u7yV1ywq5u .col-md-12,
  .cid-u7yV1ywq5u .col-md-2,
  .cid-u7yV1ywq5u .col-md-3,
  .cid-u7yV1ywq5u .col-md-4,
  .cid-u7yV1ywq5u .col-md-5,
  .cid-u7yV1ywq5u .col-md-6,
  .cid-u7yV1ywq5u .col-md-7,
  .cid-u7yV1ywq5u .col-md-8,
  .cid-u7yV1ywq5u .col-md-9,
  .cid-u7yV1ywq5u .col-md-auto,
  .cid-u7yV1ywq5u .col-sm,
  .cid-u7yV1ywq5u .col-sm-1,
  .cid-u7yV1ywq5u .col-sm-10,
  .cid-u7yV1ywq5u .col-sm-11,
  .cid-u7yV1ywq5u .col-sm-12,
  .cid-u7yV1ywq5u .col-sm-2,
  .cid-u7yV1ywq5u .col-sm-3,
  .cid-u7yV1ywq5u .col-sm-4,
  .cid-u7yV1ywq5u .col-sm-5,
  .cid-u7yV1ywq5u .col-sm-6,
  .cid-u7yV1ywq5u .col-sm-7,
  .cid-u7yV1ywq5u .col-sm-8,
  .cid-u7yV1ywq5u .col-sm-9,
  .cid-u7yV1ywq5u .col-sm-auto,
  .cid-u7yV1ywq5u .col-xl,
  .cid-u7yV1ywq5u .col-xl-1,
  .cid-u7yV1ywq5u .col-xl-10,
  .cid-u7yV1ywq5u .col-xl-11,
  .cid-u7yV1ywq5u .col-xl-12,
  .cid-u7yV1ywq5u .col-xl-2,
  .cid-u7yV1ywq5u .col-xl-3,
  .cid-u7yV1ywq5u .col-xl-4,
  .cid-u7yV1ywq5u .col-xl-5,
  .cid-u7yV1ywq5u .col-xl-6,
  .cid-u7yV1ywq5u .col-xl-7,
  .cid-u7yV1ywq5u .col-xl-8,
  .cid-u7yV1ywq5u .col-xl-9,
  .cid-u7yV1ywq5u .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yV1ywq5u .content {
    text-align: left;
  }
  .cid-u7yV1ywq5u .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yV1ywq5u .logo_footer_box {
    position: relative;
  }
  .cid-u7yV1ywq5u .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yV1ywq5u .logo_footer {
    position: relative;
  }
  .cid-u7yV1ywq5u .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yV1ywq5u .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRwzsTeb68 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRwzsTeb68 {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rRwAQbwiSC {
  background-image: url("../../../assets/images/standardwert-2019-04-01-um-10.01.08-1-2000x855.jpg");
}
.cid-rRwAQbwiSC P {
  color: #767676;
}
.cid-rRwAUrWfjb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRwAUrWfjb .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-rRwAUrWfjb .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRwAUrWfjb .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRwAUrWfjb .mbr-figure,
  .cid-rRwAUrWfjb img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRwAUrWfjb .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRwAUrWfjb .mbr-author-desc {
  color: #000000;
}
.cid-rRwAUrWfjb h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #ffffff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwAUrWfjb .text_block {
  margin-top: 0px;
}
.cid-rRwAUrWfjb .h2_block {
  margin-bottom: 20px;
}
.cid-rRwAUrWfjb .mbr-figure {
  align-self: flex-start;
}
.cid-rRwAUrWfjb .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rRwAUrWfjb .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rRwAUrWfjb .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rRwAUrWfjb .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rRwAUrWfjb .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rRwBZKVCji {
  background: #ffffff;
}
.cid-rRwBZKVCji .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRwBZKVCji figcaption {
  position: relative;
}
.cid-rRwBZKVCji figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRwBZKVCji .image-block {
    width: 100% !important;
  }
}
.cid-rRwC3Rbj6m {
  background: #f9ceb2;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-rRwC3Rbj6m .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRwC3Rbj6m .video-block {
    width: 100% !important;
  }
}
.cid-rRwC3Rbj6m .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-se4bC4BSON {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-se4bC4BSON H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-se4bC4BSON .mbr-section-subtitle {
  color: #000000;
}
.cid-se4bC4BSON span {
  visibility: hidden;
}
.cid-se4bC4BSON .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4bC4BSON span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rRwC7XxmR7 {
  background-image: url("../../../assets/images/signal-2017-11-20-95558-2000x837.jpg");
}
.cid-rRwC7XxmR7 P {
  color: #767676;
}
.cid-rRwCa9ZBmQ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwCa9ZBmQ .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwCa9ZBmQ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwCa9ZBmQ .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwCa9ZBmQ .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRwCfxDozH {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwCfxDozH h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRwCfxDozH p {
  color: #767676;
  text-align: left;
}
.cid-rRwCfxDozH .card-box {
  padding-top: 2rem;
}
.cid-rRwCfxDozH .card-wrapper {
  height: 100%;
}
.cid-rRwCfxDozH P {
  color: #1d1d1b;
}
.cid-rRwCfxDozH .card-title {
  color: #1d1d1b;
}
.cid-rRwChLnbn2 {
  padding-top: 0px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-rRwChLnbn2 .images-container.container-fluid {
  padding: 0;
}
.cid-rRwChLnbn2 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRwChLnbn2 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRwChLnbn2 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRwChLnbn2 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRwChLnbn2 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRwChLnbn2 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRwChLnbn2 .img-item {
    width: 100% !important;
  }
  .cid-rRwChLnbn2 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRwCmKOzDm {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-4-1500x1695.jpg");
}
.cid-rRwCmKOzDm H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRwCmKOzDm .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRwCmKOzDm .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRwCmKOzDm .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRwCoitfB6 {
  background-image: url("../../../assets/images/politische-schoenheit-neben-hoeckes-haus-weit-2000x1125.jpeg");
}
.cid-rRwCoitfB6 P {
  color: #767676;
}
.cid-rRwCx2jLL2 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRwCx2jLL2 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRwCx2jLL2 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRwCx2jLL2 .breites_Zitat,
  .cid-rRwCx2jLL2 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRwCF1ZaQq {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-rRwCF1ZaQq H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRwCF1ZaQq .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRwCF1ZaQq .breites_Zitat,
  .cid-rRwCF1ZaQq .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRwCIpd9O2 {
  background-image: url("../../../assets/images/zps-deinestele-0226-v2-2000x1333.jpg");
}
.cid-rRwCIpd9O2 P {
  color: #767676;
}
.cid-rRwCKfAYUy {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRwCKfAYUy H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRwCKfAYUy .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRwCKfAYUy .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRwCKfAYUy .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRwCPngVfJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRwCPngVfJ .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwCPngVfJ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwCPngVfJ .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwCPngVfJ .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-rRwCPngVfJ a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  color: #fff;
  padding-bottom: 3px;
}
.cid-rRwCPngVfJ a:hover {
  color: #F9CEB2;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
}
.cid-rRwCTobvCS {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-rRwCTobvCS .images-container.container-fluid {
  padding: 0;
}
.cid-rRwCTobvCS .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRwCTobvCS .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRwCTobvCS .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRwCTobvCS .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRwCTobvCS .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRwCTobvCS .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRwCTobvCS .img-item {
    width: 100% !important;
  }
  .cid-rRwCTobvCS .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRwCYHu51k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRwCYHu51k h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRwCYHu51k p {
  color: #767676;
  text-align: left;
}
.cid-rRwCYHu51k .card-box {
  padding-top: 2rem;
}
.cid-rRwCYHu51k .card-wrapper {
  height: 100%;
}
.cid-rRwD2zRreV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRwD2zRreV h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRwD2zRreV p {
  color: #767676;
  text-align: left;
}
.cid-rRwD2zRreV .card-box {
  padding-top: 2rem;
}
.cid-rRwD2zRreV .card-wrapper {
  height: 100%;
}
.cid-rRwD5TvKlA {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRwD5TvKlA H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRwD5TvKlA .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRwD5TvKlA .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRwD5TvKlA .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRwDjlDfJh {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRwDjlDfJh .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwDjlDfJh h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwDjlDfJh .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwDjlDfJh .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRwDoKhWhc {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-rRwDoKhWhc .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRwDoKhWhc .video-block {
    width: 100% !important;
  }
}
.cid-rRwDoKhWhc .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRwDAEMET7 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwDAEMET7 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwDAEMET7 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwDAEMET7 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwDAEMET7 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRBAdDwfj6 {
  padding-top: 135px;
  padding-bottom: 105px;
  background-color: #f9ceb2;
}
.cid-rRBAdDwfj6 P {
  color: #767676;
}
.cid-rRBAdDwfj6 .display-2 {
  font-size: 3rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-rRBAdDwfj6 .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-rRBAdDwfj6 .mbr-text,
.cid-rRBAdDwfj6 .mbr-section-btn {
  color: #1d1d1b;
}
.cid-rRwDLnb6FR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwDLnb6FR .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwDLnb6FR h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwDLnb6FR .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwDLnb6FR .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRwDMARfON {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRwDMARfON h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRwDMARfON p {
  color: #767676;
  text-align: left;
}
.cid-rRwDMARfON .card-box {
  padding-top: 2rem;
}
.cid-rRwDMARfON .card-wrapper {
  height: 100%;
}
.cid-rRwDMARfON P {
  color: #1d1d1b;
}
.cid-rRwDORESp0 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRwDORESp0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRwDORESp0 p {
  color: #767676;
  text-align: left;
}
.cid-rRwDORESp0 .card-box {
  padding-top: 2rem;
}
.cid-rRwDORESp0 .card-wrapper {
  height: 100%;
}
.cid-rRwDORESp0 P {
  color: #1d1d1b;
}
.cid-rRwDQkVF36 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRwDQkVF36 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRwDQkVF36 p {
  color: #767676;
  text-align: left;
}
.cid-rRwDQkVF36 .card-box {
  padding-top: 2rem;
}
.cid-rRwDQkVF36 .card-wrapper {
  height: 100%;
}
.cid-rRwDQkVF36 P {
  color: #1d1d1b;
}
.cid-tT30L63IkP {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-tT30L63IkP H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-tT30L63IkP .mbr-section-subtitle {
  color: #000000;
}
.cid-tT30L63IkP span {
  visibility: hidden;
}
.cid-tT30L63IkP .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-tT30L63IkP span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rRwDTa7dO4 {
  background-image: url("../../../assets/images/schnee-bearbeitet-2000x1345.jpg");
}
.cid-rRwDTa7dO4 P {
  color: #767676;
}
.cid-rRwDV6UgAH {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRwDV6UgAH H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRwDV6UgAH .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRwDV6UgAH .breites_Zitat,
  .cid-rRwDV6UgAH .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRwDWRrnUi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwDWRrnUi .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwDWRrnUi h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwDWRrnUi .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwDWRrnUi .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRwE6azXCg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRwE6azXCg .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRwE6azXCg h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwE6azXCg .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRBFIfz8XI {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRBFIfz8XI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRBFIfz8XI p {
  color: #767676;
  text-align: left;
}
.cid-rRBFIfz8XI .card-box {
  padding-top: 2rem;
}
.cid-rRBFIfz8XI .card-wrapper {
  height: 100%;
}
.cid-rRBFIfz8XI P {
  color: #1d1d1b;
}
.cid-rRwEa6tpDy {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRwEa6tpDy H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRwEa6tpDy .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRwEa6tpDy .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRwEa6tpDy .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRwEeP98d9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRwEeP98d9 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwEeP98d9 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwEeP98d9 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwEeP98d9 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRwEhvfb91 {
  background-image: url("../../../assets/images/ds66928-3-v2.2-2000x1070.jpg");
}
.cid-rRwEhvfb91 P {
  color: #767676;
}
.cid-rRwEuJ3aUN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwEuJ3aUN .mbr-text {
  color: #1d1d1b;
}
.cid-rRwEuJ3aUN h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem !important;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwEuJ3aUN .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRwEuJ3aUN p {
  line-height: 1.4;
}
.cid-rRwEy6whM3 {
  background: #ffffff;
}
.cid-rRwEy6whM3 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRwEy6whM3 figcaption {
  position: relative;
}
.cid-rRwEy6whM3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRwEy6whM3 .image-block {
    width: 100% !important;
  }
}
.cid-rRwEBxScbX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwEBxScbX .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwEBxScbX h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwEBxScbX .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwEBxScbX .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRBH3hJZim {
  padding-top: 135px;
  padding-bottom: 105px;
  background-color: #f9ceb2;
}
.cid-rRBH3hJZim P {
  color: #767676;
}
.cid-rRBH3hJZim .display-2 {
  font-size: 3rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-rRBH3hJZim .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-rRBH3hJZim .mbr-text,
.cid-rRBH3hJZim .mbr-section-btn {
  color: #1d1d1b;
}
.cid-rRwELKccY9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwELKccY9 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwELKccY9 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwELKccY9 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwELKccY9 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRwENm16FG {
  background-image: url("../../../assets/images/zps-deinestele-0310-v2-2000x1333.jpg");
}
.cid-rRwENm16FG P {
  color: #767676;
}
.cid-rRwERZm1Xd {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRwERZm1Xd H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRwERZm1Xd .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRwERZm1Xd .breites_Zitat,
  .cid-rRwERZm1Xd .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRwEUWXEKH {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRwEUWXEKH .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRwEUWXEKH h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwEUWXEKH .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRwFcQxuSI {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-rRwFcQxuSI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRwFcQxuSI p {
  color: #767676;
  text-align: left;
}
.cid-rRwFcQxuSI .card-box {
  padding-top: 2rem;
}
.cid-rRwFcQxuSI .card-wrapper {
  height: 100%;
}
.cid-rRwFcQxuSI P {
  color: #1d1d1b;
}
.cid-rRwF55PqsY {
  padding-top: 0px;
  padding-bottom: 60px;
  background: #f9ceb2;
}
.cid-rRwF55PqsY .images-container.container-fluid {
  padding: 0;
}
.cid-rRwF55PqsY .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRwF55PqsY .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRwF55PqsY .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRwF55PqsY .media-container-row .img-item .img-caption {
  background: #f9ceb2;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRwF55PqsY .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRwF55PqsY .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRwF55PqsY .img-item {
    width: 100% !important;
  }
  .cid-rRwF55PqsY .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRwF55PqsY P {
  text-align: left;
}
.cid-tT3npEj1cg {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-tT3npEj1cg .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tT3npEj1cg h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tT3npEj1cg .space_down_50 {
  margin-bottom: 50px;
}
.cid-tT3npEj1cg .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRwFjv5xxH {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-14-2000x1330.png");
}
.cid-rRwFjv5xxH H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRwFjv5xxH .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRwFjv5xxH .breites_Zitat,
  .cid-rRwFjv5xxH .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRwFkSADRm {
  background-image: url("../../../assets/images/1280px-bornhagen-friedensstr-nachbildung-holocaust-mahnmal-1-2018-01-1-1280x853.jpg");
}
.cid-rRwFkSADRm P {
  color: #767676;
}
.cid-rRwFtMD6XS {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRwFtMD6XS H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRwFtMD6XS .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRwFtMD6XS .breites_Zitat,
  .cid-rRwFtMD6XS .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRwFCtbM8O {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwFCtbM8O .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRwFCtbM8O .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRwFCtbM8O .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rRwFCtbM8O .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRwFCtbM8O .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRwFCtbM8O .mbr-figure,
  .cid-rRwFCtbM8O img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRwFCtbM8O h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwFCtbM8O .text_block {
  margin-top: 0px;
}
.cid-rRwFCtbM8O .h2_block {
  margin-bottom: 20px;
}
.cid-rRwFCtbM8O .mbr-figure {
  align-self: flex-start;
}
.cid-rRwFCtbM8O .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRwFCtbM8O .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRwFCtbM8O a:hover {
  Color: #a76645 !important;
}
.cid-rRwFCtbM8O a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRwFCtbM8O .btn-black-outline:hover,
.cid-rRwFCtbM8O .btn-black-outline:focus,
.cid-rRwFCtbM8O .btn-black-outline.focus,
.cid-rRwFCtbM8O .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRwFCtbM8O .display-5 {
    line-height: 1;
  }
  .cid-rRwFCtbM8O .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRwFCtbM8O .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRwFCtbM8O .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRwFCtbM8O .content {
  padding-left: 3px;
}
.cid-tT3emeP3PH {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-18-2000x1333.png");
}
.cid-tT3emeP3PH H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-tT3emeP3PH .mbr-section-subtitle {
  color: #000000;
}
.cid-tT3emeP3PH span {
  visibility: hidden;
}
.cid-tT3emeP3PH .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-tT3emeP3PH span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-tT3gdS1DQA {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tT3gdS1DQA .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tT3gdS1DQA h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tT3gdS1DQA .space_down_50 {
  margin-bottom: 50px;
}
.cid-tT3gxk7O9P {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tT3gxk7O9P .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-tT3gxk7O9P h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tT3gxk7O9P p {
  color: #767676;
  text-align: left;
}
.cid-tT3gxk7O9P .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-tT3gxk7O9P .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tT3gxk7O9P .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tT3gxk7O9P .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tT3gxk7O9P .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tT3gxk7O9P .notched-box:before,
.cid-tT3gxk7O9P .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-tT3gxk7O9P .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-tT3gxk7O9P .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-tT3gxk7O9P .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-tT3gxk7O9P .border:before,
.cid-tT3gxk7O9P .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-tT3gxk7O9P .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-tT3gxk7O9P .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-tT3gxk7O9P .mbr-author-name {
  padding-left: 40px;
}
.cid-tT3gxk7O9P P {
  color: #000000;
  line-height: 1.3;
}
.cid-tT3gxk7O9P .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRwFMoAM6o {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-13-2000x1333.png");
}
.cid-rRwFMoAM6o H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRwFMoAM6o .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRwFMoAM6o .breites_Zitat,
  .cid-rRwFMoAM6o .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRwFPhyBfs {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRwFPhyBfs .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
}
.cid-rRwFPhyBfs .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rRwFPhyBfs .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRwFPhyBfs .mbr-figure,
  .cid-rRwFPhyBfs img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRwFPhyBfs .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRwFPhyBfs h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwFPhyBfs .h2_block {
  margin-bottom: 20px;
}
.cid-rRwFPhyBfs .mbr-figure {
  align-self: flex-start;
}
.cid-rRwFTx7z6g {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-rRwFTx7z6g H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRwFTx7z6g .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRwFTx7z6g .breites_Zitat,
  .cid-rRwFTx7z6g .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRwFWAG0PT {
  background-image: url("../../../assets/images/beobachter-2000x859.jpg");
}
.cid-rRwFWAG0PT P {
  color: #767676;
}
.cid-rRwG0GqcY5 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRwG0GqcY5 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRwG0GqcY5 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRwG0GqcY5 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRwG0GqcY5 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRwG49AfEo {
  padding-top: 120px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-rRwG49AfEo .images-container.container-fluid {
  padding: 0;
}
.cid-rRwG49AfEo .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRwG49AfEo .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRwG49AfEo .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRwG49AfEo .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRwG49AfEo .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRwG49AfEo .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRwG49AfEo .img-item {
    width: 100% !important;
  }
  .cid-rRwG49AfEo .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRwG6MSV4o {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRwG6MSV4o .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRwG6MSV4o h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwG6MSV4o .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRwG6MSV4o .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRwGbb0D3F {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-rRwGbb0D3F .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRwGbb0D3F .video-block {
    width: 100% !important;
  }
}
.cid-rRwGbb0D3F .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tT37mDdK3A {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tT37mDdK3A .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tT37mDdK3A .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tT37mDdK3A .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rRwGjqpNns {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRwGjqpNns .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  text-align: center;
}
.cid-rRwGjqpNns .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRwGjqpNns .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRwGjqpNns .mbr-figure,
  .cid-rRwGjqpNns img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRwGjqpNns .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRwGjqpNns .mbr-author-desc {
  color: #000000;
}
.cid-rRwGjqpNns h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwGjqpNns .text_block {
  margin-top: 0px;
}
.cid-rRwGjqpNns .h2_block {
  margin-bottom: 20px;
}
.cid-rRwGjqpNns .mbr-figure {
  align-self: flex-start;
}
.cid-rRwGjqpNns .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rRwGjqpNns .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rRwGjqpNns .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rRwGjqpNns .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rRwGjqpNns .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rRwGrxyemp {
  background: #ffffff;
}
.cid-rRwGrxyemp .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRwGrxyemp figcaption {
  position: relative;
}
.cid-rRwGrxyemp figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRwGrxyemp .image-block {
    width: 100% !important;
  }
}
.cid-rRwGsUifKV {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRwGsUifKV H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRwGsUifKV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rRBn8yQx5R {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRBn8yQx5R .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRBn8yQx5R h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRBn8yQx5R .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRBn8yQx5R .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRwI2zLbao {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-rRwI2zLbao .list-group-item {
  padding: .75rem .75rem .75rem 0rem;
}
.cid-rRwI2zLbao .plan {
  word-break: break-word;
  position: relative;
  max-width: 300px;
  padding-right: 0;
  padding-left: 0;
  color: #767676;
}
.cid-rRwI2zLbao .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: transparent;
  border: 0;
}
.cid-rRwI2zLbao .plan .list-group-item::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  width: 60%;
  height: 2px;
  content: "";
  background-color: #eaeaea;
}
.cid-rRwI2zLbao .plan .list-group-item:last-child::after {
  display: none;
}
.cid-rRwI2zLbao .plan.favorite {
  background-color: #fff;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
}
.cid-rRwI2zLbao .plan-header {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rRwI2zLbao .price-figure {
  font-weight: 700;
  color: #1d1d1b;
}
.cid-rRwI2zLbao .price-value {
  font-weight: 700;
  vertical-align: top;
  color: #1d1d1b;
}
.cid-rRwI2zLbao .price-term {
  color: #1d1d1b;
}
.cid-rRwI2zLbao h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRwI2zLbao .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRwI2zLbao .h2_block {
  margin-bottom: 20px;
}
@media (max-width: 550px) {
  .cid-rRwI2zLbao .price-figure {
    font-size: 4.25rem;
  }
}
.cid-rRwI2zLbao UL {
  text-align: left;
  color: #1d1d1b;
}
.cid-rRwI2zLbao .plan-title {
  text-align: left;
  color: #1d1d1b;
}
.cid-rRBnu2wn8j {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-rRBnu2wn8j H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRBnu2wn8j .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRBnu2wn8j .breites_Zitat,
  .cid-rRBnu2wn8j .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRBnz36kOO {
  background: #ffffff;
}
.cid-rRBnz36kOO .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRBnz36kOO figcaption {
  position: relative;
}
.cid-rRBnz36kOO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRBnz36kOO .image-block {
    width: 100% !important;
  }
}
.cid-sBOjuOUJvn {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-6-1500x302.jpg");
}
.cid-sBOjuOUJvn H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sBOjuOUJvn .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sBOjuOUJvn .breites_Zitat,
  .cid-sBOjuOUJvn .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRBnJOzHcF {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRBnJOzHcF .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #f9ceb2;
  text-align: center;
}
.cid-rRBnJOzHcF .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rRBnJOzHcF .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRBnJOzHcF .mbr-figure,
  .cid-rRBnJOzHcF img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRBnJOzHcF .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRBnJOzHcF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRBnJOzHcF .h2_block {
  margin-bottom: 20px;
}
.cid-rRBpkFmfZI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRBpkFmfZI .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRBpkFmfZI .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRBpkFmfZI .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rRBpkFmfZI .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRBpkFmfZI .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRBpkFmfZI .mbr-figure,
  .cid-rRBpkFmfZI img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRBpkFmfZI h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRBpkFmfZI .text_block {
  margin-top: 0px;
}
.cid-rRBpkFmfZI .h2_block {
  margin-bottom: 20px;
}
.cid-rRBpkFmfZI .mbr-figure {
  align-self: flex-start;
}
.cid-rRBpkFmfZI .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRBpkFmfZI .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRBpkFmfZI a:hover {
  Color: #a76645 !important;
}
.cid-rRBpkFmfZI a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRBpkFmfZI .btn-black-outline:hover,
.cid-rRBpkFmfZI .btn-black-outline:focus,
.cid-rRBpkFmfZI .btn-black-outline.focus,
.cid-rRBpkFmfZI .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRBpkFmfZI .display-5 {
    line-height: 1;
  }
  .cid-rRBpkFmfZI .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRBpkFmfZI .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRBpkFmfZI .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRBpkFmfZI .content {
  padding-left: 3px;
}
.cid-rRBpn3CLsw {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-12-2000x1333.png");
}
.cid-rRBpn3CLsw H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRBpn3CLsw .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRBpn3CLsw .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRBpn3CLsw .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRBprxGthF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRBprxGthF .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRBprxGthF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRBprxGthF .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRBprxGthF .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRBpwdN2ul {
  padding-top: 0px;
  padding-bottom: 60px;
  background: #f9ceb2;
}
.cid-rRBpwdN2ul .images-container.container-fluid {
  padding: 0;
}
.cid-rRBpwdN2ul .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRBpwdN2ul .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRBpwdN2ul .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRBpwdN2ul .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRBpwdN2ul .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRBpwdN2ul .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRBpwdN2ul .img-item {
    width: 100% !important;
  }
  .cid-rRBpwdN2ul .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tT3AmzYYLQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-tT3AmzYYLQ .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tT3AmzYYLQ .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-tT3AmzYYLQ .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tT3AmzYYLQ a:hover {
  Color: #a76645;
}
.cid-tT3AmzYYLQ a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tT3AmzYYLQ .btn-black-outline:hover,
.cid-tT3AmzYYLQ .btn-black-outline:focus,
.cid-tT3AmzYYLQ .btn-black-outline.focus,
.cid-tT3AmzYYLQ .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tT3AmzYYLQ .display-5 {
    line-height: 1;
  }
  .cid-tT3AmzYYLQ .btn {
    font-size: 1.5rem !important;
  }
  .cid-tT3AmzYYLQ .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tT3A7TixhA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-tT3A7TixhA .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tT3A7TixhA .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-tT3A7TixhA .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tT3A7TixhA a:hover {
  Color: #a76645;
}
.cid-tT3A7TixhA a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tT3A7TixhA .btn-black-outline:hover,
.cid-tT3A7TixhA .btn-black-outline:focus,
.cid-tT3A7TixhA .btn-black-outline.focus,
.cid-tT3A7TixhA .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tT3A7TixhA .display-5 {
    line-height: 1;
  }
  .cid-tT3A7TixhA .btn {
    font-size: 1.5rem !important;
  }
  .cid-tT3A7TixhA .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tT3AnKOT0S {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-tT3AnKOT0S .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tT3AnKOT0S .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-tT3AnKOT0S .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tT3AnKOT0S a:hover {
  Color: #a76645;
}
.cid-tT3AnKOT0S a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tT3AnKOT0S .btn-black-outline:hover,
.cid-tT3AnKOT0S .btn-black-outline:focus,
.cid-tT3AnKOT0S .btn-black-outline.focus,
.cid-tT3AnKOT0S .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tT3AnKOT0S .display-5 {
    line-height: 1;
  }
  .cid-tT3AnKOT0S .btn {
    font-size: 1.5rem !important;
  }
  .cid-tT3AnKOT0S .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tT3Bp14lRP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-tT3Bp14lRP .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tT3Bp14lRP .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-tT3Bp14lRP .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tT3Bp14lRP a:hover {
  Color: #a76645;
}
.cid-tT3Bp14lRP a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tT3Bp14lRP .btn-black-outline:hover,
.cid-tT3Bp14lRP .btn-black-outline:focus,
.cid-tT3Bp14lRP .btn-black-outline.focus,
.cid-tT3Bp14lRP .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tT3Bp14lRP .display-5 {
    line-height: 1;
  }
  .cid-tT3Bp14lRP .btn {
    font-size: 1.5rem !important;
  }
  .cid-tT3Bp14lRP .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tT3AoQeuln {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-tT3AoQeuln .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tT3AoQeuln .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-tT3AoQeuln .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tT3AoQeuln a:hover {
  Color: #a76645;
}
.cid-tT3AoQeuln a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tT3AoQeuln .btn-black-outline:hover,
.cid-tT3AoQeuln .btn-black-outline:focus,
.cid-tT3AoQeuln .btn-black-outline.focus,
.cid-tT3AoQeuln .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tT3AoQeuln .display-5 {
    line-height: 1;
  }
  .cid-tT3AoQeuln .btn {
    font-size: 1.5rem !important;
  }
  .cid-tT3AoQeuln .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRBpAO3LkG {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-10-2000x1405.png");
}
.cid-rRBpAO3LkG H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRBpAO3LkG .mbr-section-subtitle {
  color: #1d1d1b;
}
.cid-rRBq3Z5nLu {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRBq3Z5nLu .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRBq3Z5nLu h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRBq3Z5nLu .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRBq3Z5nLu .testimonial-text {
  text-align: center;
}
.cid-rRBq1TRzlj {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRBq1TRzlj .images-container.container-fluid {
  padding: 0;
}
.cid-rRBq1TRzlj .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRBq1TRzlj .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRBq1TRzlj .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRBq1TRzlj .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRBq1TRzlj .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRBq1TRzlj .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRBq1TRzlj .img-item {
    width: 100% !important;
  }
  .cid-rRBq1TRzlj .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRBqccARpo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRBqccARpo .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRBqccARpo h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRBqccARpo p {
  color: #767676;
  text-align: left;
}
.cid-rRBqccARpo .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRBqccARpo .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRBqccARpo .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRBqccARpo .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRBqccARpo .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRBqccARpo .notched-box:before,
.cid-rRBqccARpo .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRBqccARpo .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRBqccARpo .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRBqccARpo .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRBqccARpo .border:before,
.cid-rRBqccARpo .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRBqccARpo .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRBqccARpo .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRBqccARpo .mbr-author-name {
  padding-left: 40px;
}
.cid-rRBqccARpo P {
  color: #000000;
}
.cid-rRBqccARpo .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRBqpEmsbS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRBqpEmsbS .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRBqpEmsbS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRBqpEmsbS p {
  color: #767676;
  text-align: left;
}
.cid-rRBqpEmsbS .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRBqpEmsbS .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRBqpEmsbS .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRBqpEmsbS .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRBqpEmsbS .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRBqpEmsbS .notched-box:before,
.cid-rRBqpEmsbS .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRBqpEmsbS .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRBqpEmsbS .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRBqpEmsbS .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRBqpEmsbS .border:before,
.cid-rRBqpEmsbS .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRBqpEmsbS .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRBqpEmsbS .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRBqpEmsbS .mbr-author-name {
  padding-left: 40px;
}
.cid-rRBqpEmsbS P {
  color: #000000;
}
.cid-rRBqpEmsbS .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRBqr3MjJd {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rRBqr3MjJd .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRBqr3MjJd h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRBqr3MjJd p {
  color: #767676;
  text-align: left;
}
.cid-rRBqr3MjJd .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRBqr3MjJd .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRBqr3MjJd .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRBqr3MjJd .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRBqr3MjJd .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRBqr3MjJd .notched-box:before,
.cid-rRBqr3MjJd .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRBqr3MjJd .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRBqr3MjJd .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRBqr3MjJd .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRBqr3MjJd .border:before,
.cid-rRBqr3MjJd .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRBqr3MjJd .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRBqr3MjJd .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRBqr3MjJd .mbr-author-name {
  padding-left: 40px;
}
.cid-rRBqr3MjJd P {
  color: #000000;
}
.cid-rRBqr3MjJd .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRBqtcP72J {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRBqtcP72J H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRBqtcP72J .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rRCDM1QnBz {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRCDM1QnBz .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
}
.cid-rRCDM1QnBz .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rRCDM1QnBz .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRCDM1QnBz .mbr-figure,
  .cid-rRCDM1QnBz img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRCDM1QnBz .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRCDM1QnBz h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRCDM1QnBz .h2_block {
  margin-bottom: 20px;
}
.cid-rRCDM1QnBz .mbr-figure {
  align-self: flex-start;
}
.cid-rRCE9ZdOcg {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRCE9ZdOcg H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRCE9ZdOcg .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRCE9ZdOcg .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRCE9ZdOcg .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRBqYAAXVg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-7-1500x622.jpg");
}
.cid-rRBqYAAXVg .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-rRBqYAAXVg .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRBqYAAXVg .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRBqYAAXVg .mbr-figure,
  .cid-rRBqYAAXVg img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRBqYAAXVg .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRBqYAAXVg .mbr-author-desc {
  color: #000000;
}
.cid-rRBqYAAXVg h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #ffffff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRBqYAAXVg .text_block {
  margin-top: 0px;
}
.cid-rRBqYAAXVg .h2_block {
  margin-bottom: 20px;
}
.cid-rRBqYAAXVg .mbr-figure {
  align-self: flex-start;
}
.cid-rRBqYAAXVg .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rRBqYAAXVg .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rRBqYAAXVg .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rRBqYAAXVg .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rRBqYAAXVg .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rRBr1meGaO {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRBr1meGaO H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRBr1meGaO .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRBr1meGaO .breites_Zitat,
  .cid-rRBr1meGaO .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRBr2zpBtk {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRBr2zpBtk .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRBr2zpBtk h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRBr2zpBtk p {
  color: #767676;
  text-align: left;
}
.cid-rRBr2zpBtk .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRBr2zpBtk .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRBr2zpBtk .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRBr2zpBtk .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRBr2zpBtk .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRBr2zpBtk .notched-box:before,
.cid-rRBr2zpBtk .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRBr2zpBtk .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRBr2zpBtk .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRBr2zpBtk .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRBr2zpBtk .border:before,
.cid-rRBr2zpBtk .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRBr2zpBtk .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRBr2zpBtk .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRBr2zpBtk .mbr-author-name {
  padding-left: 40px;
}
.cid-rRBr2zpBtk P {
  color: #000000;
}
.cid-rRBr2zpBtk .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRBr5qyR41 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRBr5qyR41 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRBr5qyR41 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRBr5qyR41 p {
  color: #767676;
  text-align: left;
}
.cid-rRBr5qyR41 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRBr5qyR41 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRBr5qyR41 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRBr5qyR41 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRBr5qyR41 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRBr5qyR41 .notched-box:before,
.cid-rRBr5qyR41 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRBr5qyR41 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRBr5qyR41 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRBr5qyR41 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRBr5qyR41 .border:before,
.cid-rRBr5qyR41 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRBr5qyR41 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRBr5qyR41 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRBr5qyR41 .mbr-author-name {
  padding-left: 40px;
}
.cid-rRBr5qyR41 P {
  color: #000000;
}
.cid-rRBr5qyR41 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRBr67Jlwt {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-rRBr67Jlwt .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRBr67Jlwt h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRBr67Jlwt p {
  color: #767676;
  text-align: left;
}
.cid-rRBr67Jlwt .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRBr67Jlwt .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRBr67Jlwt .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRBr67Jlwt .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRBr67Jlwt .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRBr67Jlwt .notched-box:before,
.cid-rRBr67Jlwt .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRBr67Jlwt .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRBr67Jlwt .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRBr67Jlwt .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRBr67Jlwt .border:before,
.cid-rRBr67Jlwt .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRBr67Jlwt .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRBr67Jlwt .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRBr67Jlwt .mbr-author-name {
  padding-left: 40px;
}
.cid-rRBr67Jlwt P {
  color: #000000;
}
.cid-rRBr67Jlwt .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRBrfUyrNr {
  background: #ffffff;
}
.cid-rRBrfUyrNr .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRBrfUyrNr figcaption {
  position: relative;
}
.cid-rRBrfUyrNr figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRBrfUyrNr .image-block {
    width: 300% !important;
  }
}
.cid-uccusohpl7 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f9ceb2;
}
.cid-uccusohpl7 .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-uccusohpl7 .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccusohpl7 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccusohpl7 .mbr-figure,
  .cid-uccusohpl7 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccusohpl7 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccusohpl7 .mbr-author-desc {
  color: #000000;
}
.cid-uccusohpl7 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccusohpl7 .text_block {
  margin-top: 0px;
}
.cid-uccusohpl7 .h2_block {
  margin-bottom: 20px;
}
.cid-uccusohpl7 .mbr-figure {
  align-self: flex-start;
}
.cid-uccusohpl7 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccusohpl7 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccusohpl7 .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccusohpl7 a:hover {
  Color: #a76645 !important;
}
.cid-uccusohpl7 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccusohpl7 .btn-black-outline:hover,
.cid-uccusohpl7 .btn-black-outline:focus,
.cid-uccusohpl7 .btn-black-outline.focus,
.cid-uccusohpl7 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccusohpl7 .display-5 {
    line-height: 1;
  }
  .cid-uccusohpl7 .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccusohpl7 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccusohpl7 .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRBrhkQ6MV {
  background: #ffffff;
}
.cid-rRBrhkQ6MV .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRBrhkQ6MV figcaption {
  position: relative;
}
.cid-rRBrhkQ6MV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRBrhkQ6MV .image-block {
    width: 300% !important;
  }
}
.cid-rRCJOTLpdH {
  background: #ffffff;
}
.cid-rRCJOTLpdH .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRCJOTLpdH figcaption {
  position: relative;
}
.cid-rRCJOTLpdH figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRCJOTLpdH .image-block {
    width: 100% !important;
  }
}
.cid-rRBrpOzWTX {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRBrpOzWTX .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRBrpOzWTX h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRBrpOzWTX .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRBrpOzWTX .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tT3cm0y8H9 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tT3cm0y8H9 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tT3cm0y8H9 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tT3cm0y8H9 .space_down_50 {
  margin-bottom: 50px;
}
.cid-tT3cm0y8H9 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRBrYQ7MiL {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRBrYQ7MiL .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRBrYQ7MiL .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRBrYQ7MiL .mbr-author-desc {
  color: #232;
}
.cid-rRBrYQ7MiL .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRBrYQ7MiL .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRBrYQ7MiL .mbr-figure,
  .cid-rRBrYQ7MiL img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRBrYQ7MiL h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRBrYQ7MiL .text_block {
  margin-top: 0px;
}
.cid-rRBrYQ7MiL .h2_block {
  margin-bottom: 20px;
}
.cid-rRBrYQ7MiL .mbr-figure {
  align-self: flex-start;
}
.cid-rRBrYQ7MiL .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRBrYQ7MiL .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRBrYQ7MiL a:hover {
  Color: #a76645 !important;
}
.cid-rRBrYQ7MiL a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRBrYQ7MiL .btn-black-outline:hover,
.cid-rRBrYQ7MiL .btn-black-outline:focus,
.cid-rRBrYQ7MiL .btn-black-outline.focus,
.cid-rRBrYQ7MiL .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRBrYQ7MiL .display-5 {
    line-height: 1;
  }
  .cid-rRBrYQ7MiL .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRBrYQ7MiL .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRBrYQ7MiL .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRBrYQ7MiL .content {
  padding-left: 3px;
}
.cid-rRCLaFyrkI {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRCLaFyrkI H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRCLaFyrkI .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRCLaFyrkI .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRCLaFyrkI .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRBsavohG5 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRBsavohG5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRBsavohG5 p {
  color: #767676;
  text-align: left;
}
.cid-rRBsavohG5 .card-box {
  padding-top: 2rem;
}
.cid-rRBsavohG5 .card-wrapper {
  height: 100%;
}
.cid-rRBst2t4J8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-rRBst2t4J8 .images-container.container-fluid {
  padding: 0;
}
.cid-rRBst2t4J8 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRBst2t4J8 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRBst2t4J8 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRBst2t4J8 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRBst2t4J8 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRBst2t4J8 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRBst2t4J8 .img-item {
    width: 100% !important;
  }
  .cid-rRBst2t4J8 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tT38B2VJTi {
  background: #ffffff;
}
.cid-tT38B2VJTi .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tT38B2VJTi figcaption {
  position: relative;
}
.cid-tT38B2VJTi figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tT38B2VJTi .image-block {
    width: 100% !important;
  }
}
.cid-rRCOaTl8BM {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRCOaTl8BM .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
}
.cid-rRCOaTl8BM .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rRCOaTl8BM .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRCOaTl8BM .mbr-figure,
  .cid-rRCOaTl8BM img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRCOaTl8BM .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRCOaTl8BM h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRCOaTl8BM .h2_block {
  margin-bottom: 20px;
}
.cid-rRCOaTl8BM .mbr-figure {
  align-self: flex-start;
}
.cid-tT3j75klH7 {
  background: #ffffff;
}
.cid-tT3j75klH7 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tT3j75klH7 figcaption {
  position: relative;
}
.cid-tT3j75klH7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tT3j75klH7 .image-block {
    width: 100% !important;
  }
}
.cid-rRBsClVMwr {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRBsClVMwr .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRBsClVMwr h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRBsClVMwr .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRBsClVMwr .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRBsDJPCcV {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRBsDJPCcV .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRBsDJPCcV h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRBsDJPCcV .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRBsDJPCcV .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tT3oyX2NaG {
  background: #ffffff;
}
.cid-tT3oyX2NaG .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tT3oyX2NaG figcaption {
  position: relative;
}
.cid-tT3oyX2NaG figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tT3oyX2NaG .image-block {
    width: 100% !important;
  }
}
.cid-rRBsJYMS6H {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRBsJYMS6H .images-container.container-fluid {
  padding: 0;
}
.cid-rRBsJYMS6H .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRBsJYMS6H .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRBsJYMS6H .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRBsJYMS6H .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRBsJYMS6H .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRBsJYMS6H .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRBsJYMS6H .img-item {
    width: 100% !important;
  }
  .cid-rRBsJYMS6H .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRBsMxnPf0 {
  background: #ffffff;
}
.cid-rRBsMxnPf0 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRBsMxnPf0 figcaption {
  position: relative;
}
.cid-rRBsMxnPf0 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRBsMxnPf0 .image-block {
    width: 100% !important;
  }
}
.cid-u7yV50VLOq {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yV50VLOq .content {
    text-align: center;
  }
  .cid-u7yV50VLOq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yV50VLOq .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yV50VLOq .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yV50VLOq .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yV50VLOq .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yV50VLOq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yV50VLOq .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yV50VLOq .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yV50VLOq .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yV50VLOq .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yV50VLOq .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yV50VLOq .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yV50VLOq .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yV50VLOq H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yV50VLOq P {
  color: #ffffff;
}
.cid-u7yV50VLOq .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yV50VLOq .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yV50VLOq .logo_footer {
  position: relative;
}
.cid-u7yV50VLOq .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yV50VLOq .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yV50VLOq .col,
  .cid-u7yV50VLOq .col-1,
  .cid-u7yV50VLOq .col-10,
  .cid-u7yV50VLOq .col-11,
  .cid-u7yV50VLOq .col-12,
  .cid-u7yV50VLOq .col-2,
  .cid-u7yV50VLOq .col-3,
  .cid-u7yV50VLOq .col-4,
  .cid-u7yV50VLOq .col-5,
  .cid-u7yV50VLOq .col-6,
  .cid-u7yV50VLOq .col-7,
  .cid-u7yV50VLOq .col-8,
  .cid-u7yV50VLOq .col-9,
  .cid-u7yV50VLOq .col-auto,
  .cid-u7yV50VLOq .col-lg,
  .cid-u7yV50VLOq .col-lg-1,
  .cid-u7yV50VLOq .col-lg-10,
  .cid-u7yV50VLOq .col-lg-11,
  .cid-u7yV50VLOq .col-lg-12,
  .cid-u7yV50VLOq .col-lg-2,
  .cid-u7yV50VLOq .col-lg-3,
  .cid-u7yV50VLOq .col-lg-4,
  .cid-u7yV50VLOq .col-lg-5,
  .cid-u7yV50VLOq .col-lg-6,
  .cid-u7yV50VLOq .col-lg-7,
  .cid-u7yV50VLOq .col-lg-8,
  .cid-u7yV50VLOq .col-lg-9,
  .cid-u7yV50VLOq .col-lg-auto,
  .cid-u7yV50VLOq .col-md,
  .cid-u7yV50VLOq .col-md-1,
  .cid-u7yV50VLOq .col-md-10,
  .cid-u7yV50VLOq .col-md-11,
  .cid-u7yV50VLOq .col-md-12,
  .cid-u7yV50VLOq .col-md-2,
  .cid-u7yV50VLOq .col-md-3,
  .cid-u7yV50VLOq .col-md-4,
  .cid-u7yV50VLOq .col-md-5,
  .cid-u7yV50VLOq .col-md-6,
  .cid-u7yV50VLOq .col-md-7,
  .cid-u7yV50VLOq .col-md-8,
  .cid-u7yV50VLOq .col-md-9,
  .cid-u7yV50VLOq .col-md-auto,
  .cid-u7yV50VLOq .col-sm,
  .cid-u7yV50VLOq .col-sm-1,
  .cid-u7yV50VLOq .col-sm-10,
  .cid-u7yV50VLOq .col-sm-11,
  .cid-u7yV50VLOq .col-sm-12,
  .cid-u7yV50VLOq .col-sm-2,
  .cid-u7yV50VLOq .col-sm-3,
  .cid-u7yV50VLOq .col-sm-4,
  .cid-u7yV50VLOq .col-sm-5,
  .cid-u7yV50VLOq .col-sm-6,
  .cid-u7yV50VLOq .col-sm-7,
  .cid-u7yV50VLOq .col-sm-8,
  .cid-u7yV50VLOq .col-sm-9,
  .cid-u7yV50VLOq .col-sm-auto,
  .cid-u7yV50VLOq .col-xl,
  .cid-u7yV50VLOq .col-xl-1,
  .cid-u7yV50VLOq .col-xl-10,
  .cid-u7yV50VLOq .col-xl-11,
  .cid-u7yV50VLOq .col-xl-12,
  .cid-u7yV50VLOq .col-xl-2,
  .cid-u7yV50VLOq .col-xl-3,
  .cid-u7yV50VLOq .col-xl-4,
  .cid-u7yV50VLOq .col-xl-5,
  .cid-u7yV50VLOq .col-xl-6,
  .cid-u7yV50VLOq .col-xl-7,
  .cid-u7yV50VLOq .col-xl-8,
  .cid-u7yV50VLOq .col-xl-9,
  .cid-u7yV50VLOq .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yV50VLOq .content {
    text-align: left;
  }
  .cid-u7yV50VLOq .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yV50VLOq .logo_footer_box {
    position: relative;
  }
  .cid-u7yV50VLOq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yV50VLOq .logo_footer {
    position: relative;
  }
  .cid-u7yV50VLOq .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yV50VLOq .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRMpTz6CM6 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRMpTz6CM6 {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rRMq4cYMSG {
  background-image: url("../../../assets/images/politicalbeauty2016-fluechtlingefressen-191-2000x3000.jpg");
}
.cid-rRMq4cYMSG P {
  color: #767676;
}
.cid-rRMq7cOdYU {
  padding-top: 30px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-rRMq7cOdYU .images-container.container-fluid {
  padding: 0;
}
.cid-rRMq7cOdYU .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRMq7cOdYU .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRMq7cOdYU .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRMq7cOdYU .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRMq7cOdYU .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRMq7cOdYU .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRMq7cOdYU .img-item {
    width: 100% !important;
  }
  .cid-rRMq7cOdYU .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRMqNJhgnZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRMqNJhgnZ .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRMqNJhgnZ h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRMqNJhgnZ .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRMqNJhgnZ .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRMqR5biNB {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRMqR5biNB .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRMqR5biNB .video-block {
    width: 100% !important;
  }
}
.cid-rRMqR5biNB .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRMrRRTggI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRMrRRTggI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRMrRRTggI p {
  color: #767676;
  text-align: left;
}
.cid-rRMrRRTggI .card-box {
  padding-top: 2rem;
}
.cid-rRMrRRTggI .card-wrapper {
  height: 100%;
}
.cid-ug8PFzBvCt {
  background: #ffffff;
}
.cid-ug8PFzBvCt .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug8PFzBvCt figcaption {
  position: relative;
}
.cid-ug8PFzBvCt figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug8PFzBvCt .image-block {
    width: 100% !important;
  }
}
.cid-rRMsL5PcrM {
  background-image: url("../../../assets/images/fleuchtlingefressen-zps-38-2000x1333.jpg");
}
.cid-rRMsL5PcrM P {
  color: #767676;
}
.cid-ug8SXbRLyc {
  background: #ffffff;
}
.cid-ug8SXbRLyc .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug8SXbRLyc figcaption {
  position: relative;
}
.cid-ug8SXbRLyc figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug8SXbRLyc .image-block {
    width: 100% !important;
  }
}
.cid-rRMsAKPsOu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRMsAKPsOu h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRMsAKPsOu p {
  color: #767676;
  text-align: left;
}
.cid-rRMsAKPsOu .card-box {
  padding-top: 2rem;
}
.cid-rRMsAKPsOu .card-wrapper {
  height: 100%;
}
.cid-rRMsBnOU7i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRMsBnOU7i h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRMsBnOU7i p {
  color: #767676;
  text-align: left;
}
.cid-rRMsBnOU7i .card-box {
  padding-top: 2rem;
}
.cid-rRMsBnOU7i .card-wrapper {
  height: 100%;
}
.cid-ug9DMQKyB8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-ug9DMQKyB8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-ug9DMQKyB8 p {
  color: #767676;
  text-align: left;
}
.cid-ug9DMQKyB8 .card-box {
  padding-top: 2rem;
}
.cid-ug9DMQKyB8 .card-wrapper {
  height: 100%;
}
.cid-ug8PIhdhfR {
  background: #ffffff;
}
.cid-ug8PIhdhfR .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug8PIhdhfR figcaption {
  position: relative;
}
.cid-ug8PIhdhfR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug8PIhdhfR .image-block {
    width: 100% !important;
  }
}
.cid-rRMtJ49qUP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRMtJ49qUP h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRMtJ49qUP p {
  color: #767676;
  text-align: left;
}
.cid-rRMtJ49qUP .card-box {
  padding-top: 2rem;
}
.cid-rRMtJ49qUP .card-wrapper {
  height: 100%;
}
.cid-u6fPPm17Xw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6fPPm17Xw h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fPPm17Xw p {
  color: #767676;
  text-align: left;
}
.cid-u6fPPm17Xw .card-box {
  padding-top: 2rem;
}
.cid-u6fPPm17Xw .card-wrapper {
  height: 100%;
}
.cid-u6fPPm17Xw P {
  text-align: left;
}
.cid-ug8PJiBwmK {
  background: #ffffff;
}
.cid-ug8PJiBwmK .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug8PJiBwmK figcaption {
  position: relative;
}
.cid-ug8PJiBwmK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug8PJiBwmK .image-block {
    width: 100% !important;
  }
}
.cid-ug8PGw1neO {
  background: #ffffff;
}
.cid-ug8PGw1neO .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug8PGw1neO figcaption {
  position: relative;
}
.cid-ug8PGw1neO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug8PGw1neO .image-block {
    width: 100% !important;
  }
}
.cid-se4dHPf3IC {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-4-1500x352.jpg");
}
.cid-se4dHPf3IC H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-se4dHPf3IC .mbr-section-subtitle {
  color: #000000;
}
.cid-se4dHPf3IC span {
  visibility: hidden;
}
.cid-se4dHPf3IC .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4dHPf3IC span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rRMvPu5q1b {
  background-image: url("../../../assets/images/img-9032-5435x3623-81-2000x1333.jpg");
}
.cid-rRMvPu5q1b P {
  color: #767676;
}
.cid-rRMwdOQDZK {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRMwdOQDZK H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRMwdOQDZK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rRMwrQ7yiJ {
  background-image: url("../../../assets/images/13317026-1097861626954506-8322816080377938260-o-1024x683.jpg");
}
.cid-rRMwrQ7yiJ P {
  color: #767676;
}
.cid-rRMwTeJB7L {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRMwTeJB7L .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rRMwTeJB7L h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRMwTeJB7L .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRMxe6ongc {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-4-1500x1695.jpg");
}
.cid-rRMxe6ongc H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRMxe6ongc .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRMxe6ongc .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRMxe6ongc .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRMxCSxsrH {
  background-image: url("../../../assets/images/politicalbeauty2016-fluechtlingefressen-158-2000x3000.jpg");
}
.cid-rRMxCSxsrH P {
  color: #767676;
}
.cid-ug8JG87IGM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ug8JG87IGM .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-ug8JG87IGM .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-ug8JG87IGM .mbr-author-desc {
  color: #232;
}
.cid-ug8JG87IGM .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ug8JG87IGM .col-md-8 {
  max-width: 100%;
}
.cid-ug8JG87IGM p {
  line-height: 1.2;
}
@media (max-width: 991px) {
  .cid-ug8JG87IGM .mbr-figure,
  .cid-ug8JG87IGM img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-ug8JG87IGM h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ug8JG87IGM .text_block {
  margin-top: 70px;
}
.cid-ug8JG87IGM .h2_block {
  margin-bottom: 20px;
}
.cid-ug8JG87IGM .mbr-figure {
  align-self: flex-start;
}
.cid-ug8JG87IGM .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-ug8JG87IGM a:hover {
  Color: #a76645 !important;
}
.cid-ug8JG87IGM a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ug8JG87IGM .btn-black-outline:hover,
.cid-ug8JG87IGM .btn-black-outline:focus,
.cid-ug8JG87IGM .btn-black-outline.focus,
.cid-ug8JG87IGM .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ug8JG87IGM .btn {
    font-size: 1.5rem !important;
  }
  .cid-ug8JG87IGM .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRMybPjqQf {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRMybPjqQf h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRMybPjqQf p {
  color: #767676;
  text-align: left;
}
.cid-rRMybPjqQf .card-box {
  padding-top: 2rem;
}
.cid-rRMybPjqQf .card-wrapper {
  height: 100%;
}
.cid-rRMybPjqQf P {
  color: #1d1d1b;
}
.cid-rRMzC8UOMV {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rRMzC8UOMV h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRMzC8UOMV p {
  color: #767676;
  text-align: left;
}
.cid-rRMzC8UOMV .card-box {
  padding-top: 2rem;
}
.cid-rRMzC8UOMV .card-wrapper {
  height: 100%;
}
.cid-rRMzC8UOMV P {
  color: #1d1d1b;
}
.cid-ug8KqMLsyj {
  background: #ffffff;
}
.cid-ug8KqMLsyj .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug8KqMLsyj figcaption {
  position: relative;
}
.cid-ug8KqMLsyj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug8KqMLsyj .image-block {
    width: 100% !important;
  }
}
.cid-rRMAAuNHvX {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRMAAuNHvX H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRMAAuNHvX .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRMAAuNHvX .breites_Zitat,
  .cid-rRMAAuNHvX .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-ug9JjpEucw {
  background: #ffffff;
}
.cid-ug9JjpEucw .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9JjpEucw figcaption {
  position: relative;
}
.cid-ug9JjpEucw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9JjpEucw .image-block {
    width: 100% !important;
  }
}
.cid-ug9IeFaMwe {
  padding-top: 90px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-ug9IeFaMwe .images-container.container-fluid {
  padding: 0;
}
.cid-ug9IeFaMwe .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-ug9IeFaMwe .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-ug9IeFaMwe .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-ug9IeFaMwe .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-ug9IeFaMwe .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-ug9IeFaMwe .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-ug9IeFaMwe .img-item {
    width: 100% !important;
  }
  .cid-ug9IeFaMwe .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRMAVOVaOd {
  background: #000000;
  padding-top: 75px;
  padding-bottom: 30px;
}
.cid-rRMAVOVaOd .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRMAVOVaOd .video-block {
    width: 100% !important;
  }
}
.cid-rRMAVOVaOd .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRMAZda2dF {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRMAZda2dF .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rRMAZda2dF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRMAZda2dF .space_down_50 {
  margin-bottom: 50px;
}
.cid-ug9EnnzdNk {
  background: #ffffff;
}
.cid-ug9EnnzdNk .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9EnnzdNk figcaption {
  position: relative;
}
.cid-ug9EnnzdNk figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9EnnzdNk .image-block {
    width: 100% !important;
  }
}
.cid-rRMBibec55 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-11-2000x1448.png");
}
.cid-rRMBibec55 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRMBibec55 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRMBibec55 .breites_Zitat,
  .cid-rRMBibec55 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRMByFGL8H {
  background: #ffffff;
}
.cid-rRMByFGL8H .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRMByFGL8H figcaption {
  position: relative;
}
.cid-rRMByFGL8H figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRMByFGL8H .image-block {
    width: 100% !important;
  }
}
.cid-rRMBJ9SlT9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRMBJ9SlT9 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRMBJ9SlT9 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRMBJ9SlT9 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRMBJ9SlT9 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-ug94mLX7dA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ug94mLX7dA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-ug94mLX7dA p {
  color: #767676;
  text-align: left;
}
.cid-ug94mLX7dA .card-box {
  padding-top: 2rem;
}
.cid-ug94mLX7dA .card-wrapper {
  height: 100%;
}
.cid-rRMC3otKr8 {
  background-image: url("../../../assets/images/h02-2000x1125.jpg");
}
.cid-rRMC3otKr8 P {
  color: #767676;
}
.cid-rRMZONCFoJ {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRMZONCFoJ H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRMZONCFoJ .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRMZONCFoJ .breites_Zitat,
  .cid-rRMZONCFoJ .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-ug99CT5CKx {
  background: #ffffff;
}
.cid-ug99CT5CKx .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug99CT5CKx figcaption {
  position: relative;
}
.cid-ug99CT5CKx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug99CT5CKx .image-block {
    width: 100% !important;
  }
}
.cid-rRN0Cqb6eU {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRN0Cqb6eU .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRN0Cqb6eU h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRN0Cqb6eU .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRN0uZmkMl {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRN0uZmkMl .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rRN0uZmkMl .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRN0uZmkMl .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRN0uZmkMl .mbr-figure,
  .cid-rRN0uZmkMl img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRN0uZmkMl .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRN0uZmkMl .mbr-author-desc {
  color: #000000;
}
.cid-rRN0uZmkMl h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRN0uZmkMl .text_block {
  margin-top: 0px;
}
.cid-rRN0uZmkMl .h2_block {
  margin-bottom: 20px;
}
.cid-rRN0uZmkMl .mbr-figure {
  align-self: flex-start;
}
.cid-rRN0uZmkMl .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rRN0uZmkMl .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rRN0uZmkMl .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rRN0uZmkMl .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rRN0uZmkMl .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rRN5pENTps {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRN5pENTps .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rRN5pENTps .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRN5pENTps .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRN5pENTps .mbr-figure,
  .cid-rRN5pENTps img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRN5pENTps .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRN5pENTps .mbr-author-desc {
  color: #000000;
}
.cid-rRN5pENTps h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRN5pENTps .text_block {
  margin-top: 0px;
}
.cid-rRN5pENTps .h2_block {
  margin-bottom: 20px;
}
.cid-rRN5pENTps .mbr-figure {
  align-self: flex-start;
}
.cid-rRN5pENTps .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rRN5pENTps .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rRN5pENTps .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rRN5pENTps .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rRN5pENTps .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rRN6FRZqd4 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRN6FRZqd4 .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rRN6FRZqd4 .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRN6FRZqd4 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRN6FRZqd4 .mbr-figure,
  .cid-rRN6FRZqd4 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRN6FRZqd4 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRN6FRZqd4 .mbr-author-desc {
  color: #000000;
}
.cid-rRN6FRZqd4 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRN6FRZqd4 .text_block {
  margin-top: 0px;
}
.cid-rRN6FRZqd4 .h2_block {
  margin-bottom: 20px;
}
.cid-rRN6FRZqd4 .mbr-figure {
  align-self: flex-start;
}
.cid-rRN6FRZqd4 .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rRN6FRZqd4 .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rRN6FRZqd4 .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rRN6FRZqd4 .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rRN6FRZqd4 .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rRN8ZRFkHj {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRN8ZRFkHj P {
  color: #767676;
}
.cid-rRN8ZRFkHj .display-2 {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .cid-rRN8ZRFkHj .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-rRN7eqNaam {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRN7eqNaam .mbr-text {
  color: #1d1d1b;
}
.cid-rRN7eqNaam .mbr-text p {
  background: #f9ceb2;
  padding: 1rem 0px !important;
}
.cid-rRN7eqNaam h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem !important;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRN7eqNaam .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRN7eqNaam .p-3 {
  line-height: 1.4;
}
.cid-ug9859iDvL {
  background: #f9ceb2;
  padding-top: 90px;
  padding-bottom: 60px;
}
.cid-ug9859iDvL .image-block {
  margin: auto;
}
.cid-ug9859iDvL figcaption {
  position: relative;
}
.cid-ug9859iDvL figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9859iDvL .image-block {
    width: 100% !important;
  }
}
.cid-rRN9ae6nki {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-14-web-1-2000x1330.jpg");
}
.cid-rRN9ae6nki H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRN9ae6nki .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRN9ae6nki .breites_Zitat,
  .cid-rRN9ae6nki .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRN9rHA1Ow {
  background: #f9ceb2;
  padding-top: 75px;
  padding-bottom: 0px;
}
.cid-rRN9rHA1Ow .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRN9rHA1Ow .video-block {
    width: 100% !important;
  }
}
.cid-rRN9rHA1Ow .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRN9AEukvz {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-rRN9AEukvz .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rRN9AEukvz h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRN9AEukvz .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRN9AEukvz .mbr-section-subtitle P {
  text-align: left;
  color: #1d1d1b;
}
.cid-rRNagOFbdF {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-14-2000x1330.png");
}
.cid-rRNagOFbdF H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRNagOFbdF .mbr-section-subtitle {
  color: #1d1d1b;
}
.cid-ug9Bd9HGrj {
  background: #ffffff;
}
.cid-ug9Bd9HGrj .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9Bd9HGrj figcaption {
  position: relative;
}
.cid-ug9Bd9HGrj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9Bd9HGrj .image-block {
    width: 100% !important;
  }
}
.cid-rRNauNm37I {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRNauNm37I .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRNauNm37I h2 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRNauNm37I .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRNauNm37I .testimonial-text {
  text-align: left;
}
.cid-uvlKN1Xcr0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uvlKN1Xcr0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uvlKN1Xcr0 h2 {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-uvlKN1Xcr0 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-uvlKN1Xcr0 .space_down_50 {
  margin-bottom: 50px;
}
.cid-uvlKN1Xcr0 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRNaG1AMJm {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 30px;
}
.cid-rRNaG1AMJm .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRNaG1AMJm .video-block {
    width: 100% !important;
  }
}
.cid-rRNaG1AMJm .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uvlJInsJTI {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvlJInsJTI .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uvlJInsJTI .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-uvlJInsJTI .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-uvlJInsJTI a:hover {
  Color: #a76645;
}
.cid-uvlJInsJTI a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uvlJInsJTI .btn-black-outline:hover,
.cid-uvlJInsJTI .btn-black-outline:focus,
.cid-uvlJInsJTI .btn-black-outline.focus,
.cid-uvlJInsJTI .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uvlJInsJTI .display-5 {
    line-height: 1;
  }
  .cid-uvlJInsJTI .btn {
    font-size: 1.5rem !important;
  }
  .cid-uvlJInsJTI .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-uvlJHsnjwE {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvlJHsnjwE .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uvlJHsnjwE .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-uvlJHsnjwE .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-uvlJHsnjwE a:hover {
  Color: #a76645;
}
.cid-uvlJHsnjwE a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uvlJHsnjwE .btn-black-outline:hover,
.cid-uvlJHsnjwE .btn-black-outline:focus,
.cid-uvlJHsnjwE .btn-black-outline.focus,
.cid-uvlJHsnjwE .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uvlJHsnjwE .display-5 {
    line-height: 1;
  }
  .cid-uvlJHsnjwE .btn {
    font-size: 1.5rem !important;
  }
  .cid-uvlJHsnjwE .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-uvlJGiBRrm {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvlJGiBRrm .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uvlJGiBRrm .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-uvlJGiBRrm .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-uvlJGiBRrm a:hover {
  Color: #a76645;
}
.cid-uvlJGiBRrm a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uvlJGiBRrm .btn-black-outline:hover,
.cid-uvlJGiBRrm .btn-black-outline:focus,
.cid-uvlJGiBRrm .btn-black-outline.focus,
.cid-uvlJGiBRrm .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uvlJGiBRrm .display-5 {
    line-height: 1;
  }
  .cid-uvlJGiBRrm .btn {
    font-size: 1.5rem !important;
  }
  .cid-uvlJGiBRrm .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-uvlKj38uJr {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uvlKj38uJr .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uvlKj38uJr .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-uvlKj38uJr .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-uvlKj38uJr a:hover {
  Color: #a76645;
}
.cid-uvlKj38uJr a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uvlKj38uJr .btn-black-outline:hover,
.cid-uvlKj38uJr .btn-black-outline:focus,
.cid-uvlKj38uJr .btn-black-outline.focus,
.cid-uvlKj38uJr .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uvlKj38uJr .display-5 {
    line-height: 1;
  }
  .cid-uvlKj38uJr .btn {
    font-size: 1.5rem !important;
  }
  .cid-uvlKj38uJr .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRNaLpyGXE {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRNaLpyGXE .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRNaLpyGXE .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rRNaLpyGXE .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rRNaLpyGXE a:hover {
  Color: #a76645;
}
.cid-rRNaLpyGXE a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRNaLpyGXE .btn-black-outline:hover,
.cid-rRNaLpyGXE .btn-black-outline:focus,
.cid-rRNaLpyGXE .btn-black-outline.focus,
.cid-rRNaLpyGXE .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRNaLpyGXE .display-5 {
    line-height: 1;
  }
  .cid-rRNaLpyGXE .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRNaLpyGXE .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRNb715kc5 {
  background-image: url("../../../assets/images/03-979-2000x1125.jpg");
}
.cid-rRNb715kc5 P {
  color: #767676;
}
.cid-rRNbgrE10S {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-5-1500x302.jpg");
}
.cid-rRNbgrE10S H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-rRNbgrE10S .mbr-section-subtitle {
  color: #000000;
}
.cid-rRNbgrE10S section {
  background-color: none;
}
.cid-rRNbgrE10S .logo_footer {
  position: relative;
  right: 100px;
}
.cid-ug96iMuj2f {
  background: #ffffff;
}
.cid-ug96iMuj2f .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug96iMuj2f figcaption {
  position: relative;
}
.cid-ug96iMuj2f figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug96iMuj2f .image-block {
    width: 100% !important;
  }
}
.cid-rRNbswfQxk {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f2f2fe;
}
.cid-rRNbswfQxk .images-container.container-fluid {
  padding: 0;
}
.cid-rRNbswfQxk .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRNbswfQxk .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRNbswfQxk .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRNbswfQxk .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRNbswfQxk .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRNbswfQxk .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRNbswfQxk .img-item {
    width: 100% !important;
  }
  .cid-rRNbswfQxk .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRNcjeDe3S {
  background: #ffffff;
}
.cid-rRNcjeDe3S .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRNcjeDe3S figcaption {
  position: relative;
}
.cid-rRNcjeDe3S figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRNcjeDe3S .image-block {
    width: 100% !important;
  }
}
.cid-rRNd6qNkqV {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-rRNd6qNkqV .images-container.container-fluid {
  padding: 0;
}
.cid-rRNd6qNkqV .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRNd6qNkqV .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRNd6qNkqV .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRNd6qNkqV .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRNd6qNkqV .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRNd6qNkqV .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRNd6qNkqV .img-item {
    width: 100% !important;
  }
  .cid-rRNd6qNkqV .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRNdppn6Bl {
  padding-top: 45px;
  padding-bottom: 60px;
  background: #000000;
}
.cid-rRNdppn6Bl .images-container.container-fluid {
  padding: 0;
}
.cid-rRNdppn6Bl .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRNdppn6Bl .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRNdppn6Bl .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRNdppn6Bl .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRNdppn6Bl .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRNdppn6Bl .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRNdppn6Bl .img-item {
    width: 100% !important;
  }
  .cid-rRNdppn6Bl .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-ug9aolxQNN {
  background: #ffffff;
}
.cid-ug9aolxQNN .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9aolxQNN figcaption {
  position: relative;
}
.cid-ug9aolxQNN figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9aolxQNN .image-block {
    width: 100% !important;
  }
}
.cid-rRNdVnfWxl {
  padding-top: 30px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-9-2000x1402.png");
}
.cid-rRNdVnfWxl .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rRNdVnfWxl .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rRNdVnfWxl .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rRNeb2fVd7 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRNeb2fVd7 .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
}
.cid-rRNeb2fVd7 .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rRNeb2fVd7 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRNeb2fVd7 .mbr-figure,
  .cid-rRNeb2fVd7 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRNeb2fVd7 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRNeb2fVd7 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRNeb2fVd7 .h2_block {
  margin-bottom: 20px;
}
.cid-rRNeCjr1HK {
  background: #f9ceb2;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-rRNeCjr1HK .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRNeCjr1HK .video-block {
    width: 100% !important;
  }
}
.cid-rRNeCjr1HK .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rWT6os3vq8 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-9-2000x1402.png");
}
.cid-rWT6os3vq8 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rWT6os3vq8 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rWT6os3vq8 .breites_Zitat,
  .cid-rWT6os3vq8 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-ug9aGIZHWD {
  background: #ffffff;
}
.cid-ug9aGIZHWD .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9aGIZHWD figcaption {
  position: relative;
}
.cid-ug9aGIZHWD figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9aGIZHWD .image-block {
    width: 100% !important;
  }
}
.cid-rRNeRMpTKK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRNeRMpTKK .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRNeRMpTKK h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRNeRMpTKK .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRNeRMpTKK .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-ug9AVYDRVV {
  background: #ffffff;
}
.cid-ug9AVYDRVV .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9AVYDRVV figcaption {
  position: relative;
}
.cid-ug9AVYDRVV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9AVYDRVV .image-block {
    width: 100% !important;
  }
}
.cid-rRNfpZImOX {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRNfpZImOX H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRNfpZImOX .mbr-section-subtitle {
  color: #1d1d1b;
}
.cid-rRNfEodzVC {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRNfEodzVC .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRNfEodzVC .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRNfEodzVC .mbr-author-desc {
  color: #232;
}
.cid-rRNfEodzVC .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRNfEodzVC .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRNfEodzVC .mbr-figure,
  .cid-rRNfEodzVC img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRNfEodzVC h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRNfEodzVC .text_block {
  margin-top: 0px;
}
.cid-rRNfEodzVC .h2_block {
  margin-bottom: 20px;
}
.cid-rRNfEodzVC .mbr-figure {
  align-self: flex-start;
}
.cid-rRNfEodzVC .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRNfEodzVC .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRNfEodzVC a:hover {
  Color: #a76645 !important;
}
.cid-rRNfEodzVC a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRNfEodzVC .btn-black-outline:hover,
.cid-rRNfEodzVC .btn-black-outline:focus,
.cid-rRNfEodzVC .btn-black-outline.focus,
.cid-rRNfEodzVC .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRNfEodzVC .display-5 {
    line-height: 1;
  }
  .cid-rRNfEodzVC .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRNfEodzVC .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRNfEodzVC .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRNfEodzVC .content {
  padding-left: 3px;
}
.cid-rWT7dsWBWI {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-13-2000x1333.png");
}
.cid-rWT7dsWBWI H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rWT7dsWBWI .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rWT7dsWBWI .breites_Zitat,
  .cid-rWT7dsWBWI .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-ug9aWCLHmV {
  background: #ffffff;
}
.cid-ug9aWCLHmV .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9aWCLHmV figcaption {
  position: relative;
}
.cid-ug9aWCLHmV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9aWCLHmV .image-block {
    width: 100% !important;
  }
}
.cid-ug9b0EIqAr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ug9b0EIqAr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-ug9b0EIqAr p {
  color: #767676;
  text-align: left;
}
.cid-ug9b0EIqAr .card-box {
  padding-top: 2rem;
}
.cid-ug9b0EIqAr .card-wrapper {
  height: 100%;
}
.cid-rRNgCJvDZa {
  background-image: url("../../../assets/images/zps-politicalbeauty-fluechtlingefressen-gorki-67-2000x3000.jpg");
}
.cid-rRNgCJvDZa P {
  color: #767676;
}
.cid-rRNg8MGJCv {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRNg8MGJCv .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rRNg8MGJCv h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRNg8MGJCv .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRNg8MGJCv .mbr-section-subtitle P {
  text-align: left;
  color: #ffffff;
}
.cid-ug9b31l8zn {
  background: #ffffff;
}
.cid-ug9b31l8zn .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9b31l8zn figcaption {
  position: relative;
}
.cid-ug9b31l8zn figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9b31l8zn .image-block {
    width: 100% !important;
  }
}
.cid-rRNh7sjUJO {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-13-2000x1333.png");
}
.cid-rRNh7sjUJO H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRNh7sjUJO .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRNh7sjUJO .breites_Zitat,
  .cid-rRNh7sjUJO .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-ug9b6b3yTt {
  background: #ffffff;
}
.cid-ug9b6b3yTt .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9b6b3yTt figcaption {
  position: relative;
}
.cid-ug9b6b3yTt figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9b6b3yTt .image-block {
    width: 100% !important;
  }
}
.cid-rRNhmVIhrY {
  background: #ffffff;
}
.cid-rRNhmVIhrY .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRNhmVIhrY figcaption {
  position: relative;
}
.cid-rRNhmVIhrY figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRNhmVIhrY .image-block {
    width: 300% !important;
  }
}
.cid-uccyz3I35X {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-uccyz3I35X .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-uccyz3I35X .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccyz3I35X .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccyz3I35X .mbr-figure,
  .cid-uccyz3I35X img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccyz3I35X .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccyz3I35X .mbr-author-desc {
  color: #000000;
}
.cid-uccyz3I35X h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccyz3I35X .text_block {
  margin-top: 0px;
}
.cid-uccyz3I35X .h2_block {
  margin-bottom: 20px;
}
.cid-uccyz3I35X .mbr-figure {
  align-self: flex-start;
}
.cid-uccyz3I35X .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccyz3I35X .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccyz3I35X .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccyz3I35X a:hover {
  Color: #a76645 !important;
}
.cid-uccyz3I35X a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccyz3I35X .btn-black-outline:hover,
.cid-uccyz3I35X .btn-black-outline:focus,
.cid-uccyz3I35X .btn-black-outline.focus,
.cid-uccyz3I35X .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccyz3I35X .display-5 {
    line-height: 1;
  }
  .cid-uccyz3I35X .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccyz3I35X .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccyz3I35X .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRNhnv43CZ {
  background: #ffffff;
}
.cid-rRNhnv43CZ .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRNhnv43CZ figcaption {
  position: relative;
}
.cid-rRNhnv43CZ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRNhnv43CZ .image-block {
    width: 300% !important;
  }
}
.cid-ug9Cks7mtZ {
  background: #ffffff;
}
.cid-ug9Cks7mtZ .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9Cks7mtZ figcaption {
  position: relative;
}
.cid-ug9Cks7mtZ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9Cks7mtZ .image-block {
    width: 100% !important;
  }
}
.cid-rRNhEPp7eY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRNhEPp7eY .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRNhEPp7eY h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRNhEPp7eY .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRNhEPp7eY .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRNhMY7Fjr {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRNhMY7Fjr .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRNhMY7Fjr .video-block {
    width: 100% !important;
  }
}
.cid-rRNhMY7Fjr .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRNidRmocp {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRNidRmocp H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRNidRmocp .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRNidRmocp .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRNidRmocp .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRNidRmocp a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rRNidRmocp a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ug9e9H36AE {
  background: #ffffff;
}
.cid-ug9e9H36AE .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9e9H36AE figcaption {
  position: relative;
}
.cid-ug9e9H36AE figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9e9H36AE .image-block {
    width: 100% !important;
  }
}
.cid-rRNmasoVor {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-rRNmasoVor .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRNmasoVor .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRNmasoVor .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rRNmasoVor .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRNmasoVor .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRNmasoVor .mbr-figure,
  .cid-rRNmasoVor img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRNmasoVor h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRNmasoVor .text_block {
  margin-top: 0px;
}
.cid-rRNmasoVor .h2_block {
  margin-bottom: 20px;
}
.cid-rRNmasoVor .mbr-figure {
  align-self: flex-start;
}
.cid-rRNmasoVor .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRNmasoVor .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRNmasoVor a:hover {
  Color: #a76645 !important;
}
.cid-rRNmasoVor a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRNmasoVor .btn-black-outline:hover,
.cid-rRNmasoVor .btn-black-outline:focus,
.cid-rRNmasoVor .btn-black-outline.focus,
.cid-rRNmasoVor .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRNmasoVor .display-5 {
    line-height: 1;
  }
  .cid-rRNmasoVor .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRNmasoVor .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRNmasoVor .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRNmasoVor .content {
  padding-left: 3px;
}
.cid-rRNnedzeBX {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRNnedzeBX .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rRNnedzeBX .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRNnedzeBX .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRNnedzeBX .mbr-figure,
  .cid-rRNnedzeBX img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRNnedzeBX .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRNnedzeBX .mbr-author-desc {
  color: #000000;
}
.cid-rRNnedzeBX h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRNnedzeBX .text_block {
  margin-top: 0px;
}
.cid-rRNnedzeBX .h2_block {
  margin-bottom: 20px;
}
.cid-rRNnedzeBX .mbr-figure {
  align-self: flex-start;
}
.cid-rRNnedzeBX .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRNnedzeBX .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRNnedzeBX .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-rRNnedzeBX a:hover {
  Color: #a76645 !important;
}
.cid-rRNnedzeBX a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRNnedzeBX .btn-black-outline:hover,
.cid-rRNnedzeBX .btn-black-outline:focus,
.cid-rRNnedzeBX .btn-black-outline.focus,
.cid-rRNnedzeBX .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRNnedzeBX .display-5 {
    line-height: 1;
  }
  .cid-rRNnedzeBX .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRNnedzeBX .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRNnedzeBX .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRNocC3sID {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRNocC3sID .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRNocC3sID .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRNocC3sID .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rRNocC3sID .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 0.1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRNocC3sID .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRNocC3sID .mbr-figure,
  .cid-rRNocC3sID img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRNocC3sID h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRNocC3sID .text_block {
  margin-top: 0px;
}
.cid-rRNocC3sID .h2_block {
  margin-bottom: 20px;
}
.cid-rRNocC3sID .mbr-figure {
  align-self: flex-start;
}
.cid-rRNocC3sID .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRNocC3sID .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRNocC3sID a:hover {
  Color: #a76645 !important;
}
.cid-rRNocC3sID a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRNocC3sID .btn-black-outline:hover,
.cid-rRNocC3sID .btn-black-outline:focus,
.cid-rRNocC3sID .btn-black-outline.focus,
.cid-rRNocC3sID .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRNocC3sID .display-5 {
    line-height: 1;
  }
  .cid-rRNocC3sID .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRNocC3sID .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRNocC3sID .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRNocC3sID .content {
  padding-left: 3px;
}
.cid-rRNridCXBK {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRNridCXBK .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rRNridCXBK .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRNridCXBK .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRNridCXBK .mbr-figure,
  .cid-rRNridCXBK img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRNridCXBK .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRNridCXBK .mbr-author-desc {
  color: #000000;
}
.cid-rRNridCXBK h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRNridCXBK .text_block {
  margin-top: 0px;
}
.cid-rRNridCXBK .h2_block {
  margin-bottom: 20px;
}
.cid-rRNridCXBK .mbr-figure {
  align-self: flex-start;
}
.cid-rRNridCXBK .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRNridCXBK .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRNridCXBK .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-rRNridCXBK a:hover {
  Color: #a76645 !important;
}
.cid-rRNridCXBK a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRNridCXBK .btn-black-outline:hover,
.cid-rRNridCXBK .btn-black-outline:focus,
.cid-rRNridCXBK .btn-black-outline.focus,
.cid-rRNridCXBK .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRNridCXBK .display-5 {
    line-height: 1;
  }
  .cid-rRNridCXBK .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRNridCXBK .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRNridCXBK .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRNrja18fp {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRNrja18fp .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRNrja18fp .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRNrja18fp .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rRNrja18fp .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 0.1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRNrja18fp .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRNrja18fp .mbr-figure,
  .cid-rRNrja18fp img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRNrja18fp h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRNrja18fp .text_block {
  margin-top: 0px;
}
.cid-rRNrja18fp .h2_block {
  margin-bottom: 20px;
}
.cid-rRNrja18fp .mbr-figure {
  align-self: flex-start;
}
.cid-rRNrja18fp .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRNrja18fp .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRNrja18fp a:hover {
  Color: #a76645 !important;
}
.cid-rRNrja18fp a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRNrja18fp .btn-black-outline:hover,
.cid-rRNrja18fp .btn-black-outline:focus,
.cid-rRNrja18fp .btn-black-outline.focus,
.cid-rRNrja18fp .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRNrja18fp .display-5 {
    line-height: 1;
  }
  .cid-rRNrja18fp .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRNrja18fp .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRNrja18fp .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRNrja18fp .content {
  padding-left: 3px;
}
.cid-rRNt3EMYEX {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-rRNt3EMYEX h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRNt3EMYEX p {
  color: #767676;
  text-align: left;
}
.cid-rRNt3EMYEX .card-box {
  padding-top: 2rem;
}
.cid-rRNt3EMYEX .card-wrapper {
  height: 100%;
}
.cid-rRNt3EMYEX P {
  color: #1d1d1b;
}
.cid-rRNuij4nl6 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-rRNuij4nl6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRNuij4nl6 p {
  color: #767676;
  text-align: left;
}
.cid-rRNuij4nl6 .card-box {
  padding-top: 2rem;
}
.cid-rRNuij4nl6 .card-wrapper {
  height: 100%;
}
.cid-rRNuij4nl6 P {
  color: #1d1d1b;
}
.cid-ug9r1qhzKL {
  background: #ffffff;
}
.cid-ug9r1qhzKL .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9r1qhzKL figcaption {
  position: relative;
}
.cid-ug9r1qhzKL figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9r1qhzKL .image-block {
    width: 100% !important;
  }
}
.cid-ug9s0FEaNj {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-ug9s0FEaNj .images-container.container-fluid {
  padding: 0;
}
.cid-ug9s0FEaNj .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-ug9s0FEaNj .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-ug9s0FEaNj .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-ug9s0FEaNj .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-ug9s0FEaNj .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-ug9s0FEaNj .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-ug9s0FEaNj .img-item {
    width: 100% !important;
  }
  .cid-ug9s0FEaNj .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-ug9ecQTTcI {
  background: #ffffff;
}
.cid-ug9ecQTTcI .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9ecQTTcI figcaption {
  position: relative;
}
.cid-ug9ecQTTcI figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9ecQTTcI .image-block {
    width: 100% !important;
  }
}
.cid-rWT8gH52QL {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-11-2000x1405.png");
}
.cid-rWT8gH52QL H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rWT8gH52QL .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rWT8gH52QL .breites_Zitat,
  .cid-rWT8gH52QL .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRNAreioQT {
  background-image: url("../../../assets/images/politicalbeauty2016-fluechtlingefressen-183-2000x3000.jpg");
}
.cid-rRNAreioQT P {
  color: #767676;
}
.cid-rRNwu9V8nw {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRNwu9V8nw .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRNwu9V8nw h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRNwu9V8nw p {
  color: #767676;
  text-align: left;
}
.cid-rRNwu9V8nw .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRNwu9V8nw .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRNwu9V8nw .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRNwu9V8nw .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRNwu9V8nw .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRNwu9V8nw .notched-box:before,
.cid-rRNwu9V8nw .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRNwu9V8nw .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRNwu9V8nw .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRNwu9V8nw .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRNwu9V8nw .border:before,
.cid-rRNwu9V8nw .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRNwu9V8nw .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRNwu9V8nw .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRNwu9V8nw .mbr-author-name {
  padding-left: 40px;
}
.cid-rRNwu9V8nw P {
  color: #ffffff;
}
.cid-rRNwu9V8nw .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRNwu9V8nw a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rRNwu9V8nw a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRNxX2F6WV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRNxX2F6WV .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRNxX2F6WV h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRNxX2F6WV p {
  color: #767676;
  text-align: left;
}
.cid-rRNxX2F6WV .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRNxX2F6WV .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRNxX2F6WV .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRNxX2F6WV .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRNxX2F6WV .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRNxX2F6WV .notched-box:before,
.cid-rRNxX2F6WV .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRNxX2F6WV .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRNxX2F6WV .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRNxX2F6WV .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRNxX2F6WV .border:before,
.cid-rRNxX2F6WV .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRNxX2F6WV .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRNxX2F6WV .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRNxX2F6WV .mbr-author-name {
  padding-left: 40px;
}
.cid-rRNxX2F6WV P {
  color: #ffffff;
}
.cid-rRNxX2F6WV .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRNxX2F6WV a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rRNxX2F6WV a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRNzpj702V {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRNzpj702V .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRNzpj702V h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRNzpj702V p {
  color: #767676;
  text-align: left;
}
.cid-rRNzpj702V .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRNzpj702V .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRNzpj702V .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRNzpj702V .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRNzpj702V .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRNzpj702V .notched-box:before,
.cid-rRNzpj702V .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRNzpj702V .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRNzpj702V .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRNzpj702V .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRNzpj702V .border:before,
.cid-rRNzpj702V .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRNzpj702V .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRNzpj702V .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRNzpj702V .mbr-author-name {
  padding-left: 40px;
}
.cid-rRNzpj702V P {
  color: #ffffff;
}
.cid-rRNzpj702V .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRNzpj702V a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rRNzpj702V a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rWT1jRVtmq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rWT1jRVtmq .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rWT1jRVtmq h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rWT1jRVtmq p {
  color: #767676;
  text-align: left;
}
.cid-rWT1jRVtmq .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rWT1jRVtmq .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rWT1jRVtmq .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rWT1jRVtmq .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWT1jRVtmq .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rWT1jRVtmq .notched-box:before,
.cid-rWT1jRVtmq .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rWT1jRVtmq .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rWT1jRVtmq .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rWT1jRVtmq .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rWT1jRVtmq .border:before,
.cid-rWT1jRVtmq .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rWT1jRVtmq .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rWT1jRVtmq .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rWT1jRVtmq .mbr-author-name {
  padding-left: 40px;
}
.cid-rWT1jRVtmq P {
  color: #ffffff;
}
.cid-rWT1jRVtmq .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rWT1jRVtmq a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rWT1jRVtmq a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rWT1HzocTt {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-rWT1HzocTt .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rWT1HzocTt h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rWT1HzocTt p {
  color: #767676;
  text-align: left;
}
.cid-rWT1HzocTt .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rWT1HzocTt .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rWT1HzocTt .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rWT1HzocTt .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rWT1HzocTt .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rWT1HzocTt .notched-box:before,
.cid-rWT1HzocTt .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rWT1HzocTt .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rWT1HzocTt .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rWT1HzocTt .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rWT1HzocTt .border:before,
.cid-rWT1HzocTt .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rWT1HzocTt .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rWT1HzocTt .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rWT1HzocTt .mbr-author-name {
  padding-left: 40px;
}
.cid-rWT1HzocTt P {
  color: #ffffff;
}
.cid-rWT1HzocTt .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rWT1HzocTt a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rWT1HzocTt a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ug8MShGlSa {
  background: #ffffff;
}
.cid-ug8MShGlSa .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug8MShGlSa figcaption {
  position: relative;
}
.cid-ug8MShGlSa figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug8MShGlSa .image-block {
    width: 100% !important;
  }
}
.cid-rRNBgF9h28 {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rRNBgF9h28 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRNBgF9h28 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRNBgF9h28 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRNBgF9h28 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-ug9wVGLeeN {
  background: #ffffff;
}
.cid-ug9wVGLeeN .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug9wVGLeeN figcaption {
  position: relative;
}
.cid-ug9wVGLeeN figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug9wVGLeeN .image-block {
    width: 100% !important;
  }
}
.cid-ug9wUIF49l {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ug9wUIF49l h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-ug9wUIF49l p {
  color: #767676;
  text-align: left;
}
.cid-ug9wUIF49l .card-box {
  padding-top: 2rem;
}
.cid-ug9wUIF49l .card-wrapper {
  height: 100%;
}
.cid-rRNEgXa03r {
  background-image: url("../../../assets/images/zentrumfuerpolitischeschoenheit-fluechtlingefressen-147-2000x3000.jpg");
}
.cid-rRNEgXa03r P {
  color: #767676;
}
.cid-rRNERv4thO {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRNERv4thO .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRNERv4thO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRNERv4thO p {
  color: #767676;
  text-align: left;
}
.cid-rRNERv4thO .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRNERv4thO .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRNERv4thO .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRNERv4thO .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRNERv4thO .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRNERv4thO .notched-box:before,
.cid-rRNERv4thO .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRNERv4thO .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRNERv4thO .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRNERv4thO .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRNERv4thO .border:before,
.cid-rRNERv4thO .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRNERv4thO .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRNERv4thO .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRNERv4thO .mbr-author-name {
  padding-left: 40px;
}
.cid-rRNERv4thO P {
  color: #000000;
}
.cid-rRNERv4thO .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRNEYJiNT8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRNEYJiNT8 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRNEYJiNT8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRNEYJiNT8 p {
  color: #767676;
  text-align: left;
}
.cid-rRNEYJiNT8 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRNEYJiNT8 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRNEYJiNT8 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRNEYJiNT8 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRNEYJiNT8 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRNEYJiNT8 .notched-box:before,
.cid-rRNEYJiNT8 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRNEYJiNT8 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRNEYJiNT8 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRNEYJiNT8 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRNEYJiNT8 .border:before,
.cid-rRNEYJiNT8 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRNEYJiNT8 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRNEYJiNT8 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRNEYJiNT8 .mbr-author-name {
  padding-left: 40px;
}
.cid-rRNEYJiNT8 P {
  color: #000000;
}
.cid-rRNEYJiNT8 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRNEZKLK2h {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRNEZKLK2h .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRNEZKLK2h h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRNEZKLK2h p {
  color: #767676;
  text-align: left;
}
.cid-rRNEZKLK2h .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRNEZKLK2h .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRNEZKLK2h .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRNEZKLK2h .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRNEZKLK2h .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRNEZKLK2h .notched-box:before,
.cid-rRNEZKLK2h .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRNEZKLK2h .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRNEZKLK2h .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRNEZKLK2h .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRNEZKLK2h .border:before,
.cid-rRNEZKLK2h .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRNEZKLK2h .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRNEZKLK2h .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRNEZKLK2h .mbr-author-name {
  padding-left: 40px;
}
.cid-rRNEZKLK2h P {
  color: #000000;
}
.cid-rRNEZKLK2h .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRNEV2h73M {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-rRNEV2h73M .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRNEV2h73M h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRNEV2h73M p {
  color: #767676;
  text-align: left;
}
.cid-rRNEV2h73M .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRNEV2h73M .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRNEV2h73M .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRNEV2h73M .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRNEV2h73M .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRNEV2h73M .notched-box:before,
.cid-rRNEV2h73M .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRNEV2h73M .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRNEV2h73M .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRNEV2h73M .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRNEV2h73M .border:before,
.cid-rRNEV2h73M .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRNEV2h73M .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRNEV2h73M .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRNEV2h73M .mbr-author-name {
  padding-left: 40px;
}
.cid-rRNEV2h73M P {
  color: #000000;
  line-height: 1.3;
}
.cid-rRNEV2h73M .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRO2IiG2p6 {
  background-image: url("../../../assets/images/politicalbeauty2016-fluechtlingefressen-8-1600x980.jpg");
}
.cid-rRO2IiG2p6 P {
  color: #767676;
}
.cid-u7yVjZ6a3q {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVjZ6a3q .content {
    text-align: center;
  }
  .cid-u7yVjZ6a3q .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVjZ6a3q .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVjZ6a3q .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVjZ6a3q .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVjZ6a3q .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVjZ6a3q .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVjZ6a3q .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVjZ6a3q .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVjZ6a3q .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVjZ6a3q .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVjZ6a3q .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVjZ6a3q .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVjZ6a3q .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVjZ6a3q H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVjZ6a3q P {
  color: #ffffff;
}
.cid-u7yVjZ6a3q .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVjZ6a3q .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVjZ6a3q .logo_footer {
  position: relative;
}
.cid-u7yVjZ6a3q .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVjZ6a3q .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVjZ6a3q .col,
  .cid-u7yVjZ6a3q .col-1,
  .cid-u7yVjZ6a3q .col-10,
  .cid-u7yVjZ6a3q .col-11,
  .cid-u7yVjZ6a3q .col-12,
  .cid-u7yVjZ6a3q .col-2,
  .cid-u7yVjZ6a3q .col-3,
  .cid-u7yVjZ6a3q .col-4,
  .cid-u7yVjZ6a3q .col-5,
  .cid-u7yVjZ6a3q .col-6,
  .cid-u7yVjZ6a3q .col-7,
  .cid-u7yVjZ6a3q .col-8,
  .cid-u7yVjZ6a3q .col-9,
  .cid-u7yVjZ6a3q .col-auto,
  .cid-u7yVjZ6a3q .col-lg,
  .cid-u7yVjZ6a3q .col-lg-1,
  .cid-u7yVjZ6a3q .col-lg-10,
  .cid-u7yVjZ6a3q .col-lg-11,
  .cid-u7yVjZ6a3q .col-lg-12,
  .cid-u7yVjZ6a3q .col-lg-2,
  .cid-u7yVjZ6a3q .col-lg-3,
  .cid-u7yVjZ6a3q .col-lg-4,
  .cid-u7yVjZ6a3q .col-lg-5,
  .cid-u7yVjZ6a3q .col-lg-6,
  .cid-u7yVjZ6a3q .col-lg-7,
  .cid-u7yVjZ6a3q .col-lg-8,
  .cid-u7yVjZ6a3q .col-lg-9,
  .cid-u7yVjZ6a3q .col-lg-auto,
  .cid-u7yVjZ6a3q .col-md,
  .cid-u7yVjZ6a3q .col-md-1,
  .cid-u7yVjZ6a3q .col-md-10,
  .cid-u7yVjZ6a3q .col-md-11,
  .cid-u7yVjZ6a3q .col-md-12,
  .cid-u7yVjZ6a3q .col-md-2,
  .cid-u7yVjZ6a3q .col-md-3,
  .cid-u7yVjZ6a3q .col-md-4,
  .cid-u7yVjZ6a3q .col-md-5,
  .cid-u7yVjZ6a3q .col-md-6,
  .cid-u7yVjZ6a3q .col-md-7,
  .cid-u7yVjZ6a3q .col-md-8,
  .cid-u7yVjZ6a3q .col-md-9,
  .cid-u7yVjZ6a3q .col-md-auto,
  .cid-u7yVjZ6a3q .col-sm,
  .cid-u7yVjZ6a3q .col-sm-1,
  .cid-u7yVjZ6a3q .col-sm-10,
  .cid-u7yVjZ6a3q .col-sm-11,
  .cid-u7yVjZ6a3q .col-sm-12,
  .cid-u7yVjZ6a3q .col-sm-2,
  .cid-u7yVjZ6a3q .col-sm-3,
  .cid-u7yVjZ6a3q .col-sm-4,
  .cid-u7yVjZ6a3q .col-sm-5,
  .cid-u7yVjZ6a3q .col-sm-6,
  .cid-u7yVjZ6a3q .col-sm-7,
  .cid-u7yVjZ6a3q .col-sm-8,
  .cid-u7yVjZ6a3q .col-sm-9,
  .cid-u7yVjZ6a3q .col-sm-auto,
  .cid-u7yVjZ6a3q .col-xl,
  .cid-u7yVjZ6a3q .col-xl-1,
  .cid-u7yVjZ6a3q .col-xl-10,
  .cid-u7yVjZ6a3q .col-xl-11,
  .cid-u7yVjZ6a3q .col-xl-12,
  .cid-u7yVjZ6a3q .col-xl-2,
  .cid-u7yVjZ6a3q .col-xl-3,
  .cid-u7yVjZ6a3q .col-xl-4,
  .cid-u7yVjZ6a3q .col-xl-5,
  .cid-u7yVjZ6a3q .col-xl-6,
  .cid-u7yVjZ6a3q .col-xl-7,
  .cid-u7yVjZ6a3q .col-xl-8,
  .cid-u7yVjZ6a3q .col-xl-9,
  .cid-u7yVjZ6a3q .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVjZ6a3q .content {
    text-align: left;
  }
  .cid-u7yVjZ6a3q .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVjZ6a3q .logo_footer_box {
    position: relative;
  }
  .cid-u7yVjZ6a3q .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVjZ6a3q .logo_footer {
    position: relative;
  }
  .cid-u7yVjZ6a3q .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVjZ6a3q .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rSoI3SkgWL {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rSoI3SkgWL {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rSoIpJxnHw {
  background-image: url("../../../assets/images/bruecke2-5-2000x1125.jpg");
}
.cid-rSoIpJxnHw P {
  color: #767676;
}
.cid-rSoIDXfxxa {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #f9ceb2;
}
.cid-rSoIDXfxxa .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSoIDXfxxa h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSoIDXfxxa .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSoIDXfxxa .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSoITckdLy {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSoITckdLy .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSoITckdLy .video-block {
    width: 100% !important;
  }
}
.cid-rSoITckdLy .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSoJ43EbKk {
  background: #ffffff;
}
.cid-rSoJ43EbKk .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSoJ43EbKk figcaption {
  position: relative;
}
.cid-rSoJ43EbKk figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSoJ43EbKk .image-block {
    width: 100% !important;
  }
}
.cid-rSoJhZUMlB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSoJhZUMlB .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSoJhZUMlB h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSoJhZUMlB .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSoJhZUMlB .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSoJpdTA0z {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rSoJpdTA0z .images-container.container-fluid {
  padding: 0;
}
.cid-rSoJpdTA0z .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rSoJpdTA0z .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rSoJpdTA0z .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rSoJpdTA0z .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rSoJpdTA0z .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rSoJpdTA0z .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rSoJpdTA0z .img-item {
    width: 100% !important;
  }
  .cid-rSoJpdTA0z .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rSoJE6Ae32 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSoJE6Ae32 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSoJE6Ae32 p {
  color: #767676;
  text-align: left;
}
.cid-rSoJE6Ae32 .card-box {
  padding-top: 2rem;
}
.cid-rSoJE6Ae32 .card-wrapper {
  height: 100%;
}
.cid-rSoJGb2GEO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSoJGb2GEO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSoJGb2GEO p {
  color: #767676;
  text-align: left;
}
.cid-rSoJGb2GEO .card-box {
  padding-top: 2rem;
}
.cid-rSoJGb2GEO .card-wrapper {
  height: 100%;
}
.cid-rSoJNwyPNo {
  background-image: url("../../../assets/images/bruecke-9-2000x1125.jpg");
}
.cid-rSoJNwyPNo P {
  color: #767676;
}
.cid-rSt5jpE74O {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSt5jpE74O .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSt5jpE74O h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSt5jpE74O .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSt5jpE74O .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSoK6dH0Lu {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rSoK6dH0Lu .images-container.container-fluid {
  padding: 0;
}
.cid-rSoK6dH0Lu .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rSoK6dH0Lu .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rSoK6dH0Lu .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rSoK6dH0Lu .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rSoK6dH0Lu .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rSoK6dH0Lu .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rSoK6dH0Lu .img-item {
    width: 100% !important;
  }
  .cid-rSoK6dH0Lu .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rSoK20zJgu {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSoK20zJgu .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSoK20zJgu h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSoK20zJgu .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSoK20zJgu .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSoKrKIvqm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSoKrKIvqm h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSoKrKIvqm p {
  color: #767676;
  text-align: left;
}
.cid-rSoKrKIvqm .card-box {
  padding-top: 2rem;
}
.cid-rSoKrKIvqm .card-wrapper {
  height: 100%;
}
.cid-rSoKrKIvqm P {
  color: #1d1d1b;
  font-weight: 200;
}
.cid-rSoLu4bkHj {
  padding-top: 15px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rSoLu4bkHj .images-container.container-fluid {
  padding: 0;
}
.cid-rSoLu4bkHj .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rSoLu4bkHj .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rSoLu4bkHj .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rSoLu4bkHj .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rSoLu4bkHj .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rSoLu4bkHj .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rSoLu4bkHj .img-item {
    width: 100% !important;
  }
  .cid-rSoLu4bkHj .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rSoLIjIMfr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSoLIjIMfr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSoLIjIMfr p {
  color: #767676;
  text-align: left;
}
.cid-rSoLIjIMfr .card-box {
  padding-top: 2rem;
}
.cid-rSoLIjIMfr .card-wrapper {
  height: 100%;
}
.cid-rSoMrUK6UH {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSoMrUK6UH .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSoMrUK6UH h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSoMrUK6UH .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSoMrUK6UH .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSoLOTbvu5 {
  background: #ffffff;
}
.cid-rSoLOTbvu5 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSoLOTbvu5 figcaption {
  position: relative;
}
.cid-rSoLOTbvu5 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSoLOTbvu5 .image-block {
    width: 100% !important;
  }
}
.cid-rSoLY9RpSe {
  background-image: url("../../../assets/images/plattform-18-2000x1038.jpg");
}
.cid-rSoLY9RpSe P {
  color: #767676;
}
.cid-rSoLUYHHtr {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rSoLUYHHtr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSoLUYHHtr p {
  color: #767676;
  text-align: left;
}
.cid-rSoLUYHHtr .card-box {
  padding-top: 2rem;
}
.cid-rSoLUYHHtr .card-wrapper {
  height: 100%;
}
.cid-rSoM9nnXr5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rSoM9nnXr5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSoM9nnXr5 p {
  color: #767676;
  text-align: left;
}
.cid-rSoM9nnXr5 .card-box {
  padding-top: 2rem;
}
.cid-rSoM9nnXr5 .card-wrapper {
  height: 100%;
}
.cid-rSoMfqRyvO {
  background-image: url("../../../assets/images/plattform-13-2000x1125.jpg");
}
.cid-rSoMfqRyvO P {
  color: #767676;
}
.cid-se4edpI379 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-4-1500x352.jpg");
}
.cid-se4edpI379 H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-se4edpI379 .mbr-section-subtitle {
  color: #000000;
}
.cid-se4edpI379 span {
  visibility: hidden;
}
.cid-se4edpI379 .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4edpI379 span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rSoMBUBbOY {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #000000;
}
.cid-rSoMBUBbOY .images-container.container-fluid {
  padding: 0;
}
.cid-rSoMBUBbOY .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rSoMBUBbOY .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rSoMBUBbOY .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rSoMBUBbOY .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rSoMBUBbOY .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rSoMBUBbOY .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rSoMBUBbOY .img-item {
    width: 100% !important;
  }
  .cid-rSoMBUBbOY .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rSoMGG7JiL {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rSoMGG7JiL H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rSoMGG7JiL .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rSoMGG7JiL .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rSoMGG7JiL .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rStaasDH1b {
  background-image: url("../../../assets/images/04-04-zps-sizilien-1-nick-jaussi-2015-1500x1001.jpg");
}
.cid-rStaasDH1b P {
  color: #767676;
}
.cid-rStd4GF26D {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rStd4GF26D .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rStd4GF26D h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rStd4GF26D .space_down_50 {
  margin-bottom: 50px;
}
.cid-rStd4GF26D a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rStd4GF26D a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u6fMusv6jn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u6fMusv6jn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fMusv6jn p {
  color: #767676;
  text-align: left;
}
.cid-u6fMusv6jn .card-box {
  padding-top: 2rem;
}
.cid-u6fMusv6jn .card-wrapper {
  height: 100%;
}
.cid-u6fMusv6jn P {
  text-align: left;
}
.cid-u6fMuXWfZv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u6fMuXWfZv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fMuXWfZv p {
  color: #767676;
  text-align: left;
}
.cid-u6fMuXWfZv .card-box {
  padding-top: 2rem;
}
.cid-u6fMuXWfZv .card-wrapper {
  height: 100%;
}
.cid-u6fMuXWfZv P {
  text-align: left;
}
.cid-u6fMvldOsJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u6fMvldOsJ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fMvldOsJ p {
  color: #767676;
  text-align: left;
}
.cid-u6fMvldOsJ .card-box {
  padding-top: 2rem;
}
.cid-u6fMvldOsJ .card-wrapper {
  height: 100%;
}
.cid-u6fMvldOsJ P {
  text-align: left;
}
.cid-rSoN4qzPz3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rSoN4qzPz3 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSoN4qzPz3 p {
  color: #767676;
  text-align: left;
}
.cid-rSoN4qzPz3 .card-box {
  padding-top: 2rem;
}
.cid-rSoN4qzPz3 .card-wrapper {
  height: 100%;
}
.cid-rSoNcsGlpd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rSoNcsGlpd h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSoNcsGlpd p {
  color: #767676;
  text-align: left;
}
.cid-rSoNcsGlpd .card-box {
  padding-top: 2rem;
}
.cid-rSoNcsGlpd .card-wrapper {
  height: 100%;
}
.cid-rSoNnpleg5 {
  background: #ffffff;
}
.cid-rSoNnpleg5 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSoNnpleg5 figcaption {
  position: relative;
}
.cid-rSoNnpleg5 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSoNnpleg5 .image-block {
    width: 100% !important;
  }
}
.cid-rSoNyOetHS {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-13-2000x1333.png");
}
.cid-rSoNyOetHS H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rSoNyOetHS .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rSoNyOetHS .breites_Zitat,
  .cid-rSoNyOetHS .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rSoNDiRBpC {
  background-image: url("../../../assets/images/02-19-afp-die-bruecke-nick-jaussi-2015-2000x1335.jpg");
}
.cid-rSoNDiRBpC P {
  color: #767676;
}
.cid-rSoNFCvIpK {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSoNFCvIpK .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSoNFCvIpK h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSoNFCvIpK .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSoNFCvIpK .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSoNK8qWE7 {
  background: #ffffff;
}
.cid-rSoNK8qWE7 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSoNK8qWE7 figcaption {
  position: relative;
}
.cid-rSoNK8qWE7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSoNK8qWE7 .image-block {
    width: 300% !important;
  }
}
.cid-uccz5xywJT {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-uccz5xywJT .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-uccz5xywJT .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccz5xywJT .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccz5xywJT .mbr-figure,
  .cid-uccz5xywJT img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccz5xywJT .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccz5xywJT .mbr-author-desc {
  color: #000000;
}
.cid-uccz5xywJT h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccz5xywJT .text_block {
  margin-top: 0px;
}
.cid-uccz5xywJT .h2_block {
  margin-bottom: 20px;
}
.cid-uccz5xywJT .mbr-figure {
  align-self: flex-start;
}
.cid-uccz5xywJT .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccz5xywJT .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccz5xywJT .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccz5xywJT a svg polygon {
  fill: white !important;
}
.cid-uccz5xywJT a:hover {
  Color: #F9CEB2!important;
}
.cid-uccz5xywJT a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccz5xywJT .btn-white-outline:hover,
.cid-uccz5xywJT .btn-white-outline:focus,
.cid-uccz5xywJT .btn-white-outline.focus,
.cid-uccz5xywJT .btn-white-outline.active,
.cid-uccz5xywJT .btn-black-outline:hover,
.cid-uccz5xywJT .btn-black-outline:focus,
.cid-uccz5xywJT .btn-black-outline.focus,
.cid-uccz5xywJT .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccz5xywJT .display-5 {
    line-height: 1;
  }
  .cid-uccz5xywJT .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccz5xywJT .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccz5xywJT .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rSoNIXNLEJ {
  background: #ffffff;
}
.cid-rSoNIXNLEJ .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSoNIXNLEJ figcaption {
  position: relative;
}
.cid-rSoNIXNLEJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSoNIXNLEJ .image-block {
    width: 300% !important;
  }
}
.cid-rSoNVRIAlO {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-rSoNVRIAlO .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rSoNVRIAlO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSoNVRIAlO p {
  color: #767676;
  text-align: left;
}
.cid-rSoNVRIAlO .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rSoNVRIAlO .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rSoNVRIAlO .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rSoNVRIAlO .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rSoNVRIAlO .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rSoNVRIAlO .notched-box:before,
.cid-rSoNVRIAlO .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rSoNVRIAlO .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rSoNVRIAlO .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rSoNVRIAlO .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rSoNVRIAlO .border:before,
.cid-rSoNVRIAlO .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rSoNVRIAlO .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rSoNVRIAlO .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rSoNVRIAlO .mbr-author-name {
  padding-left: 40px;
}
.cid-rSoNVRIAlO P {
  color: #ffffff;
}
.cid-rSoNVRIAlO .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -10px;
}
.cid-rSoNVRIAlO a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rSoNVRIAlO a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSoO0eGeru {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-rSoO0eGeru .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rSoO0eGeru h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSoO0eGeru p {
  color: #767676;
  text-align: left;
}
.cid-rSoO0eGeru .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rSoO0eGeru .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rSoO0eGeru .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rSoO0eGeru .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rSoO0eGeru .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rSoO0eGeru .notched-box:before,
.cid-rSoO0eGeru .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rSoO0eGeru .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rSoO0eGeru .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rSoO0eGeru .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rSoO0eGeru .border:before,
.cid-rSoO0eGeru .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rSoO0eGeru .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rSoO0eGeru .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rSoO0eGeru .mbr-author-name {
  padding-left: 40px;
}
.cid-rSoO0eGeru P {
  color: #ffffff;
}
.cid-rSoO0eGeru .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -10px;
}
.cid-rSoO0eGeru a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rSoO0eGeru a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSoOBMs686 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSoOBMs686 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSoOBMs686 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSoOBMs686 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSoOBMs686 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSoOJS6Lco {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSoOJS6Lco .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSoOJS6Lco .video-block {
    width: 100% !important;
  }
}
.cid-rSoOJS6Lco .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSoOTbohxS {
  background: #ffffff;
}
.cid-rSoOTbohxS .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSoOTbohxS figcaption {
  position: relative;
}
.cid-rSoOTbohxS figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSoOTbohxS .image-block {
    width: 100% !important;
  }
}
.cid-rSoOXydvyx {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rSoOXydvyx .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSoOXydvyx h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSoOXydvyx .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSoOXydvyx .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-u7yVmJ6gkv {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVmJ6gkv .content {
    text-align: center;
  }
  .cid-u7yVmJ6gkv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVmJ6gkv .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVmJ6gkv .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVmJ6gkv .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVmJ6gkv .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVmJ6gkv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVmJ6gkv .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVmJ6gkv .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVmJ6gkv .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVmJ6gkv .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVmJ6gkv .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVmJ6gkv .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVmJ6gkv .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVmJ6gkv H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVmJ6gkv P {
  color: #ffffff;
}
.cid-u7yVmJ6gkv .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVmJ6gkv .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVmJ6gkv .logo_footer {
  position: relative;
}
.cid-u7yVmJ6gkv .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVmJ6gkv .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVmJ6gkv .col,
  .cid-u7yVmJ6gkv .col-1,
  .cid-u7yVmJ6gkv .col-10,
  .cid-u7yVmJ6gkv .col-11,
  .cid-u7yVmJ6gkv .col-12,
  .cid-u7yVmJ6gkv .col-2,
  .cid-u7yVmJ6gkv .col-3,
  .cid-u7yVmJ6gkv .col-4,
  .cid-u7yVmJ6gkv .col-5,
  .cid-u7yVmJ6gkv .col-6,
  .cid-u7yVmJ6gkv .col-7,
  .cid-u7yVmJ6gkv .col-8,
  .cid-u7yVmJ6gkv .col-9,
  .cid-u7yVmJ6gkv .col-auto,
  .cid-u7yVmJ6gkv .col-lg,
  .cid-u7yVmJ6gkv .col-lg-1,
  .cid-u7yVmJ6gkv .col-lg-10,
  .cid-u7yVmJ6gkv .col-lg-11,
  .cid-u7yVmJ6gkv .col-lg-12,
  .cid-u7yVmJ6gkv .col-lg-2,
  .cid-u7yVmJ6gkv .col-lg-3,
  .cid-u7yVmJ6gkv .col-lg-4,
  .cid-u7yVmJ6gkv .col-lg-5,
  .cid-u7yVmJ6gkv .col-lg-6,
  .cid-u7yVmJ6gkv .col-lg-7,
  .cid-u7yVmJ6gkv .col-lg-8,
  .cid-u7yVmJ6gkv .col-lg-9,
  .cid-u7yVmJ6gkv .col-lg-auto,
  .cid-u7yVmJ6gkv .col-md,
  .cid-u7yVmJ6gkv .col-md-1,
  .cid-u7yVmJ6gkv .col-md-10,
  .cid-u7yVmJ6gkv .col-md-11,
  .cid-u7yVmJ6gkv .col-md-12,
  .cid-u7yVmJ6gkv .col-md-2,
  .cid-u7yVmJ6gkv .col-md-3,
  .cid-u7yVmJ6gkv .col-md-4,
  .cid-u7yVmJ6gkv .col-md-5,
  .cid-u7yVmJ6gkv .col-md-6,
  .cid-u7yVmJ6gkv .col-md-7,
  .cid-u7yVmJ6gkv .col-md-8,
  .cid-u7yVmJ6gkv .col-md-9,
  .cid-u7yVmJ6gkv .col-md-auto,
  .cid-u7yVmJ6gkv .col-sm,
  .cid-u7yVmJ6gkv .col-sm-1,
  .cid-u7yVmJ6gkv .col-sm-10,
  .cid-u7yVmJ6gkv .col-sm-11,
  .cid-u7yVmJ6gkv .col-sm-12,
  .cid-u7yVmJ6gkv .col-sm-2,
  .cid-u7yVmJ6gkv .col-sm-3,
  .cid-u7yVmJ6gkv .col-sm-4,
  .cid-u7yVmJ6gkv .col-sm-5,
  .cid-u7yVmJ6gkv .col-sm-6,
  .cid-u7yVmJ6gkv .col-sm-7,
  .cid-u7yVmJ6gkv .col-sm-8,
  .cid-u7yVmJ6gkv .col-sm-9,
  .cid-u7yVmJ6gkv .col-sm-auto,
  .cid-u7yVmJ6gkv .col-xl,
  .cid-u7yVmJ6gkv .col-xl-1,
  .cid-u7yVmJ6gkv .col-xl-10,
  .cid-u7yVmJ6gkv .col-xl-11,
  .cid-u7yVmJ6gkv .col-xl-12,
  .cid-u7yVmJ6gkv .col-xl-2,
  .cid-u7yVmJ6gkv .col-xl-3,
  .cid-u7yVmJ6gkv .col-xl-4,
  .cid-u7yVmJ6gkv .col-xl-5,
  .cid-u7yVmJ6gkv .col-xl-6,
  .cid-u7yVmJ6gkv .col-xl-7,
  .cid-u7yVmJ6gkv .col-xl-8,
  .cid-u7yVmJ6gkv .col-xl-9,
  .cid-u7yVmJ6gkv .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVmJ6gkv .content {
    text-align: left;
  }
  .cid-u7yVmJ6gkv .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVmJ6gkv .logo_footer_box {
    position: relative;
  }
  .cid-u7yVmJ6gkv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVmJ6gkv .logo_footer {
    position: relative;
  }
  .cid-u7yVmJ6gkv .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVmJ6gkv .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rS64ujLiao {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rS64ujLiao {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rS64OfU7t0 {
  background-image: url("../../../assets/images/c82a0814-2000x1333.jpg");
}
.cid-rS64OfU7t0 P {
  color: #767676;
}
.cid-rS69WFmYvI {
  padding-top: 90px;
  padding-bottom: 75px;
  background: #171717;
}
.cid-rS69WFmYvI .images-container.container-fluid {
  padding: 0;
}
.cid-rS69WFmYvI .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS69WFmYvI .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS69WFmYvI .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS69WFmYvI .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS69WFmYvI .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS69WFmYvI .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS69WFmYvI .img-item {
    width: 100% !important;
  }
  .cid-rS69WFmYvI .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS64E6AwWI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rS64E6AwWI .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS64E6AwWI h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS64E6AwWI .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS64E6AwWI .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS64IgLMut {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rS64IgLMut .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS64IgLMut .video-block {
    width: 100% !important;
  }
}
.cid-rS64IgLMut .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS64ym6YFn {
  background-image: url("../../../assets/images/tote2-1200x480.jpg");
}
.cid-rS64ym6YFn P {
  color: #767676;
}
.cid-u6fz9mG8To {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6fz9mG8To h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fz9mG8To p {
  color: #767676;
  text-align: left;
}
.cid-u6fz9mG8To .card-box {
  padding-top: 2rem;
}
.cid-u6fz9mG8To .card-wrapper {
  height: 100%;
}
.cid-u6fz9mG8To P {
  text-align: left;
}
.cid-u6UpZkp8K6 {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-u6UpZkp8K6 .images-container.container-fluid {
  padding: 0;
}
.cid-u6UpZkp8K6 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-u6UpZkp8K6 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-u6UpZkp8K6 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-u6UpZkp8K6 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-u6UpZkp8K6 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-u6UpZkp8K6 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-u6UpZkp8K6 .img-item {
    width: 100% !important;
  }
  .cid-u6UpZkp8K6 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS64Y9hHhh {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rS64Y9hHhh .images-container.container-fluid {
  padding: 0;
}
.cid-rS64Y9hHhh .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS64Y9hHhh .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS64Y9hHhh .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS64Y9hHhh .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS64Y9hHhh .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS64Y9hHhh .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS64Y9hHhh .img-item {
    width: 100% !important;
  }
  .cid-rS64Y9hHhh .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-se4fi1n2Hg {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-11-2000x1402.png");
}
.cid-se4fi1n2Hg H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-se4fi1n2Hg .mbr-section-subtitle {
  color: #000000;
}
.cid-se4fi1n2Hg span {
  visibility: hidden;
}
.cid-se4fi1n2Hg .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4fi1n2Hg span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rS65bN1CWY {
  background-image: url("../../../assets/images/10-24-zps-gatow-nick-jaussi-2015-2000x1331.jpg");
}
.cid-rS65bN1CWY P {
  color: #767676;
}
.cid-rS65dTXFEd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rS65dTXFEd .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS65dTXFEd h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS65dTXFEd .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS65dTXFEd .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS65hy3lDN {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rS65hy3lDN .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS65hy3lDN .video-block {
    width: 100% !important;
  }
}
.cid-rS65hy3lDN .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS65khL0Rf {
  background-image: url("../../../assets/images/30-69-zps-gatow-nick-jaussi-2015-2000x1335.jpg");
}
.cid-rS65khL0Rf P {
  color: #767676;
}
.cid-rS65rkoD6r {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS65rkoD6r h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS65rkoD6r p {
  color: #767676;
  text-align: left;
}
.cid-rS65rkoD6r .card-box {
  padding-top: 2rem;
}
.cid-rS65rkoD6r .card-wrapper {
  height: 100%;
}
.cid-rS65rWcwws {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS65rWcwws h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS65rWcwws p {
  color: #767676;
  text-align: left;
}
.cid-rS65rWcwws .card-box {
  padding-top: 2rem;
}
.cid-rS65rWcwws .card-wrapper {
  height: 100%;
}
.cid-u6fzbqi9VW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6fzbqi9VW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fzbqi9VW p {
  color: #767676;
  text-align: left;
}
.cid-u6fzbqi9VW .card-box {
  padding-top: 2rem;
}
.cid-u6fzbqi9VW .card-wrapper {
  height: 100%;
}
.cid-u6fzbqi9VW P {
  text-align: left;
}
.cid-rS65Nd6VUK {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rS65Nd6VUK .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS65Nd6VUK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS65Nd6VUK p {
  color: #767676;
  text-align: left;
}
.cid-rS65Nd6VUK .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS65Nd6VUK .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS65Nd6VUK .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS65Nd6VUK .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS65Nd6VUK .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS65Nd6VUK .notched-box:before,
.cid-rS65Nd6VUK .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rS65Nd6VUK .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS65Nd6VUK .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS65Nd6VUK .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS65Nd6VUK .border:before,
.cid-rS65Nd6VUK .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rS65Nd6VUK .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS65Nd6VUK .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS65Nd6VUK .mbr-author-name {
  padding-left: 40px;
}
.cid-rS65Nd6VUK P {
  color: #ffffff;
}
.cid-rS65Nd6VUK .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS65Nd6VUK a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rS65Nd6VUK a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS65RimTti {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rS65RimTti .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS65RimTti h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS65RimTti p {
  color: #767676;
  text-align: left;
}
.cid-rS65RimTti .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS65RimTti .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS65RimTti .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS65RimTti .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS65RimTti .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS65RimTti .notched-box:before,
.cid-rS65RimTti .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rS65RimTti .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS65RimTti .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS65RimTti .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS65RimTti .border:before,
.cid-rS65RimTti .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rS65RimTti .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS65RimTti .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS65RimTti .mbr-author-name {
  padding-left: 40px;
}
.cid-rS65RimTti P {
  color: #ffffff;
}
.cid-rS65RimTti .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS65RimTti a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rS65RimTti a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS65Ow18lo {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-rS65Ow18lo .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS65Ow18lo h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS65Ow18lo p {
  color: #767676;
  text-align: left;
}
.cid-rS65Ow18lo .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS65Ow18lo .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS65Ow18lo .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS65Ow18lo .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS65Ow18lo .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS65Ow18lo .notched-box:before,
.cid-rS65Ow18lo .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rS65Ow18lo .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS65Ow18lo .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS65Ow18lo .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS65Ow18lo .border:before,
.cid-rS65Ow18lo .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rS65Ow18lo .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS65Ow18lo .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS65Ow18lo .mbr-author-name {
  padding-left: 40px;
}
.cid-rS65Ow18lo P {
  color: #ffffff;
}
.cid-rS65Ow18lo .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS65Ow18lo a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rS65Ow18lo a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS65Vjl6FU {
  background: #ffffff;
}
.cid-rS65Vjl6FU .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS65Vjl6FU figcaption {
  position: relative;
}
.cid-rS65Vjl6FU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS65Vjl6FU .image-block {
    width: 100% !important;
  }
}
.cid-rWT9fCzX6r {
  padding-top: 75px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-8-1500x622.jpg");
}
.cid-rWT9fCzX6r H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rWT9fCzX6r .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rWT9fCzX6r .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rWT9fCzX6r .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rS65ZCgqZ7 {
  background-image: url("../../../assets/images/05-31-zps-schoeneberg-nick-jaussi-2015-2000x1335.jpg");
}
.cid-rS65ZCgqZ7 P {
  color: #767676;
}
.cid-rS665RXTHi {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rS665RXTHi .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS665RXTHi h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS665RXTHi p {
  color: #767676;
  text-align: left;
}
.cid-rS665RXTHi .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS665RXTHi .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS665RXTHi .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS665RXTHi .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS665RXTHi .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS665RXTHi .notched-box:before,
.cid-rS665RXTHi .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rS665RXTHi .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS665RXTHi .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS665RXTHi .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS665RXTHi .border:before,
.cid-rS665RXTHi .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rS665RXTHi .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS665RXTHi .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS665RXTHi .mbr-author-name {
  padding-left: 40px;
}
.cid-rS665RXTHi P {
  color: #ffffff;
}
.cid-rS665RXTHi .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS665RXTHi a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rS665RXTHi a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS667qGgN4 {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-rS667qGgN4 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS667qGgN4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS667qGgN4 p {
  color: #767676;
  text-align: left;
}
.cid-rS667qGgN4 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS667qGgN4 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS667qGgN4 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS667qGgN4 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS667qGgN4 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS667qGgN4 .notched-box:before,
.cid-rS667qGgN4 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rS667qGgN4 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS667qGgN4 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS667qGgN4 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS667qGgN4 .border:before,
.cid-rS667qGgN4 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rS667qGgN4 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS667qGgN4 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS667qGgN4 .mbr-author-name {
  padding-left: 40px;
}
.cid-rS667qGgN4 P {
  color: #ffffff;
}
.cid-rS667qGgN4 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS667qGgN4 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rS667qGgN4 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u7yRWBMgP9 {
  background: #000000;
  padding-top: 15px;
  padding-bottom: 90px;
}
.cid-u7yRWBMgP9 .image-block {
  margin: auto;
}
.cid-u7yRWBMgP9 figcaption {
  position: relative;
}
.cid-u7yRWBMgP9 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u7yRWBMgP9 .image-block {
    width: 100% !important;
  }
}
.cid-rS66bclCsP {
  background: #ffffff;
}
.cid-rS66bclCsP .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS66bclCsP figcaption {
  position: relative;
}
.cid-rS66bclCsP figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS66bclCsP .image-block {
    width: 100% !important;
  }
}
.cid-rS66eFFhuy {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS66eFFhuy .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS66eFFhuy h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS66eFFhuy .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS66eFFhuy .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS66hGoJ9P {
  padding-top: 60px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rS66hGoJ9P .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS66hGoJ9P h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS66hGoJ9P .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS66hGoJ9P .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS66qbUGNW {
  background-image: url("../../../assets/images/still-06-2000x1125.jpg");
}
.cid-rS66qbUGNW P {
  color: #767676;
}
.cid-rS66rV1BGU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS66rV1BGU .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS66rV1BGU h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS66rV1BGU .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS66rV1BGU .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS66uKq06K {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rS66uKq06K .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS66uKq06K .video-block {
    width: 100% !important;
  }
}
.cid-rS66uKq06K .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS66Bg2I0F {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS66Bg2I0F h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS66Bg2I0F p {
  color: #767676;
  text-align: left;
}
.cid-rS66Bg2I0F .card-box {
  padding-top: 2rem;
}
.cid-rS66Bg2I0F .card-wrapper {
  height: 100%;
}
.cid-rS66BZcuU1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS66BZcuU1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS66BZcuU1 p {
  color: #767676;
  text-align: left;
}
.cid-rS66BZcuU1 .card-box {
  padding-top: 2rem;
}
.cid-rS66BZcuU1 .card-wrapper {
  height: 100%;
}
.cid-rS66E7tptz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS66E7tptz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS66E7tptz p {
  color: #767676;
  text-align: left;
}
.cid-rS66E7tptz .card-box {
  padding-top: 2rem;
}
.cid-rS66E7tptz .card-wrapper {
  height: 100%;
}
.cid-rS66Jg7zit {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rS66Jg7zit .images-container.container-fluid {
  padding: 0;
}
.cid-rS66Jg7zit .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS66Jg7zit .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS66Jg7zit .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS66Jg7zit .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS66Jg7zit .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS66Jg7zit .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS66Jg7zit .img-item {
    width: 100% !important;
  }
  .cid-rS66Jg7zit .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS66Qabrq5 {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rS66Qabrq5 .images-container.container-fluid {
  padding: 0;
}
.cid-rS66Qabrq5 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS66Qabrq5 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS66Qabrq5 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS66Qabrq5 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS66Qabrq5 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS66Qabrq5 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS66Qabrq5 .img-item {
    width: 100% !important;
  }
  .cid-rS66Qabrq5 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS6pgou8eD {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS6pgou8eD .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS6pgou8eD h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS6pgou8eD .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS6pgou8eD .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS66Rs6NVa {
  background-image: url("../../../assets/images/16-60-zps-bundestag-nick-jaussi-2015-2000x1335.jpg");
}
.cid-rS66Rs6NVa P {
  color: #767676;
}
.cid-rS66TThXYm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rS66TThXYm .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS66TThXYm h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS66TThXYm .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS66TThXYm .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS670Pwkk6 {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rS670Pwkk6 .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS670Pwkk6 .video-block {
    width: 100% !important;
  }
}
.cid-rS670Pwkk6 .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS6734vYrb {
  background: #ffffff;
}
.cid-rS6734vYrb .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS6734vYrb figcaption {
  position: relative;
}
.cid-rS6734vYrb figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS6734vYrb .image-block {
    width: 100% !important;
  }
}
.cid-rS678fLpzK {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rS678fLpzK .images-container.container-fluid {
  padding: 0;
}
.cid-rS678fLpzK .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS678fLpzK .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS678fLpzK .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS678fLpzK .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS678fLpzK .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS678fLpzK .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS678fLpzK .img-item {
    width: 100% !important;
  }
  .cid-rS678fLpzK .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS678Ojkbh {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rS678Ojkbh .images-container.container-fluid {
  padding: 0;
}
.cid-rS678Ojkbh .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS678Ojkbh .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS678Ojkbh .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS678Ojkbh .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS678Ojkbh .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS678Ojkbh .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS678Ojkbh .img-item {
    width: 100% !important;
  }
  .cid-rS678Ojkbh .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS67b0uvmd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS67b0uvmd h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS67b0uvmd p {
  color: #767676;
  text-align: left;
}
.cid-rS67b0uvmd .card-box {
  padding-top: 2rem;
}
.cid-rS67b0uvmd .card-wrapper {
  height: 100%;
}
.cid-rS67citlz6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS67citlz6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS67citlz6 p {
  color: #767676;
  text-align: left;
}
.cid-rS67citlz6 .card-box {
  padding-top: 2rem;
}
.cid-rS67citlz6 .card-wrapper {
  height: 100%;
}
.cid-rS67gwn8rG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS67gwn8rG h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS67gwn8rG p {
  color: #767676;
  text-align: left;
}
.cid-rS67gwn8rG .card-box {
  padding-top: 2rem;
}
.cid-rS67gwn8rG .card-wrapper {
  height: 100%;
}
.cid-spXlDv9ITA {
  background-image: url("../../../assets/images/die3totenkommen0556.jpg");
}
.cid-spXlDv9ITA P {
  color: #767676;
}
.cid-u6fzfA7LDR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6fzfA7LDR h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fzfA7LDR p {
  color: #767676;
  text-align: left;
}
.cid-u6fzfA7LDR .card-box {
  padding-top: 2rem;
}
.cid-u6fzfA7LDR .card-wrapper {
  height: 100%;
}
.cid-u6fzfA7LDR P {
  text-align: left;
}
.cid-sBPMEvEdLT {
  background: #ffffff;
}
.cid-sBPMEvEdLT .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sBPMEvEdLT figcaption {
  position: relative;
}
.cid-sBPMEvEdLT figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sBPMEvEdLT .image-block {
    width: 100% !important;
  }
}
.cid-spXhlio2z1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background: #f9ceb2;
}
.cid-spXhlio2z1 .images-container.container-fluid {
  padding: 0;
}
.cid-spXhlio2z1 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-spXhlio2z1 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-spXhlio2z1 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-spXhlio2z1 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-spXhlio2z1 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-spXhlio2z1 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-spXhlio2z1 .img-item {
    width: 100% !important;
  }
  .cid-spXhlio2z1 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-srrDOC9700 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-srrDOC9700 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-srrDOC9700 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-srrDOC9700 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-spXhREXFLY {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spXhREXFLY h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spXhREXFLY p {
  color: #767676;
  text-align: left;
}
.cid-spXhREXFLY .card-box {
  padding-top: 2rem;
}
.cid-spXhREXFLY .card-wrapper {
  height: 100%;
}
.cid-spXlM1Zg3J {
  background: #ffffff;
}
.cid-spXlM1Zg3J .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-spXlM1Zg3J figcaption {
  position: relative;
}
.cid-spXlM1Zg3J figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-spXlM1Zg3J .image-block {
    width: 100% !important;
  }
}
.cid-spXm3hPlMs {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spXm3hPlMs h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spXm3hPlMs p {
  color: #767676;
  text-align: left;
}
.cid-spXm3hPlMs .card-box {
  padding-top: 2rem;
}
.cid-spXm3hPlMs .card-wrapper {
  height: 100%;
}
.cid-spXjWtMVTA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-spXjWtMVTA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-spXjWtMVTA p {
  color: #767676;
  text-align: left;
}
.cid-spXjWtMVTA .card-box {
  padding-top: 2rem;
}
.cid-spXjWtMVTA .card-wrapper {
  height: 100%;
}
.cid-spXkmQFw8w {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #f9ceb2;
}
.cid-spXkmQFw8w .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-spXkmQFw8w .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-spXkmQFw8w .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rS6sqsZbGZ {
  background-image: url("../../../assets/images/50-60-zps-bundestag-nick-jaussi-2015-2000x1335.jpg");
}
.cid-rS6sqsZbGZ P {
  color: #767676;
}
.cid-rS67rhlyXv {
  background: #ffffff;
}
.cid-rS67rhlyXv .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS67rhlyXv figcaption {
  position: relative;
}
.cid-rS67rhlyXv figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS67rhlyXv .image-block {
    width: 100% !important;
  }
}
.cid-rS67sNRMBy {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS67sNRMBy .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rS67sNRMBy h2 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS67sNRMBy .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS67w0Payn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS67w0Payn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS67w0Payn p {
  color: #767676;
  text-align: left;
}
.cid-rS67w0Payn .card-box {
  padding-top: 2rem;
}
.cid-rS67w0Payn .card-wrapper {
  height: 100%;
}
.cid-rS67B0hxvz {
  background-image: url("../../../assets/images/60-60-zps-bundestag-nick-jaussi-2015-2000x1335.jpg");
}
.cid-rS67B0hxvz P {
  color: #767676;
}
.cid-rS67Dzd8XZ {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS67Dzd8XZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS67Dzd8XZ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS67Dzd8XZ .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS67Dzd8XZ .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS67HiPfQ1 {
  background: #ffffff;
}
.cid-rS67HiPfQ1 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS67HiPfQ1 figcaption {
  position: relative;
}
.cid-rS67HiPfQ1 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS67HiPfQ1 .image-block {
    width: 300% !important;
  }
}
.cid-uccA0KLVGp {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-uccA0KLVGp .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-uccA0KLVGp .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccA0KLVGp .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccA0KLVGp .mbr-figure,
  .cid-uccA0KLVGp img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccA0KLVGp .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccA0KLVGp .mbr-author-desc {
  color: #000000;
}
.cid-uccA0KLVGp h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccA0KLVGp .text_block {
  margin-top: 0px;
}
.cid-uccA0KLVGp .h2_block {
  margin-bottom: 20px;
}
.cid-uccA0KLVGp .mbr-figure {
  align-self: flex-start;
}
.cid-uccA0KLVGp .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccA0KLVGp .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccA0KLVGp .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccA0KLVGp a:hover {
  Color: #a76645 !important;
}
.cid-uccA0KLVGp a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccA0KLVGp .btn-black-outline:hover,
.cid-uccA0KLVGp .btn-black-outline:focus,
.cid-uccA0KLVGp .btn-black-outline.focus,
.cid-uccA0KLVGp .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccA0KLVGp .display-5 {
    line-height: 1;
  }
  .cid-uccA0KLVGp .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccA0KLVGp .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccA0KLVGp .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rS67GJ6PxW {
  background: #ffffff;
}
.cid-rS67GJ6PxW .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS67GJ6PxW figcaption {
  position: relative;
}
.cid-rS67GJ6PxW figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS67GJ6PxW .image-block {
    width: 300% !important;
  }
}
.cid-rS67ULPKk5 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS67ULPKk5 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS67ULPKk5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS67ULPKk5 p {
  color: #767676;
  text-align: left;
}
.cid-rS67ULPKk5 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS67ULPKk5 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS67ULPKk5 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS67ULPKk5 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS67ULPKk5 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS67ULPKk5 .notched-box:before,
.cid-rS67ULPKk5 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rS67ULPKk5 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS67ULPKk5 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS67ULPKk5 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS67ULPKk5 .border:before,
.cid-rS67ULPKk5 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rS67ULPKk5 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS67ULPKk5 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS67ULPKk5 .mbr-author-name {
  padding-left: 40px;
}
.cid-rS67ULPKk5 P {
  color: #000000;
}
.cid-rS67ULPKk5 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS67YdwxGZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f9ceb2;
}
.cid-rS67YdwxGZ .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS67YdwxGZ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS67YdwxGZ p {
  color: #767676;
  text-align: left;
}
.cid-rS67YdwxGZ .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS67YdwxGZ .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS67YdwxGZ .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS67YdwxGZ .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS67YdwxGZ .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS67YdwxGZ .notched-box:before,
.cid-rS67YdwxGZ .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rS67YdwxGZ .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS67YdwxGZ .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS67YdwxGZ .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS67YdwxGZ .border:before,
.cid-rS67YdwxGZ .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rS67YdwxGZ .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS67YdwxGZ .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS67YdwxGZ .mbr-author-name {
  padding-left: 40px;
}
.cid-rS67YdwxGZ P {
  color: #000000;
}
.cid-rS67YdwxGZ .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-sszrM9Odct {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-sszrM9Odct h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sszrM9Odct p {
  color: #767676;
  text-align: left;
}
.cid-sszrM9Odct .card-box {
  padding-top: 2rem;
}
.cid-sszrM9Odct .card-wrapper {
  height: 100%;
}
.cid-rS687Rfl0n {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS687Rfl0n .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rS687Rfl0n h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS687Rfl0n .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS68eTJ8ws {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rS68eTJ8ws .images-container.container-fluid {
  padding: 0;
}
.cid-rS68eTJ8ws .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
  width: 100% !important;
}
.cid-rS68eTJ8ws .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS68eTJ8ws .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS68eTJ8ws .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS68eTJ8ws .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS68eTJ8ws .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS68eTJ8ws .img-item {
    width: 100% !important;
  }
  .cid-rS68eTJ8ws .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS6wFOfGdp {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS6wFOfGdp .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS6wFOfGdp h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS6wFOfGdp .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS6wFOfGdp .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS68jozGsH {
  background-image: url("../../../assets/images/dsc-5724-2000x1339.jpg");
}
.cid-rS68jozGsH P {
  color: #767676;
}
.cid-rS68pEBa65 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS68pEBa65 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rS68pEBa65 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS68pEBa65 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS68so1Env {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS68so1Env h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS68so1Env p {
  color: #767676;
  text-align: left;
}
.cid-rS68so1Env .card-box {
  padding-top: 2rem;
}
.cid-rS68so1Env .card-wrapper {
  height: 100%;
}
.cid-rS68vVu6Zm {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS68vVu6Zm .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS68vVu6Zm h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS68vVu6Zm .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS68vVu6Zm .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS68AvQXpW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS68AvQXpW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS68AvQXpW p {
  color: #767676;
  text-align: left;
}
.cid-rS68AvQXpW .card-box {
  padding-top: 2rem;
}
.cid-rS68AvQXpW .card-wrapper {
  height: 100%;
}
.cid-rS68DlYxRj {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS68DlYxRj .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS68DlYxRj h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS68DlYxRj .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS68DlYxRj .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS68LX72PI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS68LX72PI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS68LX72PI p {
  color: #767676;
  text-align: left;
}
.cid-rS68LX72PI .card-box {
  padding-top: 2rem;
}
.cid-rS68LX72PI .card-wrapper {
  height: 100%;
}
.cid-rS68NPN2i7 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS68NPN2i7 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS68NPN2i7 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS68NPN2i7 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS68NPN2i7 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS68MIup0Y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS68MIup0Y h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS68MIup0Y p {
  color: #767676;
  text-align: left;
}
.cid-rS68MIup0Y .card-box {
  padding-top: 2rem;
}
.cid-rS68MIup0Y .card-wrapper {
  height: 100%;
}
.cid-rS68OiVC18 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS68OiVC18 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS68OiVC18 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS68OiVC18 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS68OiVC18 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS68UmTcm8 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS68UmTcm8 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS68UmTcm8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS68UmTcm8 p {
  color: #767676;
  text-align: left;
}
.cid-rS68UmTcm8 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS68UmTcm8 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS68UmTcm8 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS68UmTcm8 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS68UmTcm8 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS68UmTcm8 .notched-box:before,
.cid-rS68UmTcm8 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rS68UmTcm8 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS68UmTcm8 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS68UmTcm8 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS68UmTcm8 .border:before,
.cid-rS68UmTcm8 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rS68UmTcm8 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS68UmTcm8 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS68UmTcm8 .mbr-author-name {
  padding-left: 40px;
}
.cid-rS68UmTcm8 P {
  color: #000000;
}
.cid-rS68UmTcm8 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS68UWh1gp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS68UWh1gp .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS68UWh1gp h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS68UWh1gp p {
  color: #767676;
  text-align: left;
}
.cid-rS68UWh1gp .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS68UWh1gp .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS68UWh1gp .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS68UWh1gp .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS68UWh1gp .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS68UWh1gp .notched-box:before,
.cid-rS68UWh1gp .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rS68UWh1gp .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS68UWh1gp .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS68UWh1gp .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS68UWh1gp .border:before,
.cid-rS68UWh1gp .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rS68UWh1gp .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS68UWh1gp .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS68UWh1gp .mbr-author-name {
  padding-left: 40px;
}
.cid-rS68UWh1gp P {
  color: #000000;
}
.cid-rS68UWh1gp .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS68ZCQFuO {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-rS68ZCQFuO .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS68ZCQFuO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS68ZCQFuO p {
  color: #767676;
  text-align: left;
}
.cid-rS68ZCQFuO .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS68ZCQFuO .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS68ZCQFuO .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS68ZCQFuO .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS68ZCQFuO .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS68ZCQFuO .notched-box:before,
.cid-rS68ZCQFuO .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rS68ZCQFuO .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS68ZCQFuO .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS68ZCQFuO .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS68ZCQFuO .border:before,
.cid-rS68ZCQFuO .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rS68ZCQFuO .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS68ZCQFuO .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS68ZCQFuO .mbr-author-name {
  padding-left: 40px;
}
.cid-rS68ZCQFuO P {
  color: #000000;
}
.cid-rS68ZCQFuO .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS693kLsOn {
  background-image: url("../../../assets/images/02-19-zps-gatow-nick-jaussi-2015-2000x1335.jpg");
}
.cid-rS693kLsOn P {
  color: #767676;
}
.cid-rS699K7Yvw {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS699K7Yvw .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS699K7Yvw h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS699K7Yvw p {
  color: #767676;
  text-align: left;
}
.cid-rS699K7Yvw .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS699K7Yvw .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS699K7Yvw .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS699K7Yvw .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS699K7Yvw .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS699K7Yvw .notched-box:before,
.cid-rS699K7Yvw .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rS699K7Yvw .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS699K7Yvw .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS699K7Yvw .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS699K7Yvw .border:before,
.cid-rS699K7Yvw .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rS699K7Yvw .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS699K7Yvw .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS699K7Yvw .mbr-author-name {
  padding-left: 40px;
}
.cid-rS699K7Yvw P {
  color: #000000;
}
.cid-rS699K7Yvw .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS69aooSs1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS69aooSs1 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS69aooSs1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS69aooSs1 p {
  color: #767676;
  text-align: left;
}
.cid-rS69aooSs1 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS69aooSs1 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS69aooSs1 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS69aooSs1 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS69aooSs1 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS69aooSs1 .notched-box:before,
.cid-rS69aooSs1 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rS69aooSs1 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS69aooSs1 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS69aooSs1 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS69aooSs1 .border:before,
.cid-rS69aooSs1 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rS69aooSs1 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS69aooSs1 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS69aooSs1 .mbr-author-name {
  padding-left: 40px;
}
.cid-rS69aooSs1 P {
  color: #000000;
}
.cid-rS69aooSs1 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS69cwsBOW {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-rS69cwsBOW .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS69cwsBOW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS69cwsBOW p {
  color: #767676;
  text-align: left;
}
.cid-rS69cwsBOW .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS69cwsBOW .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS69cwsBOW .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS69cwsBOW .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS69cwsBOW .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS69cwsBOW .notched-box:before,
.cid-rS69cwsBOW .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rS69cwsBOW .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS69cwsBOW .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS69cwsBOW .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS69cwsBOW .border:before,
.cid-rS69cwsBOW .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rS69cwsBOW .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS69cwsBOW .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS69cwsBOW .mbr-author-name {
  padding-left: 40px;
}
.cid-rS69cwsBOW P {
  color: #000000;
}
.cid-rS69cwsBOW .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS69heYfu0 {
  background-image: url("../../../assets/images/12-19-zps-gatow-nick-jaussi-2015-2000x1335.jpg");
}
.cid-rS69heYfu0 P {
  color: #767676;
}
.cid-rS69jiS8UI {
  background: #ffffff;
}
.cid-rS69jiS8UI .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS69jiS8UI figcaption {
  position: relative;
}
.cid-rS69jiS8UI figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS69jiS8UI .image-block {
    width: 100% !important;
  }
}
.cid-rS69m3hl1r {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS69m3hl1r .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS69m3hl1r h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS69m3hl1r .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS69m3hl1r .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS69oyBwP5 {
  background: #ffffff;
}
.cid-rS69oyBwP5 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS69oyBwP5 figcaption {
  position: relative;
}
.cid-rS69oyBwP5 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS69oyBwP5 .image-block {
    width: 100% !important;
  }
}
.cid-u7yVpZKjGn {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVpZKjGn .content {
    text-align: center;
  }
  .cid-u7yVpZKjGn .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVpZKjGn .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVpZKjGn .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVpZKjGn .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVpZKjGn .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVpZKjGn .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVpZKjGn .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVpZKjGn .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVpZKjGn .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVpZKjGn .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVpZKjGn .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVpZKjGn .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVpZKjGn .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVpZKjGn H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVpZKjGn P {
  color: #ffffff;
}
.cid-u7yVpZKjGn .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVpZKjGn .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVpZKjGn .logo_footer {
  position: relative;
}
.cid-u7yVpZKjGn .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVpZKjGn .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVpZKjGn .col,
  .cid-u7yVpZKjGn .col-1,
  .cid-u7yVpZKjGn .col-10,
  .cid-u7yVpZKjGn .col-11,
  .cid-u7yVpZKjGn .col-12,
  .cid-u7yVpZKjGn .col-2,
  .cid-u7yVpZKjGn .col-3,
  .cid-u7yVpZKjGn .col-4,
  .cid-u7yVpZKjGn .col-5,
  .cid-u7yVpZKjGn .col-6,
  .cid-u7yVpZKjGn .col-7,
  .cid-u7yVpZKjGn .col-8,
  .cid-u7yVpZKjGn .col-9,
  .cid-u7yVpZKjGn .col-auto,
  .cid-u7yVpZKjGn .col-lg,
  .cid-u7yVpZKjGn .col-lg-1,
  .cid-u7yVpZKjGn .col-lg-10,
  .cid-u7yVpZKjGn .col-lg-11,
  .cid-u7yVpZKjGn .col-lg-12,
  .cid-u7yVpZKjGn .col-lg-2,
  .cid-u7yVpZKjGn .col-lg-3,
  .cid-u7yVpZKjGn .col-lg-4,
  .cid-u7yVpZKjGn .col-lg-5,
  .cid-u7yVpZKjGn .col-lg-6,
  .cid-u7yVpZKjGn .col-lg-7,
  .cid-u7yVpZKjGn .col-lg-8,
  .cid-u7yVpZKjGn .col-lg-9,
  .cid-u7yVpZKjGn .col-lg-auto,
  .cid-u7yVpZKjGn .col-md,
  .cid-u7yVpZKjGn .col-md-1,
  .cid-u7yVpZKjGn .col-md-10,
  .cid-u7yVpZKjGn .col-md-11,
  .cid-u7yVpZKjGn .col-md-12,
  .cid-u7yVpZKjGn .col-md-2,
  .cid-u7yVpZKjGn .col-md-3,
  .cid-u7yVpZKjGn .col-md-4,
  .cid-u7yVpZKjGn .col-md-5,
  .cid-u7yVpZKjGn .col-md-6,
  .cid-u7yVpZKjGn .col-md-7,
  .cid-u7yVpZKjGn .col-md-8,
  .cid-u7yVpZKjGn .col-md-9,
  .cid-u7yVpZKjGn .col-md-auto,
  .cid-u7yVpZKjGn .col-sm,
  .cid-u7yVpZKjGn .col-sm-1,
  .cid-u7yVpZKjGn .col-sm-10,
  .cid-u7yVpZKjGn .col-sm-11,
  .cid-u7yVpZKjGn .col-sm-12,
  .cid-u7yVpZKjGn .col-sm-2,
  .cid-u7yVpZKjGn .col-sm-3,
  .cid-u7yVpZKjGn .col-sm-4,
  .cid-u7yVpZKjGn .col-sm-5,
  .cid-u7yVpZKjGn .col-sm-6,
  .cid-u7yVpZKjGn .col-sm-7,
  .cid-u7yVpZKjGn .col-sm-8,
  .cid-u7yVpZKjGn .col-sm-9,
  .cid-u7yVpZKjGn .col-sm-auto,
  .cid-u7yVpZKjGn .col-xl,
  .cid-u7yVpZKjGn .col-xl-1,
  .cid-u7yVpZKjGn .col-xl-10,
  .cid-u7yVpZKjGn .col-xl-11,
  .cid-u7yVpZKjGn .col-xl-12,
  .cid-u7yVpZKjGn .col-xl-2,
  .cid-u7yVpZKjGn .col-xl-3,
  .cid-u7yVpZKjGn .col-xl-4,
  .cid-u7yVpZKjGn .col-xl-5,
  .cid-u7yVpZKjGn .col-xl-6,
  .cid-u7yVpZKjGn .col-xl-7,
  .cid-u7yVpZKjGn .col-xl-8,
  .cid-u7yVpZKjGn .col-xl-9,
  .cid-u7yVpZKjGn .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVpZKjGn .content {
    text-align: left;
  }
  .cid-u7yVpZKjGn .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVpZKjGn .logo_footer_box {
    position: relative;
  }
  .cid-u7yVpZKjGn .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVpZKjGn .logo_footer {
    position: relative;
  }
  .cid-u7yVpZKjGn .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVpZKjGn .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRVQc5DK75 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRVQc5DK75 {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rRVQt4fSKv {
  background-image: url("../../../assets/images/kreuze-16-2000x1335.jpg");
}
.cid-rRVQt4fSKv P {
  color: #767676;
}
.cid-rRVQUIyqqy {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-rRVQUIyqqy .images-container.container-fluid {
  padding: 0;
}
.cid-rRVQUIyqqy .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRVQUIyqqy .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRVQUIyqqy .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRVQUIyqqy .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRVQUIyqqy .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRVQUIyqqy .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRVQUIyqqy .img-item {
    width: 100% !important;
  }
  .cid-rRVQUIyqqy .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRVQVZT3EZ {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRVQVZT3EZ .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRVQVZT3EZ h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRVQVZT3EZ .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRVQVZT3EZ .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRVRtPx4RX {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRVRtPx4RX .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRVRtPx4RX .video-block {
    width: 100% !important;
  }
}
.cid-rRVRtPx4RX .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRVRCvEJo1 {
  background-image: url("../../../assets/images/zps-bulgarien-weit-16-2000x1333.jpg");
}
.cid-rRVRCvEJo1 P {
  color: #767676;
}
.cid-rRVRDqkGje {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRVRDqkGje .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRVRDqkGje h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRVRDqkGje .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRVRDqkGje .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRVShxC4up {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRVShxC4up h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVShxC4up p {
  color: #767676;
  text-align: left;
}
.cid-rRVShxC4up .card-box {
  padding-top: 2rem;
}
.cid-rRVShxC4up .card-wrapper {
  height: 100%;
}
.cid-rRVRGbLFpF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRVRGbLFpF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVRGbLFpF p {
  color: #767676;
  text-align: left;
}
.cid-rRVRGbLFpF .card-box {
  padding-top: 2rem;
}
.cid-rRVRGbLFpF .card-wrapper {
  height: 100%;
}
.cid-rRVRHMkU8l {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRVRHMkU8l h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVRHMkU8l p {
  color: #767676;
  text-align: left;
}
.cid-rRVRHMkU8l .card-box {
  padding-top: 2rem;
}
.cid-rRVRHMkU8l .card-wrapper {
  height: 100%;
}
.cid-rS1CoiGxhy {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rS1CoiGxhy .images-container.container-fluid {
  padding: 0;
}
.cid-rS1CoiGxhy .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS1CoiGxhy .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS1CoiGxhy .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS1CoiGxhy .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS1CoiGxhy .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS1CoiGxhy .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS1CoiGxhy .img-item {
    width: 100% !important;
  }
  .cid-rS1CoiGxhy .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRVSqB2Cxx {
  background-image: url("../../../assets/images/141101-melilla-politicalbeauty-01-v2.0-1920x1080.jpg");
}
.cid-rRVSqB2Cxx P {
  color: #767676;
}
.cid-rRVSuYslEV {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-4-1500x1695.jpg");
}
.cid-rRVSuYslEV H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRVSuYslEV .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRVSuYslEV .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRVSuYslEV .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRVSzCrQZj {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRVSzCrQZj .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRVSzCrQZj h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVSzCrQZj p {
  color: #767676;
  text-align: left;
}
.cid-rRVSzCrQZj .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRVSzCrQZj .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRVSzCrQZj .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRVSzCrQZj .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRVSzCrQZj .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRVSzCrQZj .notched-box:before,
.cid-rRVSzCrQZj .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRVSzCrQZj .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRVSzCrQZj .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRVSzCrQZj .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRVSzCrQZj .border:before,
.cid-rRVSzCrQZj .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRVSzCrQZj .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRVSzCrQZj .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRVSzCrQZj .mbr-author-name {
  padding-left: 40px;
}
.cid-rRVSzCrQZj P {
  color: #000000;
  line-height: 1.3;
}
.cid-rRVSzCrQZj .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRVSAeda0d {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9ceb2;
}
.cid-rRVSAeda0d .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRVSAeda0d h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVSAeda0d p {
  color: #767676;
  text-align: left;
}
.cid-rRVSAeda0d .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRVSAeda0d .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRVSAeda0d .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRVSAeda0d .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRVSAeda0d .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRVSAeda0d .notched-box:before,
.cid-rRVSAeda0d .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRVSAeda0d .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRVSAeda0d .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRVSAeda0d .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRVSAeda0d .border:before,
.cid-rRVSAeda0d .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRVSAeda0d .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRVSAeda0d .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRVSAeda0d .mbr-author-name {
  padding-left: 40px;
}
.cid-rRVSAeda0d P {
  color: #000000;
  line-height: 1.3;
}
.cid-rRVSAeda0d .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRVSB0UNPd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRVSB0UNPd .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRVSB0UNPd h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVSB0UNPd p {
  color: #767676;
  text-align: left;
}
.cid-rRVSB0UNPd .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRVSB0UNPd .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRVSB0UNPd .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRVSB0UNPd .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRVSB0UNPd .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRVSB0UNPd .notched-box:before,
.cid-rRVSB0UNPd .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRVSB0UNPd .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRVSB0UNPd .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRVSB0UNPd .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRVSB0UNPd .border:before,
.cid-rRVSB0UNPd .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRVSB0UNPd .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRVSB0UNPd .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRVSB0UNPd .mbr-author-name {
  padding-left: 40px;
}
.cid-rRVSB0UNPd P {
  color: #000000;
  line-height: 1.3;
}
.cid-rRVSB0UNPd .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRVSBi1nTM {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-rRVSBi1nTM .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRVSBi1nTM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVSBi1nTM p {
  color: #767676;
  text-align: left;
}
.cid-rRVSBi1nTM .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRVSBi1nTM .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRVSBi1nTM .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRVSBi1nTM .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRVSBi1nTM .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRVSBi1nTM .notched-box:before,
.cid-rRVSBi1nTM .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRVSBi1nTM .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRVSBi1nTM .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRVSBi1nTM .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRVSBi1nTM .border:before,
.cid-rRVSBi1nTM .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRVSBi1nTM .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRVSBi1nTM .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRVSBi1nTM .mbr-author-name {
  padding-left: 40px;
}
.cid-rRVSBi1nTM P {
  color: #000000;
  line-height: 1.3;
}
.cid-rRVSBi1nTM .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-tOeofvmdp0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-14-1500x622.jpg");
}
.cid-tOeofvmdp0 P {
  color: #767676;
}
.cid-tOeofvmdp0 .display-2 {
  font-size: 3rem;
  font-weight: 300;
}
.cid-tOeofvmdp0 h2 {
  font-size: 6vw !important;
  font-weight: bold !important;
  text-align: center;
  line-height: 0.9em;
  color: white;
}
.cid-tOeofvmdp0 .animation_center {
  padding: 5vh 0px;
}
.cid-tOeofvmdp0 .banner {
  width: 100%;
  height: auto;
}
.cid-tOeofvmdp0 .black {
  background-color: #fff !important;
}
.cid-tOeofvmdp0 .AniContainer {
  padding: 5em 0em;
}
.cid-tOeofvmdp0 span {
  visibility: hidden;
}
.cid-tOeofvmdp0 span.blick {
  visibility: visible;
}
@media (max-width: 768px) {
  .cid-tOeofvmdp0 .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-tOeofvmdp0 .mbr-text,
.cid-tOeofvmdp0 .mbr-section-btn {
  color: #ffffff;
}
.cid-se4fNk0nuY {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-4-1500x352.jpg");
}
.cid-se4fNk0nuY H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-se4fNk0nuY .mbr-section-subtitle {
  color: #000000;
}
.cid-se4fNk0nuY span {
  visibility: hidden;
}
.cid-se4fNk0nuY .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4fNk0nuY span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rRVSV479Za {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-rRVSV479Za .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRVSV479Za h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVSV479Za p {
  color: #767676;
  text-align: left;
}
.cid-rRVSV479Za .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRVSV479Za .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRVSV479Za .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRVSV479Za .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRVSV479Za .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRVSV479Za .notched-box:before,
.cid-rRVSV479Za .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRVSV479Za .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRVSV479Za .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRVSV479Za .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRVSV479Za .border:before,
.cid-rRVSV479Za .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRVSV479Za .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRVSV479Za .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRVSV479Za .mbr-author-name {
  padding-left: 40px;
}
.cid-rRVSV479Za P {
  color: #ffffff;
}
.cid-rRVSV479Za .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRVSV479Za a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-rRVSV479Za a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRVT1S8RPN {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRVT1S8RPN H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRVT1S8RPN .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRVT1S8RPN .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRVT1S8RPN .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRVTazkhIr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRVTazkhIr .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRVTazkhIr h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRVTazkhIr .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRVTazkhIr .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRVTcgBSqc {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRVTcgBSqc .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRVTcgBSqc .video-block {
    width: 100% !important;
  }
}
.cid-rRVTcgBSqc .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRVTni20X8 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRVTni20X8 .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
  text-align: center;
}
.cid-rRVTni20X8 .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rRVTni20X8 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRVTni20X8 .mbr-figure,
  .cid-rRVTni20X8 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRVTni20X8 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRVTni20X8 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRVTni20X8 .h2_block {
  margin-bottom: 20px;
}
.cid-rRVTprCofN {
  background-image: url("../../../assets/images/abbau-c-paul-wagner-4-2000x1335.jpg");
}
.cid-rRVTprCofN P {
  color: #767676;
}
.cid-rRVTCaTypj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRVTCaTypj .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRVTCaTypj h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRVTCaTypj .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRVTCaTypj .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-rRVTCaTypj a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  color: #fff;
  padding-bottom: 3px;
}
.cid-rRVTCaTypj a:hover {
  color: #F9CEB2;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
}
.cid-rRVTFZVulb {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-rRVTFZVulb .images-container.container-fluid {
  padding: 0;
}
.cid-rRVTFZVulb .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRVTFZVulb .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRVTFZVulb .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRVTFZVulb .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRVTFZVulb .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRVTFZVulb .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRVTFZVulb .img-item {
    width: 100% !important;
  }
  .cid-rRVTFZVulb .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRVTRdJ970 {
  background: #000000;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-rRVTRdJ970 .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRVTRdJ970 .video-block {
    width: 100% !important;
  }
}
.cid-rRVTRdJ970 .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS3SUWAao9 {
  background: #000000;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-rS3SUWAao9 .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS3SUWAao9 .video-block {
    width: 100% !important;
  }
}
.cid-rS3SUWAao9 .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRVWqXbGlw {
  background: #000000;
  padding-top: 30px;
  padding-bottom: 30px;
}
.cid-rRVWqXbGlw .image-block {
  margin: auto;
}
.cid-rRVWqXbGlw figcaption {
  position: relative;
}
.cid-rRVWqXbGlw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRVWqXbGlw .image-block {
    width: 100% !important;
  }
}
.cid-rS3T3IjRgM {
  background: #000000;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-rS3T3IjRgM .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS3T3IjRgM .video-block {
    width: 100% !important;
  }
}
.cid-rS3T3IjRgM .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS3T4q2evk {
  background: #000000;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-rS3T4q2evk .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS3T4q2evk .video-block {
    width: 100% !important;
  }
}
.cid-rS3T4q2evk .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRVU1uD9Rw {
  background-image: url("../../../assets/images/abfahrt-eng-7-2000x1335.jpg");
}
.cid-rRVU1uD9Rw P {
  color: #767676;
}
.cid-rRVTtfYxje {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRVTtfYxje .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRVTtfYxje h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRVTtfYxje .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRVTtfYxje .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRVU9x4Mkq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRVU9x4Mkq h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVU9x4Mkq p {
  color: #767676;
  text-align: left;
}
.cid-rRVU9x4Mkq .card-box {
  padding-top: 2rem;
}
.cid-rRVU9x4Mkq .card-wrapper {
  height: 100%;
}
.cid-rRVUd21FL9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRVUd21FL9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVUd21FL9 p {
  color: #767676;
  text-align: left;
}
.cid-rRVUd21FL9 .card-box {
  padding-top: 2rem;
}
.cid-rRVUd21FL9 .card-wrapper {
  height: 100%;
}
.cid-rRVUar0RdI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRVUar0RdI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVUar0RdI p {
  color: #767676;
  text-align: left;
}
.cid-rRVUar0RdI .card-box {
  padding-top: 2rem;
}
.cid-rRVUar0RdI .card-wrapper {
  height: 100%;
}
.cid-rRVUp6fePY {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRVUp6fePY .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
  text-align: center;
}
.cid-rRVUp6fePY .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rRVUp6fePY .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRVUp6fePY .mbr-figure,
  .cid-rRVUp6fePY img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRVUp6fePY .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRVUp6fePY h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRVUp6fePY .h2_block {
  margin-bottom: 20px;
}
.cid-rRVUsJQaH9 {
  background: #ffffff;
}
.cid-rRVUsJQaH9 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRVUsJQaH9 figcaption {
  position: relative;
}
.cid-rRVUsJQaH9 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRVUsJQaH9 .image-block {
    width: 300% !important;
  }
}
.cid-uccAzlEnBe {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f9ceb2;
}
.cid-uccAzlEnBe .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-uccAzlEnBe .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccAzlEnBe .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccAzlEnBe .mbr-figure,
  .cid-uccAzlEnBe img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccAzlEnBe .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccAzlEnBe .mbr-author-desc {
  color: #000000;
}
.cid-uccAzlEnBe h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccAzlEnBe .text_block {
  margin-top: 0px;
}
.cid-uccAzlEnBe .h2_block {
  margin-bottom: 20px;
}
.cid-uccAzlEnBe .mbr-figure {
  align-self: flex-start;
}
.cid-uccAzlEnBe .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccAzlEnBe .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccAzlEnBe .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccAzlEnBe a:hover {
  Color: #a76645 !important;
}
.cid-uccAzlEnBe a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccAzlEnBe .btn-black-outline:hover,
.cid-uccAzlEnBe .btn-black-outline:focus,
.cid-uccAzlEnBe .btn-black-outline.focus,
.cid-uccAzlEnBe .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccAzlEnBe .display-5 {
    line-height: 1;
  }
  .cid-uccAzlEnBe .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccAzlEnBe .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccAzlEnBe .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRVUtoysik {
  background: #ffffff;
}
.cid-rRVUtoysik .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRVUtoysik figcaption {
  position: relative;
}
.cid-rRVUtoysik figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRVUtoysik .image-block {
    width: 300% !important;
  }
}
.cid-rRVUyVvhOG {
  background-image: url("../../../assets/images/zps-bulgarien-weit-20-2000x1333.jpg");
}
.cid-rRVUyVvhOG P {
  color: #767676;
}
.cid-rRVUCYmPrz {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRVUCYmPrz .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRVUCYmPrz h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRVUCYmPrz .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRVUGBDFRG {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rRVUGBDFRG .images-container.container-fluid {
  padding: 0;
}
.cid-rRVUGBDFRG .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRVUGBDFRG .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRVUGBDFRG .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRVUGBDFRG .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRVUGBDFRG .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRVUGBDFRG .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRVUGBDFRG .img-item {
    width: 100% !important;
  }
  .cid-rRVUGBDFRG .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRVUJiYXrA {
  background: #ffffff;
}
.cid-rRVUJiYXrA .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRVUJiYXrA figcaption {
  position: relative;
}
.cid-rRVUJiYXrA figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRVUJiYXrA .image-block {
    width: 100% !important;
  }
}
.cid-rRVULnsk02 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRVULnsk02 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRVULnsk02 .mbr-section-subtitle {
  color: #1d1d1b;
}
.cid-rRVUUQqe06 {
  padding-top: 60px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRVUUQqe06 .images-container.container-fluid {
  padding: 0;
}
.cid-rRVUUQqe06 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRVUUQqe06 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRVUUQqe06 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRVUUQqe06 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRVUUQqe06 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRVUUQqe06 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRVUUQqe06 .img-item {
    width: 100% !important;
  }
  .cid-rRVUUQqe06 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRVUY4viKK {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRVUY4viKK .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRVUY4viKK h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRVUY4viKK .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRVUY4viKK .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-spWTLpJcbE {
  background-image: url("../../../assets/images/asche-19-2000x1330.png");
}
.cid-spWTLpJcbE h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-spWTLpJcbE .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS3ZxBmugT {
  padding-top: 60px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rS3ZxBmugT .images-container.container-fluid {
  padding: 0;
}
.cid-rS3ZxBmugT .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS3ZxBmugT .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS3ZxBmugT .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS3ZxBmugT .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS3ZxBmugT .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS3ZxBmugT .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS3ZxBmugT .img-item {
    width: 100% !important;
  }
  .cid-rS3ZxBmugT .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS3ZGD48AK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS3ZGD48AK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS3ZGD48AK p {
  color: #767676;
  text-align: left;
}
.cid-rS3ZGD48AK .card-box {
  padding-top: 2rem;
}
.cid-rS3ZGD48AK .card-wrapper {
  height: 100%;
}
.cid-u6fvd7yXbH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6fvd7yXbH h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fvd7yXbH p {
  color: #767676;
  text-align: left;
}
.cid-u6fvd7yXbH .card-box {
  padding-top: 2rem;
}
.cid-u6fvd7yXbH .card-wrapper {
  height: 100%;
}
.cid-u6fvd7yXbH P {
  text-align: left;
}
.cid-rS428FMZDJ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9ceb2;
}
.cid-rS428FMZDJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS428FMZDJ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS428FMZDJ .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS428FMZDJ .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u6fveYfKr6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6fveYfKr6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fveYfKr6 p {
  color: #767676;
  text-align: left;
}
.cid-u6fveYfKr6 .card-box {
  padding-top: 2rem;
}
.cid-u6fveYfKr6 .card-wrapper {
  height: 100%;
}
.cid-u6fveYfKr6 P {
  text-align: left;
}
.cid-rS43rMmbWZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS43rMmbWZ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS43rMmbWZ p {
  color: #767676;
  text-align: left;
}
.cid-rS43rMmbWZ .card-box {
  padding-top: 2rem;
}
.cid-rS43rMmbWZ .card-wrapper {
  height: 100%;
}
.cid-rRVV9SoiJl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rRVV9SoiJl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVV9SoiJl p {
  color: #767676;
  text-align: left;
}
.cid-rRVV9SoiJl .card-box {
  padding-top: 2rem;
}
.cid-rRVV9SoiJl .card-wrapper {
  height: 100%;
}
.cid-rRVVitIzl8 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRVVitIzl8 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRVVitIzl8 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRVVitIzl8 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRVVitIzl8 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rS44xyJNoc {
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 0px;
}
.cid-rS44xyJNoc .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS44xyJNoc .video-block {
    width: 100% !important;
  }
}
.cid-rS44xyJNoc .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRVVo7s5In {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRVVo7s5In .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRVVo7s5In h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRVVo7s5In .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRVVo7s5In .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS45zP5ALE {
  background: #000000;
  padding-top: 60px;
  padding-bottom: 15px;
}
.cid-rS45zP5ALE .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS45zP5ALE .video-block {
    width: 100% !important;
  }
}
.cid-rS45zP5ALE .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS45QayC3n {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-rS45QayC3n .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS45QayC3n .video-block {
    width: 100% !important;
  }
}
.cid-rS45QayC3n .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS463XqRXy {
  background: #000000;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-rS463XqRXy .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS463XqRXy .video-block {
    width: 100% !important;
  }
}
.cid-rS463XqRXy .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS464W1DdH {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-rS464W1DdH .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS464W1DdH .video-block {
    width: 100% !important;
  }
}
.cid-rS464W1DdH .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRVVZKCnPB {
  background-image: url("../../../assets/images/zps-bulgarien-weit-22-2000x1333.jpg");
}
.cid-rRVVZKCnPB P {
  color: #767676;
}
.cid-rRVW1KQzyK {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRVW1KQzyK .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRVW1KQzyK h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRVW1KQzyK .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRVW1KQzyK .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-rRVWhPlxue {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRVWhPlxue h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVWhPlxue p {
  color: #767676;
  text-align: left;
}
.cid-rRVWhPlxue .card-box {
  padding-top: 2rem;
}
.cid-rRVWhPlxue .card-wrapper {
  height: 100%;
}
.cid-rRVWkd1XTc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRVWkd1XTc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRVWkd1XTc p {
  color: #767676;
  text-align: left;
}
.cid-rRVWkd1XTc .card-box {
  padding-top: 2rem;
}
.cid-rRVWkd1XTc .card-wrapper {
  height: 100%;
}
.cid-rRVWn1Y24J {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-rRVWn1Y24J .images-container.container-fluid {
  padding: 0;
}
.cid-rRVWn1Y24J .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRVWn1Y24J .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRVWn1Y24J .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRVWn1Y24J .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRVWn1Y24J .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRVWn1Y24J .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRVWn1Y24J .img-item {
    width: 100% !important;
  }
  .cid-rRVWn1Y24J .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-uccApeY2DM {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #f9ceb2;
}
.cid-uccApeY2DM h1 {
  font-weight: 700 !important;
  font-size: 10rem;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
}
.cid-uccApeY2DM .space_down_50 {
  margin-bottom: 50px;
}
.cid-uccApeY2DM .mbr-text-u P {
  text-align: center;
  text-decoration: underline;
  font-weight: 600;
}
.cid-uccApeY2DM .mbr-tex {
  text-align: left;
}
.cid-uccApeY2DM .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uccApeY2DM .display-btn {
  font-family: chivo;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-uccApeY2DM .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-uccApeY2DM a:hover {
  Color: #a76645;
}
.cid-uccApeY2DM a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccApeY2DM .btn-black-outline:hover,
.cid-uccApeY2DM .btn-black-outline:focus,
.cid-uccApeY2DM .btn-black-outline.focus,
.cid-uccApeY2DM .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-uccApeY2DM .display-5 {
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
  margin-bottom: 0px;
  margin-left: 1rem;
}
.cid-uccApeY2DM .container {
  border-color: black;
  border-width: 5px;
  border-style: solid;
}
.cid-uccApeY2DM .mbr-white {
  margin-top: 5rem;
}
.cid-uccApeY2DM .mbr-figure {
  padding-top: 1.5rem;
  padding-left: 0.5rem;
  width: 65%;
}
.cid-uccApeY2DM .testimonial-text {
  color: #f9ceb2;
}
@media (max-width: 768px) {
  .cid-uccApeY2DM .display-btn {
    line-height: 1;
  }
  .cid-uccApeY2DM .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccApeY2DM .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7yVsYeIHL {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVsYeIHL .content {
    text-align: center;
  }
  .cid-u7yVsYeIHL .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVsYeIHL .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVsYeIHL .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVsYeIHL .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVsYeIHL .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVsYeIHL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVsYeIHL .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVsYeIHL .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVsYeIHL .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVsYeIHL .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVsYeIHL .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVsYeIHL .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVsYeIHL .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVsYeIHL H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVsYeIHL P {
  color: #ffffff;
}
.cid-u7yVsYeIHL .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVsYeIHL .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVsYeIHL .logo_footer {
  position: relative;
}
.cid-u7yVsYeIHL .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVsYeIHL .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVsYeIHL .col,
  .cid-u7yVsYeIHL .col-1,
  .cid-u7yVsYeIHL .col-10,
  .cid-u7yVsYeIHL .col-11,
  .cid-u7yVsYeIHL .col-12,
  .cid-u7yVsYeIHL .col-2,
  .cid-u7yVsYeIHL .col-3,
  .cid-u7yVsYeIHL .col-4,
  .cid-u7yVsYeIHL .col-5,
  .cid-u7yVsYeIHL .col-6,
  .cid-u7yVsYeIHL .col-7,
  .cid-u7yVsYeIHL .col-8,
  .cid-u7yVsYeIHL .col-9,
  .cid-u7yVsYeIHL .col-auto,
  .cid-u7yVsYeIHL .col-lg,
  .cid-u7yVsYeIHL .col-lg-1,
  .cid-u7yVsYeIHL .col-lg-10,
  .cid-u7yVsYeIHL .col-lg-11,
  .cid-u7yVsYeIHL .col-lg-12,
  .cid-u7yVsYeIHL .col-lg-2,
  .cid-u7yVsYeIHL .col-lg-3,
  .cid-u7yVsYeIHL .col-lg-4,
  .cid-u7yVsYeIHL .col-lg-5,
  .cid-u7yVsYeIHL .col-lg-6,
  .cid-u7yVsYeIHL .col-lg-7,
  .cid-u7yVsYeIHL .col-lg-8,
  .cid-u7yVsYeIHL .col-lg-9,
  .cid-u7yVsYeIHL .col-lg-auto,
  .cid-u7yVsYeIHL .col-md,
  .cid-u7yVsYeIHL .col-md-1,
  .cid-u7yVsYeIHL .col-md-10,
  .cid-u7yVsYeIHL .col-md-11,
  .cid-u7yVsYeIHL .col-md-12,
  .cid-u7yVsYeIHL .col-md-2,
  .cid-u7yVsYeIHL .col-md-3,
  .cid-u7yVsYeIHL .col-md-4,
  .cid-u7yVsYeIHL .col-md-5,
  .cid-u7yVsYeIHL .col-md-6,
  .cid-u7yVsYeIHL .col-md-7,
  .cid-u7yVsYeIHL .col-md-8,
  .cid-u7yVsYeIHL .col-md-9,
  .cid-u7yVsYeIHL .col-md-auto,
  .cid-u7yVsYeIHL .col-sm,
  .cid-u7yVsYeIHL .col-sm-1,
  .cid-u7yVsYeIHL .col-sm-10,
  .cid-u7yVsYeIHL .col-sm-11,
  .cid-u7yVsYeIHL .col-sm-12,
  .cid-u7yVsYeIHL .col-sm-2,
  .cid-u7yVsYeIHL .col-sm-3,
  .cid-u7yVsYeIHL .col-sm-4,
  .cid-u7yVsYeIHL .col-sm-5,
  .cid-u7yVsYeIHL .col-sm-6,
  .cid-u7yVsYeIHL .col-sm-7,
  .cid-u7yVsYeIHL .col-sm-8,
  .cid-u7yVsYeIHL .col-sm-9,
  .cid-u7yVsYeIHL .col-sm-auto,
  .cid-u7yVsYeIHL .col-xl,
  .cid-u7yVsYeIHL .col-xl-1,
  .cid-u7yVsYeIHL .col-xl-10,
  .cid-u7yVsYeIHL .col-xl-11,
  .cid-u7yVsYeIHL .col-xl-12,
  .cid-u7yVsYeIHL .col-xl-2,
  .cid-u7yVsYeIHL .col-xl-3,
  .cid-u7yVsYeIHL .col-xl-4,
  .cid-u7yVsYeIHL .col-xl-5,
  .cid-u7yVsYeIHL .col-xl-6,
  .cid-u7yVsYeIHL .col-xl-7,
  .cid-u7yVsYeIHL .col-xl-8,
  .cid-u7yVsYeIHL .col-xl-9,
  .cid-u7yVsYeIHL .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVsYeIHL .content {
    text-align: left;
  }
  .cid-u7yVsYeIHL .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVsYeIHL .logo_footer_box {
    position: relative;
  }
  .cid-u7yVsYeIHL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVsYeIHL .logo_footer {
    position: relative;
  }
  .cid-u7yVsYeIHL .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVsYeIHL .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rS5wXLJecq {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rS5wXLJecq {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rS5x4Uxjkl {
  background-image: url("../../../assets/images/img-7714-1417x945.jpg");
}
.cid-rS5x4Uxjkl P {
  color: #767676;
}
.cid-rS5x4Uxjkl h1 {
  visibility: hidden;
}
.cid-rS5xynVEHb {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rS5xynVEHb .images-container.container-fluid {
  padding: 0;
}
.cid-rS5xynVEHb .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS5xynVEHb .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS5xynVEHb .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS5xynVEHb .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS5xynVEHb .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS5xynVEHb .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS5xynVEHb .img-item {
    width: 100% !important;
  }
  .cid-rS5xynVEHb .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS5xK8PxZZ {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS5xK8PxZZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS5xK8PxZZ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5xK8PxZZ .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS5xK8PxZZ .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS5xSIKFDU {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rS5xSIKFDU .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS5xSIKFDU .video-block {
    width: 100% !important;
  }
}
.cid-rS5xSIKFDU .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS5y6WrZVu {
  background: #ffffff;
}
.cid-rS5y6WrZVu .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS5y6WrZVu figcaption {
  position: relative;
}
.cid-rS5y6WrZVu figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS5y6WrZVu .image-block {
    width: 300% !important;
  }
}
.cid-rS5zVUaS8h {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS5zVUaS8h .testimonial-text {
  font-style: italic;
  color: #1d1d1b;
}
.cid-rS5zVUaS8h .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rS5zVUaS8h .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rS5zVUaS8h .mbr-figure,
  .cid-rS5zVUaS8h img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rS5zVUaS8h .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rS5zVUaS8h h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5zVUaS8h .h2_block {
  margin-bottom: 20px;
}
.cid-rS5BNORQJr {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS5BNORQJr .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rS5BNORQJr h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5BNORQJr .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS5zUXD7bz {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rS5zUXD7bz .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rS5zUXD7bz .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rS5zUXD7bz .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rS5zUXD7bz .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 0.1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rS5zUXD7bz .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rS5zUXD7bz .mbr-figure,
  .cid-rS5zUXD7bz img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rS5zUXD7bz h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5zUXD7bz .text_block {
  margin-top: 0px;
}
.cid-rS5zUXD7bz .h2_block {
  margin-bottom: 20px;
}
.cid-rS5zUXD7bz .mbr-figure {
  align-self: flex-start;
}
.cid-rS5zUXD7bz .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rS5zUXD7bz .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rS5zUXD7bz a:hover {
  Color: #a76645 !important;
}
.cid-rS5zUXD7bz a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS5zUXD7bz .btn-black-outline:hover,
.cid-rS5zUXD7bz .btn-black-outline:focus,
.cid-rS5zUXD7bz .btn-black-outline.focus,
.cid-rS5zUXD7bz .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rS5zUXD7bz .display-5 {
    line-height: 1;
  }
  .cid-rS5zUXD7bz .btn {
    font-size: 1.5rem !important;
  }
  .cid-rS5zUXD7bz .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rS5zUXD7bz .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rS5zUXD7bz .content {
  padding-left: 3px;
}
.cid-rS5CeTxynz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS5CeTxynz .testimonial-text {
  font-style: italic;
  color: #1d1d1b;
}
.cid-rS5CeTxynz .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rS5CeTxynz .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rS5CeTxynz .mbr-figure,
  .cid-rS5CeTxynz img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rS5CeTxynz .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rS5CeTxynz h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5CeTxynz .h2_block {
  margin-bottom: 20px;
}
.cid-rS5CTP6JYI {
  background: #f9ceb2;
  padding-top: 60px;
  padding-bottom: 75px;
}
.cid-rS5CTP6JYI .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS5CTP6JYI .video-block {
    width: 100% !important;
  }
}
.cid-rS5CTP6JYI .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS5CUkJoi3 {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 30px;
}
.cid-rS5CUkJoi3 .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS5CUkJoi3 .video-block {
    width: 100% !important;
  }
}
.cid-rS5CUkJoi3 .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS5DzMxfbA {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-rS5DzMxfbA .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rS5DzMxfbA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5DzMxfbA p {
  color: #767676;
  text-align: left;
}
.cid-rS5DzMxfbA .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rS5DzMxfbA .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rS5DzMxfbA .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rS5DzMxfbA .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rS5DzMxfbA .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rS5DzMxfbA .notched-box:before,
.cid-rS5DzMxfbA .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rS5DzMxfbA .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rS5DzMxfbA .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rS5DzMxfbA .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rS5DzMxfbA .border:before,
.cid-rS5DzMxfbA .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rS5DzMxfbA .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rS5DzMxfbA .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rS5DzMxfbA .mbr-author-name {
  padding-left: 40px;
}
.cid-rS5DzMxfbA P {
  color: #000000;
  line-height: 1.3;
}
.cid-rS5DzMxfbA .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rS5DWwfqq9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS5DWwfqq9 .testimonial-text {
  font-style: italic;
  color: #000000;
  text-align: left;
}
.cid-rS5DWwfqq9 .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rS5DWwfqq9 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rS5DWwfqq9 .mbr-figure,
  .cid-rS5DWwfqq9 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rS5DWwfqq9 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rS5DWwfqq9 .mbr-author-desc {
  color: #000000;
}
.cid-rS5DWwfqq9 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5DWwfqq9 .text_block {
  margin-top: 0px;
}
.cid-rS5DWwfqq9 .h2_block {
  margin-bottom: 20px;
}
.cid-rS5DWwfqq9 .mbr-figure {
  align-self: flex-start;
}
.cid-rS5DWwfqq9 .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rS5DWwfqq9 .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rS5DWwfqq9 .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rS5DWwfqq9 .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rS5DWwfqq9 .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rS5EtpcjzT {
  background-image: url("../../../assets/images/zps-familienministerium-neugebauer-9-2000x1331.jpg");
}
.cid-rS5EtpcjzT P {
  color: #767676;
}
.cid-rS5Evvi7B0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rS5Evvi7B0 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS5Evvi7B0 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5Evvi7B0 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS5Evvi7B0 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS5EJBK5eN {
  background: #ffffff;
}
.cid-rS5EJBK5eN .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS5EJBK5eN figcaption {
  position: relative;
}
.cid-rS5EJBK5eN figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS5EJBK5eN .image-block {
    width: 100% !important;
  }
}
.cid-rS5EOzTKmT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS5EOzTKmT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5EOzTKmT p {
  color: #767676;
  text-align: left;
}
.cid-rS5EOzTKmT .card-box {
  padding-top: 2rem;
}
.cid-rS5EOzTKmT .card-wrapper {
  height: 100%;
}
.cid-rS5EPiHnoQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS5EPiHnoQ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5EPiHnoQ p {
  color: #767676;
  text-align: left;
}
.cid-rS5EPiHnoQ .card-box {
  padding-top: 2rem;
}
.cid-rS5EPiHnoQ .card-wrapper {
  height: 100%;
}
.cid-rS5ETu90hS {
  background-image: url("../../../assets/images/zps-familienministerium-2-neugebauer-13-2000x1331.jpg");
}
.cid-rS5ETu90hS P {
  color: #767676;
}
.cid-rS5HM6DW6u {
  background-image: url("../../../assets/images/schwesig-plakataktion-1-2000x1331.jpg");
}
.cid-rS5HM6DW6u P {
  color: #767676;
}
.cid-rS5I8i4Plk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS5I8i4Plk .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS5I8i4Plk h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5I8i4Plk .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS5I8i4Plk .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS5I9LPVgJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS5I9LPVgJ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5I9LPVgJ p {
  color: #767676;
  text-align: left;
}
.cid-rS5I9LPVgJ .card-box {
  padding-top: 2rem;
}
.cid-rS5I9LPVgJ .card-wrapper {
  height: 100%;
}
.cid-se4g8blnVU {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-5-1500x490.jpg");
}
.cid-se4g8blnVU H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-se4g8blnVU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-se4g8blnVU span {
  visibility: hidden;
}
.cid-se4g8blnVU .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4g8blnVU span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rS5IK7gK3Q {
  background-image: url("../../../assets/images/img-7724-1417x945.jpg");
}
.cid-rS5IK7gK3Q P {
  color: #767676;
}
.cid-rS5ISu5ZoF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS5ISu5ZoF .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS5ISu5ZoF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5ISu5ZoF .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS5ISu5ZoF .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS5ITM0Aco {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rS5ITM0Aco .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS5ITM0Aco .video-block {
    width: 100% !important;
  }
}
.cid-rS5ITM0Aco .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u6f3QW6xWb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u6f3QW6xWb h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6f3QW6xWb p {
  color: #767676;
  text-align: left;
}
.cid-u6f3QW6xWb .card-box {
  padding-top: 2rem;
}
.cid-u6f3QW6xWb .card-wrapper {
  height: 100%;
}
.cid-u6f3QW6xWb P {
  text-align: left;
}
.cid-u6f3ShRy6g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u6f3ShRy6g h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6f3ShRy6g p {
  color: #767676;
  text-align: left;
}
.cid-u6f3ShRy6g .card-box {
  padding-top: 2rem;
}
.cid-u6f3ShRy6g .card-wrapper {
  height: 100%;
}
.cid-u6f3ShRy6g P {
  text-align: left;
}
.cid-rS5KXsICl5 {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rS5KXsICl5 .images-container.container-fluid {
  padding: 0;
}
.cid-rS5KXsICl5 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS5KXsICl5 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS5KXsICl5 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS5KXsICl5 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS5KXsICl5 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS5KXsICl5 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS5KXsICl5 .img-item {
    width: 100% !important;
  }
  .cid-rS5KXsICl5 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS5Lpl130w {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-13-2000x1333.png");
}
.cid-rS5Lpl130w H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rS5Lpl130w .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rS5Lpl130w .breites_Zitat,
  .cid-rS5Lpl130w .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rS5LG07z8L {
  background-image: url("../../../assets/images/zps-kanzleramt-2-neugebauer-1-2000x1331.jpg");
}
.cid-rS5LG07z8L P {
  color: #767676;
}
.cid-rS5M2KtybT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS5M2KtybT .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS5M2KtybT h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5M2KtybT .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS5M2KtybT .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS5MdpftuU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS5MdpftuU h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5MdpftuU p {
  color: #767676;
  text-align: left;
}
.cid-rS5MdpftuU .card-box {
  padding-top: 2rem;
}
.cid-rS5MdpftuU .card-wrapper {
  height: 100%;
}
.cid-rS5MegMaKK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS5MegMaKK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5MegMaKK p {
  color: #767676;
  text-align: left;
}
.cid-rS5MegMaKK .card-box {
  padding-top: 2rem;
}
.cid-rS5MegMaKK .card-wrapper {
  height: 100%;
}
.cid-rS5Cc7c4Fp {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS5Cc7c4Fp .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rS5Cc7c4Fp .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rS5Cc7c4Fp .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rS5Cc7c4Fp .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rS5Cc7c4Fp .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rS5Cc7c4Fp .mbr-figure,
  .cid-rS5Cc7c4Fp img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rS5Cc7c4Fp h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5Cc7c4Fp .text_block {
  margin-top: 0px;
}
.cid-rS5Cc7c4Fp .h2_block {
  margin-bottom: 20px;
}
.cid-rS5Cc7c4Fp .mbr-figure {
  align-self: flex-start;
}
.cid-rS5Cc7c4Fp .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rS5Cc7c4Fp .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rS5Cc7c4Fp a:hover {
  Color: #a76645 !important;
}
.cid-rS5Cc7c4Fp a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS5Cc7c4Fp .btn-black-outline:hover,
.cid-rS5Cc7c4Fp .btn-black-outline:focus,
.cid-rS5Cc7c4Fp .btn-black-outline.focus,
.cid-rS5Cc7c4Fp .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rS5Cc7c4Fp .display-5 {
    line-height: 1;
  }
  .cid-rS5Cc7c4Fp .btn {
    font-size: 1.5rem !important;
  }
  .cid-rS5Cc7c4Fp .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rS5Cc7c4Fp .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rS5Cc7c4Fp .content {
  padding-left: 3px;
}
.cid-rS5NjSQsGz {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-14-2000x1330.png");
}
.cid-rS5NjSQsGz H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rS5NjSQsGz .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rS5NjSQsGz .breites_Zitat,
  .cid-rS5NjSQsGz .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rS5OiFBHk7 {
  background-image: url("../../../assets/images/zps-infostand-web-3-1503x1000.jpg");
}
.cid-rS5OiFBHk7 P {
  color: #767676;
}
.cid-rS5OxQZPYR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rS5OxQZPYR .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS5OxQZPYR h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5OxQZPYR .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS5OxQZPYR .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u6f8ZUx5J2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6f8ZUx5J2 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6f8ZUx5J2 p {
  color: #767676;
  text-align: left;
}
.cid-u6f8ZUx5J2 .card-box {
  padding-top: 2rem;
}
.cid-u6f8ZUx5J2 .card-wrapper {
  height: 100%;
}
.cid-u6f8ZUx5J2 P {
  text-align: left;
}
.cid-u6f90q5TMe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6f90q5TMe h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6f90q5TMe p {
  color: #767676;
  text-align: left;
}
.cid-u6f90q5TMe .card-box {
  padding-top: 2rem;
}
.cid-u6f90q5TMe .card-wrapper {
  height: 100%;
}
.cid-u6f90q5TMe P {
  text-align: left;
}
.cid-rS5PsjRxOJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rS5PsjRxOJ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5PsjRxOJ p {
  color: #767676;
  text-align: left;
}
.cid-rS5PsjRxOJ .card-box {
  padding-top: 2rem;
}
.cid-rS5PsjRxOJ .card-wrapper {
  height: 100%;
}
.cid-rS5Q6QqIim {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rS5Q6QqIim .testimonial-text {
  font-style: italic;
  color: #ffffff;
  text-align: left;
}
.cid-rS5Q6QqIim .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rS5Q6QqIim .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rS5Q6QqIim .mbr-figure,
  .cid-rS5Q6QqIim img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rS5Q6QqIim .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rS5Q6QqIim .mbr-author-desc {
  color: #000000;
}
.cid-rS5Q6QqIim h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5Q6QqIim .text_block {
  margin-top: 0px;
}
.cid-rS5Q6QqIim .h2_block {
  margin-bottom: 20px;
}
.cid-rS5Q6QqIim .mbr-figure {
  align-self: flex-start;
}
.cid-rS5Q6QqIim .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rS5Q6QqIim .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rS5Q6QqIim .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rS5Q6QqIim .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rS5Q6QqIim .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rS5Q8klkq4 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rS5Q8klkq4 .testimonial-text {
  font-style: italic;
  color: #ffffff;
  text-align: left;
}
.cid-rS5Q8klkq4 .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rS5Q8klkq4 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rS5Q8klkq4 .mbr-figure,
  .cid-rS5Q8klkq4 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rS5Q8klkq4 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rS5Q8klkq4 .mbr-author-desc {
  color: #000000;
}
.cid-rS5Q8klkq4 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5Q8klkq4 .text_block {
  margin-top: 0px;
}
.cid-rS5Q8klkq4 .h2_block {
  margin-bottom: 20px;
}
.cid-rS5Q8klkq4 .mbr-figure {
  align-self: flex-start;
}
.cid-rS5Q8klkq4 .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rS5Q8klkq4 .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rS5Q8klkq4 .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rS5Q8klkq4 .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rS5Q8klkq4 .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rS5QP4vAOY {
  background: #000000;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-rS5QP4vAOY .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rS5QP4vAOY .video-block {
    width: 100% !important;
  }
}
.cid-rS5QP4vAOY .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rS5QW6H6UH {
  background-image: url("../../../assets/images/img-0179-0749-v2-1500x1000.jpg");
}
.cid-rS5QW6H6UH P {
  color: #767676;
}
.cid-rS5R8FGyFt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS5R8FGyFt .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS5R8FGyFt h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5R8FGyFt .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS5R8FGyFt .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS5RmLKjDI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS5RmLKjDI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5RmLKjDI p {
  color: #767676;
  text-align: left;
}
.cid-rS5RmLKjDI .card-box {
  padding-top: 2rem;
}
.cid-rS5RmLKjDI .card-wrapper {
  height: 100%;
}
.cid-rS5S8KxYpw {
  background: #ffffff;
}
.cid-rS5S8KxYpw .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS5S8KxYpw figcaption {
  position: relative;
}
.cid-rS5S8KxYpw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS5S8KxYpw .image-block {
    width: 100% !important;
  }
}
.cid-rS5SdnJqDj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rS5SdnJqDj .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS5SdnJqDj h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS5SdnJqDj .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS5SdnJqDj .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS5SowpxpX {
  background: #ffffff;
}
.cid-rS5SowpxpX .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS5SowpxpX figcaption {
  position: relative;
}
.cid-rS5SowpxpX figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS5SowpxpX .image-block {
    width: 300% !important;
  }
}
.cid-uccBblkBfZ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-uccBblkBfZ .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-uccBblkBfZ .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccBblkBfZ .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccBblkBfZ .mbr-figure,
  .cid-uccBblkBfZ img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccBblkBfZ .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccBblkBfZ .mbr-author-desc {
  color: #000000;
}
.cid-uccBblkBfZ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccBblkBfZ .text_block {
  margin-top: 0px;
}
.cid-uccBblkBfZ .h2_block {
  margin-bottom: 20px;
}
.cid-uccBblkBfZ .mbr-figure {
  align-self: flex-start;
}
.cid-uccBblkBfZ .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccBblkBfZ .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccBblkBfZ .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccBblkBfZ a:hover {
  Color: #a76645 !important;
}
.cid-uccBblkBfZ a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccBblkBfZ .btn-black-outline:hover,
.cid-uccBblkBfZ .btn-black-outline:focus,
.cid-uccBblkBfZ .btn-black-outline.focus,
.cid-uccBblkBfZ .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccBblkBfZ .display-5 {
    line-height: 1;
  }
  .cid-uccBblkBfZ .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccBblkBfZ .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccBblkBfZ .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rS5SpdUiJl {
  background: #ffffff;
}
.cid-rS5SpdUiJl .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rS5SpdUiJl figcaption {
  position: relative;
}
.cid-rS5SpdUiJl figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rS5SpdUiJl .image-block {
    width: 300% !important;
  }
}
.cid-rS5Sy94Yxy {
  background-image: url("../../../assets/images/zps-1aus100-24-05-2014-neugebauer-27-2000x1331.jpg");
}
.cid-rS5Sy94Yxy P {
  color: #767676;
}
.cid-rS5SLIIuoK {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-rS5SLIIuoK .images-container.container-fluid {
  padding: 0;
}
.cid-rS5SLIIuoK .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS5SLIIuoK .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS5SLIIuoK .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS5SLIIuoK .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS5SLIIuoK .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS5SLIIuoK .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS5SLIIuoK .img-item {
    width: 100% !important;
  }
  .cid-rS5SLIIuoK .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tM3QMEjnOP {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tM3QMEjnOP .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-tM3QMEjnOP h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tM3QMEjnOP .space_down_30 {
  margin-bottom: 30px;
}
.cid-tM3QMEjnOP .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u6faEzQ2gK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u6faEzQ2gK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6faEzQ2gK p {
  color: #767676;
  text-align: left;
}
.cid-u6faEzQ2gK .card-box {
  padding-top: 2rem;
}
.cid-u6faEzQ2gK .card-wrapper {
  height: 100%;
}
.cid-u6faEzQ2gK P {
  text-align: left;
}
.cid-rS5TyBI0Ah {
  background-image: url("../../../assets/images/zps-1aus100-21-05-2014-neugebauer-11-2000x1331.jpg");
}
.cid-rS5TyBI0Ah P {
  color: #767676;
}
.cid-u6fbnV4gb1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u6fbnV4gb1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fbnV4gb1 p {
  color: #767676;
  text-align: left;
}
.cid-u6fbnV4gb1 .card-box {
  padding-top: 2rem;
}
.cid-u6fbnV4gb1 .card-wrapper {
  height: 100%;
}
.cid-u6fbnV4gb1 P {
  text-align: left;
}
.cid-rS5TBAMhNm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rS5TBAMhNm h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rS5TBAMhNm p {
  color: #767676;
  text-align: left;
}
.cid-rS5TBAMhNm .card-box {
  padding-top: 2rem;
}
.cid-rS5TBAMhNm .card-wrapper {
  height: 100%;
}
.cid-rS61Ev2XpK {
  background-image: url("../../../assets/images/szrische-apo-689x460-49-689x460.jpg");
}
.cid-rS61Ev2XpK P {
  color: #767676;
}
.cid-rS61LlO8Ma {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS61LlO8Ma .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS61LlO8Ma h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS61LlO8Ma .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS61LlO8Ma .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS62fdnuGN {
  padding-top: 135px;
  padding-bottom: 105px;
  background-color: #f9ceb2;
}
.cid-rS62fdnuGN P {
  color: #767676;
}
.cid-rS62fdnuGN .display-2 {
  font-size: 3rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-rS62fdnuGN .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-rS62fdnuGN .mbr-text,
.cid-rS62fdnuGN .mbr-section-btn {
  color: #1d1d1b;
}
.cid-rS643VPzjY {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rS643VPzjY .images-container.container-fluid {
  padding: 0;
}
.cid-rS643VPzjY .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS643VPzjY .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS643VPzjY .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS643VPzjY .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS643VPzjY .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS643VPzjY .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS643VPzjY .img-item {
    width: 100% !important;
  }
  .cid-rS643VPzjY .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS62tXQgKx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rS62tXQgKx .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rS62tXQgKx h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS62tXQgKx .space_down_30 {
  margin-bottom: 30px;
}
.cid-rS62tXQgKx .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS63Nk1xZi {
  padding-top: 60px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rS63Nk1xZi .images-container.container-fluid {
  padding: 0;
}
.cid-rS63Nk1xZi .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rS63Nk1xZi .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS63Nk1xZi .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS63Nk1xZi .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS63Nk1xZi .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS63Nk1xZi .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS63Nk1xZi .img-item {
    width: 100% !important;
  }
  .cid-rS63Nk1xZi .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS63cpPXPD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rS63cpPXPD .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rS63cpPXPD h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rS63cpPXPD .space_down_50 {
  margin-bottom: 50px;
}
.cid-rS63cpPXPD .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rS63XbPGSG {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rS63XbPGSG .images-container.container-fluid {
  padding: 0;
}
.cid-rS63XbPGSG .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
  width: 100% !important;
}
.cid-rS63XbPGSG .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS63XbPGSG .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS63XbPGSG .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS63XbPGSG .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS63XbPGSG .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS63XbPGSG .img-item {
    width: 100% !important;
  }
  .cid-rS63XbPGSG .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rS642pew3U {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rS642pew3U .images-container.container-fluid {
  padding: 0;
}
.cid-rS642pew3U .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
  width: 100% !important;
}
.cid-rS642pew3U .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rS642pew3U .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rS642pew3U .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rS642pew3U .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rS642pew3U .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rS642pew3U .img-item {
    width: 100% !important;
  }
  .cid-rS642pew3U .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-u7yVvL14HC {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVvL14HC .content {
    text-align: center;
  }
  .cid-u7yVvL14HC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVvL14HC .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVvL14HC .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVvL14HC .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVvL14HC .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVvL14HC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVvL14HC .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVvL14HC .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVvL14HC .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVvL14HC .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVvL14HC .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVvL14HC .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVvL14HC .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVvL14HC H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVvL14HC P {
  color: #ffffff;
}
.cid-u7yVvL14HC .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVvL14HC .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVvL14HC .logo_footer {
  position: relative;
}
.cid-u7yVvL14HC .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVvL14HC .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVvL14HC .col,
  .cid-u7yVvL14HC .col-1,
  .cid-u7yVvL14HC .col-10,
  .cid-u7yVvL14HC .col-11,
  .cid-u7yVvL14HC .col-12,
  .cid-u7yVvL14HC .col-2,
  .cid-u7yVvL14HC .col-3,
  .cid-u7yVvL14HC .col-4,
  .cid-u7yVvL14HC .col-5,
  .cid-u7yVvL14HC .col-6,
  .cid-u7yVvL14HC .col-7,
  .cid-u7yVvL14HC .col-8,
  .cid-u7yVvL14HC .col-9,
  .cid-u7yVvL14HC .col-auto,
  .cid-u7yVvL14HC .col-lg,
  .cid-u7yVvL14HC .col-lg-1,
  .cid-u7yVvL14HC .col-lg-10,
  .cid-u7yVvL14HC .col-lg-11,
  .cid-u7yVvL14HC .col-lg-12,
  .cid-u7yVvL14HC .col-lg-2,
  .cid-u7yVvL14HC .col-lg-3,
  .cid-u7yVvL14HC .col-lg-4,
  .cid-u7yVvL14HC .col-lg-5,
  .cid-u7yVvL14HC .col-lg-6,
  .cid-u7yVvL14HC .col-lg-7,
  .cid-u7yVvL14HC .col-lg-8,
  .cid-u7yVvL14HC .col-lg-9,
  .cid-u7yVvL14HC .col-lg-auto,
  .cid-u7yVvL14HC .col-md,
  .cid-u7yVvL14HC .col-md-1,
  .cid-u7yVvL14HC .col-md-10,
  .cid-u7yVvL14HC .col-md-11,
  .cid-u7yVvL14HC .col-md-12,
  .cid-u7yVvL14HC .col-md-2,
  .cid-u7yVvL14HC .col-md-3,
  .cid-u7yVvL14HC .col-md-4,
  .cid-u7yVvL14HC .col-md-5,
  .cid-u7yVvL14HC .col-md-6,
  .cid-u7yVvL14HC .col-md-7,
  .cid-u7yVvL14HC .col-md-8,
  .cid-u7yVvL14HC .col-md-9,
  .cid-u7yVvL14HC .col-md-auto,
  .cid-u7yVvL14HC .col-sm,
  .cid-u7yVvL14HC .col-sm-1,
  .cid-u7yVvL14HC .col-sm-10,
  .cid-u7yVvL14HC .col-sm-11,
  .cid-u7yVvL14HC .col-sm-12,
  .cid-u7yVvL14HC .col-sm-2,
  .cid-u7yVvL14HC .col-sm-3,
  .cid-u7yVvL14HC .col-sm-4,
  .cid-u7yVvL14HC .col-sm-5,
  .cid-u7yVvL14HC .col-sm-6,
  .cid-u7yVvL14HC .col-sm-7,
  .cid-u7yVvL14HC .col-sm-8,
  .cid-u7yVvL14HC .col-sm-9,
  .cid-u7yVvL14HC .col-sm-auto,
  .cid-u7yVvL14HC .col-xl,
  .cid-u7yVvL14HC .col-xl-1,
  .cid-u7yVvL14HC .col-xl-10,
  .cid-u7yVvL14HC .col-xl-11,
  .cid-u7yVvL14HC .col-xl-12,
  .cid-u7yVvL14HC .col-xl-2,
  .cid-u7yVvL14HC .col-xl-3,
  .cid-u7yVvL14HC .col-xl-4,
  .cid-u7yVvL14HC .col-xl-5,
  .cid-u7yVvL14HC .col-xl-6,
  .cid-u7yVvL14HC .col-xl-7,
  .cid-u7yVvL14HC .col-xl-8,
  .cid-u7yVvL14HC .col-xl-9,
  .cid-u7yVvL14HC .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVvL14HC .content {
    text-align: left;
  }
  .cid-u7yVvL14HC .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVvL14HC .logo_footer_box {
    position: relative;
  }
  .cid-u7yVvL14HC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVvL14HC .logo_footer {
    position: relative;
  }
  .cid-u7yVvL14HC .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVvL14HC .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rSJTDF2YxS {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rSJTDF2YxS {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rSJTGz4cz0 {
  background-image: url("../../../assets/images/pressefoto-sarkophag-2-2000x1250.jpg");
}
.cid-rSJTGz4cz0 P {
  color: #767676;
}
.cid-rSJTRYhZ0K {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-rSJTRYhZ0K .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSJTRYhZ0K h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJTRYhZ0K .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSJTRYhZ0K .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJTUsLaBm {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSJTUsLaBm .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSJTUsLaBm .video-block {
    width: 100% !important;
  }
}
.cid-rSJTUsLaBm .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-se4gH9hvDF {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-5-1500x490.jpg");
}
.cid-se4gH9hvDF H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-se4gH9hvDF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-se4gH9hvDF span {
  visibility: hidden;
}
.cid-se4gH9hvDF .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4gH9hvDF span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rSJTZ0GCwA {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-rSJTZ0GCwA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJTZ0GCwA p {
  color: #767676;
  text-align: left;
}
.cid-rSJTZ0GCwA .card-box {
  padding-top: 2rem;
}
.cid-rSJTZ0GCwA .card-wrapper {
  height: 100%;
}
.cid-rSJTZ0GCwA P {
  color: #1d1d1b;
}
.cid-rSJW1k1gFs {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rSJW1k1gFs H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rSJW1k1gFs .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rSJW1k1gFs .breites_Zitat,
  .cid-rSJW1k1gFs .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rSJW3agtxk {
  background: #000000;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-rSJW3agtxk .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSJW3agtxk .video-block {
    width: 100% !important;
  }
}
.cid-rSJW3agtxk .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJW3yALpl {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSJW3yALpl .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSJW3yALpl .video-block {
    width: 100% !important;
  }
}
.cid-rSJW3yALpl .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJW6bEJSv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSJW6bEJSv .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSJW6bEJSv h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJW6bEJSv .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSJW6bEJSv .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJWPBwuZu {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSJWPBwuZu .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rSJWPBwuZu .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rSJWPBwuZu .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rSJWPBwuZu .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rSJWPBwuZu .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rSJWPBwuZu .mbr-figure,
  .cid-rSJWPBwuZu img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rSJWPBwuZu h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJWPBwuZu .text_block {
  margin-top: 0px;
}
.cid-rSJWPBwuZu .h2_block {
  margin-bottom: 20px;
}
.cid-rSJWPBwuZu .mbr-figure {
  align-self: flex-start;
}
.cid-rSJWPBwuZu .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rSJWPBwuZu .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rSJWPBwuZu a:hover {
  Color: #a76645 !important;
}
.cid-rSJWPBwuZu a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJWPBwuZu .btn-black-outline:hover,
.cid-rSJWPBwuZu .btn-black-outline:focus,
.cid-rSJWPBwuZu .btn-black-outline.focus,
.cid-rSJWPBwuZu .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rSJWPBwuZu .display-5 {
    line-height: 1;
  }
  .cid-rSJWPBwuZu .btn {
    font-size: 1.5rem !important;
  }
  .cid-rSJWPBwuZu .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rSJWPBwuZu .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rSJWPBwuZu .content {
  padding-left: 3px;
}
.cid-u7yVyBE1Cf {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVyBE1Cf .content {
    text-align: center;
  }
  .cid-u7yVyBE1Cf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVyBE1Cf .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVyBE1Cf .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVyBE1Cf .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVyBE1Cf .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVyBE1Cf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVyBE1Cf .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVyBE1Cf .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVyBE1Cf .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVyBE1Cf .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVyBE1Cf .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVyBE1Cf .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVyBE1Cf .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVyBE1Cf H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVyBE1Cf P {
  color: #ffffff;
}
.cid-u7yVyBE1Cf .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVyBE1Cf .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVyBE1Cf .logo_footer {
  position: relative;
}
.cid-u7yVyBE1Cf .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVyBE1Cf .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVyBE1Cf .col,
  .cid-u7yVyBE1Cf .col-1,
  .cid-u7yVyBE1Cf .col-10,
  .cid-u7yVyBE1Cf .col-11,
  .cid-u7yVyBE1Cf .col-12,
  .cid-u7yVyBE1Cf .col-2,
  .cid-u7yVyBE1Cf .col-3,
  .cid-u7yVyBE1Cf .col-4,
  .cid-u7yVyBE1Cf .col-5,
  .cid-u7yVyBE1Cf .col-6,
  .cid-u7yVyBE1Cf .col-7,
  .cid-u7yVyBE1Cf .col-8,
  .cid-u7yVyBE1Cf .col-9,
  .cid-u7yVyBE1Cf .col-auto,
  .cid-u7yVyBE1Cf .col-lg,
  .cid-u7yVyBE1Cf .col-lg-1,
  .cid-u7yVyBE1Cf .col-lg-10,
  .cid-u7yVyBE1Cf .col-lg-11,
  .cid-u7yVyBE1Cf .col-lg-12,
  .cid-u7yVyBE1Cf .col-lg-2,
  .cid-u7yVyBE1Cf .col-lg-3,
  .cid-u7yVyBE1Cf .col-lg-4,
  .cid-u7yVyBE1Cf .col-lg-5,
  .cid-u7yVyBE1Cf .col-lg-6,
  .cid-u7yVyBE1Cf .col-lg-7,
  .cid-u7yVyBE1Cf .col-lg-8,
  .cid-u7yVyBE1Cf .col-lg-9,
  .cid-u7yVyBE1Cf .col-lg-auto,
  .cid-u7yVyBE1Cf .col-md,
  .cid-u7yVyBE1Cf .col-md-1,
  .cid-u7yVyBE1Cf .col-md-10,
  .cid-u7yVyBE1Cf .col-md-11,
  .cid-u7yVyBE1Cf .col-md-12,
  .cid-u7yVyBE1Cf .col-md-2,
  .cid-u7yVyBE1Cf .col-md-3,
  .cid-u7yVyBE1Cf .col-md-4,
  .cid-u7yVyBE1Cf .col-md-5,
  .cid-u7yVyBE1Cf .col-md-6,
  .cid-u7yVyBE1Cf .col-md-7,
  .cid-u7yVyBE1Cf .col-md-8,
  .cid-u7yVyBE1Cf .col-md-9,
  .cid-u7yVyBE1Cf .col-md-auto,
  .cid-u7yVyBE1Cf .col-sm,
  .cid-u7yVyBE1Cf .col-sm-1,
  .cid-u7yVyBE1Cf .col-sm-10,
  .cid-u7yVyBE1Cf .col-sm-11,
  .cid-u7yVyBE1Cf .col-sm-12,
  .cid-u7yVyBE1Cf .col-sm-2,
  .cid-u7yVyBE1Cf .col-sm-3,
  .cid-u7yVyBE1Cf .col-sm-4,
  .cid-u7yVyBE1Cf .col-sm-5,
  .cid-u7yVyBE1Cf .col-sm-6,
  .cid-u7yVyBE1Cf .col-sm-7,
  .cid-u7yVyBE1Cf .col-sm-8,
  .cid-u7yVyBE1Cf .col-sm-9,
  .cid-u7yVyBE1Cf .col-sm-auto,
  .cid-u7yVyBE1Cf .col-xl,
  .cid-u7yVyBE1Cf .col-xl-1,
  .cid-u7yVyBE1Cf .col-xl-10,
  .cid-u7yVyBE1Cf .col-xl-11,
  .cid-u7yVyBE1Cf .col-xl-12,
  .cid-u7yVyBE1Cf .col-xl-2,
  .cid-u7yVyBE1Cf .col-xl-3,
  .cid-u7yVyBE1Cf .col-xl-4,
  .cid-u7yVyBE1Cf .col-xl-5,
  .cid-u7yVyBE1Cf .col-xl-6,
  .cid-u7yVyBE1Cf .col-xl-7,
  .cid-u7yVyBE1Cf .col-xl-8,
  .cid-u7yVyBE1Cf .col-xl-9,
  .cid-u7yVyBE1Cf .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVyBE1Cf .content {
    text-align: left;
  }
  .cid-u7yVyBE1Cf .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVyBE1Cf .logo_footer_box {
    position: relative;
  }
  .cid-u7yVyBE1Cf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVyBE1Cf .logo_footer {
    position: relative;
  }
  .cid-u7yVyBE1Cf .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVyBE1Cf .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rS6GbSk2uD {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rS6GbSk2uD {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rSJ5zpFLK1 {
  background-image: url("../../../assets/images/un-shoes-cam02-beauty-copy-2000x1125.jpg");
}
.cid-rSJ5zpFLK1 P {
  color: #767676;
}
.cid-rSJ5GGdFum {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSJ5GGdFum .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSJ5GGdFum h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJ5GGdFum .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSJ5GGdFum .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJ5MzCGwz {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSJ5MzCGwz .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSJ5MzCGwz .video-block {
    width: 100% !important;
  }
}
.cid-rSJ5MzCGwz .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-se4hKJ73NH {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-14-2000x1448.png");
}
.cid-se4hKJ73NH H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-se4hKJ73NH .mbr-section-subtitle {
  color: #000000;
}
.cid-se4hKJ73NH span {
  visibility: hidden;
}
.cid-se4hKJ73NH .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4hKJ73NH span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rSJ6a9Y5tg {
  background: #ffffff;
}
.cid-rSJ6a9Y5tg .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJ6a9Y5tg figcaption {
  position: relative;
}
.cid-rSJ6a9Y5tg figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJ6a9Y5tg .image-block {
    width: 100% !important;
  }
}
.cid-rSJ6cMWJTF {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rSJ6cMWJTF .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSJ6cMWJTF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJ6cMWJTF .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSJ6cMWJTF .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJ6gPeAmH {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSJ6gPeAmH .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSJ6gPeAmH h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJ6gPeAmH .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSJ6gPeAmH .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJ6l0uPoU {
  background: #ffffff;
}
.cid-rSJ6l0uPoU .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJ6l0uPoU figcaption {
  position: relative;
}
.cid-rSJ6l0uPoU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJ6l0uPoU .image-block {
    width: 100% !important;
  }
}
.cid-rSJ6t5yGNo {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSJ6t5yGNo .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSJ6t5yGNo h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJ6t5yGNo .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSJiRsZGlp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSJiRsZGlp h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJiRsZGlp p {
  color: #767676;
  text-align: left;
}
.cid-rSJiRsZGlp .card-box {
  padding-top: 2rem;
}
.cid-rSJiRsZGlp .card-wrapper {
  height: 100%;
}
.cid-rSJiRsZGlp P {
  color: #1d1d1b;
}
.cid-rSJj53M80V {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-rSJj53M80V h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJj53M80V p {
  color: #767676;
  text-align: left;
}
.cid-rSJj53M80V .card-box {
  padding-top: 2rem;
}
.cid-rSJj53M80V .card-wrapper {
  height: 100%;
}
.cid-rSJj53M80V P {
  color: #1d1d1b;
}
.cid-rSJ6zssEap {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rSJ6zssEap H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rSJ6zssEap .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rSJ6zssEap .breites_Zitat,
  .cid-rSJ6zssEap .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-u6eXm3uRPv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6eXm3uRPv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6eXm3uRPv p {
  color: #767676;
  text-align: left;
}
.cid-u6eXm3uRPv .card-box {
  padding-top: 2rem;
}
.cid-u6eXm3uRPv .card-wrapper {
  height: 100%;
}
.cid-u6eXm3uRPv P {
  text-align: left;
}
.cid-rSJ6QDvirc {
  background: #ffffff;
}
.cid-rSJ6QDvirc .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJ6QDvirc figcaption {
  position: relative;
}
.cid-rSJ6QDvirc figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJ6QDvirc .image-block {
    width: 100% !important;
  }
}
.cid-rSJ70tdFl6 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSJ70tdFl6 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSJ70tdFl6 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJ70tdFl6 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSJ71Q53Jl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSJ71Q53Jl .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSJ71Q53Jl .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rSJ71Q53Jl .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rSJ71Q53Jl a:hover {
  Color: #a76645;
}
.cid-rSJ71Q53Jl a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJ71Q53Jl .btn-black-outline:hover,
.cid-rSJ71Q53Jl .btn-black-outline:focus,
.cid-rSJ71Q53Jl .btn-black-outline.focus,
.cid-rSJ71Q53Jl .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rSJ71Q53Jl .display-5 {
    line-height: 1;
  }
  .cid-rSJ71Q53Jl .btn {
    font-size: 1.5rem !important;
  }
  .cid-rSJ71Q53Jl .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rSJ72F8TkW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSJ72F8TkW .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSJ72F8TkW .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rSJ72F8TkW .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rSJ72F8TkW a:hover {
  Color: #a76645;
}
.cid-rSJ72F8TkW a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJ72F8TkW .btn-black-outline:hover,
.cid-rSJ72F8TkW .btn-black-outline:focus,
.cid-rSJ72F8TkW .btn-black-outline.focus,
.cid-rSJ72F8TkW .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rSJ72F8TkW .display-5 {
    line-height: 1;
  }
  .cid-rSJ72F8TkW .btn {
    font-size: 1.5rem !important;
  }
  .cid-rSJ72F8TkW .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rSJ73zBovn {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSJ73zBovn .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSJ73zBovn .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rSJ73zBovn .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rSJ73zBovn a:hover {
  Color: #a76645;
}
.cid-rSJ73zBovn a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJ73zBovn .btn-black-outline:hover,
.cid-rSJ73zBovn .btn-black-outline:focus,
.cid-rSJ73zBovn .btn-black-outline.focus,
.cid-rSJ73zBovn .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rSJ73zBovn .display-5 {
    line-height: 1;
  }
  .cid-rSJ73zBovn .btn {
    font-size: 1.5rem !important;
  }
  .cid-rSJ73zBovn .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rSJhJ0jJw3 {
  background-image: url("../../../assets/images/thumb-1280x720.jpg");
}
.cid-rSJhJ0jJw3 P {
  color: #767676;
}
.cid-rSJ7hiwGW9 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rSJ7hiwGW9 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rSJ7hiwGW9 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rSJ7hiwGW9 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rSJ7hiwGW9 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rSJ7cJdNX7 {
  background-image: url("../../../assets/images/dsc02266-kopie-2-2000x1353.jpg");
}
.cid-rSJ7cJdNX7 P {
  color: #767676;
}
.cid-rSJ7kDWxsw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSJ7kDWxsw .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSJ7kDWxsw h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJ7kDWxsw .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSJ7kDWxsw .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJ7nIZKrk {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rSJ7nIZKrk .images-container.container-fluid {
  padding: 0;
}
.cid-rSJ7nIZKrk .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rSJ7nIZKrk .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rSJ7nIZKrk .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rSJ7nIZKrk .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rSJ7nIZKrk .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rSJ7nIZKrk .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rSJ7nIZKrk .img-item {
    width: 100% !important;
  }
  .cid-rSJ7nIZKrk .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rSJ84YoCCh {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #f9ceb2;
}
.cid-rSJ84YoCCh .images-container.container-fluid {
  padding: 0;
}
.cid-rSJ84YoCCh .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rSJ84YoCCh .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rSJ84YoCCh .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rSJ84YoCCh .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rSJ84YoCCh .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rSJ84YoCCh .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rSJ84YoCCh .img-item {
    width: 100% !important;
  }
  .cid-rSJ84YoCCh .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rSJ8GTZ8Fu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSJ8GTZ8Fu h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJ8GTZ8Fu p {
  color: #767676;
  text-align: left;
}
.cid-rSJ8GTZ8Fu .card-box {
  padding-top: 2rem;
}
.cid-rSJ8GTZ8Fu .card-wrapper {
  height: 100%;
}
.cid-rSJatZmdSi {
  background-image: url("../../../assets/images/dsc02264-2000x1339.jpg");
}
.cid-rSJatZmdSi P {
  color: #767676;
}
.cid-rSJaqmJwTu {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-rSJaqmJwTu h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJaqmJwTu p {
  color: #767676;
  text-align: left;
}
.cid-rSJaqmJwTu .card-box {
  padding-top: 2rem;
}
.cid-rSJaqmJwTu .card-wrapper {
  height: 100%;
}
.cid-rSJaqmJwTu P {
  color: #000000;
}
.cid-rSJawxGj4z {
  background: #ffffff;
}
.cid-rSJawxGj4z .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJawxGj4z figcaption {
  position: relative;
}
.cid-rSJawxGj4z figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJawxGj4z .image-block {
    width: 100% !important;
  }
}
.cid-rSJbpI84wx {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-rSJbpI84wx .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSJbpI84wx h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJbpI84wx .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSJbpI84wx .mbr-section-subtitle P {
  color: #000000;
}
.cid-rSJbw4beq6 {
  background: #000000;
  padding-top: 30px;
  padding-bottom: 15px;
}
.cid-rSJbw4beq6 .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSJbw4beq6 .video-block {
    width: 100% !important;
  }
}
.cid-rSJbw4beq6 .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJbsPYR5W {
  background: #000000;
  padding-top: 15px;
  padding-bottom: 15px;
}
.cid-rSJbsPYR5W .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSJbsPYR5W .video-block {
    width: 100% !important;
  }
}
.cid-rSJbsPYR5W .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJbtwp8Jz {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-rSJbtwp8Jz .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSJbtwp8Jz .video-block {
    width: 100% !important;
  }
}
.cid-rSJbtwp8Jz .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJbuuDend {
  background: #000000;
  padding-top: 15px;
  padding-bottom: 60px;
}
.cid-rSJbuuDend .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSJbuuDend .video-block {
    width: 100% !important;
  }
}
.cid-rSJbuuDend .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJbQm8sc1 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-10-2000x1405.png");
}
.cid-rSJbQm8sc1 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rSJbQm8sc1 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rSJbQm8sc1 .breites_Zitat,
  .cid-rSJbQm8sc1 .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rSJbTGT0T8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSJbTGT0T8 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSJbTGT0T8 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJbTGT0T8 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSJbTGT0T8 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJbVod5CX {
  background: #ffffff;
}
.cid-rSJbVod5CX .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJbVod5CX figcaption {
  position: relative;
}
.cid-rSJbVod5CX figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJbVod5CX .image-block {
    width: 100% !important;
  }
}
.cid-rSJbVTzBU2 {
  background: #ffffff;
}
.cid-rSJbVTzBU2 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJbVTzBU2 figcaption {
  position: relative;
}
.cid-rSJbVTzBU2 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJbVTzBU2 .image-block {
    width: 100% !important;
  }
}
.cid-rSJc07KHnK {
  background: #ffffff;
}
.cid-rSJc07KHnK .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJc07KHnK figcaption {
  position: relative;
}
.cid-rSJc07KHnK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJc07KHnK .image-block {
    width: 100% !important;
  }
}
.cid-rSJc7gY4Oh {
  background: #ffffff;
}
.cid-rSJc7gY4Oh .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJc7gY4Oh figcaption {
  position: relative;
}
.cid-rSJc7gY4Oh figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJc7gY4Oh .image-block {
    width: 300% !important;
  }
}
.cid-uccCRhdoUX {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-uccCRhdoUX .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-uccCRhdoUX .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccCRhdoUX .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccCRhdoUX .mbr-figure,
  .cid-uccCRhdoUX img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccCRhdoUX .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccCRhdoUX .mbr-author-desc {
  color: #000000;
}
.cid-uccCRhdoUX h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccCRhdoUX .text_block {
  margin-top: 0px;
}
.cid-uccCRhdoUX .h2_block {
  margin-bottom: 20px;
}
.cid-uccCRhdoUX .mbr-figure {
  align-self: flex-start;
}
.cid-uccCRhdoUX .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccCRhdoUX .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccCRhdoUX .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccCRhdoUX a svg polygon {
  fill: white !important;
}
.cid-uccCRhdoUX a:hover {
  Color: #F9CEB2!important;
}
.cid-uccCRhdoUX a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccCRhdoUX .btn-white-outline:hover,
.cid-uccCRhdoUX .btn-white-outline:focus,
.cid-uccCRhdoUX .btn-white-outline.focus,
.cid-uccCRhdoUX .btn-white-outline.active,
.cid-uccCRhdoUX .btn-black-outline:hover,
.cid-uccCRhdoUX .btn-black-outline:focus,
.cid-uccCRhdoUX .btn-black-outline.focus,
.cid-uccCRhdoUX .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccCRhdoUX .display-5 {
    line-height: 1;
  }
  .cid-uccCRhdoUX .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccCRhdoUX .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccCRhdoUX .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rSJc7TEKK3 {
  background: #ffffff;
}
.cid-rSJc7TEKK3 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJc7TEKK3 figcaption {
  position: relative;
}
.cid-rSJc7TEKK3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJc7TEKK3 .image-block {
    width: 300% !important;
  }
}
.cid-rSJc24LJpM {
  background: #ffffff;
}
.cid-rSJc24LJpM .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJc24LJpM figcaption {
  position: relative;
}
.cid-rSJc24LJpM figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJc24LJpM .image-block {
    width: 100% !important;
  }
}
.cid-rSJc532LVn {
  background: #ffffff;
}
.cid-rSJc532LVn .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJc532LVn figcaption {
  position: relative;
}
.cid-rSJc532LVn figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJc532LVn .image-block {
    width: 100% !important;
  }
}
.cid-rSJcCj8Pmh {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSJcCj8Pmh .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #1d1d1b;
}
.cid-rSJcCj8Pmh .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rSJcCj8Pmh .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rSJcCj8Pmh .mbr-figure,
  .cid-rSJcCj8Pmh img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rSJcCj8Pmh .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rSJcCj8Pmh h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJcCj8Pmh .h2_block {
  margin-bottom: 20px;
}
.cid-rSJcCj8Pmh .mbr-figure {
  align-self: flex-start;
}
.cid-rSJcNxT0ja {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSJcNxT0ja h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJcNxT0ja p {
  color: #767676;
  text-align: left;
}
.cid-rSJcNxT0ja .card-box {
  padding-top: 2rem;
}
.cid-rSJcNxT0ja .card-wrapper {
  height: 100%;
}
.cid-rSJcNxT0ja P {
  color: #000000;
}
.cid-rSJeP44dYx {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rSJeP44dYx .images-container.container-fluid {
  padding: 0;
}
.cid-rSJeP44dYx .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rSJeP44dYx .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rSJeP44dYx .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rSJeP44dYx .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rSJeP44dYx .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rSJeP44dYx .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rSJeP44dYx .img-item {
    width: 100% !important;
  }
  .cid-rSJeP44dYx .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rSJd32fYn8 {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rSJd32fYn8 .images-container.container-fluid {
  padding: 0;
}
.cid-rSJd32fYn8 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rSJd32fYn8 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rSJd32fYn8 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rSJd32fYn8 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rSJd32fYn8 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rSJd32fYn8 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rSJd32fYn8 .img-item {
    width: 100% !important;
  }
  .cid-rSJd32fYn8 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rSJcOIRmwq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSJcOIRmwq h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJcOIRmwq p {
  color: #767676;
  text-align: left;
}
.cid-rSJcOIRmwq .card-box {
  padding-top: 2rem;
}
.cid-rSJcOIRmwq .card-wrapper {
  height: 100%;
}
.cid-rSJcOIRmwq P {
  color: #000000;
}
.cid-rSJfw9RtAc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSJfw9RtAc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJfw9RtAc p {
  color: #767676;
  text-align: left;
}
.cid-rSJfw9RtAc .card-box {
  padding-top: 2rem;
}
.cid-rSJfw9RtAc .card-wrapper {
  height: 100%;
}
.cid-rSJfw9RtAc P {
  color: #000000;
}
.cid-rSJd9am5R9 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rSJd9am5R9 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rSJd9am5R9 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rSJd9am5R9 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rSJd9am5R9 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rSJdvclkwu {
  background-image: url("../../../assets/images/heli-2000x1333.jpg");
}
.cid-rSJdvclkwu P {
  color: #767676;
}
.cid-rSJdrr6l6C {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSJdrr6l6C .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSJdrr6l6C h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJdrr6l6C .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSJdrr6l6C .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJdYuhzDL {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rSJdYuhzDL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJdYuhzDL p {
  color: #767676;
  text-align: left;
}
.cid-rSJdYuhzDL .card-box {
  padding-top: 2rem;
}
.cid-rSJdYuhzDL .card-wrapper {
  height: 100%;
}
.cid-rSJdYuhzDL P {
  color: #000000;
}
.cid-rSJdd1IQkT {
  background: #ffffff;
}
.cid-rSJdd1IQkT .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJdd1IQkT figcaption {
  position: relative;
}
.cid-rSJdd1IQkT figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJdd1IQkT .image-block {
    width: 100% !important;
  }
}
.cid-u7yVITjE9Z {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVITjE9Z .content {
    text-align: center;
  }
  .cid-u7yVITjE9Z .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVITjE9Z .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVITjE9Z .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVITjE9Z .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVITjE9Z .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVITjE9Z .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVITjE9Z .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVITjE9Z .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVITjE9Z .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVITjE9Z .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVITjE9Z .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVITjE9Z .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVITjE9Z .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVITjE9Z H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVITjE9Z P {
  color: #ffffff;
}
.cid-u7yVITjE9Z .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVITjE9Z .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVITjE9Z .logo_footer {
  position: relative;
}
.cid-u7yVITjE9Z .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVITjE9Z .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVITjE9Z .col,
  .cid-u7yVITjE9Z .col-1,
  .cid-u7yVITjE9Z .col-10,
  .cid-u7yVITjE9Z .col-11,
  .cid-u7yVITjE9Z .col-12,
  .cid-u7yVITjE9Z .col-2,
  .cid-u7yVITjE9Z .col-3,
  .cid-u7yVITjE9Z .col-4,
  .cid-u7yVITjE9Z .col-5,
  .cid-u7yVITjE9Z .col-6,
  .cid-u7yVITjE9Z .col-7,
  .cid-u7yVITjE9Z .col-8,
  .cid-u7yVITjE9Z .col-9,
  .cid-u7yVITjE9Z .col-auto,
  .cid-u7yVITjE9Z .col-lg,
  .cid-u7yVITjE9Z .col-lg-1,
  .cid-u7yVITjE9Z .col-lg-10,
  .cid-u7yVITjE9Z .col-lg-11,
  .cid-u7yVITjE9Z .col-lg-12,
  .cid-u7yVITjE9Z .col-lg-2,
  .cid-u7yVITjE9Z .col-lg-3,
  .cid-u7yVITjE9Z .col-lg-4,
  .cid-u7yVITjE9Z .col-lg-5,
  .cid-u7yVITjE9Z .col-lg-6,
  .cid-u7yVITjE9Z .col-lg-7,
  .cid-u7yVITjE9Z .col-lg-8,
  .cid-u7yVITjE9Z .col-lg-9,
  .cid-u7yVITjE9Z .col-lg-auto,
  .cid-u7yVITjE9Z .col-md,
  .cid-u7yVITjE9Z .col-md-1,
  .cid-u7yVITjE9Z .col-md-10,
  .cid-u7yVITjE9Z .col-md-11,
  .cid-u7yVITjE9Z .col-md-12,
  .cid-u7yVITjE9Z .col-md-2,
  .cid-u7yVITjE9Z .col-md-3,
  .cid-u7yVITjE9Z .col-md-4,
  .cid-u7yVITjE9Z .col-md-5,
  .cid-u7yVITjE9Z .col-md-6,
  .cid-u7yVITjE9Z .col-md-7,
  .cid-u7yVITjE9Z .col-md-8,
  .cid-u7yVITjE9Z .col-md-9,
  .cid-u7yVITjE9Z .col-md-auto,
  .cid-u7yVITjE9Z .col-sm,
  .cid-u7yVITjE9Z .col-sm-1,
  .cid-u7yVITjE9Z .col-sm-10,
  .cid-u7yVITjE9Z .col-sm-11,
  .cid-u7yVITjE9Z .col-sm-12,
  .cid-u7yVITjE9Z .col-sm-2,
  .cid-u7yVITjE9Z .col-sm-3,
  .cid-u7yVITjE9Z .col-sm-4,
  .cid-u7yVITjE9Z .col-sm-5,
  .cid-u7yVITjE9Z .col-sm-6,
  .cid-u7yVITjE9Z .col-sm-7,
  .cid-u7yVITjE9Z .col-sm-8,
  .cid-u7yVITjE9Z .col-sm-9,
  .cid-u7yVITjE9Z .col-sm-auto,
  .cid-u7yVITjE9Z .col-xl,
  .cid-u7yVITjE9Z .col-xl-1,
  .cid-u7yVITjE9Z .col-xl-10,
  .cid-u7yVITjE9Z .col-xl-11,
  .cid-u7yVITjE9Z .col-xl-12,
  .cid-u7yVITjE9Z .col-xl-2,
  .cid-u7yVITjE9Z .col-xl-3,
  .cid-u7yVITjE9Z .col-xl-4,
  .cid-u7yVITjE9Z .col-xl-5,
  .cid-u7yVITjE9Z .col-xl-6,
  .cid-u7yVITjE9Z .col-xl-7,
  .cid-u7yVITjE9Z .col-xl-8,
  .cid-u7yVITjE9Z .col-xl-9,
  .cid-u7yVITjE9Z .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVITjE9Z .content {
    text-align: left;
  }
  .cid-u7yVITjE9Z .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVITjE9Z .logo_footer_box {
    position: relative;
  }
  .cid-u7yVITjE9Z .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVITjE9Z .logo_footer {
    position: relative;
  }
  .cid-u7yVITjE9Z .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVITjE9Z .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rSJoIiAWzV {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rSJoIiAWzV {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rSJoPYUJb2 {
  background: #ffffff;
}
.cid-rSJoPYUJb2 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJoPYUJb2 figcaption {
  position: relative;
}
.cid-rSJoPYUJb2 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJoPYUJb2 .image-block {
    width: 100% !important;
  }
}
.cid-rSJp69ZQ8y {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSJp69ZQ8y .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSJp69ZQ8y h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJp69ZQ8y .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSJp69ZQ8y .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJp3NbZE6 {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSJp3NbZE6 .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSJp3NbZE6 .video-block {
    width: 100% !important;
  }
}
.cid-rSJp3NbZE6 .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJp9uuGaC {
  background-image: url("../../../assets/images/img-3150-1101x765.jpg");
}
.cid-rSJp9uuGaC P {
  color: #767676;
}
.cid-rSJpcsyT5t {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSJpcsyT5t .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSJpcsyT5t h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJpcsyT5t .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSJpcsyT5t .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJptulOVx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSJptulOVx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJptulOVx p {
  color: #767676;
  text-align: left;
}
.cid-rSJptulOVx .card-box {
  padding-top: 2rem;
}
.cid-rSJptulOVx .card-wrapper {
  height: 100%;
}
.cid-rSJptulOVx P {
  color: #1d1d1b;
}
.cid-rSJqn4tURs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSJqn4tURs h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJqn4tURs p {
  color: #767676;
  text-align: left;
}
.cid-rSJqn4tURs .card-box {
  padding-top: 2rem;
}
.cid-rSJqn4tURs .card-wrapper {
  height: 100%;
}
.cid-rSJqn4tURs P {
  color: #1d1d1b;
}
.cid-rSJrBCtdBD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-rSJrBCtdBD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJrBCtdBD p {
  color: #767676;
  text-align: left;
}
.cid-rSJrBCtdBD .card-box {
  padding-top: 2rem;
}
.cid-rSJrBCtdBD .card-wrapper {
  height: 100%;
}
.cid-rSJrBCtdBD P {
  color: #1d1d1b;
}
.cid-rSJsyVQTe1 {
  background-image: url("../../../assets/images/img-3077-1516x765.jpg");
}
.cid-rSJsyVQTe1 P {
  color: #767676;
}
.cid-u5BiaUEvc3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u5BiaUEvc3 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u5BiaUEvc3 p {
  color: #767676;
  text-align: left;
}
.cid-u5BiaUEvc3 .card-box {
  padding-top: 2rem;
}
.cid-u5BiaUEvc3 .card-wrapper {
  height: 100%;
}
.cid-u5BiaUEvc3 P {
  text-align: left;
}
.cid-rSJtcTrTHF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSJtcTrTHF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJtcTrTHF p {
  color: #767676;
  text-align: left;
}
.cid-rSJtcTrTHF .card-box {
  padding-top: 2rem;
}
.cid-rSJtcTrTHF .card-wrapper {
  height: 100%;
}
.cid-rSJtcTrTHF P {
  color: #000000;
}
.cid-u5Bic1FJjt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u5Bic1FJjt h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u5Bic1FJjt p {
  color: #767676;
  text-align: left;
}
.cid-u5Bic1FJjt .card-box {
  padding-top: 2rem;
}
.cid-u5Bic1FJjt .card-wrapper {
  height: 100%;
}
.cid-u5Bic1FJjt P {
  text-align: left;
}
.cid-rSJur0pbhE {
  background-image: url("../../../assets/images/img-2635-1671x765.jpg");
}
.cid-rSJur0pbhE P {
  color: #767676;
}
.cid-rSJuGFyo0s {
  background: #ffffff;
}
.cid-rSJuGFyo0s .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJuGFyo0s figcaption {
  position: relative;
}
.cid-rSJuGFyo0s figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJuGFyo0s .image-block {
    width: 100% !important;
  }
}
.cid-rSJuNxyKiU {
  background-image: url("../../../assets/images/img-2507-1148x765.jpg");
}
.cid-rSJuNxyKiU P {
  color: #767676;
}
.cid-rSJvrMVdGC {
  background: #ffffff;
}
.cid-rSJvrMVdGC .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rSJvrMVdGC figcaption {
  position: relative;
}
.cid-rSJvrMVdGC figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rSJvrMVdGC .image-block {
    width: 100% !important;
  }
}
.cid-rSJv7Z7PIk {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSJv7Z7PIk h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJv7Z7PIk p {
  color: #767676;
  text-align: left;
}
.cid-rSJv7Z7PIk .card-box {
  padding-top: 2rem;
}
.cid-rSJv7Z7PIk .card-wrapper {
  height: 100%;
}
.cid-rSJvY8wmne {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSJvY8wmne h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJvY8wmne p {
  color: #767676;
  text-align: left;
}
.cid-rSJvY8wmne .card-box {
  padding-top: 2rem;
}
.cid-rSJvY8wmne .card-wrapper {
  height: 100%;
}
.cid-rSJvY8wmne P {
  color: #000000;
}
.cid-rSJxgO8KU9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rSJxgO8KU9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJxgO8KU9 p {
  color: #767676;
  text-align: left;
}
.cid-rSJxgO8KU9 .card-box {
  padding-top: 2rem;
}
.cid-rSJxgO8KU9 .card-wrapper {
  height: 100%;
}
.cid-rSJxgO8KU9 P {
  color: #000000;
}
.cid-rSJx76Des9 {
  background-image: url("../../../assets/images/img-2900-1148x765.jpg");
}
.cid-rSJx76Des9 P {
  color: #767676;
}
.cid-u5BkaoxuJA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u5BkaoxuJA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u5BkaoxuJA p {
  color: #767676;
  text-align: left;
}
.cid-u5BkaoxuJA .card-box {
  padding-top: 2rem;
}
.cid-u5BkaoxuJA .card-wrapper {
  height: 100%;
}
.cid-u5BkaoxuJA P {
  text-align: left;
}
.cid-u5BkbmMbTU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u5BkbmMbTU h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u5BkbmMbTU p {
  color: #767676;
  text-align: left;
}
.cid-u5BkbmMbTU .card-box {
  padding-top: 2rem;
}
.cid-u5BkbmMbTU .card-wrapper {
  height: 100%;
}
.cid-u5BkbmMbTU P {
  text-align: left;
}
.cid-rSJBrvRJfD {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rSJBrvRJfD .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rSJBrvRJfD h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJBrvRJfD .space_down_50 {
  margin-bottom: 50px;
}
.cid-rSJBrvRJfD .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJyLtVFWG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSJyLtVFWG .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSJyLtVFWG h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJyLtVFWG .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSJyLtVFWG .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJBGBrDlC {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rSJBGBrDlC .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rSJBGBrDlC .video-block {
    width: 100% !important;
  }
}
.cid-rSJBGBrDlC .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJyNFFtl4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-11-2000x1448.png");
}
.cid-rSJyNFFtl4 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rSJyNFFtl4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rSJyNFFtl4 p {
  color: #767676;
  text-align: left;
}
.cid-rSJyNFFtl4 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rSJyNFFtl4 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rSJyNFFtl4 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rSJyNFFtl4 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rSJyNFFtl4 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rSJyNFFtl4 .notched-box:before,
.cid-rSJyNFFtl4 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rSJyNFFtl4 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rSJyNFFtl4 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rSJyNFFtl4 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rSJyNFFtl4 .border:before,
.cid-rSJyNFFtl4 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rSJyNFFtl4 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rSJyNFFtl4 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rSJyNFFtl4 .mbr-author-name {
  padding-left: 40px;
}
.cid-rSJyNFFtl4 P {
  color: #000000;
}
.cid-rSJyNFFtl4 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rSJyRwFtC5 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSJyRwFtC5 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rSJyRwFtC5 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJyRwFtC5 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rSJyRwFtC5 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rSJA1HjvAP {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rSJA1HjvAP .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rSJA1HjvAP .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rSJA1HjvAP .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rSJA1HjvAP a:hover {
  Color: #a76645;
}
.cid-rSJA1HjvAP a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJA1HjvAP .btn-black-outline:hover,
.cid-rSJA1HjvAP .btn-black-outline:focus,
.cid-rSJA1HjvAP .btn-black-outline.focus,
.cid-rSJA1HjvAP .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rSJA1HjvAP .display-5 {
    line-height: 1;
  }
  .cid-rSJA1HjvAP .btn {
    font-size: 1.5rem !important;
  }
  .cid-rSJA1HjvAP .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rSJzjWE5II {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rSJzjWE5II .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rSJzjWE5II .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rSJzjWE5II .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rSJzjWE5II .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rSJzjWE5II .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rSJzjWE5II .mbr-figure,
  .cid-rSJzjWE5II img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rSJzjWE5II h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rSJzjWE5II .text_block {
  margin-top: 0px;
}
.cid-rSJzjWE5II .h2_block {
  margin-bottom: 20px;
}
.cid-rSJzjWE5II .mbr-figure {
  align-self: flex-start;
}
.cid-rSJzjWE5II .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rSJzjWE5II .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rSJzjWE5II a:hover {
  Color: #a76645 !important;
}
.cid-rSJzjWE5II a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rSJzjWE5II .btn-black-outline:hover,
.cid-rSJzjWE5II .btn-black-outline:focus,
.cid-rSJzjWE5II .btn-black-outline.focus,
.cid-rSJzjWE5II .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rSJzjWE5II .display-5 {
    line-height: 1;
  }
  .cid-rSJzjWE5II .btn {
    font-size: 1.5rem !important;
  }
  .cid-rSJzjWE5II .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rSJzjWE5II .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rSJzjWE5II .content {
  padding-left: 3px;
}
.cid-u7yVLnagqY {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVLnagqY .content {
    text-align: center;
  }
  .cid-u7yVLnagqY .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVLnagqY .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVLnagqY .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVLnagqY .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVLnagqY .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVLnagqY .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVLnagqY .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVLnagqY .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVLnagqY .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVLnagqY .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVLnagqY .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVLnagqY .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVLnagqY .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVLnagqY H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVLnagqY P {
  color: #ffffff;
}
.cid-u7yVLnagqY .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVLnagqY .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVLnagqY .logo_footer {
  position: relative;
}
.cid-u7yVLnagqY .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVLnagqY .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVLnagqY .col,
  .cid-u7yVLnagqY .col-1,
  .cid-u7yVLnagqY .col-10,
  .cid-u7yVLnagqY .col-11,
  .cid-u7yVLnagqY .col-12,
  .cid-u7yVLnagqY .col-2,
  .cid-u7yVLnagqY .col-3,
  .cid-u7yVLnagqY .col-4,
  .cid-u7yVLnagqY .col-5,
  .cid-u7yVLnagqY .col-6,
  .cid-u7yVLnagqY .col-7,
  .cid-u7yVLnagqY .col-8,
  .cid-u7yVLnagqY .col-9,
  .cid-u7yVLnagqY .col-auto,
  .cid-u7yVLnagqY .col-lg,
  .cid-u7yVLnagqY .col-lg-1,
  .cid-u7yVLnagqY .col-lg-10,
  .cid-u7yVLnagqY .col-lg-11,
  .cid-u7yVLnagqY .col-lg-12,
  .cid-u7yVLnagqY .col-lg-2,
  .cid-u7yVLnagqY .col-lg-3,
  .cid-u7yVLnagqY .col-lg-4,
  .cid-u7yVLnagqY .col-lg-5,
  .cid-u7yVLnagqY .col-lg-6,
  .cid-u7yVLnagqY .col-lg-7,
  .cid-u7yVLnagqY .col-lg-8,
  .cid-u7yVLnagqY .col-lg-9,
  .cid-u7yVLnagqY .col-lg-auto,
  .cid-u7yVLnagqY .col-md,
  .cid-u7yVLnagqY .col-md-1,
  .cid-u7yVLnagqY .col-md-10,
  .cid-u7yVLnagqY .col-md-11,
  .cid-u7yVLnagqY .col-md-12,
  .cid-u7yVLnagqY .col-md-2,
  .cid-u7yVLnagqY .col-md-3,
  .cid-u7yVLnagqY .col-md-4,
  .cid-u7yVLnagqY .col-md-5,
  .cid-u7yVLnagqY .col-md-6,
  .cid-u7yVLnagqY .col-md-7,
  .cid-u7yVLnagqY .col-md-8,
  .cid-u7yVLnagqY .col-md-9,
  .cid-u7yVLnagqY .col-md-auto,
  .cid-u7yVLnagqY .col-sm,
  .cid-u7yVLnagqY .col-sm-1,
  .cid-u7yVLnagqY .col-sm-10,
  .cid-u7yVLnagqY .col-sm-11,
  .cid-u7yVLnagqY .col-sm-12,
  .cid-u7yVLnagqY .col-sm-2,
  .cid-u7yVLnagqY .col-sm-3,
  .cid-u7yVLnagqY .col-sm-4,
  .cid-u7yVLnagqY .col-sm-5,
  .cid-u7yVLnagqY .col-sm-6,
  .cid-u7yVLnagqY .col-sm-7,
  .cid-u7yVLnagqY .col-sm-8,
  .cid-u7yVLnagqY .col-sm-9,
  .cid-u7yVLnagqY .col-sm-auto,
  .cid-u7yVLnagqY .col-xl,
  .cid-u7yVLnagqY .col-xl-1,
  .cid-u7yVLnagqY .col-xl-10,
  .cid-u7yVLnagqY .col-xl-11,
  .cid-u7yVLnagqY .col-xl-12,
  .cid-u7yVLnagqY .col-xl-2,
  .cid-u7yVLnagqY .col-xl-3,
  .cid-u7yVLnagqY .col-xl-4,
  .cid-u7yVLnagqY .col-xl-5,
  .cid-u7yVLnagqY .col-xl-6,
  .cid-u7yVLnagqY .col-xl-7,
  .cid-u7yVLnagqY .col-xl-8,
  .cid-u7yVLnagqY .col-xl-9,
  .cid-u7yVLnagqY .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVLnagqY .content {
    text-align: left;
  }
  .cid-u7yVLnagqY .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVLnagqY .logo_footer_box {
    position: relative;
  }
  .cid-u7yVLnagqY .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVLnagqY .logo_footer {
    position: relative;
  }
  .cid-u7yVLnagqY .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVLnagqY .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rQQN7oJHRK {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rQQN7oJHRK {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tPDulfGr16 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tPDulfGr16 .mbr-text {
  color: #1d1d1b;
}
.cid-tPDulfGr16 .mbr-text p {
  background: #ffffff;
  padding: 1rem 0px !important;
}
.cid-tPDulfGr16 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem !important;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tPDulfGr16 .space_down_50 {
  margin-bottom: 50px;
}
.cid-tPDulfGr16 p {
  line-height: 1.2;
}
.cid-tPDulfGr16 img {
  max-width: 100%;
  height: auto;
}
.cid-tPDulfGr16 .blackRowHeadline {
  margin: 0;
  padding: 0;
  height: 5px;
  border-bottom: 140px solid black;
  color: black;
}
.cid-tPDulfGr16 h1 {
  font-weight: 700;
  font-size: 300%;
  line-height: 1.2;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-decoration: underline;
}
.cid-tPDulfGr16 .noHover {
  background-color: unset !important;
  color: unset !important;
  -webkit-box-shadow: unset !important;
  -moz-box-shadow: unset !important;
  box-shadow: unset !important;
}
.cid-tPDulfGr16 .coltxt {
  font-weight: 700 !important;
  letter-spacing: 1px;
  line-height: 3.9rem !important;
  font-size: 0.7rem;
  width: 100%;
  height: auto;
}
.cid-tPDulfGr16 .box {
  float: left;
  width: 100%;
  height: auto;
  margin-right: 2%;
  padding: 0px;
  background: #fff;
  box-sizing: border-box;
  display: flex;
}
.cid-tPDulfGr16 .box:last-child {
  margin-right: 0;
}
.cid-tPDulfGr16 .boxtxt {
  width: 100%;
  height: auto;
  margin-right: 0px;
  margin-left: 0px;
  padding: 0px;
  background: #fff;
  display: flex;
}
@media screen and (min-width: 1400px) {
  .cid-tPDulfGr16 h1 {
    font-size: 4.8rem;
  }
}
.cid-tKteWONNFq {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #f9ceb2;
}
.cid-tKteWONNFq .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tKteWONNFq h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tKteWONNFq .space_down_50 {
  margin-bottom: 50px;
}
.cid-rQRCz84hxi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-rQRCz84hxi .card-img {
  background-color: #fff;
}
.cid-rQRCz84hxi .card-box {
  padding: 1rem 0rem 0rem 0rem;
}
.cid-rQRCz84hxi h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rQRCz84hxi p {
  text-align: left;
}
.cid-rQRCz84hxi .mbr-text {
  color: #1d1d1b;
}
.cid-rQRCz84hxi .display-5,
.cid-rQRCz84hxi .btn {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  text-transform: uppercase ;
}
.cid-rQRCz84hxi .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rQRCz84hxi .btn {
  border-width: 0px !important;
  padding: 0px;
  margin: 0px;
  display: inline-block;
}
.cid-rQRCz84hxi .special_button {
  width: 100%;
}
.cid-rQRCz84hxi .special_button a {
  text-align: left;
}
.cid-rQRCz84hxi a:hover {
  Color: #a76645 !important;
}
.cid-rQRCz84hxi .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-rQRCz84hxi .stoerer_text {
  color: #1d1d1b;
  text-transform: uppercase !important;
  font-weight: 700;
  font-style: italic;
  line-height: 1.15;
  text-align: left;
  padding: 15px !important;
  letter-spacing: 1px;
}
.cid-rQRCz84hxi p:hover a {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rQRCz84hxi p:hover svg polygon,
.cid-rQRCz84hxi p:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rQRCz84hxi .card-img:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rQRCz84hxi a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 768px) {
  .cid-rQRCz84hxi .display-5 {
    line-height: 1;
  }
  .cid-rQRCz84hxi .btn {
    font-size: 1.5rem !important;
  }
  .cid-rQRCz84hxi .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rQRCz84hxi .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-rQRCz84hxi .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-rQRCz84hxi .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
    -webkit-flex: 0 0 20%;
  }
}
.cid-se4rv6aN4c {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #f9ceb2;
}
.cid-se4rv6aN4c .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-se4rv6aN4c .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-se4rv6aN4c .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tzet8tqBhD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/asche-9-web-2000x1402.jpg");
}
.cid-tzet8tqBhD .item:focus,
.cid-tzet8tqBhD span:focus {
  outline: none;
}
.cid-tzet8tqBhD .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-tzet8tqBhD .item-wrapper {
  position: relative;
}
.cid-tzet8tqBhD .item-btn,
.cid-tzet8tqBhD h4,
.cid-tzet8tqBhD h5 {
  margin: 0;
}
.cid-tzet8tqBhD .item-content {
  padding-top: 2rem;
}
.cid-tzet8tqBhD .card-img {
  height: 166px;
}
.cid-tzet8tqBhD .display-5 {
  font-size: 2rem;
  font-weight: 700 !important;
  line-height: 1.2;
}
.cid-tzet8tqBhD h4 {
  line-height: 1.2;
}
.cid-tzet8tqBhD .item-wrapper:hover svg polygon,
.cid-tzet8tqBhD .item-wrapper:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tzet8tqBhD .item-wrapper:hover a {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tzet8tqBhD .item-subtitle {
  color: #1d1d1b;
}
.cid-tzet8tqBhD .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-tzet8tqBhD .item-text h5 h4 {
  color: #1d1d1b;
}
.cid-tzet8tqBhD h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tzet8tqBhD .space_down_50 {
  margin-bottom: 50px;
}
.cid-tzet8tqBhD .item-title {
  text-align: center;
  color: #1d1d1b;
}
.cid-tzet8tqBhD .item_kontakt a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tzet8tqBhD .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tzet8tqBhD a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (max-width: 768px) {
  .cid-tzet8tqBhD .display-5 {
    line-height: 1;
  }
  .cid-tzet8tqBhD .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tzet8tqBhD .a_btn {
  text-transform: uppercase ;
  font-style: italic !important;
}
.cid-rQS659CH5q {
  background: #ffffff;
}
.cid-rQS659CH5q .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rQS659CH5q figcaption {
  position: relative;
}
.cid-rQS659CH5q figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rQS659CH5q .image-block {
    width: 300% !important;
  }
}
.cid-ucQKAYDsZq {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-ucQKAYDsZq .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-ucQKAYDsZq .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-ucQKAYDsZq .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-ucQKAYDsZq .mbr-figure,
  .cid-ucQKAYDsZq img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-ucQKAYDsZq .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-ucQKAYDsZq .mbr-author-desc {
  color: #000000;
}
.cid-ucQKAYDsZq h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ucQKAYDsZq .text_block {
  margin-top: 0px;
}
.cid-ucQKAYDsZq .h2_block {
  margin-bottom: 20px;
}
.cid-ucQKAYDsZq .mbr-figure {
  align-self: flex-start;
}
.cid-ucQKAYDsZq .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-ucQKAYDsZq .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-ucQKAYDsZq .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-ucQKAYDsZq a:hover {
  Color: #a76645 !important;
}
.cid-ucQKAYDsZq a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ucQKAYDsZq .btn-black-outline:hover,
.cid-ucQKAYDsZq .btn-black-outline:focus,
.cid-ucQKAYDsZq .btn-black-outline.focus,
.cid-ucQKAYDsZq .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ucQKAYDsZq .display-5 {
    line-height: 1;
  }
  .cid-ucQKAYDsZq .btn {
    font-size: 1.5rem !important;
  }
  .cid-ucQKAYDsZq .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-ucQKAYDsZq .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rQS65H63Yf {
  background: #ffffff;
}
.cid-rQS65H63Yf .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rQS65H63Yf figcaption {
  position: relative;
}
.cid-rQS65H63Yf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rQS65H63Yf .image-block {
    width: 300% !important;
  }
}
.cid-rWZe6ht9TM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-13-2000x1333.png");
}
.cid-rWZe6ht9TM h2 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rWZe6ht9TM .space_down_30 {
  margin-bottom: 30px;
}
.cid-rWZe6ht9TM input,
.cid-rWZe6ht9TM button,
.cid-rWZe6ht9TM select,
.cid-rWZe6ht9TM textarea {
  font-family: 'Chivo', sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  line-height: inherit;
}
.cid-rWZe6ht9TM .form-textbox,
.cid-rWZe6ht9TM #directmail-ae61bc4f-subscriber_email {
  padding: 12px 10px 13px 10px;
  border: 3px solid #1d1d1b;
  min-width: 10vw;
  color: #1d1d1b;
}
.cid-rWZe6ht9TM ::-webkit-input-placeholder {
  color: #1d1d1b;
  font-family: 'Chivo', sans-serif;
  font-size: 1.5rem;
  font-style: italic;
}
.cid-rWZe6ht9TM :-ms-input-placeholder {
  color: #1d1d1b;
  font-family: 'Chivo', sans-serif;
  font-size: 1.5rem;
  font-style: italic;
}
.cid-rWZe6ht9TM ::placeholder {
  color: #1d1d1b;
  font-family: 'Chivo', sans-serif;
  font-size: 1.5rem;
  font-style: italic;
}
.cid-rWZe6ht9TM .submit_button {
  padding-top: 15px;
}
.cid-rWZe6ht9TM .send {
  margin-left: 20px;
}
.cid-rWZe6ht9TM .button {
  font-size: 2rem ;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  text-transform: uppercase ;
  color: #1d1d1b !important;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0) !important;
  border: none;
  background-image: none;
}
.cid-rWZe6ht9TM .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -10px;
  margin-left: 8px;
}
.cid-rWZe6ht9TM .send_button {
  width: auto;
}
.cid-rWZe6ht9TM svg polygon {
  fill: #1d1d1b ;
}
.cid-rWZe6ht9TM .button:hover {
  Color: #a76645 !important;
}
.cid-rWZe6ht9TM .button:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rWZe6ht9TM a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-rWZe6ht9TM a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (max-width: 768px) {
  .cid-rWZe6ht9TM .button {
    line-height: 1;
    font-size: 1.5rem !important;
  }
  .cid-rWZe6ht9TM .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-ug8ArGMosb {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-ug8ArGMosb .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-ug8ArGMosb .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-ug8ArGMosb .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-ug8ArGMosb .mbr-figure,
  .cid-ug8ArGMosb img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-ug8ArGMosb .h2_block {
    padding-top: 5rem;
    margin-bottom: 20px;
  }
  .cid-ug8ArGMosb .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-ug8ArGMosb .mbr-author-desc {
  color: #000000;
}
.cid-ug8ArGMosb h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ug8ArGMosb .text_block {
  margin-top: 0px;
}
.cid-ug8ArGMosb .h2_block {
  margin-bottom: 20px;
}
.cid-ug8ArGMosb .mbr-figure {
  align-self: flex-start;
}
.cid-ug8ArGMosb .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-ug8ArGMosb .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-ug8ArGMosb .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-ug8ArGMosb .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-ug8ArGMosb .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rRODBtnWd3 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-5-1500x302.jpg");
}
.cid-rRODBtnWd3 H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-rRODBtnWd3 .mbr-section-subtitle {
  color: #000000;
}
.cid-rRODBtnWd3 section {
  background-color: none;
}
.cid-rRODBtnWd3 .logo_footer {
  position: relative;
  right: 100px;
}
.cid-u7yTCtcoZo {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yTCtcoZo .content {
    text-align: center;
  }
  .cid-u7yTCtcoZo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yTCtcoZo .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yTCtcoZo .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yTCtcoZo .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yTCtcoZo .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yTCtcoZo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yTCtcoZo .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yTCtcoZo .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yTCtcoZo .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yTCtcoZo .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yTCtcoZo .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yTCtcoZo .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yTCtcoZo .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yTCtcoZo H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yTCtcoZo P {
  color: #ffffff;
}
.cid-u7yTCtcoZo .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yTCtcoZo .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yTCtcoZo .logo_footer {
  position: relative;
}
.cid-u7yTCtcoZo .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yTCtcoZo .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yTCtcoZo .col,
  .cid-u7yTCtcoZo .col-1,
  .cid-u7yTCtcoZo .col-10,
  .cid-u7yTCtcoZo .col-11,
  .cid-u7yTCtcoZo .col-12,
  .cid-u7yTCtcoZo .col-2,
  .cid-u7yTCtcoZo .col-3,
  .cid-u7yTCtcoZo .col-4,
  .cid-u7yTCtcoZo .col-5,
  .cid-u7yTCtcoZo .col-6,
  .cid-u7yTCtcoZo .col-7,
  .cid-u7yTCtcoZo .col-8,
  .cid-u7yTCtcoZo .col-9,
  .cid-u7yTCtcoZo .col-auto,
  .cid-u7yTCtcoZo .col-lg,
  .cid-u7yTCtcoZo .col-lg-1,
  .cid-u7yTCtcoZo .col-lg-10,
  .cid-u7yTCtcoZo .col-lg-11,
  .cid-u7yTCtcoZo .col-lg-12,
  .cid-u7yTCtcoZo .col-lg-2,
  .cid-u7yTCtcoZo .col-lg-3,
  .cid-u7yTCtcoZo .col-lg-4,
  .cid-u7yTCtcoZo .col-lg-5,
  .cid-u7yTCtcoZo .col-lg-6,
  .cid-u7yTCtcoZo .col-lg-7,
  .cid-u7yTCtcoZo .col-lg-8,
  .cid-u7yTCtcoZo .col-lg-9,
  .cid-u7yTCtcoZo .col-lg-auto,
  .cid-u7yTCtcoZo .col-md,
  .cid-u7yTCtcoZo .col-md-1,
  .cid-u7yTCtcoZo .col-md-10,
  .cid-u7yTCtcoZo .col-md-11,
  .cid-u7yTCtcoZo .col-md-12,
  .cid-u7yTCtcoZo .col-md-2,
  .cid-u7yTCtcoZo .col-md-3,
  .cid-u7yTCtcoZo .col-md-4,
  .cid-u7yTCtcoZo .col-md-5,
  .cid-u7yTCtcoZo .col-md-6,
  .cid-u7yTCtcoZo .col-md-7,
  .cid-u7yTCtcoZo .col-md-8,
  .cid-u7yTCtcoZo .col-md-9,
  .cid-u7yTCtcoZo .col-md-auto,
  .cid-u7yTCtcoZo .col-sm,
  .cid-u7yTCtcoZo .col-sm-1,
  .cid-u7yTCtcoZo .col-sm-10,
  .cid-u7yTCtcoZo .col-sm-11,
  .cid-u7yTCtcoZo .col-sm-12,
  .cid-u7yTCtcoZo .col-sm-2,
  .cid-u7yTCtcoZo .col-sm-3,
  .cid-u7yTCtcoZo .col-sm-4,
  .cid-u7yTCtcoZo .col-sm-5,
  .cid-u7yTCtcoZo .col-sm-6,
  .cid-u7yTCtcoZo .col-sm-7,
  .cid-u7yTCtcoZo .col-sm-8,
  .cid-u7yTCtcoZo .col-sm-9,
  .cid-u7yTCtcoZo .col-sm-auto,
  .cid-u7yTCtcoZo .col-xl,
  .cid-u7yTCtcoZo .col-xl-1,
  .cid-u7yTCtcoZo .col-xl-10,
  .cid-u7yTCtcoZo .col-xl-11,
  .cid-u7yTCtcoZo .col-xl-12,
  .cid-u7yTCtcoZo .col-xl-2,
  .cid-u7yTCtcoZo .col-xl-3,
  .cid-u7yTCtcoZo .col-xl-4,
  .cid-u7yTCtcoZo .col-xl-5,
  .cid-u7yTCtcoZo .col-xl-6,
  .cid-u7yTCtcoZo .col-xl-7,
  .cid-u7yTCtcoZo .col-xl-8,
  .cid-u7yTCtcoZo .col-xl-9,
  .cid-u7yTCtcoZo .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yTCtcoZo .content {
    text-align: left;
  }
  .cid-u7yTCtcoZo .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yTCtcoZo .logo_footer_box {
    position: relative;
  }
  .cid-u7yTCtcoZo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yTCtcoZo .logo_footer {
    position: relative;
  }
  .cid-u7yTCtcoZo .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yTCtcoZo .copyright > p {
  color: #f9ceb2;
}
.cid-sL4slTq5Kw :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-sL4slTq5Kw .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-sL4slTq5Kw .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-sL4slTq5Kw a {
  font-style: normal;
}
.cid-sL4slTq5Kw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sL4slTq5Kw .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-sL4slTq5Kw .nav-item:focus,
.cid-sL4slTq5Kw .nav-link:focus {
  outline: none;
}
.cid-sL4slTq5Kw .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-sL4slTq5Kw .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-sL4slTq5Kw .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-sL4slTq5Kw .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sL4slTq5Kw .menu-logo {
  margin-right: auto;
}
.cid-sL4slTq5Kw .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-sL4slTq5Kw .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sL4slTq5Kw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sL4slTq5Kw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sL4slTq5Kw .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-sL4slTq5Kw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sL4slTq5Kw .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sL4slTq5Kw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-sL4slTq5Kw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL4slTq5Kw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sL4slTq5Kw .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sL4slTq5Kw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sL4slTq5Kw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sL4slTq5Kw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sL4slTq5Kw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL4slTq5Kw .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-sL4slTq5Kw .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-sL4slTq5Kw .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sL4slTq5Kw .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sL4slTq5Kw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sL4slTq5Kw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sL4slTq5Kw .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-sL4slTq5Kw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sL4slTq5Kw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sL4slTq5Kw button.navbar-toggler:focus {
  outline: none;
}
.cid-sL4slTq5Kw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL4slTq5Kw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sL4slTq5Kw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sL4slTq5Kw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sL4slTq5Kw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sL4slTq5Kw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sL4slTq5Kw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sL4slTq5Kw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sL4slTq5Kw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sL4slTq5Kw .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-sL4slTq5Kw .collapsed .btn {
  display: flex;
}
.cid-sL4slTq5Kw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sL4slTq5Kw .collapsed .navbar-collapse.collapsing,
.cid-sL4slTq5Kw .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sL4slTq5Kw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sL4slTq5Kw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sL4slTq5Kw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sL4slTq5Kw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sL4slTq5Kw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sL4slTq5Kw .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-sL4slTq5Kw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sL4slTq5Kw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sL4slTq5Kw .collapsed button.navbar-toggler {
  display: block;
}
.cid-sL4slTq5Kw .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sL4slTq5Kw .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sL4slTq5Kw .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sL4slTq5Kw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sL4slTq5Kw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sL4slTq5Kw .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-sL4slTq5Kw .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-sL4slTq5Kw .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-sL4slTq5Kw .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-sL4slTq5Kw .navbar-expand {
    flex-direction: column;
  }
  .cid-sL4slTq5Kw img {
    height: 3rem !important;
  }
  .cid-sL4slTq5Kw .btn {
    display: flex;
  }
  .cid-sL4slTq5Kw button.navbar-toggler {
    display: block;
  }
  .cid-sL4slTq5Kw .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sL4slTq5Kw .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4slTq5Kw .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sL4slTq5Kw .navbar-collapse.collapsing,
  .cid-sL4slTq5Kw .navbar-collapse.show {
    display: block !important;
  }
  .cid-sL4slTq5Kw .navbar-collapse.collapsing .navbar-nav,
  .cid-sL4slTq5Kw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sL4slTq5Kw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sL4slTq5Kw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sL4slTq5Kw .navbar-collapse.collapsing .navbar-buttons,
  .cid-sL4slTq5Kw .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sL4slTq5Kw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sL4slTq5Kw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sL4slTq5Kw .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sL4slTq5Kw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sL4slTq5Kw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sL4slTq5Kw .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-sL4slTq5Kw .logo_s,
  .cid-sL4slTq5Kw .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-sL4slTq5Kw .menu-logo {
    flex-shrink: 3;
  }
}
.cid-sL4slTq5Kw .navbar-collapse {
  flex-basis: auto;
}
.cid-sL4slTq5Kw .nav-link:hover,
.cid-sL4slTq5Kw .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-sL4slTq5Kw .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-sL4slTq5Kw .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-sL4slTq5Kw .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-sL4slTq5Kw .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-sL4slTq5Kw .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-sL4slTq5Kw a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sL4slTq5Kw a:hover svg polygon,
.cid-sL4slTq5Kw a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sL4slTq5Kw .hidden {
  display: none !important;
}
.cid-sL4slTq5Kw .shoow {
  display: block !important;
}
.cid-sL4slTq5Kw .navbar-logo a,
.cid-sL4slTq5Kw .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-sL4slTq5Kw .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-sL4slTq5Kw .logo_s {
    height: 2rem !important;
  }
  .cid-sL4slTq5Kw .navbar-logo a img {
    left: 20px;
  }
  .cid-sL4slTq5Kw .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-sL4slTq5Kw .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-sL4slTq5Kw .stoerer_head,
  .cid-sL4slTq5Kw .stoerer_text {
    grid-row: 1;
  }
  .cid-sL4slTq5Kw .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-sL4slTq5Kw a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-sL4slSVnCN {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-sL4slSVnCN {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-sL4trhD7Hx {
  background: #ffffff;
}
.cid-sL4trhD7Hx .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sL4trhD7Hx figcaption {
  position: relative;
}
.cid-sL4trhD7Hx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sL4trhD7Hx .image-block {
    width: 100% !important;
  }
}
.cid-sL4tsuCWjn {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-sL4tsuCWjn .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-sL4tsuCWjn h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sL4tsuCWjn .space_down_50 {
  margin-bottom: 50px;
}
.cid-sL4tsuCWjn .testimonial-text {
  text-align: right;
  color: #171717;
}
.cid-sL4Mf5hvDg {
  background: #f9ceb2;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-sL4Mf5hvDg .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-sL4Mf5hvDg .video-block {
    width: 100% !important;
  }
}
.cid-sL4Mf5hvDg .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sPNr182DbN {
  background: #000000;
  padding-top: 45px;
  padding-bottom: 30px;
}
.cid-sPNr182DbN .image-block {
  margin: auto;
}
.cid-sPNr182DbN figcaption {
  position: relative;
}
.cid-sPNr182DbN figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sPNr182DbN .image-block {
    width: 100% !important;
  }
}
.cid-sL4QULv6yC {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-sL4QULv6yC .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-sL4QULv6yC h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sL4QULv6yC .space_down_30 {
  margin-bottom: 30px;
}
.cid-sL4QULv6yC .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-sL4QULv6yC a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sL4QULv6yC a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sL4R9bBOQu {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-sL4R9bBOQu H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sL4R9bBOQu .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sL4R9bBOQu .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sL4R9bBOQu .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sWWvxtD5oT {
  background: #ffffff;
}
.cid-sWWvxtD5oT .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sWWvxtD5oT figcaption {
  position: relative;
}
.cid-sWWvxtD5oT figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sWWvxtD5oT .image-block {
    width: 100% !important;
  }
}
.cid-sL4ttA6Ifi {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sL4ttA6Ifi P {
  color: #767676;
}
.cid-sL4ttA6Ifi .display-2 {
  font-size: 3rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-sL4ttA6Ifi .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-sL4ttA6Ifi .mbr-text,
.cid-sL4ttA6Ifi .mbr-section-btn {
  color: #ffffff;
}
.cid-sL4ttA6Ifi H1 {
  color: #ffffff;
}
.cid-sL4tv5s1BI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sL4tv5s1BI .mbr-overlay {
  z-index: 1;
}
.cid-sL4tv5s1BI .carousel-caption {
  bottom: 40px;
}
.cid-sL4tv5s1BI .carousel-control .icon-next,
.cid-sL4tv5s1BI .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 0px;
  line-height: 27px;
}
.cid-sL4tv5s1BI .carousel-control:hover {
  background: #386DA3;
  color: #fff;
  opacity: 1;
}
.cid-sL4tv5s1BI .linkaus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.cid-sL4tv5s1BI .item-wrapper {
  max-width: 750px;
  margin: 0 auto;
}
.cid-sL4tv5s1BI .mbri-right::before,
.cid-sL4tv5s1BI .mbri-left::before {
  content: "";
}
.cid-sL4tv5s1BI .pfeil_links,
.cid-sL4tv5s1BI .pfeil_rechts {
  height: auto;
  width: 30px;
}
@media (max-width: 767px) {
  .cid-sL4tv5s1BI .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sL4tv5s1BI .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sL4tv5s1BI .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sL4tv5s1BI .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  transition: all 0.15s;
}
.cid-sL4tv5s1BI .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sL4tv5s1BI .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sL4tv5s1BI .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-sL4tv5s1BI .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sL4tv5s1BI .carousel-indicators {
  display: none;
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sL4tv5s1BI .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sL4tv5s1BI .carousel-indicators li.active,
.cid-sL4tv5s1BI .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sL4tv5s1BI .carousel-indicators li::after,
.cid-sL4tv5s1BI .carousel-indicators li::before {
  content: none;
}
.cid-sL4tv5s1BI .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sL4tv5s1BI .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 450px) {
  .cid-sL4tv5s1BI item-wrapper {
    min-height: 33vh;
  }
}
.cid-sYnDnXe69v {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-sYnDnXe69v H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sYnDnXe69v .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sYnDnXe69v .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sYnDnXe69v .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sX3KR2b7Tp {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/afd-muell-1-960x1200.jpg");
}
.cid-sX3KR2b7Tp h3 {
  text-align: center;
}
.cid-sX3KR2b7Tp .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-sX3KR2b7Tp .mbr-content-text {
  color: #767676;
}
.cid-sX3KR2b7Tp .panel-item {
  background: #ffffff;
}
.cid-sX3KR2b7Tp .card {
  word-wrap: break-word;
  height: 50vh;
}
.cid-sX3KR2b7Tp .mbr-iconfont {
  font-size: 80px;
  color: #149dcc;
}
.cid-sX3KR2b7Tp .display-1 {
  font-weight: bold;
}
.cid-sZ1XZlCtrs {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sZ1XZlCtrs .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-sZ1XZlCtrs h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sZ1XZlCtrs .space_down_50 {
  margin-bottom: 50px;
}
.cid-sX3y76Qrt8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sX3y76Qrt8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sX3y76Qrt8 p {
  color: #767676;
  text-align: left;
}
.cid-sX3y76Qrt8 .card-box {
  padding-top: 2rem;
}
.cid-sX3y76Qrt8 .card-wrapper {
  height: 100%;
}
.cid-sL4BCsUQqU {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-sL4BCsUQqU .image-block {
  margin: auto;
}
.cid-sL4BCsUQqU figcaption {
  position: relative;
}
.cid-sL4BCsUQqU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sL4BCsUQqU .image-block {
    width: 100% !important;
  }
}
.cid-tFPgkxsj5d {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tFPgkxsj5d .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tFPgkxsj5d .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tFPgkxsj5d .mbr-figure img {
    width: 100% !important;
  }
}
.cid-sWWulMh8mR {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-sWWulMh8mR .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-sWWulMh8mR h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sWWulMh8mR .space_down_50 {
  margin-bottom: 50px;
}
.cid-sWWulMh8mR .testimonial-text {
  text-align: right;
  color: #171717;
}
.cid-sL4PWoZ5cR {
  background: #f9ceb2;
  padding-top: 15px;
  padding-bottom: 75px;
}
.cid-sL4PWoZ5cR .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-sL4PWoZ5cR .video-block {
    width: 100% !important;
  }
}
.cid-sL4PWoZ5cR .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sL4RRMHtB4 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-sL4RRMHtB4 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sL4RRMHtB4 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sL4RRMHtB4 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sL4RRMHtB4 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sSl7oxdBDK {
  background: #ffffff;
}
.cid-sSl7oxdBDK .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sSl7oxdBDK figcaption {
  position: relative;
}
.cid-sSl7oxdBDK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sSl7oxdBDK .image-block {
    width: 100% !important;
  }
}
.cid-sL4slUN0Um {
  background: #ffffff;
}
.cid-sL4slUN0Um .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sL4slUN0Um figcaption {
  position: relative;
}
.cid-sL4slUN0Um figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sL4slUN0Um .image-block {
    width: 300% !important;
  }
}
.cid-uccnedJt3Q {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-uccnedJt3Q .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-uccnedJt3Q .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccnedJt3Q .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccnedJt3Q .mbr-figure,
  .cid-uccnedJt3Q img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccnedJt3Q .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccnedJt3Q .mbr-author-desc {
  color: #000000;
}
.cid-uccnedJt3Q h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccnedJt3Q .text_block {
  margin-top: 0px;
}
.cid-uccnedJt3Q .h2_block {
  margin-bottom: 20px;
}
.cid-uccnedJt3Q .mbr-figure {
  align-self: flex-start;
}
.cid-uccnedJt3Q .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccnedJt3Q .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccnedJt3Q .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccnedJt3Q a:hover {
  Color: #a76645 !important;
}
.cid-uccnedJt3Q a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccnedJt3Q .btn-black-outline:hover,
.cid-uccnedJt3Q .btn-black-outline:focus,
.cid-uccnedJt3Q .btn-black-outline.focus,
.cid-uccnedJt3Q .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccnedJt3Q .display-5 {
    line-height: 1;
  }
  .cid-uccnedJt3Q .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccnedJt3Q .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccnedJt3Q .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-sL4slVfSbL {
  background: #ffffff;
}
.cid-sL4slVfSbL .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sL4slVfSbL figcaption {
  position: relative;
}
.cid-sL4slVfSbL figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sL4slVfSbL .image-block {
    width: 300% !important;
  }
}
.cid-sYnrVGhvPM {
  background: #ffffff;
}
.cid-sYnrVGhvPM .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sYnrVGhvPM figcaption {
  position: relative;
}
.cid-sYnrVGhvPM figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sYnrVGhvPM .image-block {
    width: 100% !important;
  }
}
.cid-sL4NykRSJB {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sL4NykRSJB .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-sL4NykRSJB h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sL4NykRSJB .space_down_50 {
  margin-bottom: 50px;
}
.cid-sL4NLhUaD9 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sL4NLhUaD9 .mbr-text {
  color: #1d1d1b;
}
.cid-sL4NLhUaD9 .mbr-text p {
  background: #ffffff;
  padding: 1rem 0px !important;
}
.cid-sL4NLhUaD9 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem !important;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sL4NLhUaD9 .space_down_50 {
  margin-bottom: 50px;
}
.cid-sL4NLhUaD9 p {
  line-height: 1.2;
}
.cid-sSlcSRCmAi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sSlcSRCmAi h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sSlcSRCmAi p {
  color: #767676;
  text-align: left;
}
.cid-sSlcSRCmAi .card-box {
  padding-top: 2rem;
}
.cid-sSlcSRCmAi .card-wrapper {
  height: 100%;
}
.cid-tOBSL30Xed {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4e4e4e;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.cid-tOBSL30Xed .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-tOBSL30Xed .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tOBSL30Xed .mbr-author-desc {
  color: #f9ceb2;
}
.cid-tOBSL30Xed .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tOBSL30Xed .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tOBSL30Xed .mbr-figure,
  .cid-tOBSL30Xed img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-tOBSL30Xed h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #f9ceb2 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tOBSL30Xed .text_block {
  margin-top: 0px;
}
.cid-tOBSL30Xed .h2_block {
  margin-bottom: 20px;
}
.cid-tOBSL30Xed .mbr-figure {
  align-self: flex-start;
}
.cid-tOBSL30Xed .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-tOBSL30Xed .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tOBSL30Xed a:hover {
  Color: #a76645 !important;
}
.cid-tOBSL30Xed a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tOBSL30Xed .btn-black-outline:hover,
.cid-tOBSL30Xed .btn-black-outline:focus,
.cid-tOBSL30Xed .btn-black-outline.focus,
.cid-tOBSL30Xed .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tOBSL30Xed .display-5 {
    line-height: 1;
  }
  .cid-tOBSL30Xed .btn {
    font-size: 1.5rem !important;
  }
  .cid-tOBSL30Xed .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tOBSL30Xed .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tOBSL30Xed .content {
  padding-left: 3px;
}
.cid-sXBtejWLI1 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-sXBtejWLI1 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sXBtejWLI1 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sXBtejWLI1 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sXBtejWLI1 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sXBtejWLI1 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sXBtejWLI1 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sYnt7gKx34 {
  background-image: url("../../../assets/images/zps-afd-muell-027-web-2-807x538.jpg");
}
.cid-sYnt7gKx34 P {
  color: #767676;
}
.cid-sL4Prwwwi7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sL4Prwwwi7 .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-sL4Prwwwi7 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-sL4Prwwwi7 .mbr-author-desc {
  color: #232;
}
.cid-sL4Prwwwi7 .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-sL4Prwwwi7 .col-md-8 {
  max-width: 100%;
}
.cid-sL4Prwwwi7 p {
  line-height: 1.2;
}
@media (max-width: 991px) {
  .cid-sL4Prwwwi7 .mbr-figure,
  .cid-sL4Prwwwi7 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-sL4Prwwwi7 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sL4Prwwwi7 .text_block {
  margin-top: 70px;
}
.cid-sL4Prwwwi7 .h2_block {
  margin-bottom: 20px;
}
.cid-sL4Prwwwi7 .mbr-figure {
  align-self: flex-start;
}
.cid-sL4Prwwwi7 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-sL4Prwwwi7 a:hover {
  Color: #a76645 !important;
}
.cid-sL4Prwwwi7 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sL4Prwwwi7 .btn-black-outline:hover,
.cid-sL4Prwwwi7 .btn-black-outline:focus,
.cid-sL4Prwwwi7 .btn-black-outline.focus,
.cid-sL4Prwwwi7 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-sL4Prwwwi7 .btn {
    font-size: 1.5rem !important;
  }
  .cid-sL4Prwwwi7 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-sWWGTGqkI0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-sWWGTGqkI0 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sWWGTGqkI0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sWWGTGqkI0 p {
  color: #767676;
  text-align: left;
}
.cid-sWWGTGqkI0 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sWWGTGqkI0 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sWWGTGqkI0 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sWWGTGqkI0 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWWGTGqkI0 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sWWGTGqkI0 .notched-box:before,
.cid-sWWGTGqkI0 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-sWWGTGqkI0 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sWWGTGqkI0 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sWWGTGqkI0 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sWWGTGqkI0 .border:before,
.cid-sWWGTGqkI0 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-sWWGTGqkI0 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sWWGTGqkI0 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sWWGTGqkI0 .mbr-author-name {
  padding-left: 40px;
}
.cid-sWWGTGqkI0 P {
  color: #1d1d1b;
}
.cid-sWWGTGqkI0 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-sXBuWUDdq6 {
  padding-top: 120px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/asche-12-web-2000x607.jpg");
}
.cid-sXBuWUDdq6 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-sXBuWUDdq6 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sXBuWUDdq6 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sXBuWUDdq6 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sXBuWUDdq6 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sXBuWUDdq6 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sL53Ff4RYM {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-sL53Ff4RYM .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sL53Ff4RYM .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-sL53Ff4RYM .mbr-figure img {
    width: 100% !important;
  }
}
.cid-sWWwG4agjR {
  background: #ffffff;
}
.cid-sWWwG4agjR .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sWWwG4agjR figcaption {
  position: relative;
}
.cid-sWWwG4agjR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sWWwG4agjR .image-block {
    width: 100% !important;
  }
}
.cid-sL4RyPlKY1 {
  padding-top: 105px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-12-web-2000x1333.jpg");
}
.cid-sL4RyPlKY1 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-sL4RyPlKY1 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sL4RyPlKY1 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sL4RyPlKY1 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sRMnS8Rn8D {
  background: #ffffff;
}
.cid-sRMnS8Rn8D .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sRMnS8Rn8D figcaption {
  position: relative;
}
.cid-sRMnS8Rn8D figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sRMnS8Rn8D .image-block {
    width: 100% !important;
  }
}
.cid-sYawynhYg5 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-sYawynhYg5 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sYawynhYg5 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sYawynhYg5 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sYawynhYg5 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sYawynhYg5 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sYawynhYg5 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sRMnM4W2Kj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sRMnM4W2Kj h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sRMnM4W2Kj p {
  color: #767676;
  text-align: left;
}
.cid-sRMnM4W2Kj .card-box {
  padding-top: 2rem;
}
.cid-sRMnM4W2Kj .card-wrapper {
  height: 100%;
}
.cid-sXBuZTC5Yq {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-sXBuZTC5Yq H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sXBuZTC5Yq .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sXBuZTC5Yq .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sXBuZTC5Yq .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sXBuZTC5Yq a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sXBuZTC5Yq a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sRMo1LdScK {
  background: #ffffff;
}
.cid-sRMo1LdScK .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sRMo1LdScK figcaption {
  position: relative;
}
.cid-sRMo1LdScK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sRMo1LdScK .image-block {
    width: 100% !important;
  }
}
.cid-sXBuJtvRVF {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-6-1500x302.jpg");
}
.cid-sXBuJtvRVF H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sXBuJtvRVF .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sXBuJtvRVF .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sXBuJtvRVF .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sXBuJtvRVF a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sXBuJtvRVF a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sL4slXMsIE {
  background: #ffffff;
}
.cid-sL4slXMsIE .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sL4slXMsIE figcaption {
  position: relative;
}
.cid-sL4slXMsIE figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sL4slXMsIE .image-block {
    width: 100% !important;
  }
}
.cid-sL54JVG0vw {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-sL54JVG0vw .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-sL54JVG0vw h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sL54JVG0vw .space_down_30 {
  margin-bottom: 30px;
}
.cid-sL54JVG0vw .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-sSlchaRLFv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-sSlchaRLFv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sSlchaRLFv p {
  color: #767676;
  text-align: left;
}
.cid-sSlchaRLFv .card-box {
  padding-top: 2rem;
}
.cid-sSlchaRLFv .card-wrapper {
  height: 100%;
}
.cid-sXBtSouUp4 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x352.jpg");
}
.cid-sXBtSouUp4 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sXBtSouUp4 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sXBtSouUp4 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sXBtSouUp4 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sXBtSouUp4 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sXBtSouUp4 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u6g9sTZVsM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6g9sTZVsM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6g9sTZVsM p {
  color: #767676;
  text-align: left;
}
.cid-u6g9sTZVsM .card-box {
  padding-top: 2rem;
}
.cid-u6g9sTZVsM .card-wrapper {
  height: 100%;
}
.cid-u6g9sTZVsM P {
  text-align: left;
}
.cid-sXBukZg3hS {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-6-1500x302.jpg");
}
.cid-sXBukZg3hS H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sXBukZg3hS .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sXBukZg3hS .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sXBukZg3hS .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sXBukZg3hS a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sXBukZg3hS a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sL52arGwCU {
  background: #ffffff;
}
.cid-sL52arGwCU .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sL52arGwCU figcaption {
  position: relative;
}
.cid-sL52arGwCU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sL52arGwCU .image-block {
    width: 100% !important;
  }
}
.cid-sL4slYhvUv {
  background: #f9ceb2;
}
.cid-sL4slYhvUv .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sL4slYhvUv figcaption {
  position: relative;
}
.cid-sL4slYhvUv figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sL4slYhvUv .image-block {
    width: 300% !important;
  }
}
.cid-sWWBnToE1K {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-sWWBnToE1K .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sWWBnToE1K h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sWWBnToE1K p {
  color: #767676;
  text-align: left;
}
.cid-sWWBnToE1K .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sWWBnToE1K .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sWWBnToE1K .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sWWBnToE1K .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWWBnToE1K .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sWWBnToE1K .notched-box:before,
.cid-sWWBnToE1K .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-sWWBnToE1K .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sWWBnToE1K .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sWWBnToE1K .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sWWBnToE1K .border:before,
.cid-sWWBnToE1K .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-sWWBnToE1K .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sWWBnToE1K .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sWWBnToE1K .mbr-author-name {
  padding-left: 40px;
}
.cid-sWWBnToE1K P {
  color: #000000;
  line-height: 1.3;
}
.cid-sWWBnToE1K .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-sL4slYQP4K {
  background: #f9ceb2;
}
.cid-sL4slYQP4K .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sL4slYQP4K figcaption {
  position: relative;
}
.cid-sL4slYQP4K figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sL4slYQP4K .image-block {
    width: 300% !important;
  }
}
.cid-sXBuP8myzI {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-sXBuP8myzI H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sXBuP8myzI .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sXBuP8myzI .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sXBuP8myzI .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sXBuP8myzI a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sXBuP8myzI a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sX22NGFx7X {
  background: #ffffff;
}
.cid-sX22NGFx7X .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sX22NGFx7X figcaption {
  position: relative;
}
.cid-sX22NGFx7X figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sX22NGFx7X .image-block {
    width: 100% !important;
  }
}
.cid-sXBuI4sSiI {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-sXBuI4sSiI H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sXBuI4sSiI .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sXBuI4sSiI .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sXBuI4sSiI .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sXBuI4sSiI a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sXBuI4sSiI a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u6g9qEbdjP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u6g9qEbdjP h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6g9qEbdjP p {
  color: #767676;
  text-align: left;
}
.cid-u6g9qEbdjP .card-box {
  padding-top: 2rem;
}
.cid-u6g9qEbdjP .card-wrapper {
  height: 100%;
}
.cid-u6g9qEbdjP P {
  text-align: left;
}
.cid-sXBuECBfH0 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x352.jpg");
}
.cid-sXBuECBfH0 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sXBuECBfH0 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sXBuECBfH0 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sXBuECBfH0 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sXBuECBfH0 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sXBuECBfH0 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sRMiwMBT0z {
  background: #ffffff;
}
.cid-sRMiwMBT0z .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sRMiwMBT0z figcaption {
  position: relative;
}
.cid-sRMiwMBT0z figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sRMiwMBT0z .image-block {
    width: 100% !important;
  }
}
.cid-sXBuCB3Tx2 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-6-1500x302.jpg");
}
.cid-sXBuCB3Tx2 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sXBuCB3Tx2 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sXBuCB3Tx2 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sXBuCB3Tx2 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sXBuCB3Tx2 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sXBuCB3Tx2 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sSl6lA5AG5 {
  background: #ffffff;
}
.cid-sSl6lA5AG5 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sSl6lA5AG5 figcaption {
  position: relative;
}
.cid-sSl6lA5AG5 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sSl6lA5AG5 .image-block {
    width: 100% !important;
  }
}
.cid-sWWDWFC0ON {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sWWDWFC0ON .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-sWWDWFC0ON h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sWWDWFC0ON .space_down_50 {
  margin-bottom: 50px;
}
.cid-sPNx64WDfi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sPNx64WDfi h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sPNx64WDfi p {
  color: #767676;
  text-align: left;
}
.cid-sPNx64WDfi .card-box {
  padding-top: 2rem;
}
.cid-sPNx64WDfi .card-wrapper {
  height: 100%;
}
.cid-u6UfjZmP42 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u6UfjZmP42 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-u6UfjZmP42 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-u6UfjZmP42 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-u6UfMzZ5Hz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u6UfMzZ5Hz .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-u6UfMzZ5Hz .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-u6UfMzZ5Hz .mbr-figure img {
    width: 100% !important;
  }
}
.cid-u6UeJKebXy {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-u6UeJKebXy h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6UeJKebXy p {
  color: #767676;
  text-align: left;
}
.cid-u6UeJKebXy .card-box {
  padding-top: 2rem;
}
.cid-u6UeJKebXy .card-wrapper {
  height: 100%;
}
.cid-sYQqEOuJlo {
  background: #ffffff;
}
.cid-sYQqEOuJlo .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sYQqEOuJlo figcaption {
  position: relative;
}
.cid-sYQqEOuJlo figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sYQqEOuJlo .image-block {
    width: 100% !important;
  }
}
.cid-sL4slZ3Usu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-sL4slZ3Usu .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sL4slZ3Usu h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sL4slZ3Usu p {
  color: #767676;
  text-align: left;
}
.cid-sL4slZ3Usu .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sL4slZ3Usu .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sL4slZ3Usu .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sL4slZ3Usu .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sL4slZ3Usu .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sL4slZ3Usu .notched-box:before,
.cid-sL4slZ3Usu .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-sL4slZ3Usu .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sL4slZ3Usu .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sL4slZ3Usu .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sL4slZ3Usu .border:before,
.cid-sL4slZ3Usu .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-sL4slZ3Usu .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sL4slZ3Usu .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sL4slZ3Usu .mbr-author-name {
  padding-left: 40px;
}
.cid-sL4slZ3Usu P {
  color: #1d1d1b;
}
.cid-sL4slZ3Usu .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-t0ma2GTtu9 {
  background-image: url("../../../assets/images/schreddern-05-web-2000x1331.jpg");
}
.cid-t0ma2GTtu9 P {
  color: #767676;
}
.cid-sX2gQ08jpA {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sX2gQ08jpA .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-sX2gQ08jpA h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sX2gQ08jpA .space_down_50 {
  margin-bottom: 50px;
}
.cid-sX2gYrkogh {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sX2gYrkogh .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-sX2gYrkogh h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sX2gYrkogh .space_down_50 {
  margin-bottom: 50px;
}
.cid-sX2gYrkogh .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-sWWre6YdNJ {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-sWWre6YdNJ .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-sWWre6YdNJ .video-block {
    width: 100% !important;
  }
}
.cid-sWWre6YdNJ .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u6gaAwQzNC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u6gaAwQzNC h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6gaAwQzNC p {
  color: #767676;
  text-align: left;
}
.cid-u6gaAwQzNC .card-box {
  padding-top: 2rem;
}
.cid-u6gaAwQzNC .card-wrapper {
  height: 100%;
}
.cid-u6gaAwQzNC P {
  text-align: left;
}
.cid-sX2h0wMrfZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sX2h0wMrfZ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sX2h0wMrfZ p {
  color: #767676;
  text-align: left;
}
.cid-sX2h0wMrfZ .card-box {
  padding-top: 2rem;
}
.cid-sX2h0wMrfZ .card-wrapper {
  height: 100%;
}
.cid-t0mahgQvG4 {
  background-image: url("../../../assets/images/schreddern-15-web-2000x1331.jpg");
}
.cid-t0mahgQvG4 P {
  color: #767676;
}
.cid-u6gaBTXbNd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u6gaBTXbNd h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6gaBTXbNd p {
  color: #767676;
  text-align: left;
}
.cid-u6gaBTXbNd .card-box {
  padding-top: 2rem;
}
.cid-u6gaBTXbNd .card-wrapper {
  height: 100%;
}
.cid-u6gaBTXbNd P {
  text-align: left;
}
.cid-t0meNGMgLr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0meNGMgLr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-t0meNGMgLr p {
  color: #767676;
  text-align: left;
}
.cid-t0meNGMgLr .card-box {
  padding-top: 2rem;
}
.cid-t0meNGMgLr .card-wrapper {
  height: 100%;
}
.cid-u6gaCuSkch {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u6gaCuSkch h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6gaCuSkch p {
  color: #767676;
  text-align: left;
}
.cid-u6gaCuSkch .card-box {
  padding-top: 2rem;
}
.cid-u6gaCuSkch .card-wrapper {
  height: 100%;
}
.cid-u6gaCuSkch P {
  text-align: left;
}
.cid-t0mbokbgii {
  background: #ffffff;
}
.cid-t0mbokbgii .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-t0mbokbgii figcaption {
  position: relative;
}
.cid-t0mbokbgii figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t0mbokbgii .image-block {
    width: 100% !important;
  }
}
.cid-sXBHNI3t95 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-sXBHNI3t95 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sXBHNI3t95 .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sXBHNI3t95 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sXBHNI3t95 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sXBHNI3t95 a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sXBHNI3t95 a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sXBvjRm84H {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-sXBvjRm84H .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sXBvjRm84H .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-sXBvjRm84H .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tk2AzsW6vF {
  background: #ffffff;
}
.cid-tk2AzsW6vF .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tk2AzsW6vF figcaption {
  position: relative;
}
.cid-tk2AzsW6vF figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tk2AzsW6vF .image-block {
    width: 100% !important;
  }
}
.cid-tk2xomPPKy {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-tk2xomPPKy .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tk2xomPPKy h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tk2xomPPKy h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tk2xomPPKy .space_down_50 {
  margin-bottom: 50px;
}
.cid-tk2xomPPKy .testimonial-text {
  text-align: right;
  color: #171717;
}
.cid-tk2xpp6ShY {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-tk2xpp6ShY .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-tk2xpp6ShY .video-block {
    width: 100% !important;
  }
}
.cid-tk2xpp6ShY .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tk2xqtVDEv {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-tk2xqtVDEv P {
  color: #767676;
}
.cid-tk2xqtVDEv .display-2 {
  font-size: 3rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-tk2xqtVDEv .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-tk2xqtVDEv .mbr-text,
.cid-tk2xqtVDEv .mbr-section-btn {
  color: #ffffff;
}
.cid-tk2xqtVDEv H2 {
  color: #1d1d1b;
  text-align: left;
}
.cid-tk2Ez5Jbvg {
  background-image: url("../../../assets/images/zps-flyerservicehahn-konfetti-006-web-2000x1333.jpg");
}
.cid-tk2Ez5Jbvg P {
  color: #767676;
}
.cid-u6gaDV9dtz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u6gaDV9dtz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6gaDV9dtz p {
  color: #767676;
  text-align: left;
}
.cid-u6gaDV9dtz .card-box {
  padding-top: 2rem;
}
.cid-u6gaDV9dtz .card-wrapper {
  height: 100%;
}
.cid-u6gaDV9dtz P {
  text-align: left;
}
.cid-u6gaErFuLx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u6gaErFuLx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6gaErFuLx p {
  color: #767676;
  text-align: left;
}
.cid-u6gaErFuLx .card-box {
  padding-top: 2rem;
}
.cid-u6gaErFuLx .card-wrapper {
  height: 100%;
}
.cid-u6gaErFuLx P {
  text-align: left;
}
.cid-tk2GlZPl0R {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tk2GlZPl0R h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tk2GlZPl0R p {
  color: #767676;
  text-align: left;
}
.cid-tk2GlZPl0R .card-box {
  padding-top: 2rem;
}
.cid-tk2GlZPl0R .card-wrapper {
  height: 100%;
}
.cid-u6gaF2uM1U {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u6gaF2uM1U h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6gaF2uM1U p {
  color: #767676;
  text-align: left;
}
.cid-u6gaF2uM1U .card-box {
  padding-top: 2rem;
}
.cid-u6gaF2uM1U .card-wrapper {
  height: 100%;
}
.cid-u6gaF2uM1U P {
  text-align: left;
}
.cid-tk2HUjJqx9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tk2HUjJqx9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tk2HUjJqx9 p {
  color: #767676;
  text-align: left;
}
.cid-tk2HUjJqx9 .card-box {
  padding-top: 2rem;
}
.cid-tk2HUjJqx9 .card-wrapper {
  height: 100%;
}
.cid-tk2Gjt4xDF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tk2Gjt4xDF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tk2Gjt4xDF p {
  color: #767676;
  text-align: left;
}
.cid-tk2Gjt4xDF .card-box {
  padding-top: 2rem;
}
.cid-tk2Gjt4xDF .card-wrapper {
  height: 100%;
}
.cid-tk2C6qojU5 {
  background: #ffffff;
}
.cid-tk2C6qojU5 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tk2C6qojU5 figcaption {
  position: relative;
}
.cid-tk2C6qojU5 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tk2C6qojU5 .image-block {
    width: 100% !important;
  }
}
.cid-sXBuii21fd {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x352.jpg");
}
.cid-sXBuii21fd H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-sXBuii21fd .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-sXBuii21fd .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sXBuii21fd .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sXBuii21fd a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sXBuii21fd a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tk2L248jQk {
  background: #ffffff;
}
.cid-tk2L248jQk .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tk2L248jQk figcaption {
  position: relative;
}
.cid-tk2L248jQk figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tk2L248jQk .image-block {
    width: 100% !important;
  }
}
.cid-tk2JcHJMX7 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tk2JcHJMX7 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tk2JcHJMX7 p {
  color: #767676;
  text-align: left;
}
.cid-tk2JcHJMX7 .card-box {
  padding-top: 2rem;
}
.cid-tk2JcHJMX7 .card-wrapper {
  height: 100%;
}
.cid-tk2LKL0VGL {
  padding-top: 15px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-tk2LKL0VGL .images-container.container-fluid {
  padding: 0;
}
.cid-tk2LKL0VGL .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tk2LKL0VGL .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tk2LKL0VGL .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tk2LKL0VGL .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tk2LKL0VGL .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tk2LKL0VGL .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tk2LKL0VGL .img-item {
    width: 100% !important;
  }
  .cid-tk2LKL0VGL .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tk2OabYRVt {
  background: #ffffff;
}
.cid-tk2OabYRVt .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tk2OabYRVt figcaption {
  position: relative;
}
.cid-tk2OabYRVt figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tk2OabYRVt .image-block {
    width: 100% !important;
  }
}
.cid-sWWzAtLqHI {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sWWzAtLqHI .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-sWWzAtLqHI h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sWWzAtLqHI .space_down_50 {
  margin-bottom: 50px;
}
.cid-sWWzAtLqHI .testimonial-text {
  text-align: right;
  color: #171717;
}
.cid-sWWzBondbW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-sWWzBondbW P {
  color: #767676;
}
.cid-sWWzBondbW .display-2 {
  font-size: 3rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-sWWzBondbW .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-sWWzBondbW .mbr-text,
.cid-sWWzBondbW .mbr-section-btn {
  color: #ffffff;
}
.cid-sWWzBondbW H1 {
  color: #ffffff;
  text-align: left;
}
.cid-sWWzBTaZY4 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-sWWzBTaZY4 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-sWWzBTaZY4 .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-sWWzBTaZY4 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-sWWzBTaZY4 a svg polygon {
  fill: white !important;
}
.cid-sWWzBTaZY4 a:hover {
  Color: #F9CEB2!important;
}
.cid-sWWzBTaZY4 a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sWWzBTaZY4 .btn-white-outline:hover,
.cid-sWWzBTaZY4 .btn-white-outline:focus,
.cid-sWWzBTaZY4 .btn-white-outline.focus,
.cid-sWWzBTaZY4 .btn-white-outline.active,
.cid-sWWzBTaZY4 .btn-black-outline:hover,
.cid-sWWzBTaZY4 .btn-black-outline:focus,
.cid-sWWzBTaZY4 .btn-black-outline.focus,
.cid-sWWzBTaZY4 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-sWWzBTaZY4 .display-5 {
    line-height: 1;
  }
  .cid-sWWzBTaZY4 .btn {
    font-size: 1.5rem !important;
  }
  .cid-sWWzBTaZY4 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-sX29oqtQvE {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-sX29oqtQvE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sX29oqtQvE p {
  color: #767676;
  text-align: left;
}
.cid-sX29oqtQvE .card-box {
  padding-top: 2rem;
}
.cid-sX29oqtQvE .card-wrapper {
  height: 100%;
}
.cid-sX29oqtQvE P {
  color: #ffffff;
}
.cid-sWWAUR8nsV {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-sWWAUR8nsV .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1b1b1d;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sWWAUR8nsV h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sWWAUR8nsV p {
  color: #767676;
  text-align: left;
}
.cid-sWWAUR8nsV .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sWWAUR8nsV .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sWWAUR8nsV .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sWWAUR8nsV .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWWAUR8nsV .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sWWAUR8nsV .notched-box:before,
.cid-sWWAUR8nsV .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-sWWAUR8nsV .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sWWAUR8nsV .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sWWAUR8nsV .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sWWAUR8nsV .border:before,
.cid-sWWAUR8nsV .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-sWWAUR8nsV .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sWWAUR8nsV .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sWWAUR8nsV .mbr-author-name {
  padding-left: 40px;
}
.cid-sWWAUR8nsV P {
  color: #1d1d1b;
}
.cid-sWWAUR8nsV .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-thpEyq8fF3 {
  background: #ffffff;
}
.cid-thpEyq8fF3 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-thpEyq8fF3 figcaption {
  position: relative;
}
.cid-thpEyq8fF3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-thpEyq8fF3 .image-block {
    width: 100% !important;
  }
}
.cid-u6gczD9CRK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u6gczD9CRK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6gczD9CRK p {
  color: #767676;
  text-align: left;
}
.cid-u6gczD9CRK .card-box {
  padding-top: 2rem;
}
.cid-u6gczD9CRK .card-wrapper {
  height: 100%;
}
.cid-u6gczD9CRK P {
  text-align: left;
}
.cid-thpIEA5DI2 {
  background-image: url("../../../assets/images/zeppelin4-web-1-2000x1500.jpg");
}
.cid-thpIEA5DI2 P {
  color: #767676;
}
.cid-sL4slZGyv5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sL4slZGyv5 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-sL4slZGyv5 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sL4slZGyv5 .space_down_30 {
  margin-bottom: 30px;
}
.cid-sL4slZGyv5 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-sWWzLZkYgp {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-sWWzLZkYgp .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sWWzLZkYgp h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sWWzLZkYgp p {
  color: #767676;
  text-align: left;
}
.cid-sWWzLZkYgp .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sWWzLZkYgp .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sWWzLZkYgp .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sWWzLZkYgp .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWWzLZkYgp .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sWWzLZkYgp .notched-box:before,
.cid-sWWzLZkYgp .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-sWWzLZkYgp .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sWWzLZkYgp .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sWWzLZkYgp .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sWWzLZkYgp .border:before,
.cid-sWWzLZkYgp .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-sWWzLZkYgp .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sWWzLZkYgp .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sWWzLZkYgp .mbr-author-name {
  padding-left: 40px;
}
.cid-sWWzLZkYgp P {
  color: #1d1d1b;
}
.cid-sWWzLZkYgp .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-sWWEjuODtT {
  background-image: url("../../../assets/images/zps-afd-muell-040-web-2000x1333.jpg");
}
.cid-sWWEjuODtT P {
  color: #767676;
}
.cid-sWWAQ4laNi {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-sWWAQ4laNi .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-sWWAQ4laNi h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sWWAQ4laNi p {
  color: #767676;
  text-align: left;
}
.cid-sWWAQ4laNi .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-sWWAQ4laNi .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-sWWAQ4laNi .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-sWWAQ4laNi .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sWWAQ4laNi .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sWWAQ4laNi .notched-box:before,
.cid-sWWAQ4laNi .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-sWWAQ4laNi .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-sWWAQ4laNi .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-sWWAQ4laNi .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-sWWAQ4laNi .border:before,
.cid-sWWAQ4laNi .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-sWWAQ4laNi .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-sWWAQ4laNi .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-sWWAQ4laNi .mbr-author-name {
  padding-left: 40px;
}
.cid-sWWAQ4laNi P {
  color: #ffffff;
}
.cid-sWWAQ4laNi .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-sXBupSQfbx {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-12-web-2000x607.jpg");
}
.cid-sXBupSQfbx H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-sXBupSQfbx .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-sXBupSQfbx .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-sXBupSQfbx .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-sXBupSQfbx a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-sXBupSQfbx a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-sYawKFr261 {
  background: #ffffff;
}
.cid-sYawKFr261 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-sYawKFr261 figcaption {
  position: relative;
}
.cid-sYawKFr261 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sYawKFr261 .image-block {
    width: 100% !important;
  }
}
.cid-u7yUzrZDH7 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yUzrZDH7 .content {
    text-align: center;
  }
  .cid-u7yUzrZDH7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yUzrZDH7 .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yUzrZDH7 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yUzrZDH7 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yUzrZDH7 .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yUzrZDH7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yUzrZDH7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yUzrZDH7 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yUzrZDH7 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yUzrZDH7 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yUzrZDH7 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yUzrZDH7 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yUzrZDH7 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yUzrZDH7 H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yUzrZDH7 P {
  color: #ffffff;
}
.cid-u7yUzrZDH7 .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yUzrZDH7 .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yUzrZDH7 .logo_footer {
  position: relative;
}
.cid-u7yUzrZDH7 .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yUzrZDH7 .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yUzrZDH7 .col,
  .cid-u7yUzrZDH7 .col-1,
  .cid-u7yUzrZDH7 .col-10,
  .cid-u7yUzrZDH7 .col-11,
  .cid-u7yUzrZDH7 .col-12,
  .cid-u7yUzrZDH7 .col-2,
  .cid-u7yUzrZDH7 .col-3,
  .cid-u7yUzrZDH7 .col-4,
  .cid-u7yUzrZDH7 .col-5,
  .cid-u7yUzrZDH7 .col-6,
  .cid-u7yUzrZDH7 .col-7,
  .cid-u7yUzrZDH7 .col-8,
  .cid-u7yUzrZDH7 .col-9,
  .cid-u7yUzrZDH7 .col-auto,
  .cid-u7yUzrZDH7 .col-lg,
  .cid-u7yUzrZDH7 .col-lg-1,
  .cid-u7yUzrZDH7 .col-lg-10,
  .cid-u7yUzrZDH7 .col-lg-11,
  .cid-u7yUzrZDH7 .col-lg-12,
  .cid-u7yUzrZDH7 .col-lg-2,
  .cid-u7yUzrZDH7 .col-lg-3,
  .cid-u7yUzrZDH7 .col-lg-4,
  .cid-u7yUzrZDH7 .col-lg-5,
  .cid-u7yUzrZDH7 .col-lg-6,
  .cid-u7yUzrZDH7 .col-lg-7,
  .cid-u7yUzrZDH7 .col-lg-8,
  .cid-u7yUzrZDH7 .col-lg-9,
  .cid-u7yUzrZDH7 .col-lg-auto,
  .cid-u7yUzrZDH7 .col-md,
  .cid-u7yUzrZDH7 .col-md-1,
  .cid-u7yUzrZDH7 .col-md-10,
  .cid-u7yUzrZDH7 .col-md-11,
  .cid-u7yUzrZDH7 .col-md-12,
  .cid-u7yUzrZDH7 .col-md-2,
  .cid-u7yUzrZDH7 .col-md-3,
  .cid-u7yUzrZDH7 .col-md-4,
  .cid-u7yUzrZDH7 .col-md-5,
  .cid-u7yUzrZDH7 .col-md-6,
  .cid-u7yUzrZDH7 .col-md-7,
  .cid-u7yUzrZDH7 .col-md-8,
  .cid-u7yUzrZDH7 .col-md-9,
  .cid-u7yUzrZDH7 .col-md-auto,
  .cid-u7yUzrZDH7 .col-sm,
  .cid-u7yUzrZDH7 .col-sm-1,
  .cid-u7yUzrZDH7 .col-sm-10,
  .cid-u7yUzrZDH7 .col-sm-11,
  .cid-u7yUzrZDH7 .col-sm-12,
  .cid-u7yUzrZDH7 .col-sm-2,
  .cid-u7yUzrZDH7 .col-sm-3,
  .cid-u7yUzrZDH7 .col-sm-4,
  .cid-u7yUzrZDH7 .col-sm-5,
  .cid-u7yUzrZDH7 .col-sm-6,
  .cid-u7yUzrZDH7 .col-sm-7,
  .cid-u7yUzrZDH7 .col-sm-8,
  .cid-u7yUzrZDH7 .col-sm-9,
  .cid-u7yUzrZDH7 .col-sm-auto,
  .cid-u7yUzrZDH7 .col-xl,
  .cid-u7yUzrZDH7 .col-xl-1,
  .cid-u7yUzrZDH7 .col-xl-10,
  .cid-u7yUzrZDH7 .col-xl-11,
  .cid-u7yUzrZDH7 .col-xl-12,
  .cid-u7yUzrZDH7 .col-xl-2,
  .cid-u7yUzrZDH7 .col-xl-3,
  .cid-u7yUzrZDH7 .col-xl-4,
  .cid-u7yUzrZDH7 .col-xl-5,
  .cid-u7yUzrZDH7 .col-xl-6,
  .cid-u7yUzrZDH7 .col-xl-7,
  .cid-u7yUzrZDH7 .col-xl-8,
  .cid-u7yUzrZDH7 .col-xl-9,
  .cid-u7yUzrZDH7 .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yUzrZDH7 .content {
    text-align: left;
  }
  .cid-u7yUzrZDH7 .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yUzrZDH7 .logo_footer_box {
    position: relative;
  }
  .cid-u7yUzrZDH7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yUzrZDH7 .logo_footer {
    position: relative;
  }
  .cid-u7yUzrZDH7 .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yUzrZDH7 .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rQHuXKXaHV {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rQHuXKXaHV {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-t2jQvnJPkS {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t2jQvnJPkS .aktions_section {
  z-index: 99999;
}
.cid-t2jQvnJPkS .item:focus,
.cid-t2jQvnJPkS span:focus {
  outline: none;
}
.cid-t2jQvnJPkS .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-t2jQvnJPkS .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-t2jQvnJPkS .item-btn,
.cid-t2jQvnJPkS h4,
.cid-t2jQvnJPkS h5 {
  margin: 0;
}
.cid-t2jQvnJPkS .item-content {
  padding-top: 1rem;
}
.cid-t2jQvnJPkS .item-title {
  color: #ffffff;
}
.cid-t2jQvnJPkS .abstand {
  margin-top: -10px;
}
.cid-t2jQvnJPkS h2 {
  font-weight: 700 !important;
  padding-left: 0.3rem;
  padding-right: 0.6rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 0.2px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t2jQvnJPkS h1 {
  font-weight: 700 !important;
  padding-left: 0.3rem;
  padding-right: 0.6rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 0.2px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t2jQvnJPkS h5 {
  color: #a76645 !important;
}
.cid-t2jQvnJPkS h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-t2jQvnJPkS .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t2jQvnJPkS .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t2jQvnJPkS .item-subtitle {
  color: #1d1d1b;
}
.cid-t2jQvnJPkS .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-t2jQvnJPkS .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-t2jQvnJPkS .item-text {
  color: #1d1d1b;
}
.cid-t2jQvnJPkS .space_down_50 {
  margin-bottom: 50px;
}
.cid-t2jQvnJPkS item-text {
  color: #1d1d1b;
}
.cid-t2jQvnJPkS .hiddden {
  display: none !important;
}
.cid-t2jQvnJPkS .shoow {
  display: block !important;
}
.cid-t2jQvnJPkS a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-t2jQvnJPkS a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t2jQvnJPkS .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-t2jQvnJPkS .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-t2jQvnJPkS .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-t2jQvnJPkS .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-t2jQvnJPkS .aktions_logo_no_x_margin {
  margin: 15px 0;
  padding: 0px;
  width: 100%;
  left: 0%;
}
.cid-t2jQvnJPkS .embla {
  overflow: hidden;
}
.cid-t2jQvnJPkS .embla__container {
  display: flex;
  will-change: transform;
}
.cid-t2jQvnJPkS .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-t2jQvnJPkS .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-t2jQvnJPkS .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-t2jQvnJPkS .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-t2jQvnJPkS .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-t2jQvnJPkS .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-t2jQvnJPkS .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-t2jQvnJPkS .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-t2jQvnJPkS .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-t2jQvnJPkS .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-t2jQvnJPkS .item-content {
    margin-top: 1rem;
  }
  .cid-t2jQvnJPkS .item {
    padding-bottom: 1rem;
  }
  .cid-t2jQvnJPkS .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-t2jQvnJPkS h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-t2jQvnJPkS .item-wrapper {
    width: 35vw;
  }
  .cid-t2jQvnJPkS .embla__slide {
    padding: 0px;
  }
  .cid-t2jQvnJPkS .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-t2jQvnJPkS .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-t2jQvnJPkS .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-t2jQvnJPkS .embla__button {
    bottom: -0.5rem;
  }
}
.cid-t3EvWh4yye {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t3EvWh4yye .aktions_section {
  z-index: 99999;
}
.cid-t3EvWh4yye .item:focus,
.cid-t3EvWh4yye span:focus {
  outline: none;
}
.cid-t3EvWh4yye .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-t3EvWh4yye .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-t3EvWh4yye .item-btn,
.cid-t3EvWh4yye h4,
.cid-t3EvWh4yye h5 {
  margin: 0;
}
.cid-t3EvWh4yye .item-content {
  padding-top: 1rem;
}
.cid-t3EvWh4yye .item-title {
  color: #ffffff;
}
.cid-t3EvWh4yye .abstand {
  margin-top: -10px;
}
.cid-t3EvWh4yye h2 {
  font-weight: 700 !important;
  padding-left: 0.3rem;
  padding-right: 0.6rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 0.2px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t3EvWh4yye h5 {
  color: #a76645 !important;
}
.cid-t3EvWh4yye h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-t3EvWh4yye .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t3EvWh4yye .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t3EvWh4yye .item-subtitle {
  color: #1d1d1b;
}
.cid-t3EvWh4yye .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-t3EvWh4yye .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-t3EvWh4yye .item-text {
  color: #1d1d1b;
}
.cid-t3EvWh4yye .space_down_50 {
  margin-bottom: 50px;
}
.cid-t3EvWh4yye item-text {
  color: #1d1d1b;
}
.cid-t3EvWh4yye .hiddden {
  display: none !important;
}
.cid-t3EvWh4yye .shoow {
  display: block !important;
}
.cid-t3EvWh4yye a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-t3EvWh4yye a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t3EvWh4yye .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-t3EvWh4yye .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-t3EvWh4yye .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-t3EvWh4yye .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-t3EvWh4yye .embla {
  overflow: hidden;
}
.cid-t3EvWh4yye .embla__container {
  display: flex;
  will-change: transform;
}
.cid-t3EvWh4yye .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-t3EvWh4yye .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-t3EvWh4yye .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-t3EvWh4yye .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-t3EvWh4yye .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-t3EvWh4yye .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-t3EvWh4yye .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-t3EvWh4yye .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-t3EvWh4yye .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-t3EvWh4yye .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-t3EvWh4yye .item-content {
    margin-top: 1rem;
  }
  .cid-t3EvWh4yye .item {
    padding-bottom: 1rem;
  }
  .cid-t3EvWh4yye .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-t3EvWh4yye h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-t3EvWh4yye .item-wrapper {
    width: 35vw;
  }
  .cid-t3EvWh4yye .embla__slide {
    padding: 0px;
  }
  .cid-t3EvWh4yye .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-t3EvWh4yye .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-t3EvWh4yye .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-t3EvWh4yye .embla__button {
    bottom: -0.5rem;
  }
}
.cid-t3Ew1u9cxG {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t3Ew1u9cxG .aktions_section {
  z-index: 99999;
}
.cid-t3Ew1u9cxG .item:focus,
.cid-t3Ew1u9cxG span:focus {
  outline: none;
}
.cid-t3Ew1u9cxG .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-t3Ew1u9cxG .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-t3Ew1u9cxG .item-btn,
.cid-t3Ew1u9cxG h4,
.cid-t3Ew1u9cxG h5 {
  margin: 0;
}
.cid-t3Ew1u9cxG .item-content {
  padding-top: 1rem;
}
.cid-t3Ew1u9cxG .item-title {
  color: #ffffff;
}
.cid-t3Ew1u9cxG .abstand {
  margin-top: -10px;
}
.cid-t3Ew1u9cxG h2 {
  font-weight: 700 !important;
  padding-left: 0.3rem;
  padding-right: 0.6rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 0.2px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t3Ew1u9cxG h5 {
  color: #a76645 !important;
}
.cid-t3Ew1u9cxG h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-t3Ew1u9cxG .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t3Ew1u9cxG .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t3Ew1u9cxG .item-subtitle {
  color: #1d1d1b;
}
.cid-t3Ew1u9cxG .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-t3Ew1u9cxG .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-t3Ew1u9cxG .item-text {
  color: #1d1d1b;
}
.cid-t3Ew1u9cxG .space_down_50 {
  margin-bottom: 50px;
}
.cid-t3Ew1u9cxG item-text {
  color: #1d1d1b;
}
.cid-t3Ew1u9cxG .hiddden {
  display: none !important;
}
.cid-t3Ew1u9cxG .shoow {
  display: block !important;
}
.cid-t3Ew1u9cxG a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-t3Ew1u9cxG a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t3Ew1u9cxG .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-t3Ew1u9cxG .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-t3Ew1u9cxG .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-t3Ew1u9cxG .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-t3Ew1u9cxG .embla {
  overflow: hidden;
}
.cid-t3Ew1u9cxG .embla__container {
  display: flex;
  will-change: transform;
}
.cid-t3Ew1u9cxG .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-t3Ew1u9cxG .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-t3Ew1u9cxG .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-t3Ew1u9cxG .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-t3Ew1u9cxG .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-t3Ew1u9cxG .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-t3Ew1u9cxG .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-t3Ew1u9cxG .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-t3Ew1u9cxG .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-t3Ew1u9cxG .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-t3Ew1u9cxG .item-content {
    margin-top: 1rem;
  }
  .cid-t3Ew1u9cxG .item {
    padding-bottom: 1rem;
  }
  .cid-t3Ew1u9cxG .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-t3Ew1u9cxG h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-t3Ew1u9cxG .item-wrapper {
    width: 35vw;
  }
  .cid-t3Ew1u9cxG .embla__slide {
    padding: 0px;
  }
  .cid-t3Ew1u9cxG .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-t3Ew1u9cxG .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-t3Ew1u9cxG .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-t3Ew1u9cxG .embla__button {
    bottom: -0.5rem;
  }
}
.cid-t4SnbR1gyF {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t4SnbR1gyF .aktions_section {
  z-index: 99999;
}
.cid-t4SnbR1gyF .item:focus,
.cid-t4SnbR1gyF span:focus {
  outline: none;
}
.cid-t4SnbR1gyF .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-t4SnbR1gyF .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-t4SnbR1gyF .item-btn,
.cid-t4SnbR1gyF h4,
.cid-t4SnbR1gyF h5 {
  margin: 0;
}
.cid-t4SnbR1gyF .item-content {
  padding-top: 1rem;
}
.cid-t4SnbR1gyF .item-title {
  color: #ffffff;
}
.cid-t4SnbR1gyF .abstand {
  margin-top: -10px;
}
.cid-t4SnbR1gyF h2 {
  font-weight: 700 !important;
  padding-left: 0.3rem;
  padding-right: 0.6rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 0.2px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t4SnbR1gyF h5 {
  color: #a76645 !important;
}
.cid-t4SnbR1gyF h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-t4SnbR1gyF .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t4SnbR1gyF .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t4SnbR1gyF .item-subtitle {
  color: #1d1d1b;
}
.cid-t4SnbR1gyF .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-t4SnbR1gyF .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-t4SnbR1gyF .item-text {
  color: #1d1d1b;
}
.cid-t4SnbR1gyF .space_down_50 {
  margin-bottom: 50px;
}
.cid-t4SnbR1gyF item-text {
  color: #1d1d1b;
}
.cid-t4SnbR1gyF .hiddden {
  display: none !important;
}
.cid-t4SnbR1gyF .shoow {
  display: block !important;
}
.cid-t4SnbR1gyF a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-t4SnbR1gyF a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t4SnbR1gyF .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-t4SnbR1gyF .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-t4SnbR1gyF .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-t4SnbR1gyF .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-t4SnbR1gyF .embla {
  overflow: hidden;
}
.cid-t4SnbR1gyF .embla__container {
  display: flex;
  will-change: transform;
}
.cid-t4SnbR1gyF .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-t4SnbR1gyF .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-t4SnbR1gyF .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-t4SnbR1gyF .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-t4SnbR1gyF .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-t4SnbR1gyF .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-t4SnbR1gyF .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-t4SnbR1gyF .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-t4SnbR1gyF .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-t4SnbR1gyF .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-t4SnbR1gyF .item-content {
    margin-top: 1rem;
  }
  .cid-t4SnbR1gyF .item {
    padding-bottom: 1rem;
  }
  .cid-t4SnbR1gyF .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-t4SnbR1gyF h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-t4SnbR1gyF .item-wrapper {
    width: 35vw;
  }
  .cid-t4SnbR1gyF .embla__slide {
    padding: 0px;
  }
  .cid-t4SnbR1gyF .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-t4SnbR1gyF .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-t4SnbR1gyF .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-t4SnbR1gyF .embla__button {
    bottom: -0.5rem;
  }
}
.cid-t3EvRY4DKk {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t3EvRY4DKk .aktions_section {
  z-index: 99999;
}
.cid-t3EvRY4DKk .item:focus,
.cid-t3EvRY4DKk span:focus {
  outline: none;
}
.cid-t3EvRY4DKk .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-t3EvRY4DKk .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-t3EvRY4DKk .item-btn,
.cid-t3EvRY4DKk h4,
.cid-t3EvRY4DKk h5 {
  margin: 0;
}
.cid-t3EvRY4DKk .item-content {
  padding-top: 1rem;
}
.cid-t3EvRY4DKk .item-title {
  color: #ffffff;
}
.cid-t3EvRY4DKk .abstand {
  margin-top: -10px;
}
.cid-t3EvRY4DKk h2 {
  font-weight: 700 !important;
  padding-left: 0.3rem;
  padding-right: 0.6rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 0.2px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t3EvRY4DKk h5 {
  color: #a76645 !important;
}
.cid-t3EvRY4DKk h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-t3EvRY4DKk .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t3EvRY4DKk .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t3EvRY4DKk .item-subtitle {
  color: #1d1d1b;
}
.cid-t3EvRY4DKk .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-t3EvRY4DKk .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-t3EvRY4DKk .item-text {
  color: #1d1d1b;
}
.cid-t3EvRY4DKk .space_down_50 {
  margin-bottom: 50px;
}
.cid-t3EvRY4DKk item-text {
  color: #1d1d1b;
}
.cid-t3EvRY4DKk .hiddden {
  display: none !important;
}
.cid-t3EvRY4DKk .shoow {
  display: block !important;
}
.cid-t3EvRY4DKk a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-t3EvRY4DKk a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t3EvRY4DKk .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-t3EvRY4DKk .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-t3EvRY4DKk .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-t3EvRY4DKk .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-t3EvRY4DKk .embla {
  overflow: hidden;
}
.cid-t3EvRY4DKk .embla__container {
  display: flex;
  will-change: transform;
}
.cid-t3EvRY4DKk .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-t3EvRY4DKk .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-t3EvRY4DKk .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-t3EvRY4DKk .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-t3EvRY4DKk .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-t3EvRY4DKk .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-t3EvRY4DKk .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-t3EvRY4DKk .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-t3EvRY4DKk .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-t3EvRY4DKk .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-t3EvRY4DKk .item-content {
    margin-top: 1rem;
  }
  .cid-t3EvRY4DKk .item {
    padding-bottom: 1rem;
  }
  .cid-t3EvRY4DKk .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-t3EvRY4DKk h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-t3EvRY4DKk .item-wrapper {
    width: 35vw;
  }
  .cid-t3EvRY4DKk .embla__slide {
    padding: 0px;
  }
  .cid-t3EvRY4DKk .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-t3EvRY4DKk .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-t3EvRY4DKk .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-t3EvRY4DKk .embla__button {
    bottom: -0.5rem;
  }
}
.cid-tfr8X762mO {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tfr8X762mO .aktions_section {
  z-index: 99999;
}
.cid-tfr8X762mO .item:focus,
.cid-tfr8X762mO span:focus {
  outline: none;
}
.cid-tfr8X762mO .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-tfr8X762mO .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-tfr8X762mO .item-btn,
.cid-tfr8X762mO h4,
.cid-tfr8X762mO h5 {
  margin: 0;
}
.cid-tfr8X762mO .item-content {
  padding-top: 1rem;
}
.cid-tfr8X762mO .item-title {
  color: #ffffff;
}
.cid-tfr8X762mO .abstand {
  margin-top: -10px;
}
.cid-tfr8X762mO h2 {
  font-weight: 700 !important;
  padding-left: 0.3rem;
  padding-right: 0.6rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 0.2px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tfr8X762mO h5 {
  color: #a76645 !important;
}
.cid-tfr8X762mO h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-tfr8X762mO .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tfr8X762mO .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tfr8X762mO .item-subtitle {
  color: #1d1d1b;
}
.cid-tfr8X762mO .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-tfr8X762mO .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-tfr8X762mO .item-text {
  color: #1d1d1b;
}
.cid-tfr8X762mO .space_down_50 {
  margin-bottom: 50px;
}
.cid-tfr8X762mO item-text {
  color: #1d1d1b;
}
.cid-tfr8X762mO .hiddden {
  display: none !important;
}
.cid-tfr8X762mO .shoow {
  display: block !important;
}
.cid-tfr8X762mO a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tfr8X762mO a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tfr8X762mO .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-tfr8X762mO .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-tfr8X762mO .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-tfr8X762mO .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-tfr8X762mO .embla {
  overflow: hidden;
}
.cid-tfr8X762mO .embla__container {
  display: flex;
  will-change: transform;
}
.cid-tfr8X762mO .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-tfr8X762mO .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-tfr8X762mO .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-tfr8X762mO .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-tfr8X762mO .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-tfr8X762mO .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tfr8X762mO .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-tfr8X762mO .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-tfr8X762mO .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-tfr8X762mO .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-tfr8X762mO .item-content {
    margin-top: 1rem;
  }
  .cid-tfr8X762mO .item {
    padding-bottom: 1rem;
  }
  .cid-tfr8X762mO .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-tfr8X762mO h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-tfr8X762mO .item-wrapper {
    width: 35vw;
  }
  .cid-tfr8X762mO .embla__slide {
    padding: 0px;
  }
  .cid-tfr8X762mO .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-tfr8X762mO .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-tfr8X762mO .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-tfr8X762mO .embla__button {
    bottom: -0.5rem;
  }
}
.cid-tfrne7A806 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-tfrne7A806 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tfrne7A806 .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-tfrne7A806 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tfrne7A806 a svg polygon {
  fill: white !important;
}
.cid-tfrne7A806 a:hover {
  Color: #F9CEB2!important;
}
.cid-tfrne7A806 a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tfrne7A806 .btn-white-outline:hover,
.cid-tfrne7A806 .btn-white-outline:focus,
.cid-tfrne7A806 .btn-white-outline.focus,
.cid-tfrne7A806 .btn-white-outline.active,
.cid-tfrne7A806 .btn-black-outline:hover,
.cid-tfrne7A806 .btn-black-outline:focus,
.cid-tfrne7A806 .btn-black-outline.focus,
.cid-tfrne7A806 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tfrne7A806 .display-5 {
    line-height: 1;
  }
  .cid-tfrne7A806 .btn {
    font-size: 1.5rem !important;
  }
  .cid-tfrne7A806 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7yUjo4Pfg {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yUjo4Pfg .content {
    text-align: center;
  }
  .cid-u7yUjo4Pfg .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yUjo4Pfg .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yUjo4Pfg .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yUjo4Pfg .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yUjo4Pfg .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yUjo4Pfg .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yUjo4Pfg .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yUjo4Pfg .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yUjo4Pfg .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yUjo4Pfg .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yUjo4Pfg .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yUjo4Pfg .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yUjo4Pfg .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yUjo4Pfg H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yUjo4Pfg P {
  color: #ffffff;
}
.cid-u7yUjo4Pfg .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yUjo4Pfg .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yUjo4Pfg .logo_footer {
  position: relative;
}
.cid-u7yUjo4Pfg .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yUjo4Pfg .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yUjo4Pfg .col,
  .cid-u7yUjo4Pfg .col-1,
  .cid-u7yUjo4Pfg .col-10,
  .cid-u7yUjo4Pfg .col-11,
  .cid-u7yUjo4Pfg .col-12,
  .cid-u7yUjo4Pfg .col-2,
  .cid-u7yUjo4Pfg .col-3,
  .cid-u7yUjo4Pfg .col-4,
  .cid-u7yUjo4Pfg .col-5,
  .cid-u7yUjo4Pfg .col-6,
  .cid-u7yUjo4Pfg .col-7,
  .cid-u7yUjo4Pfg .col-8,
  .cid-u7yUjo4Pfg .col-9,
  .cid-u7yUjo4Pfg .col-auto,
  .cid-u7yUjo4Pfg .col-lg,
  .cid-u7yUjo4Pfg .col-lg-1,
  .cid-u7yUjo4Pfg .col-lg-10,
  .cid-u7yUjo4Pfg .col-lg-11,
  .cid-u7yUjo4Pfg .col-lg-12,
  .cid-u7yUjo4Pfg .col-lg-2,
  .cid-u7yUjo4Pfg .col-lg-3,
  .cid-u7yUjo4Pfg .col-lg-4,
  .cid-u7yUjo4Pfg .col-lg-5,
  .cid-u7yUjo4Pfg .col-lg-6,
  .cid-u7yUjo4Pfg .col-lg-7,
  .cid-u7yUjo4Pfg .col-lg-8,
  .cid-u7yUjo4Pfg .col-lg-9,
  .cid-u7yUjo4Pfg .col-lg-auto,
  .cid-u7yUjo4Pfg .col-md,
  .cid-u7yUjo4Pfg .col-md-1,
  .cid-u7yUjo4Pfg .col-md-10,
  .cid-u7yUjo4Pfg .col-md-11,
  .cid-u7yUjo4Pfg .col-md-12,
  .cid-u7yUjo4Pfg .col-md-2,
  .cid-u7yUjo4Pfg .col-md-3,
  .cid-u7yUjo4Pfg .col-md-4,
  .cid-u7yUjo4Pfg .col-md-5,
  .cid-u7yUjo4Pfg .col-md-6,
  .cid-u7yUjo4Pfg .col-md-7,
  .cid-u7yUjo4Pfg .col-md-8,
  .cid-u7yUjo4Pfg .col-md-9,
  .cid-u7yUjo4Pfg .col-md-auto,
  .cid-u7yUjo4Pfg .col-sm,
  .cid-u7yUjo4Pfg .col-sm-1,
  .cid-u7yUjo4Pfg .col-sm-10,
  .cid-u7yUjo4Pfg .col-sm-11,
  .cid-u7yUjo4Pfg .col-sm-12,
  .cid-u7yUjo4Pfg .col-sm-2,
  .cid-u7yUjo4Pfg .col-sm-3,
  .cid-u7yUjo4Pfg .col-sm-4,
  .cid-u7yUjo4Pfg .col-sm-5,
  .cid-u7yUjo4Pfg .col-sm-6,
  .cid-u7yUjo4Pfg .col-sm-7,
  .cid-u7yUjo4Pfg .col-sm-8,
  .cid-u7yUjo4Pfg .col-sm-9,
  .cid-u7yUjo4Pfg .col-sm-auto,
  .cid-u7yUjo4Pfg .col-xl,
  .cid-u7yUjo4Pfg .col-xl-1,
  .cid-u7yUjo4Pfg .col-xl-10,
  .cid-u7yUjo4Pfg .col-xl-11,
  .cid-u7yUjo4Pfg .col-xl-12,
  .cid-u7yUjo4Pfg .col-xl-2,
  .cid-u7yUjo4Pfg .col-xl-3,
  .cid-u7yUjo4Pfg .col-xl-4,
  .cid-u7yUjo4Pfg .col-xl-5,
  .cid-u7yUjo4Pfg .col-xl-6,
  .cid-u7yUjo4Pfg .col-xl-7,
  .cid-u7yUjo4Pfg .col-xl-8,
  .cid-u7yUjo4Pfg .col-xl-9,
  .cid-u7yUjo4Pfg .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yUjo4Pfg .content {
    text-align: left;
  }
  .cid-u7yUjo4Pfg .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yUjo4Pfg .logo_footer_box {
    position: relative;
  }
  .cid-u7yUjo4Pfg .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yUjo4Pfg .logo_footer {
    position: relative;
  }
  .cid-u7yUjo4Pfg .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yUjo4Pfg .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rR3XppI9Ex {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rR3XppI9Ex {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tWmzWyAfRV {
  background: #ffffff;
}
.cid-tWmzWyAfRV .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tWmzWyAfRV figcaption {
  position: relative;
}
.cid-tWmzWyAfRV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tWmzWyAfRV .image-block {
    width: 100% !important;
  }
}
.cid-sgN2ujZ9Lr {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-sgN2ujZ9Lr .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-sgN2ujZ9Lr h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-sgN2ujZ9Lr .space_down_50 {
  margin-bottom: 50px;
}
.cid-rROGYcBIHo {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rROGYcBIHo .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rROGYcBIHo h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rROGYcBIHo .space_down_50 {
  margin-bottom: 50px;
}
.cid-rROGYcBIHo .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tH525c7kRI {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tH525c7kRI .aktions_section {
  z-index: 99999;
}
.cid-tH525c7kRI .item:focus,
.cid-tH525c7kRI span:focus {
  outline: none;
}
.cid-tH525c7kRI .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-tH525c7kRI .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-tH525c7kRI .item-btn,
.cid-tH525c7kRI h4,
.cid-tH525c7kRI h5 {
  margin: 0;
}
.cid-tH525c7kRI .item-content {
  padding-top: 1rem;
}
.cid-tH525c7kRI .item-title {
  color: #ffffff;
}
.cid-tH525c7kRI .abstand {
  margin-top: -10px;
}
.cid-tH525c7kRI h5 {
  color: #a76645 !important;
}
.cid-tH525c7kRI h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-tH525c7kRI .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tH525c7kRI .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tH525c7kRI .item-subtitle {
  color: #1d1d1b;
}
.cid-tH525c7kRI .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-tH525c7kRI .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-tH525c7kRI .item-text {
  color: #1d1d1b;
}
.cid-tH525c7kRI h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tH525c7kRI .space_down_50 {
  margin-bottom: 50px;
}
.cid-tH525c7kRI item-text {
  color: #1d1d1b;
}
.cid-tH525c7kRI .hiddden {
  display: none !important;
}
.cid-tH525c7kRI .shoow {
  display: block !important;
}
.cid-tH525c7kRI a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tH525c7kRI a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tH525c7kRI .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-tH525c7kRI .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-tH525c7kRI .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-tH525c7kRI .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-tH525c7kRI .embla {
  overflow: hidden;
}
.cid-tH525c7kRI .embla__container {
  display: flex;
  will-change: transform;
}
.cid-tH525c7kRI .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-tH525c7kRI .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-tH525c7kRI .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-tH525c7kRI .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-tH525c7kRI .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-tH525c7kRI .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tH525c7kRI .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-tH525c7kRI .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-tH525c7kRI .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-tH525c7kRI .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-tH525c7kRI .item-content {
    margin-top: 1rem;
  }
  .cid-tH525c7kRI .item {
    padding-bottom: 1rem;
  }
  .cid-tH525c7kRI .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-tH525c7kRI h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-tH525c7kRI .item-wrapper {
    width: 35vw;
  }
  .cid-tH525c7kRI .embla__slide {
    padding: 0px;
  }
  .cid-tH525c7kRI .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-tH525c7kRI .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-tH525c7kRI .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-tH525c7kRI .embla__button {
    bottom: -0.5rem;
  }
}
.cid-rR4T3qD70H {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rR4T3qD70H .mbr-text {
  color: #1d1d1b;
}
.cid-rR4T3qD70H .mbr-text p {
  background: #f9ceb2;
  padding: 1rem 0px !important;
}
.cid-rR4T3qD70H h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rR4T3qD70H .space_down_50 {
  margin-bottom: 50px;
}
.cid-rR4T3qD70H p {
  line-height: 1.2;
}
.cid-rR4VHvEBuc {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rR4VHvEBuc .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rR4VHvEBuc .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rR4VHvEBuc .mbr-author-desc {
  color: #232;
}
.cid-rR4VHvEBuc .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rR4VHvEBuc .col-md-8 {
  max-width: 100%;
}
.cid-rR4VHvEBuc p {
  line-height: 1.2;
}
@media (max-width: 991px) {
  .cid-rR4VHvEBuc .mbr-figure,
  .cid-rR4VHvEBuc img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rR4VHvEBuc h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rR4VHvEBuc .text_block {
  margin-top: 70px;
}
.cid-rR4VHvEBuc .h2_block {
  margin-bottom: 20px;
}
.cid-rR4VHvEBuc .mbr-figure {
  align-self: flex-start;
}
.cid-rR4VHvEBuc .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rR4VHvEBuc a:hover {
  Color: #a76645 !important;
}
.cid-rR4VHvEBuc a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rR4VHvEBuc .btn-black-outline:hover,
.cid-rR4VHvEBuc .btn-black-outline:focus,
.cid-rR4VHvEBuc .btn-black-outline.focus,
.cid-rR4VHvEBuc .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rR4VHvEBuc .btn {
    font-size: 1.5rem !important;
  }
  .cid-rR4VHvEBuc .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rR4gfcfkWB {
  background: #ffffff;
}
.cid-rR4gfcfkWB .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rR4gfcfkWB figcaption {
  position: relative;
}
.cid-rR4gfcfkWB figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rR4gfcfkWB .image-block {
    width: 300% !important;
  }
}
.cid-ucQKl55uFH {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-ucQKl55uFH .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-ucQKl55uFH .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-ucQKl55uFH .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-ucQKl55uFH .mbr-figure,
  .cid-ucQKl55uFH img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-ucQKl55uFH .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-ucQKl55uFH .mbr-author-desc {
  color: #000000;
}
.cid-ucQKl55uFH h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ucQKl55uFH .text_block {
  margin-top: 0px;
}
.cid-ucQKl55uFH .h2_block {
  margin-bottom: 20px;
}
.cid-ucQKl55uFH .mbr-figure {
  align-self: flex-start;
}
.cid-ucQKl55uFH .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-ucQKl55uFH .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-ucQKl55uFH .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-ucQKl55uFH a:hover {
  Color: #a76645 !important;
}
.cid-ucQKl55uFH a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ucQKl55uFH .btn-black-outline:hover,
.cid-ucQKl55uFH .btn-black-outline:focus,
.cid-ucQKl55uFH .btn-black-outline.focus,
.cid-ucQKl55uFH .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ucQKl55uFH .display-5 {
    line-height: 1;
  }
  .cid-ucQKl55uFH .btn {
    font-size: 1.5rem !important;
  }
  .cid-ucQKl55uFH .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-ucQKl55uFH .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rR4ggsZTC9 {
  background: #ffffff;
}
.cid-rR4ggsZTC9 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rR4ggsZTC9 figcaption {
  position: relative;
}
.cid-rR4ggsZTC9 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rR4ggsZTC9 .image-block {
    width: 300% !important;
  }
}
.cid-rR4hiKyi2Z {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rR4hiKyi2Z .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-rR4hiKyi2Z .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-rR4hiKyi2Z .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rR4hiKyi2Z .mbr-figure,
  .cid-rR4hiKyi2Z img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rR4hiKyi2Z .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rR4hiKyi2Z h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rR4hiKyi2Z .h2_block {
  margin-bottom: 20px;
}
.cid-rR4hiKyi2Z .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-rRq7l8vBbr {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-4-1500x352.jpg");
}
.cid-rRq7l8vBbr H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-rRq7l8vBbr .mbr-section-subtitle {
  color: #000000;
}
.cid-rRq7l8vBbr span {
  visibility: hidden;
}
.cid-rRq7l8vBbr .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-rRq7l8vBbr span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-tPDiGKLkKw {
  background: #ffffff;
}
.cid-tPDiGKLkKw .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tPDiGKLkKw figcaption {
  position: relative;
}
.cid-tPDiGKLkKw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tPDiGKLkKw .image-block {
    width: 100% !important;
  }
}
.cid-tgK4HMTuq1 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-14-1500x622.jpg");
}
.cid-tgK4HMTuq1 P {
  color: #767676;
}
.cid-tgK4HMTuq1 .display-2 {
  font-size: 3rem;
  font-weight: 300;
}
.cid-tgK4HMTuq1 h2 {
  font-size: 6vw !important;
  font-weight: bold !important;
  text-align: center;
  line-height: 0.9em;
  color: white;
}
.cid-tgK4HMTuq1 .animation_center {
  padding: 5vh 0px;
}
.cid-tgK4HMTuq1 .banner {
  width: 100%;
  height: auto;
}
.cid-tgK4HMTuq1 .black {
  background-color: #fff !important;
}
.cid-tgK4HMTuq1 .AniContainer {
  padding: 5em 0em;
}
.cid-tgK4HMTuq1 span {
  visibility: hidden;
}
.cid-tgK4HMTuq1 span.blick {
  visibility: visible;
}
@media (max-width: 768px) {
  .cid-tgK4HMTuq1 .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-tgK4HMTuq1 .mbr-text,
.cid-tgK4HMTuq1 .mbr-section-btn {
  color: #ffffff;
}
.cid-teMFmiGfJf {
  padding-top: 75px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-teMFmiGfJf .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-teMFmiGfJf .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-teMFmiGfJf .mbr-author-desc {
  color: #ffffff;
}
.cid-teMFmiGfJf .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-teMFmiGfJf .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-teMFmiGfJf .mbr-figure,
  .cid-teMFmiGfJf img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-teMFmiGfJf h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-teMFmiGfJf .text_block {
  margin-top: 0px;
}
.cid-teMFmiGfJf .h2_block {
  margin-bottom: 20px;
}
.cid-teMFmiGfJf .mbr-figure {
  align-self: flex-start;
}
.cid-teMFmiGfJf .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: white !important;
}
.cid-teMFmiGfJf .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-teMFmiGfJf svg polygon {
  fill: white ;
}
.cid-teMFmiGfJf a:hover {
  Color: #F9CEB2 !important;
}
.cid-teMFmiGfJf a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-teMFmiGfJf .btn-black-outline:hover,
.cid-teMFmiGfJf .btn-black-outline:focus,
.cid-teMFmiGfJf .btn-black-outline.focus,
.cid-teMFmiGfJf .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-teMFmiGfJf .btn-white-outline:hover,
.cid-teMFmiGfJf .btn-white-outline:focus,
.cid-teMFmiGfJf .btn-white-outline.focus,
.cid-teMFmiGfJf .btn-white-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-teMFmiGfJf .display-5 {
    line-height: 1;
  }
  .cid-teMFmiGfJf .btn {
    font-size: 1.5rem !important;
  }
  .cid-teMFmiGfJf .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-teMFmiGfJf .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-teMFmiGfJf .content {
  padding-left: 3px;
}
.cid-tT2IgYovir {
  background: #ffffff;
}
.cid-tT2IgYovir .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tT2IgYovir figcaption {
  position: relative;
}
.cid-tT2IgYovir figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tT2IgYovir .image-block {
    width: 100% !important;
  }
}
.cid-rR4oZZkde8 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rR4oZZkde8 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rR4oZZkde8 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rR4oZZkde8 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rR4qiZkaxW {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-rR4qiZkaxW .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rR4qiZkaxW .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-rR4qiZkaxW .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tRI0I5gT0z {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-tRI0I5gT0z .mbr-text {
  color: #1d1d1b;
}
.cid-tRI0I5gT0z .mbr-text p {
  background: #f9ceb2;
  padding: 1rem 0px !important;
}
.cid-tRI0I5gT0z h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tRI0I5gT0z .space_down_50 {
  margin-bottom: 50px;
}
.cid-tRI0I5gT0z p {
  line-height: 1.2;
}
.cid-tWmAU0HetB {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-tWmAU0HetB .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tWmAU0HetB h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tWmAU0HetB .space_down_50 {
  margin-bottom: 50px;
}
.cid-tWmAf1ECGQ {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-tWmAf1ECGQ .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-tWmAf1ECGQ .video-block {
    width: 100% !important;
  }
}
.cid-tWmAf1ECGQ .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRgb2sc5fk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRgb2sc5fk .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRgb2sc5fk h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRgb2sc5fk .space_down_30 {
  margin-bottom: 30px;
}
.cid-rR4l8By8ek {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-7-1500x622.jpg");
}
.cid-rR4l8By8ek .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-rR4l8By8ek .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rR4l8By8ek .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rR4l8By8ek .mbr-figure,
  .cid-rR4l8By8ek img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rR4l8By8ek .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rR4l8By8ek .mbr-author-desc {
  color: #000000;
}
.cid-rR4l8By8ek h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #ffffff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rR4l8By8ek .text_block {
  margin-top: 0px;
}
.cid-rR4l8By8ek .h2_block {
  margin-bottom: 20px;
}
.cid-rR4l8By8ek .mbr-figure {
  align-self: flex-start;
}
.cid-rR4l8By8ek .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rR4l8By8ek .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rR4l8By8ek .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rR4l8By8ek .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rR4l8By8ek .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rR51I0nrSt {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rR51I0nrSt .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rR51I0nrSt h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rR51I0nrSt .space_down_50 {
  margin-bottom: 50px;
}
.cid-rR4uZCm19Y {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rR4uZCm19Y .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rR4uZCm19Y .video-block {
    width: 100% !important;
  }
}
.cid-rR4uZCm19Y .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ug8zUGZxJN {
  background: #ffffff;
}
.cid-ug8zUGZxJN .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ug8zUGZxJN figcaption {
  position: relative;
}
.cid-ug8zUGZxJN figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ug8zUGZxJN .image-block {
    width: 100% !important;
  }
}
.cid-u1DAPdtKgX {
  background: #000000;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-u1DAPdtKgX .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-u1DAPdtKgX .video-block {
    width: 100% !important;
  }
}
.cid-u1DAPdtKgX .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tWmBbwLNZ4 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tWmBbwLNZ4 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tWmBbwLNZ4 .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-tWmBbwLNZ4 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tWmBbwLNZ4 a svg polygon {
  fill: white !important;
}
.cid-tWmBbwLNZ4 a:hover {
  Color: #F9CEB2!important;
}
.cid-tWmBbwLNZ4 a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tWmBbwLNZ4 .btn-white-outline:hover,
.cid-tWmBbwLNZ4 .btn-white-outline:focus,
.cid-tWmBbwLNZ4 .btn-white-outline.focus,
.cid-tWmBbwLNZ4 .btn-white-outline.active,
.cid-tWmBbwLNZ4 .btn-black-outline:hover,
.cid-tWmBbwLNZ4 .btn-black-outline:focus,
.cid-tWmBbwLNZ4 .btn-black-outline.focus,
.cid-tWmBbwLNZ4 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tWmBbwLNZ4 .display-5 {
    line-height: 1;
  }
  .cid-tWmBbwLNZ4 .btn {
    font-size: 1.5rem !important;
  }
  .cid-tWmBbwLNZ4 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRq8xyxzlS {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-5-1500x302.jpg");
}
.cid-rRq8xyxzlS H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-rRq8xyxzlS .mbr-section-subtitle {
  color: #000000;
}
.cid-rRq8xyxzlS section {
  background-color: none;
}
.cid-rRq8xyxzlS .logo_footer {
  position: relative;
  right: 100px;
}
.cid-rR4vgqmoPN {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rR4vgqmoPN .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rR4vgqmoPN .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rR4vgqmoPN .mbr-author-desc {
  color: #232;
}
.cid-rR4vgqmoPN .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rR4vgqmoPN .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rR4vgqmoPN .mbr-figure,
  .cid-rR4vgqmoPN img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rR4vgqmoPN h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rR4vgqmoPN .text_block {
  margin-top: 70px;
}
.cid-rR4vgqmoPN .h2_block {
  margin-bottom: 20px;
}
.cid-rR4vgqmoPN .mbr-figure {
  align-self: flex-start;
}
.cid-rR4vgqmoPN .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}
.cid-rR4vgqmoPN .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rR4vgqmoPN a:hover {
  Color: #a76645 !important;
}
.cid-rR4vgqmoPN a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rR4vgqmoPN .btn-black-outline:hover,
.cid-rR4vgqmoPN .btn-black-outline:focus,
.cid-rR4vgqmoPN .btn-black-outline.focus,
.cid-rR4vgqmoPN .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rR4vgqmoPN .display-5 {
    line-height: 1;
  }
  .cid-rR4vgqmoPN .btn {
    font-size: 1.5rem !important;
  }
  .cid-rR4vgqmoPN .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-sJKY5J2AyN {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sJKY5J2AyN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sJKY5J2AyN p {
  color: #767676;
  text-align: left;
}
.cid-sJKY5J2AyN .card-box {
  padding-top: 2rem;
}
.cid-sJKY5J2AyN .card-wrapper {
  height: 100%;
}
.cid-sJKY5J2AyN P {
  color: #1d1d1b;
}
.cid-tWmzFjQwBX {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tWmzFjQwBX .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-tWmzFjQwBX h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tWmzFjQwBX .space_down_30 {
  margin-bottom: 30px;
}
.cid-tWmzFjQwBX .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u7yTzLezvX {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yTzLezvX .content {
    text-align: center;
  }
  .cid-u7yTzLezvX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yTzLezvX .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yTzLezvX .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yTzLezvX .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yTzLezvX .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yTzLezvX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yTzLezvX .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yTzLezvX .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yTzLezvX .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yTzLezvX .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yTzLezvX .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yTzLezvX .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yTzLezvX .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yTzLezvX H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yTzLezvX P {
  color: #ffffff;
}
.cid-u7yTzLezvX .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yTzLezvX .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yTzLezvX .logo_footer {
  position: relative;
}
.cid-u7yTzLezvX .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yTzLezvX .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yTzLezvX .col,
  .cid-u7yTzLezvX .col-1,
  .cid-u7yTzLezvX .col-10,
  .cid-u7yTzLezvX .col-11,
  .cid-u7yTzLezvX .col-12,
  .cid-u7yTzLezvX .col-2,
  .cid-u7yTzLezvX .col-3,
  .cid-u7yTzLezvX .col-4,
  .cid-u7yTzLezvX .col-5,
  .cid-u7yTzLezvX .col-6,
  .cid-u7yTzLezvX .col-7,
  .cid-u7yTzLezvX .col-8,
  .cid-u7yTzLezvX .col-9,
  .cid-u7yTzLezvX .col-auto,
  .cid-u7yTzLezvX .col-lg,
  .cid-u7yTzLezvX .col-lg-1,
  .cid-u7yTzLezvX .col-lg-10,
  .cid-u7yTzLezvX .col-lg-11,
  .cid-u7yTzLezvX .col-lg-12,
  .cid-u7yTzLezvX .col-lg-2,
  .cid-u7yTzLezvX .col-lg-3,
  .cid-u7yTzLezvX .col-lg-4,
  .cid-u7yTzLezvX .col-lg-5,
  .cid-u7yTzLezvX .col-lg-6,
  .cid-u7yTzLezvX .col-lg-7,
  .cid-u7yTzLezvX .col-lg-8,
  .cid-u7yTzLezvX .col-lg-9,
  .cid-u7yTzLezvX .col-lg-auto,
  .cid-u7yTzLezvX .col-md,
  .cid-u7yTzLezvX .col-md-1,
  .cid-u7yTzLezvX .col-md-10,
  .cid-u7yTzLezvX .col-md-11,
  .cid-u7yTzLezvX .col-md-12,
  .cid-u7yTzLezvX .col-md-2,
  .cid-u7yTzLezvX .col-md-3,
  .cid-u7yTzLezvX .col-md-4,
  .cid-u7yTzLezvX .col-md-5,
  .cid-u7yTzLezvX .col-md-6,
  .cid-u7yTzLezvX .col-md-7,
  .cid-u7yTzLezvX .col-md-8,
  .cid-u7yTzLezvX .col-md-9,
  .cid-u7yTzLezvX .col-md-auto,
  .cid-u7yTzLezvX .col-sm,
  .cid-u7yTzLezvX .col-sm-1,
  .cid-u7yTzLezvX .col-sm-10,
  .cid-u7yTzLezvX .col-sm-11,
  .cid-u7yTzLezvX .col-sm-12,
  .cid-u7yTzLezvX .col-sm-2,
  .cid-u7yTzLezvX .col-sm-3,
  .cid-u7yTzLezvX .col-sm-4,
  .cid-u7yTzLezvX .col-sm-5,
  .cid-u7yTzLezvX .col-sm-6,
  .cid-u7yTzLezvX .col-sm-7,
  .cid-u7yTzLezvX .col-sm-8,
  .cid-u7yTzLezvX .col-sm-9,
  .cid-u7yTzLezvX .col-sm-auto,
  .cid-u7yTzLezvX .col-xl,
  .cid-u7yTzLezvX .col-xl-1,
  .cid-u7yTzLezvX .col-xl-10,
  .cid-u7yTzLezvX .col-xl-11,
  .cid-u7yTzLezvX .col-xl-12,
  .cid-u7yTzLezvX .col-xl-2,
  .cid-u7yTzLezvX .col-xl-3,
  .cid-u7yTzLezvX .col-xl-4,
  .cid-u7yTzLezvX .col-xl-5,
  .cid-u7yTzLezvX .col-xl-6,
  .cid-u7yTzLezvX .col-xl-7,
  .cid-u7yTzLezvX .col-xl-8,
  .cid-u7yTzLezvX .col-xl-9,
  .cid-u7yTzLezvX .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yTzLezvX .content {
    text-align: left;
  }
  .cid-u7yTzLezvX .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yTzLezvX .logo_footer_box {
    position: relative;
  }
  .cid-u7yTzLezvX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yTzLezvX .logo_footer {
    position: relative;
  }
  .cid-u7yTzLezvX .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yTzLezvX .copyright > p {
  color: #f9ceb2;
}
.cid-t8asVadFMH :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-t8asVadFMH .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-t8asVadFMH .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-t8asVadFMH a {
  font-style: normal;
}
.cid-t8asVadFMH .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t8asVadFMH .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-t8asVadFMH .nav-item:focus,
.cid-t8asVadFMH .nav-link:focus {
  outline: none;
}
.cid-t8asVadFMH .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-t8asVadFMH .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-t8asVadFMH .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-t8asVadFMH .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t8asVadFMH .menu-logo {
  margin-right: auto;
}
.cid-t8asVadFMH .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-t8asVadFMH .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t8asVadFMH .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t8asVadFMH .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t8asVadFMH .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t8asVadFMH .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t8asVadFMH .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t8asVadFMH .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-t8asVadFMH .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t8asVadFMH .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t8asVadFMH .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t8asVadFMH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t8asVadFMH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8asVadFMH .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t8asVadFMH .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8asVadFMH .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-t8asVadFMH .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-t8asVadFMH .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t8asVadFMH .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t8asVadFMH .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t8asVadFMH .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t8asVadFMH .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-t8asVadFMH .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t8asVadFMH button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t8asVadFMH button.navbar-toggler:focus {
  outline: none;
}
.cid-t8asVadFMH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t8asVadFMH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t8asVadFMH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t8asVadFMH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t8asVadFMH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t8asVadFMH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8asVadFMH nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t8asVadFMH nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t8asVadFMH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8asVadFMH .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-t8asVadFMH .collapsed .btn {
  display: flex;
}
.cid-t8asVadFMH .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t8asVadFMH .collapsed .navbar-collapse.collapsing,
.cid-t8asVadFMH .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t8asVadFMH .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t8asVadFMH .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t8asVadFMH .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t8asVadFMH .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t8asVadFMH .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t8asVadFMH .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-t8asVadFMH .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t8asVadFMH .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-t8asVadFMH .collapsed button.navbar-toggler {
  display: block;
}
.cid-t8asVadFMH .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t8asVadFMH .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t8asVadFMH .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t8asVadFMH .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t8asVadFMH .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t8asVadFMH .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t8asVadFMH .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-t8asVadFMH .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-t8asVadFMH .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-t8asVadFMH .navbar-expand {
    flex-direction: column;
  }
  .cid-t8asVadFMH img {
    height: 3rem !important;
  }
  .cid-t8asVadFMH .btn {
    display: flex;
  }
  .cid-t8asVadFMH button.navbar-toggler {
    display: block;
  }
  .cid-t8asVadFMH .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t8asVadFMH .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t8asVadFMH .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t8asVadFMH .navbar-collapse.collapsing,
  .cid-t8asVadFMH .navbar-collapse.show {
    display: block !important;
  }
  .cid-t8asVadFMH .navbar-collapse.collapsing .navbar-nav,
  .cid-t8asVadFMH .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t8asVadFMH .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t8asVadFMH .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t8asVadFMH .navbar-collapse.collapsing .navbar-buttons,
  .cid-t8asVadFMH .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t8asVadFMH .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t8asVadFMH .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t8asVadFMH .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t8asVadFMH .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t8asVadFMH .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t8asVadFMH .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t8asVadFMH .logo_s,
  .cid-t8asVadFMH .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-t8asVadFMH .menu-logo {
    flex-shrink: 3;
  }
}
.cid-t8asVadFMH .navbar-collapse {
  flex-basis: auto;
}
.cid-t8asVadFMH .nav-link:hover,
.cid-t8asVadFMH .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-t8asVadFMH .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-t8asVadFMH .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-t8asVadFMH .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-t8asVadFMH .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-t8asVadFMH .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-t8asVadFMH a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8asVadFMH a:hover svg polygon,
.cid-t8asVadFMH a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8asVadFMH .hidden {
  display: none !important;
}
.cid-t8asVadFMH .shoow {
  display: block !important;
}
.cid-t8asVadFMH .navbar-logo a,
.cid-t8asVadFMH .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-t8asVadFMH .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-t8asVadFMH .logo_s {
    height: 2rem !important;
  }
  .cid-t8asVadFMH .navbar-logo a img {
    left: 20px;
  }
  .cid-t8asVadFMH .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-t8asVadFMH .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-t8asVadFMH .stoerer_head,
  .cid-t8asVadFMH .stoerer_text {
    grid-row: 1;
  }
  .cid-t8asVadFMH .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-t8asVadFMH a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-t8asVaUeCf {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-t8asVaUeCf {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-ta8VDGcUgI {
  background-image: url("../../../assets/images/asche-12-web-2000x1333.jpg");
}
.cid-ta8VDGcUgI h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #ffffff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ta8VDGcUgI .space_down_50 {
  margin-bottom: 50px;
}
.cid-ta8VDGcUgI H3 {
  color: #ffffff;
}
.cid-ta8Z1Ap5Iq {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ta8Z1Ap5Iq .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-ta8Z1Ap5Iq .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-ta8Z1Ap5Iq .mbr-author-desc {
  color: #1d1d1b;
}
.cid-ta8Z1Ap5Iq .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-ta8Z1Ap5Iq .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ta8Z1Ap5Iq .mbr-figure,
  .cid-ta8Z1Ap5Iq img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-ta8Z1Ap5Iq h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ta8Z1Ap5Iq .text_block {
  margin-top: 0px;
}
.cid-ta8Z1Ap5Iq .h2_block {
  margin-bottom: 20px;
}
.cid-ta8Z1Ap5Iq .mbr-figure {
  align-self: flex-start;
}
.cid-ta8Z1Ap5Iq .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-ta8Z1Ap5Iq .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-ta8Z1Ap5Iq a:hover {
  Color: #a76645 !important;
}
.cid-ta8Z1Ap5Iq a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ta8Z1Ap5Iq .btn-black-outline:hover,
.cid-ta8Z1Ap5Iq .btn-black-outline:focus,
.cid-ta8Z1Ap5Iq .btn-black-outline.focus,
.cid-ta8Z1Ap5Iq .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ta8Z1Ap5Iq .display-5 {
    line-height: 1;
  }
  .cid-ta8Z1Ap5Iq .btn {
    font-size: 1.5rem !important;
  }
  .cid-ta8Z1Ap5Iq .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-ta8Z1Ap5Iq .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-ta8Z1Ap5Iq .content {
  padding-left: 3px;
}
.cid-ta8ZXTsuc6 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ta8ZXTsuc6 .mbr-text,
.cid-ta8ZXTsuc6 blockquote {
  color: #767676;
}
.cid-ta8ZXTsuc6 .mbr-text {
  color: #1d1d1b;
}
.cid-ta8ZXTsuc6 .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-ta8ZXTsuc6 p {
  margin-bottom: 0px;
}
.cid-ta90GG2zns {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ta90GG2zns P {
  color: #767676;
}
.cid-ta90GG2zns .display-2 {
  font-size: 3rem;
  font-weight: 200;
}
.cid-ta90GG2zns .justify-content-md-right {
  justify-content: flex-end !important;
}
@media (max-width: 768px) {
  .cid-ta90GG2zns .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-ta94P1g8BQ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ta94P1g8BQ .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-ta94P1g8BQ .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-ta94P1g8BQ .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-ta94P1g8BQ .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-ta94P1g8BQ .mbr-figure img {
    width: 100% !important;
  }
}
.cid-ta94P1g8BQ .testimonial-text {
  text-align: left;
}
.cid-ta90gp2NaP {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ta90gp2NaP .mbr-text,
.cid-ta90gp2NaP blockquote {
  color: #767676;
}
.cid-ta90gp2NaP .mbr-text {
  color: #1d1d1b;
}
.cid-ta90gp2NaP .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-ta90gp2NaP p {
  margin-bottom: 0px;
}
.cid-t8asVbvf7m {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-t8asVbvf7m .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-t8asVbvf7m .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-t8asVbvf7m .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-t8asVbvf7m .mbr-figure,
  .cid-t8asVbvf7m img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-t8asVbvf7m .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-t8asVbvf7m .mbr-author-desc {
  color: #000000;
}
.cid-t8asVbvf7m .display-2 {
  font-family: 'Chivo', sans-serif;
  font-size: 3rem;
}
.cid-t8asVbvf7m .display-5 {
  line-height: 1.3;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .cid-t8asVbvf7m .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
  .cid-t8asVbvf7m .display-5 {
    line-height: 1;
  }
  .cid-t8asVbvf7m .btn {
    font-size: 1.5rem !important;
  }
  .cid-t8asVbvf7m .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-t8asVbvf7m .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-t8asVbvf7m h2 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t8asVbvf7m .text_block {
  margin-top: 0px;
}
.cid-t8asVbvf7m .h2_block {
  margin-bottom: 20px;
}
.cid-t8asVbvf7m .mbr-figure {
  align-self: flex-start;
}
.cid-t8asVbvf7m .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-t8asVbvf7m .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-t8asVbvf7m a svg polygon {
  fill: #1d1d1b;
}
.cid-t8asVbvf7m a:hover {
  Color: #a76645 !important;
}
.cid-t8asVbvf7m a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8asVbvf7m .btn-black-outline:hover,
.cid-t8asVbvf7m .btn-black-outline:focus,
.cid-t8asVbvf7m .btn-black-outline.focus,
.cid-t8asVbvf7m .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-t8asVbMgSa {
  background: #ffffff;
}
.cid-t8asVbMgSa .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-t8asVbMgSa figcaption {
  position: relative;
}
.cid-t8asVbMgSa figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t8asVbMgSa .image-block {
    width: 300% !important;
  }
}
.cid-uccF4UCFIJ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-uccF4UCFIJ .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-uccF4UCFIJ .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccF4UCFIJ .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccF4UCFIJ .mbr-figure,
  .cid-uccF4UCFIJ img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccF4UCFIJ .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccF4UCFIJ .mbr-author-desc {
  color: #000000;
}
.cid-uccF4UCFIJ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccF4UCFIJ .text_block {
  margin-top: 0px;
}
.cid-uccF4UCFIJ .h2_block {
  margin-bottom: 20px;
}
.cid-uccF4UCFIJ .mbr-figure {
  align-self: flex-start;
}
.cid-uccF4UCFIJ .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccF4UCFIJ .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccF4UCFIJ .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccF4UCFIJ a svg polygon {
  fill: white !important;
}
.cid-uccF4UCFIJ a:hover {
  Color: #F9CEB2!important;
}
.cid-uccF4UCFIJ a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccF4UCFIJ .btn-white-outline:hover,
.cid-uccF4UCFIJ .btn-white-outline:focus,
.cid-uccF4UCFIJ .btn-white-outline.focus,
.cid-uccF4UCFIJ .btn-white-outline.active,
.cid-uccF4UCFIJ .btn-black-outline:hover,
.cid-uccF4UCFIJ .btn-black-outline:focus,
.cid-uccF4UCFIJ .btn-black-outline.focus,
.cid-uccF4UCFIJ .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccF4UCFIJ .display-5 {
    line-height: 1;
  }
  .cid-uccF4UCFIJ .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccF4UCFIJ .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccF4UCFIJ .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-t8asVcgx0V {
  background: #ffffff;
}
.cid-t8asVcgx0V .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-t8asVcgx0V figcaption {
  position: relative;
}
.cid-t8asVcgx0V figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t8asVcgx0V .image-block {
    width: 300% !important;
  }
}
.cid-t8asVcG1tR {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t8asVcG1tR .aktions_section {
  z-index: 99999;
}
.cid-t8asVcG1tR .item:focus,
.cid-t8asVcG1tR span:focus {
  outline: none;
}
.cid-t8asVcG1tR .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-t8asVcG1tR .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-t8asVcG1tR .item-btn,
.cid-t8asVcG1tR h4,
.cid-t8asVcG1tR h5 {
  margin: 0;
}
.cid-t8asVcG1tR .item-content {
  padding-top: 1rem;
}
.cid-t8asVcG1tR .item-title {
  color: #ffffff;
}
.cid-t8asVcG1tR .abstand {
  margin-top: -10px;
}
.cid-t8asVcG1tR h2 {
  font-weight: 700 !important;
  padding-left: 0.3rem;
  padding-right: 0.6rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 0.2px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t8asVcG1tR h5 {
  color: #a76645 !important;
}
.cid-t8asVcG1tR h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-t8asVcG1tR .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8asVcG1tR .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8asVcG1tR .item-subtitle {
  color: #1d1d1b;
}
.cid-t8asVcG1tR .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-t8asVcG1tR .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-t8asVcG1tR .item-text {
  color: #1d1d1b;
}
.cid-t8asVcG1tR .space_down_50 {
  margin-bottom: 50px;
}
.cid-t8asVcG1tR item-text {
  color: #1d1d1b;
}
.cid-t8asVcG1tR .hiddden {
  display: none !important;
}
.cid-t8asVcG1tR .shoow {
  display: block !important;
}
.cid-t8asVcG1tR a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-t8asVcG1tR a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8asVcG1tR .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-t8asVcG1tR .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-t8asVcG1tR .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-t8asVcG1tR .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-t8asVcG1tR .embla {
  overflow: hidden;
}
.cid-t8asVcG1tR .embla__container {
  display: flex;
  will-change: transform;
}
.cid-t8asVcG1tR .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-t8asVcG1tR .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-t8asVcG1tR .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-t8asVcG1tR .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-t8asVcG1tR .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-t8asVcG1tR .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-t8asVcG1tR .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-t8asVcG1tR .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-t8asVcG1tR .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-t8asVcG1tR .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-t8asVcG1tR .item-content {
    margin-top: 1rem;
  }
  .cid-t8asVcG1tR .item {
    padding-bottom: 1rem;
  }
  .cid-t8asVcG1tR .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-t8asVcG1tR h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-t8asVcG1tR .item-wrapper {
    width: 35vw;
  }
  .cid-t8asVcG1tR .embla__slide {
    padding: 0px;
  }
  .cid-t8asVcG1tR .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-t8asVcG1tR .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-t8asVcG1tR .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-t8asVcG1tR .embla__button {
    bottom: -0.5rem;
  }
}
.cid-t8asVcs9rJ {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-15-2000x1333.png");
}
.cid-t8asVcs9rJ H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-t8asVcs9rJ .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-t8asVcs9rJ .breites_Zitat,
  .cid-t8asVcs9rJ .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-u7A9cpXXay {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7A9cpXXay .content {
    text-align: center;
  }
  .cid-u7A9cpXXay .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7A9cpXXay .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7A9cpXXay .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7A9cpXXay .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7A9cpXXay .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7A9cpXXay .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7A9cpXXay .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7A9cpXXay .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7A9cpXXay .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7A9cpXXay .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7A9cpXXay .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7A9cpXXay .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7A9cpXXay .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7A9cpXXay H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7A9cpXXay P {
  color: #ffffff;
}
.cid-u7A9cpXXay .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7A9cpXXay .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7A9cpXXay .logo_footer {
  position: relative;
}
.cid-u7A9cpXXay .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7A9cpXXay .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7A9cpXXay .col,
  .cid-u7A9cpXXay .col-1,
  .cid-u7A9cpXXay .col-10,
  .cid-u7A9cpXXay .col-11,
  .cid-u7A9cpXXay .col-12,
  .cid-u7A9cpXXay .col-2,
  .cid-u7A9cpXXay .col-3,
  .cid-u7A9cpXXay .col-4,
  .cid-u7A9cpXXay .col-5,
  .cid-u7A9cpXXay .col-6,
  .cid-u7A9cpXXay .col-7,
  .cid-u7A9cpXXay .col-8,
  .cid-u7A9cpXXay .col-9,
  .cid-u7A9cpXXay .col-auto,
  .cid-u7A9cpXXay .col-lg,
  .cid-u7A9cpXXay .col-lg-1,
  .cid-u7A9cpXXay .col-lg-10,
  .cid-u7A9cpXXay .col-lg-11,
  .cid-u7A9cpXXay .col-lg-12,
  .cid-u7A9cpXXay .col-lg-2,
  .cid-u7A9cpXXay .col-lg-3,
  .cid-u7A9cpXXay .col-lg-4,
  .cid-u7A9cpXXay .col-lg-5,
  .cid-u7A9cpXXay .col-lg-6,
  .cid-u7A9cpXXay .col-lg-7,
  .cid-u7A9cpXXay .col-lg-8,
  .cid-u7A9cpXXay .col-lg-9,
  .cid-u7A9cpXXay .col-lg-auto,
  .cid-u7A9cpXXay .col-md,
  .cid-u7A9cpXXay .col-md-1,
  .cid-u7A9cpXXay .col-md-10,
  .cid-u7A9cpXXay .col-md-11,
  .cid-u7A9cpXXay .col-md-12,
  .cid-u7A9cpXXay .col-md-2,
  .cid-u7A9cpXXay .col-md-3,
  .cid-u7A9cpXXay .col-md-4,
  .cid-u7A9cpXXay .col-md-5,
  .cid-u7A9cpXXay .col-md-6,
  .cid-u7A9cpXXay .col-md-7,
  .cid-u7A9cpXXay .col-md-8,
  .cid-u7A9cpXXay .col-md-9,
  .cid-u7A9cpXXay .col-md-auto,
  .cid-u7A9cpXXay .col-sm,
  .cid-u7A9cpXXay .col-sm-1,
  .cid-u7A9cpXXay .col-sm-10,
  .cid-u7A9cpXXay .col-sm-11,
  .cid-u7A9cpXXay .col-sm-12,
  .cid-u7A9cpXXay .col-sm-2,
  .cid-u7A9cpXXay .col-sm-3,
  .cid-u7A9cpXXay .col-sm-4,
  .cid-u7A9cpXXay .col-sm-5,
  .cid-u7A9cpXXay .col-sm-6,
  .cid-u7A9cpXXay .col-sm-7,
  .cid-u7A9cpXXay .col-sm-8,
  .cid-u7A9cpXXay .col-sm-9,
  .cid-u7A9cpXXay .col-sm-auto,
  .cid-u7A9cpXXay .col-xl,
  .cid-u7A9cpXXay .col-xl-1,
  .cid-u7A9cpXXay .col-xl-10,
  .cid-u7A9cpXXay .col-xl-11,
  .cid-u7A9cpXXay .col-xl-12,
  .cid-u7A9cpXXay .col-xl-2,
  .cid-u7A9cpXXay .col-xl-3,
  .cid-u7A9cpXXay .col-xl-4,
  .cid-u7A9cpXXay .col-xl-5,
  .cid-u7A9cpXXay .col-xl-6,
  .cid-u7A9cpXXay .col-xl-7,
  .cid-u7A9cpXXay .col-xl-8,
  .cid-u7A9cpXXay .col-xl-9,
  .cid-u7A9cpXXay .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7A9cpXXay .content {
    text-align: left;
  }
  .cid-u7A9cpXXay .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7A9cpXXay .logo_footer_box {
    position: relative;
  }
  .cid-u7A9cpXXay .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7A9cpXXay .logo_footer {
    position: relative;
  }
  .cid-u7A9cpXXay .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7A9cpXXay .copyright > p {
  color: #f9ceb2;
}
.cid-tdCJv2Zspi :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-tdCJv2Zspi .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-tdCJv2Zspi .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tdCJv2Zspi a {
  font-style: normal;
}
.cid-tdCJv2Zspi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tdCJv2Zspi .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tdCJv2Zspi .nav-item:focus,
.cid-tdCJv2Zspi .nav-link:focus {
  outline: none;
}
.cid-tdCJv2Zspi .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-tdCJv2Zspi .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-tdCJv2Zspi .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tdCJv2Zspi .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tdCJv2Zspi .menu-logo {
  margin-right: auto;
}
.cid-tdCJv2Zspi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-tdCJv2Zspi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tdCJv2Zspi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tdCJv2Zspi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tdCJv2Zspi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tdCJv2Zspi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tdCJv2Zspi .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tdCJv2Zspi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-tdCJv2Zspi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tdCJv2Zspi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tdCJv2Zspi .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tdCJv2Zspi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tdCJv2Zspi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdCJv2Zspi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tdCJv2Zspi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdCJv2Zspi .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-tdCJv2Zspi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-tdCJv2Zspi .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tdCJv2Zspi .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tdCJv2Zspi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tdCJv2Zspi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tdCJv2Zspi .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-tdCJv2Zspi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tdCJv2Zspi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tdCJv2Zspi button.navbar-toggler:focus {
  outline: none;
}
.cid-tdCJv2Zspi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tdCJv2Zspi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tdCJv2Zspi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tdCJv2Zspi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tdCJv2Zspi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tdCJv2Zspi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tdCJv2Zspi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tdCJv2Zspi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tdCJv2Zspi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tdCJv2Zspi .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tdCJv2Zspi .collapsed .btn {
  display: flex;
}
.cid-tdCJv2Zspi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tdCJv2Zspi .collapsed .navbar-collapse.collapsing,
.cid-tdCJv2Zspi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tdCJv2Zspi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tdCJv2Zspi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tdCJv2Zspi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tdCJv2Zspi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tdCJv2Zspi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tdCJv2Zspi .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-tdCJv2Zspi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tdCJv2Zspi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tdCJv2Zspi .collapsed button.navbar-toggler {
  display: block;
}
.cid-tdCJv2Zspi .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tdCJv2Zspi .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tdCJv2Zspi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tdCJv2Zspi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tdCJv2Zspi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tdCJv2Zspi .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tdCJv2Zspi .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-tdCJv2Zspi .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-tdCJv2Zspi .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-tdCJv2Zspi .navbar-expand {
    flex-direction: column;
  }
  .cid-tdCJv2Zspi img {
    height: 3rem !important;
  }
  .cid-tdCJv2Zspi .btn {
    display: flex;
  }
  .cid-tdCJv2Zspi button.navbar-toggler {
    display: block;
  }
  .cid-tdCJv2Zspi .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tdCJv2Zspi .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tdCJv2Zspi .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tdCJv2Zspi .navbar-collapse.collapsing,
  .cid-tdCJv2Zspi .navbar-collapse.show {
    display: block !important;
  }
  .cid-tdCJv2Zspi .navbar-collapse.collapsing .navbar-nav,
  .cid-tdCJv2Zspi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tdCJv2Zspi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tdCJv2Zspi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tdCJv2Zspi .navbar-collapse.collapsing .navbar-buttons,
  .cid-tdCJv2Zspi .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tdCJv2Zspi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tdCJv2Zspi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tdCJv2Zspi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tdCJv2Zspi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tdCJv2Zspi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tdCJv2Zspi .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tdCJv2Zspi .logo_s,
  .cid-tdCJv2Zspi .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-tdCJv2Zspi .menu-logo {
    flex-shrink: 3;
  }
}
.cid-tdCJv2Zspi .navbar-collapse {
  flex-basis: auto;
}
.cid-tdCJv2Zspi .nav-link:hover,
.cid-tdCJv2Zspi .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-tdCJv2Zspi .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-tdCJv2Zspi .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-tdCJv2Zspi .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-tdCJv2Zspi .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-tdCJv2Zspi .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-tdCJv2Zspi a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tdCJv2Zspi a:hover svg polygon,
.cid-tdCJv2Zspi a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tdCJv2Zspi .hidden {
  display: none !important;
}
.cid-tdCJv2Zspi .shoow {
  display: block !important;
}
.cid-tdCJv2Zspi .navbar-logo a,
.cid-tdCJv2Zspi .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tdCJv2Zspi .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tdCJv2Zspi .logo_s {
    height: 2rem !important;
  }
  .cid-tdCJv2Zspi .navbar-logo a img {
    left: 20px;
  }
  .cid-tdCJv2Zspi .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-tdCJv2Zspi .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-tdCJv2Zspi .stoerer_head,
  .cid-tdCJv2Zspi .stoerer_text {
    grid-row: 1;
  }
  .cid-tdCJv2Zspi .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-tdCJv2Zspi a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-tdCJv3roPD {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-tdCJv3roPD {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tdCLlj9AdF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tdCLlj9AdF .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-tdCLlj9AdF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tdCLlj9AdF .space_down_30 {
  margin-bottom: 30px;
}
.cid-tdCLlj9AdF .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-te7rBBfaF6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-te7rBBfaF6 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-te7rBBfaF6 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-te7rBBfaF6 .space_down_30 {
  margin-bottom: 30px;
}
.cid-te7rBBfaF6 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-te7rBBfaF6 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-te7rBBfaF6 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-te7rBBfaF6 .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-te7rBBfaF6 a:hover {
  Color: #a76645;
}
.cid-te7rBBfaF6 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-te7rBBfaF6 .btn-black-outline:hover,
.cid-te7rBBfaF6 .btn-black-outline:focus,
.cid-te7rBBfaF6 .btn-black-outline.focus,
.cid-te7rBBfaF6 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-te7rBBfaF6 .display-5 {
    line-height: 1;
  }
  .cid-te7rBBfaF6 .btn {
    font-size: 1.5rem !important;
  }
  .cid-te7rBBfaF6 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7A9hCvq1L {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7A9hCvq1L .content {
    text-align: center;
  }
  .cid-u7A9hCvq1L .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7A9hCvq1L .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7A9hCvq1L .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7A9hCvq1L .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7A9hCvq1L .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7A9hCvq1L .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7A9hCvq1L .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7A9hCvq1L .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7A9hCvq1L .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7A9hCvq1L .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7A9hCvq1L .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7A9hCvq1L .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7A9hCvq1L .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7A9hCvq1L H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7A9hCvq1L P {
  color: #ffffff;
}
.cid-u7A9hCvq1L .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7A9hCvq1L .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7A9hCvq1L .logo_footer {
  position: relative;
}
.cid-u7A9hCvq1L .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7A9hCvq1L .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7A9hCvq1L .col,
  .cid-u7A9hCvq1L .col-1,
  .cid-u7A9hCvq1L .col-10,
  .cid-u7A9hCvq1L .col-11,
  .cid-u7A9hCvq1L .col-12,
  .cid-u7A9hCvq1L .col-2,
  .cid-u7A9hCvq1L .col-3,
  .cid-u7A9hCvq1L .col-4,
  .cid-u7A9hCvq1L .col-5,
  .cid-u7A9hCvq1L .col-6,
  .cid-u7A9hCvq1L .col-7,
  .cid-u7A9hCvq1L .col-8,
  .cid-u7A9hCvq1L .col-9,
  .cid-u7A9hCvq1L .col-auto,
  .cid-u7A9hCvq1L .col-lg,
  .cid-u7A9hCvq1L .col-lg-1,
  .cid-u7A9hCvq1L .col-lg-10,
  .cid-u7A9hCvq1L .col-lg-11,
  .cid-u7A9hCvq1L .col-lg-12,
  .cid-u7A9hCvq1L .col-lg-2,
  .cid-u7A9hCvq1L .col-lg-3,
  .cid-u7A9hCvq1L .col-lg-4,
  .cid-u7A9hCvq1L .col-lg-5,
  .cid-u7A9hCvq1L .col-lg-6,
  .cid-u7A9hCvq1L .col-lg-7,
  .cid-u7A9hCvq1L .col-lg-8,
  .cid-u7A9hCvq1L .col-lg-9,
  .cid-u7A9hCvq1L .col-lg-auto,
  .cid-u7A9hCvq1L .col-md,
  .cid-u7A9hCvq1L .col-md-1,
  .cid-u7A9hCvq1L .col-md-10,
  .cid-u7A9hCvq1L .col-md-11,
  .cid-u7A9hCvq1L .col-md-12,
  .cid-u7A9hCvq1L .col-md-2,
  .cid-u7A9hCvq1L .col-md-3,
  .cid-u7A9hCvq1L .col-md-4,
  .cid-u7A9hCvq1L .col-md-5,
  .cid-u7A9hCvq1L .col-md-6,
  .cid-u7A9hCvq1L .col-md-7,
  .cid-u7A9hCvq1L .col-md-8,
  .cid-u7A9hCvq1L .col-md-9,
  .cid-u7A9hCvq1L .col-md-auto,
  .cid-u7A9hCvq1L .col-sm,
  .cid-u7A9hCvq1L .col-sm-1,
  .cid-u7A9hCvq1L .col-sm-10,
  .cid-u7A9hCvq1L .col-sm-11,
  .cid-u7A9hCvq1L .col-sm-12,
  .cid-u7A9hCvq1L .col-sm-2,
  .cid-u7A9hCvq1L .col-sm-3,
  .cid-u7A9hCvq1L .col-sm-4,
  .cid-u7A9hCvq1L .col-sm-5,
  .cid-u7A9hCvq1L .col-sm-6,
  .cid-u7A9hCvq1L .col-sm-7,
  .cid-u7A9hCvq1L .col-sm-8,
  .cid-u7A9hCvq1L .col-sm-9,
  .cid-u7A9hCvq1L .col-sm-auto,
  .cid-u7A9hCvq1L .col-xl,
  .cid-u7A9hCvq1L .col-xl-1,
  .cid-u7A9hCvq1L .col-xl-10,
  .cid-u7A9hCvq1L .col-xl-11,
  .cid-u7A9hCvq1L .col-xl-12,
  .cid-u7A9hCvq1L .col-xl-2,
  .cid-u7A9hCvq1L .col-xl-3,
  .cid-u7A9hCvq1L .col-xl-4,
  .cid-u7A9hCvq1L .col-xl-5,
  .cid-u7A9hCvq1L .col-xl-6,
  .cid-u7A9hCvq1L .col-xl-7,
  .cid-u7A9hCvq1L .col-xl-8,
  .cid-u7A9hCvq1L .col-xl-9,
  .cid-u7A9hCvq1L .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7A9hCvq1L .content {
    text-align: left;
  }
  .cid-u7A9hCvq1L .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7A9hCvq1L .logo_footer_box {
    position: relative;
  }
  .cid-u7A9hCvq1L .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7A9hCvq1L .logo_footer {
    position: relative;
  }
  .cid-u7A9hCvq1L .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7A9hCvq1L .copyright > p {
  color: #f9ceb2;
}
.cid-tdCKkXb2qY :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-tdCKkXb2qY .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-tdCKkXb2qY .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tdCKkXb2qY a {
  font-style: normal;
}
.cid-tdCKkXb2qY .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tdCKkXb2qY .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tdCKkXb2qY .nav-item:focus,
.cid-tdCKkXb2qY .nav-link:focus {
  outline: none;
}
.cid-tdCKkXb2qY .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-tdCKkXb2qY .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-tdCKkXb2qY .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tdCKkXb2qY .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tdCKkXb2qY .menu-logo {
  margin-right: auto;
}
.cid-tdCKkXb2qY .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-tdCKkXb2qY .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tdCKkXb2qY .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tdCKkXb2qY .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tdCKkXb2qY .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tdCKkXb2qY .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tdCKkXb2qY .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tdCKkXb2qY .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-tdCKkXb2qY .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tdCKkXb2qY .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tdCKkXb2qY .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tdCKkXb2qY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tdCKkXb2qY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tdCKkXb2qY .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tdCKkXb2qY .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tdCKkXb2qY .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-tdCKkXb2qY .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-tdCKkXb2qY .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tdCKkXb2qY .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tdCKkXb2qY .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tdCKkXb2qY .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tdCKkXb2qY .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-tdCKkXb2qY .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tdCKkXb2qY button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tdCKkXb2qY button.navbar-toggler:focus {
  outline: none;
}
.cid-tdCKkXb2qY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tdCKkXb2qY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tdCKkXb2qY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tdCKkXb2qY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tdCKkXb2qY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tdCKkXb2qY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tdCKkXb2qY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tdCKkXb2qY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tdCKkXb2qY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tdCKkXb2qY .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tdCKkXb2qY .collapsed .btn {
  display: flex;
}
.cid-tdCKkXb2qY .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tdCKkXb2qY .collapsed .navbar-collapse.collapsing,
.cid-tdCKkXb2qY .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tdCKkXb2qY .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tdCKkXb2qY .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tdCKkXb2qY .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tdCKkXb2qY .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tdCKkXb2qY .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tdCKkXb2qY .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-tdCKkXb2qY .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tdCKkXb2qY .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tdCKkXb2qY .collapsed button.navbar-toggler {
  display: block;
}
.cid-tdCKkXb2qY .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tdCKkXb2qY .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tdCKkXb2qY .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tdCKkXb2qY .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tdCKkXb2qY .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tdCKkXb2qY .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tdCKkXb2qY .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-tdCKkXb2qY .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-tdCKkXb2qY .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-tdCKkXb2qY .navbar-expand {
    flex-direction: column;
  }
  .cid-tdCKkXb2qY img {
    height: 3rem !important;
  }
  .cid-tdCKkXb2qY .btn {
    display: flex;
  }
  .cid-tdCKkXb2qY button.navbar-toggler {
    display: block;
  }
  .cid-tdCKkXb2qY .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tdCKkXb2qY .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tdCKkXb2qY .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tdCKkXb2qY .navbar-collapse.collapsing,
  .cid-tdCKkXb2qY .navbar-collapse.show {
    display: block !important;
  }
  .cid-tdCKkXb2qY .navbar-collapse.collapsing .navbar-nav,
  .cid-tdCKkXb2qY .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tdCKkXb2qY .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tdCKkXb2qY .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tdCKkXb2qY .navbar-collapse.collapsing .navbar-buttons,
  .cid-tdCKkXb2qY .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tdCKkXb2qY .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tdCKkXb2qY .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tdCKkXb2qY .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tdCKkXb2qY .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tdCKkXb2qY .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tdCKkXb2qY .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tdCKkXb2qY .logo_s,
  .cid-tdCKkXb2qY .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-tdCKkXb2qY .menu-logo {
    flex-shrink: 3;
  }
}
.cid-tdCKkXb2qY .navbar-collapse {
  flex-basis: auto;
}
.cid-tdCKkXb2qY .nav-link:hover,
.cid-tdCKkXb2qY .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-tdCKkXb2qY .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-tdCKkXb2qY .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-tdCKkXb2qY .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-tdCKkXb2qY .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-tdCKkXb2qY .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-tdCKkXb2qY a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tdCKkXb2qY a:hover svg polygon,
.cid-tdCKkXb2qY a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tdCKkXb2qY .hidden {
  display: none !important;
}
.cid-tdCKkXb2qY .shoow {
  display: block !important;
}
.cid-tdCKkXb2qY .navbar-logo a,
.cid-tdCKkXb2qY .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tdCKkXb2qY .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tdCKkXb2qY .logo_s {
    height: 2rem !important;
  }
  .cid-tdCKkXb2qY .navbar-logo a img {
    left: 20px;
  }
  .cid-tdCKkXb2qY .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-tdCKkXb2qY .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-tdCKkXb2qY .stoerer_head,
  .cid-tdCKkXb2qY .stoerer_text {
    grid-row: 1;
  }
  .cid-tdCKkXb2qY .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-tdCKkXb2qY a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-tdCKkXPeRP {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-tdCKkXPeRP {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-te6tO8gg9r {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-te6tO8gg9r .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-te6tO8gg9r h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-te6tO8gg9r .space_down_30 {
  margin-bottom: 30px;
}
.cid-te6tO8gg9r .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-te6rqLMTph {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-te6rqLMTph h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-te6rqLMTph p {
  color: #767676;
  text-align: left;
}
.cid-te6rqLMTph .card-box {
  padding-top: 2rem;
}
.cid-te6rqLMTph .card-wrapper {
  height: 100%;
}
.cid-te6rqLMTph P {
  color: #1d1d1b;
}
.cid-te6rqLMTph .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-te6rqLMTph .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-te6rqLMTph .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-te6rqLMTph a:hover {
  Color: #a76645;
}
.cid-te6rqLMTph a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-te6rqLMTph .btn-black-outline:hover,
.cid-te6rqLMTph .btn-black-outline:focus,
.cid-te6rqLMTph .btn-black-outline.focus,
.cid-te6rqLMTph .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-te6rqLMTph .display-5 {
    line-height: 1;
  }
  .cid-te6rqLMTph .btn {
    font-size: 1.5rem !important;
  }
  .cid-te6rqLMTph .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tdCMeRRPxq {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tdCMeRRPxq .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tdCMeRRPxq h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tdCMeRRPxq .space_down_50 {
  margin-bottom: 50px;
}
.cid-tdCMeRRPxq .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u7A9k9vh53 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7A9k9vh53 .content {
    text-align: center;
  }
  .cid-u7A9k9vh53 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7A9k9vh53 .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7A9k9vh53 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7A9k9vh53 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7A9k9vh53 .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7A9k9vh53 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7A9k9vh53 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7A9k9vh53 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7A9k9vh53 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7A9k9vh53 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7A9k9vh53 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7A9k9vh53 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7A9k9vh53 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7A9k9vh53 H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7A9k9vh53 P {
  color: #ffffff;
}
.cid-u7A9k9vh53 .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7A9k9vh53 .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7A9k9vh53 .logo_footer {
  position: relative;
}
.cid-u7A9k9vh53 .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7A9k9vh53 .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7A9k9vh53 .col,
  .cid-u7A9k9vh53 .col-1,
  .cid-u7A9k9vh53 .col-10,
  .cid-u7A9k9vh53 .col-11,
  .cid-u7A9k9vh53 .col-12,
  .cid-u7A9k9vh53 .col-2,
  .cid-u7A9k9vh53 .col-3,
  .cid-u7A9k9vh53 .col-4,
  .cid-u7A9k9vh53 .col-5,
  .cid-u7A9k9vh53 .col-6,
  .cid-u7A9k9vh53 .col-7,
  .cid-u7A9k9vh53 .col-8,
  .cid-u7A9k9vh53 .col-9,
  .cid-u7A9k9vh53 .col-auto,
  .cid-u7A9k9vh53 .col-lg,
  .cid-u7A9k9vh53 .col-lg-1,
  .cid-u7A9k9vh53 .col-lg-10,
  .cid-u7A9k9vh53 .col-lg-11,
  .cid-u7A9k9vh53 .col-lg-12,
  .cid-u7A9k9vh53 .col-lg-2,
  .cid-u7A9k9vh53 .col-lg-3,
  .cid-u7A9k9vh53 .col-lg-4,
  .cid-u7A9k9vh53 .col-lg-5,
  .cid-u7A9k9vh53 .col-lg-6,
  .cid-u7A9k9vh53 .col-lg-7,
  .cid-u7A9k9vh53 .col-lg-8,
  .cid-u7A9k9vh53 .col-lg-9,
  .cid-u7A9k9vh53 .col-lg-auto,
  .cid-u7A9k9vh53 .col-md,
  .cid-u7A9k9vh53 .col-md-1,
  .cid-u7A9k9vh53 .col-md-10,
  .cid-u7A9k9vh53 .col-md-11,
  .cid-u7A9k9vh53 .col-md-12,
  .cid-u7A9k9vh53 .col-md-2,
  .cid-u7A9k9vh53 .col-md-3,
  .cid-u7A9k9vh53 .col-md-4,
  .cid-u7A9k9vh53 .col-md-5,
  .cid-u7A9k9vh53 .col-md-6,
  .cid-u7A9k9vh53 .col-md-7,
  .cid-u7A9k9vh53 .col-md-8,
  .cid-u7A9k9vh53 .col-md-9,
  .cid-u7A9k9vh53 .col-md-auto,
  .cid-u7A9k9vh53 .col-sm,
  .cid-u7A9k9vh53 .col-sm-1,
  .cid-u7A9k9vh53 .col-sm-10,
  .cid-u7A9k9vh53 .col-sm-11,
  .cid-u7A9k9vh53 .col-sm-12,
  .cid-u7A9k9vh53 .col-sm-2,
  .cid-u7A9k9vh53 .col-sm-3,
  .cid-u7A9k9vh53 .col-sm-4,
  .cid-u7A9k9vh53 .col-sm-5,
  .cid-u7A9k9vh53 .col-sm-6,
  .cid-u7A9k9vh53 .col-sm-7,
  .cid-u7A9k9vh53 .col-sm-8,
  .cid-u7A9k9vh53 .col-sm-9,
  .cid-u7A9k9vh53 .col-sm-auto,
  .cid-u7A9k9vh53 .col-xl,
  .cid-u7A9k9vh53 .col-xl-1,
  .cid-u7A9k9vh53 .col-xl-10,
  .cid-u7A9k9vh53 .col-xl-11,
  .cid-u7A9k9vh53 .col-xl-12,
  .cid-u7A9k9vh53 .col-xl-2,
  .cid-u7A9k9vh53 .col-xl-3,
  .cid-u7A9k9vh53 .col-xl-4,
  .cid-u7A9k9vh53 .col-xl-5,
  .cid-u7A9k9vh53 .col-xl-6,
  .cid-u7A9k9vh53 .col-xl-7,
  .cid-u7A9k9vh53 .col-xl-8,
  .cid-u7A9k9vh53 .col-xl-9,
  .cid-u7A9k9vh53 .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7A9k9vh53 .content {
    text-align: left;
  }
  .cid-u7A9k9vh53 .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7A9k9vh53 .logo_footer_box {
    position: relative;
  }
  .cid-u7A9k9vh53 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7A9k9vh53 .logo_footer {
    position: relative;
  }
  .cid-u7A9k9vh53 .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7A9k9vh53 .copyright > p {
  color: #f9ceb2;
}
.cid-t8aq8WwUUJ :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-t8aq8WwUUJ .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-t8aq8WwUUJ .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-t8aq8WwUUJ a {
  font-style: normal;
}
.cid-t8aq8WwUUJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t8aq8WwUUJ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-t8aq8WwUUJ .nav-item:focus,
.cid-t8aq8WwUUJ .nav-link:focus {
  outline: none;
}
.cid-t8aq8WwUUJ .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-t8aq8WwUUJ .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-t8aq8WwUUJ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-t8aq8WwUUJ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t8aq8WwUUJ .menu-logo {
  margin-right: auto;
}
.cid-t8aq8WwUUJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-t8aq8WwUUJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t8aq8WwUUJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t8aq8WwUUJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t8aq8WwUUJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t8aq8WwUUJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t8aq8WwUUJ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t8aq8WwUUJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-t8aq8WwUUJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t8aq8WwUUJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t8aq8WwUUJ .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t8aq8WwUUJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t8aq8WwUUJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8aq8WwUUJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t8aq8WwUUJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8aq8WwUUJ .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-t8aq8WwUUJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-t8aq8WwUUJ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t8aq8WwUUJ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t8aq8WwUUJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t8aq8WwUUJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t8aq8WwUUJ .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-t8aq8WwUUJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t8aq8WwUUJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t8aq8WwUUJ button.navbar-toggler:focus {
  outline: none;
}
.cid-t8aq8WwUUJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t8aq8WwUUJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t8aq8WwUUJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t8aq8WwUUJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t8aq8WwUUJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t8aq8WwUUJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8aq8WwUUJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t8aq8WwUUJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t8aq8WwUUJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8aq8WwUUJ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-t8aq8WwUUJ .collapsed .btn {
  display: flex;
}
.cid-t8aq8WwUUJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t8aq8WwUUJ .collapsed .navbar-collapse.collapsing,
.cid-t8aq8WwUUJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t8aq8WwUUJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t8aq8WwUUJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t8aq8WwUUJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t8aq8WwUUJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t8aq8WwUUJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t8aq8WwUUJ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-t8aq8WwUUJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t8aq8WwUUJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-t8aq8WwUUJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-t8aq8WwUUJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t8aq8WwUUJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t8aq8WwUUJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t8aq8WwUUJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t8aq8WwUUJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t8aq8WwUUJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t8aq8WwUUJ .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-t8aq8WwUUJ .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-t8aq8WwUUJ .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-t8aq8WwUUJ .navbar-expand {
    flex-direction: column;
  }
  .cid-t8aq8WwUUJ img {
    height: 3rem !important;
  }
  .cid-t8aq8WwUUJ .btn {
    display: flex;
  }
  .cid-t8aq8WwUUJ button.navbar-toggler {
    display: block;
  }
  .cid-t8aq8WwUUJ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t8aq8WwUUJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t8aq8WwUUJ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t8aq8WwUUJ .navbar-collapse.collapsing,
  .cid-t8aq8WwUUJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-t8aq8WwUUJ .navbar-collapse.collapsing .navbar-nav,
  .cid-t8aq8WwUUJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t8aq8WwUUJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t8aq8WwUUJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t8aq8WwUUJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-t8aq8WwUUJ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t8aq8WwUUJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t8aq8WwUUJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t8aq8WwUUJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t8aq8WwUUJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t8aq8WwUUJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t8aq8WwUUJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t8aq8WwUUJ .logo_s,
  .cid-t8aq8WwUUJ .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-t8aq8WwUUJ .menu-logo {
    flex-shrink: 3;
  }
}
.cid-t8aq8WwUUJ .navbar-collapse {
  flex-basis: auto;
}
.cid-t8aq8WwUUJ .nav-link:hover,
.cid-t8aq8WwUUJ .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-t8aq8WwUUJ .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-t8aq8WwUUJ .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-t8aq8WwUUJ .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-t8aq8WwUUJ .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-t8aq8WwUUJ .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-t8aq8WwUUJ a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8aq8WwUUJ a:hover svg polygon,
.cid-t8aq8WwUUJ a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8aq8WwUUJ .hidden {
  display: none !important;
}
.cid-t8aq8WwUUJ .shoow {
  display: block !important;
}
.cid-t8aq8WwUUJ .navbar-logo a,
.cid-t8aq8WwUUJ .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-t8aq8WwUUJ .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-t8aq8WwUUJ .logo_s {
    height: 2rem !important;
  }
  .cid-t8aq8WwUUJ .navbar-logo a img {
    left: 20px;
  }
  .cid-t8aq8WwUUJ .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-t8aq8WwUUJ .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-t8aq8WwUUJ .stoerer_head,
  .cid-t8aq8WwUUJ .stoerer_text {
    grid-row: 1;
  }
  .cid-t8aq8WwUUJ .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-t8aq8WwUUJ a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-t8aq8XhJio {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-t8aq8XhJio {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tzTcBce9bY {
  background-image: url("../../../assets/images/36-60-zps-bundestag-nick-jaussi-2015-2000x1335.jpg");
}
.cid-tzTcBce9bY h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tzTcBce9bY .space_down_50 {
  margin-bottom: 50px;
}
.cid-tzTcBce9bY H3 {
  color: #ffffff;
}
.cid-tzTg7wJYhm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzTg7wJYhm .mbr-text,
.cid-tzTg7wJYhm blockquote {
  color: #767676;
}
.cid-tzTg7wJYhm .mbr-text {
  color: #1d1d1b;
}
.cid-tzTg7wJYhm .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tzTg7wJYhm h3 {
  font-size: inherit;
}
.cid-tzTgce5WSJ {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tzTgce5WSJ .mbr-text,
.cid-tzTgce5WSJ blockquote {
  color: #767676;
}
.cid-tzTgce5WSJ .mbr-text {
  color: #1d1d1b;
}
.cid-tzTgce5WSJ .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tzTgce5WSJ p {
  margin-bottom: 0px;
}
.cid-tzTf1JEREj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzTf1JEREj .mbr-text,
.cid-tzTf1JEREj blockquote {
  color: #767676;
}
.cid-tzTf1JEREj .mbr-text {
  color: #1d1d1b;
}
.cid-tzTf1JEREj .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tzTf1JEREj h3 {
  font-size: inherit;
}
.cid-tzU5ONmo0d {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzU5ONmo0d .mbr-text,
.cid-tzU5ONmo0d blockquote {
  color: #767676;
}
.cid-tzU5ONmo0d .mbr-text {
  color: #1d1d1b;
}
.cid-tzU5ONmo0d .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tzU5ONmo0d p {
  margin-bottom: 0px;
}
.cid-tzTjFxMvTA {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tzTjFxMvTA .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tzTjFxMvTA .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-tzTjFxMvTA .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-tzTjFxMvTA .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tzTjFxMvTA .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tzTl2Zy667 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tzTl2Zy667 .mbr-text,
.cid-tzTl2Zy667 blockquote {
  color: #767676;
}
.cid-tzTl2Zy667 .mbr-text {
  color: #1d1d1b;
}
.cid-tzTl2Zy667 .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tzTl2Zy667 p {
  margin-bottom: 0px;
}
.cid-tzTkT25O03 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tzTkT25O03 P {
  color: #767676;
}
.cid-tzTkT25O03 .display-2 {
  font-size: 3rem;
  font-weight: 200;
}
.cid-tzTkT25O03 .justify-content-md-right {
  justify-content: flex-end !important;
}
@media (max-width: 768px) {
  .cid-tzTkT25O03 .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-tzTf55dh6l {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tzTf55dh6l .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tzTf55dh6l .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-tzTf55dh6l .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-tzTf55dh6l .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tzTf55dh6l .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tzTf55dh6l .testimonial-text {
  text-align: left;
}
.cid-tzTfcKENY1 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzTfcKENY1 .mbr-text,
.cid-tzTfcKENY1 blockquote {
  color: #767676;
}
.cid-tzTfcKENY1 .mbr-text {
  color: #1d1d1b;
}
.cid-tzTfcKENY1 .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tzTfcKENY1 h3 {
  font-size: inherit;
}
.cid-tzTfUmVYx9 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tzTfUmVYx9 .mbr-text,
.cid-tzTfUmVYx9 blockquote {
  color: #767676;
}
.cid-tzTfUmVYx9 .mbr-text {
  color: #1d1d1b;
}
.cid-tzTfUmVYx9 .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tzTfUmVYx9 p {
  margin-bottom: 0px;
}
.cid-tzTLGVOGeU {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tzTLGVOGeU P {
  color: #767676;
}
.cid-tzTLGVOGeU .display-2 {
  font-size: 3rem;
  font-weight: 200;
}
.cid-tzTLGVOGeU .justify-content-md-right {
  justify-content: flex-end !important;
}
@media (max-width: 768px) {
  .cid-tzTLGVOGeU .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-t8aq8Y1G3J {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-t8aq8Y1G3J .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-t8aq8Y1G3J .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-t8aq8Y1G3J .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-t8aq8Y1G3J .mbr-figure,
  .cid-t8aq8Y1G3J img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-t8aq8Y1G3J .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-t8aq8Y1G3J .mbr-author-desc {
  color: #000000;
}
.cid-t8aq8Y1G3J .display-2 {
  font-family: 'Chivo', sans-serif;
  font-size: 3rem;
}
.cid-t8aq8Y1G3J .display-5 {
  line-height: 1.3;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .cid-t8aq8Y1G3J .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
  .cid-t8aq8Y1G3J .display-5 {
    line-height: 1;
  }
  .cid-t8aq8Y1G3J .btn {
    font-size: 1.5rem !important;
  }
  .cid-t8aq8Y1G3J .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-t8aq8Y1G3J .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-t8aq8Y1G3J h2 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t8aq8Y1G3J .text_block {
  margin-top: 0px;
}
.cid-t8aq8Y1G3J .h2_block {
  margin-bottom: 20px;
}
.cid-t8aq8Y1G3J .mbr-figure {
  align-self: flex-start;
}
.cid-t8aq8Y1G3J .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-t8aq8Y1G3J .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-t8aq8Y1G3J a svg polygon {
  fill: #1d1d1b;
}
.cid-t8aq8Y1G3J a:hover {
  Color: #a76645 !important;
}
.cid-t8aq8Y1G3J a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8aq8Y1G3J .btn-black-outline:hover,
.cid-t8aq8Y1G3J .btn-black-outline:focus,
.cid-t8aq8Y1G3J .btn-black-outline.focus,
.cid-t8aq8Y1G3J .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-t8aq8Yg6R7 {
  background: #ffffff;
}
.cid-t8aq8Yg6R7 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-t8aq8Yg6R7 figcaption {
  position: relative;
}
.cid-t8aq8Yg6R7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t8aq8Yg6R7 .image-block {
    width: 300% !important;
  }
}
.cid-uccFCFjma8 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-uccFCFjma8 .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-uccFCFjma8 .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccFCFjma8 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccFCFjma8 .mbr-figure,
  .cid-uccFCFjma8 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccFCFjma8 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccFCFjma8 .mbr-author-desc {
  color: #000000;
}
.cid-uccFCFjma8 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccFCFjma8 .text_block {
  margin-top: 0px;
}
.cid-uccFCFjma8 .h2_block {
  margin-bottom: 20px;
}
.cid-uccFCFjma8 .mbr-figure {
  align-self: flex-start;
}
.cid-uccFCFjma8 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccFCFjma8 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccFCFjma8 .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccFCFjma8 a:hover {
  Color: #a76645 !important;
}
.cid-uccFCFjma8 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccFCFjma8 .btn-black-outline:hover,
.cid-uccFCFjma8 .btn-black-outline:focus,
.cid-uccFCFjma8 .btn-black-outline.focus,
.cid-uccFCFjma8 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccFCFjma8 .display-5 {
    line-height: 1;
  }
  .cid-uccFCFjma8 .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccFCFjma8 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccFCFjma8 .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-t8aq8YLmhN {
  background: #ffffff;
}
.cid-t8aq8YLmhN .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-t8aq8YLmhN figcaption {
  position: relative;
}
.cid-t8aq8YLmhN figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t8aq8YLmhN .image-block {
    width: 300% !important;
  }
}
.cid-tzTXaMP2fH {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tzTXaMP2fH P {
  color: #767676;
}
.cid-tzTXaMP2fH .display-2 {
  font-size: 3rem;
  font-weight: 200;
}
.cid-tzTXaMP2fH .justify-content-md-right {
  justify-content: flex-end !important;
}
@media (max-width: 768px) {
  .cid-tzTXaMP2fH .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-tzTqLcBcTY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzTqLcBcTY .mbr-text,
.cid-tzTqLcBcTY blockquote {
  color: #767676;
}
.cid-tzTqLcBcTY .mbr-text {
  color: #1d1d1b;
}
.cid-tzTqLcBcTY .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tzTqLcBcTY h3 {
  font-size: inherit;
}
.cid-tzTqM5Z4I2 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tzTqM5Z4I2 .mbr-text,
.cid-tzTqM5Z4I2 blockquote {
  color: #767676;
}
.cid-tzTqM5Z4I2 .mbr-text {
  color: #1d1d1b;
}
.cid-tzTqM5Z4I2 .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tzTqM5Z4I2 p {
  margin-bottom: 0px;
}
.cid-tzTW5dGTA9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzTW5dGTA9 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tzTW5dGTA9 p {
  color: #767676;
  text-align: left;
}
.cid-tzTW5dGTA9 .card-box {
  padding-top: 2rem;
}
.cid-tzTW5dGTA9 .card-wrapper {
  height: 100%;
}
.cid-tzTW5dGTA9 P {
  color: #1d1d1b;
}
.cid-tzTHelfgOT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzTHelfgOT .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tzTHelfgOT .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-tzTHelfgOT .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-tzTHelfgOT .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tzTHelfgOT .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tzTtQaJxX4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tzTtQaJxX4 .mbr-text,
.cid-tzTtQaJxX4 blockquote {
  color: #767676;
}
.cid-tzTtQaJxX4 .mbr-text {
  color: #1d1d1b;
}
.cid-tzTtQaJxX4 .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tzTtQaJxX4 h3 {
  font-size: inherit;
}
.cid-tzTtRGh7am {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tzTtRGh7am .mbr-text,
.cid-tzTtRGh7am blockquote {
  color: #767676;
}
.cid-tzTtRGh7am .mbr-text {
  color: #1d1d1b;
}
.cid-tzTtRGh7am .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tzTtRGh7am p {
  margin-bottom: 0px;
}
.cid-tzTWSa8TGi {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tzTWSa8TGi P {
  color: #767676;
}
.cid-tzTWSa8TGi .display-2 {
  font-size: 3rem;
  font-weight: 200;
}
.cid-tzTWSa8TGi .justify-content-md-right {
  justify-content: flex-end !important;
}
@media (max-width: 768px) {
  .cid-tzTWSa8TGi .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-tPDj56QJOX {
  background: #ffffff;
}
.cid-tPDj56QJOX .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tPDj56QJOX figcaption {
  position: relative;
}
.cid-tPDj56QJOX figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tPDj56QJOX .image-block {
    width: 100% !important;
  }
}
.cid-t8aq8ZfKos {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t8aq8ZfKos .aktions_section {
  z-index: 99999;
}
.cid-t8aq8ZfKos .item:focus,
.cid-t8aq8ZfKos span:focus {
  outline: none;
}
.cid-t8aq8ZfKos .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-t8aq8ZfKos .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-t8aq8ZfKos .item-btn,
.cid-t8aq8ZfKos h4,
.cid-t8aq8ZfKos h5 {
  margin: 0;
}
.cid-t8aq8ZfKos .item-content {
  padding-top: 1rem;
}
.cid-t8aq8ZfKos .item-title {
  color: #ffffff;
}
.cid-t8aq8ZfKos .abstand {
  margin-top: -10px;
}
.cid-t8aq8ZfKos h2 {
  font-weight: 700 !important;
  padding-left: 0.3rem;
  padding-right: 0.6rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 0.2px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t8aq8ZfKos h5 {
  color: #a76645 !important;
}
.cid-t8aq8ZfKos h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-t8aq8ZfKos .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8aq8ZfKos .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8aq8ZfKos .item-subtitle {
  color: #1d1d1b;
}
.cid-t8aq8ZfKos .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-t8aq8ZfKos .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-t8aq8ZfKos .item-text {
  color: #1d1d1b;
}
.cid-t8aq8ZfKos .space_down_50 {
  margin-bottom: 50px;
}
.cid-t8aq8ZfKos item-text {
  color: #1d1d1b;
}
.cid-t8aq8ZfKos .hiddden {
  display: none !important;
}
.cid-t8aq8ZfKos .shoow {
  display: block !important;
}
.cid-t8aq8ZfKos a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-t8aq8ZfKos a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8aq8ZfKos .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-t8aq8ZfKos .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-t8aq8ZfKos .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-t8aq8ZfKos .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-t8aq8ZfKos .embla {
  overflow: hidden;
}
.cid-t8aq8ZfKos .embla__container {
  display: flex;
  will-change: transform;
}
.cid-t8aq8ZfKos .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-t8aq8ZfKos .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-t8aq8ZfKos .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-t8aq8ZfKos .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-t8aq8ZfKos .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-t8aq8ZfKos .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-t8aq8ZfKos .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-t8aq8ZfKos .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-t8aq8ZfKos .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-t8aq8ZfKos .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-t8aq8ZfKos .item-content {
    margin-top: 1rem;
  }
  .cid-t8aq8ZfKos .item {
    padding-bottom: 1rem;
  }
  .cid-t8aq8ZfKos .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-t8aq8ZfKos h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-t8aq8ZfKos .item-wrapper {
    width: 35vw;
  }
  .cid-t8aq8ZfKos .embla__slide {
    padding: 0px;
  }
  .cid-t8aq8ZfKos .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-t8aq8ZfKos .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-t8aq8ZfKos .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-t8aq8ZfKos .embla__button {
    bottom: -0.5rem;
  }
}
.cid-u7A9f0oo4I {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7A9f0oo4I .content {
    text-align: center;
  }
  .cid-u7A9f0oo4I .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7A9f0oo4I .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7A9f0oo4I .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7A9f0oo4I .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7A9f0oo4I .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7A9f0oo4I .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7A9f0oo4I .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7A9f0oo4I .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7A9f0oo4I .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7A9f0oo4I .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7A9f0oo4I .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7A9f0oo4I .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7A9f0oo4I .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7A9f0oo4I H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7A9f0oo4I P {
  color: #ffffff;
}
.cid-u7A9f0oo4I .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7A9f0oo4I .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7A9f0oo4I .logo_footer {
  position: relative;
}
.cid-u7A9f0oo4I .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7A9f0oo4I .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7A9f0oo4I .col,
  .cid-u7A9f0oo4I .col-1,
  .cid-u7A9f0oo4I .col-10,
  .cid-u7A9f0oo4I .col-11,
  .cid-u7A9f0oo4I .col-12,
  .cid-u7A9f0oo4I .col-2,
  .cid-u7A9f0oo4I .col-3,
  .cid-u7A9f0oo4I .col-4,
  .cid-u7A9f0oo4I .col-5,
  .cid-u7A9f0oo4I .col-6,
  .cid-u7A9f0oo4I .col-7,
  .cid-u7A9f0oo4I .col-8,
  .cid-u7A9f0oo4I .col-9,
  .cid-u7A9f0oo4I .col-auto,
  .cid-u7A9f0oo4I .col-lg,
  .cid-u7A9f0oo4I .col-lg-1,
  .cid-u7A9f0oo4I .col-lg-10,
  .cid-u7A9f0oo4I .col-lg-11,
  .cid-u7A9f0oo4I .col-lg-12,
  .cid-u7A9f0oo4I .col-lg-2,
  .cid-u7A9f0oo4I .col-lg-3,
  .cid-u7A9f0oo4I .col-lg-4,
  .cid-u7A9f0oo4I .col-lg-5,
  .cid-u7A9f0oo4I .col-lg-6,
  .cid-u7A9f0oo4I .col-lg-7,
  .cid-u7A9f0oo4I .col-lg-8,
  .cid-u7A9f0oo4I .col-lg-9,
  .cid-u7A9f0oo4I .col-lg-auto,
  .cid-u7A9f0oo4I .col-md,
  .cid-u7A9f0oo4I .col-md-1,
  .cid-u7A9f0oo4I .col-md-10,
  .cid-u7A9f0oo4I .col-md-11,
  .cid-u7A9f0oo4I .col-md-12,
  .cid-u7A9f0oo4I .col-md-2,
  .cid-u7A9f0oo4I .col-md-3,
  .cid-u7A9f0oo4I .col-md-4,
  .cid-u7A9f0oo4I .col-md-5,
  .cid-u7A9f0oo4I .col-md-6,
  .cid-u7A9f0oo4I .col-md-7,
  .cid-u7A9f0oo4I .col-md-8,
  .cid-u7A9f0oo4I .col-md-9,
  .cid-u7A9f0oo4I .col-md-auto,
  .cid-u7A9f0oo4I .col-sm,
  .cid-u7A9f0oo4I .col-sm-1,
  .cid-u7A9f0oo4I .col-sm-10,
  .cid-u7A9f0oo4I .col-sm-11,
  .cid-u7A9f0oo4I .col-sm-12,
  .cid-u7A9f0oo4I .col-sm-2,
  .cid-u7A9f0oo4I .col-sm-3,
  .cid-u7A9f0oo4I .col-sm-4,
  .cid-u7A9f0oo4I .col-sm-5,
  .cid-u7A9f0oo4I .col-sm-6,
  .cid-u7A9f0oo4I .col-sm-7,
  .cid-u7A9f0oo4I .col-sm-8,
  .cid-u7A9f0oo4I .col-sm-9,
  .cid-u7A9f0oo4I .col-sm-auto,
  .cid-u7A9f0oo4I .col-xl,
  .cid-u7A9f0oo4I .col-xl-1,
  .cid-u7A9f0oo4I .col-xl-10,
  .cid-u7A9f0oo4I .col-xl-11,
  .cid-u7A9f0oo4I .col-xl-12,
  .cid-u7A9f0oo4I .col-xl-2,
  .cid-u7A9f0oo4I .col-xl-3,
  .cid-u7A9f0oo4I .col-xl-4,
  .cid-u7A9f0oo4I .col-xl-5,
  .cid-u7A9f0oo4I .col-xl-6,
  .cid-u7A9f0oo4I .col-xl-7,
  .cid-u7A9f0oo4I .col-xl-8,
  .cid-u7A9f0oo4I .col-xl-9,
  .cid-u7A9f0oo4I .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7A9f0oo4I .content {
    text-align: left;
  }
  .cid-u7A9f0oo4I .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7A9f0oo4I .logo_footer_box {
    position: relative;
  }
  .cid-u7A9f0oo4I .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7A9f0oo4I .logo_footer {
    position: relative;
  }
  .cid-u7A9f0oo4I .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7A9f0oo4I .copyright > p {
  color: #f9ceb2;
}
.cid-teL85KH6my :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-teL85KH6my .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-teL85KH6my .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-teL85KH6my a {
  font-style: normal;
}
.cid-teL85KH6my .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-teL85KH6my .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-teL85KH6my .nav-item:focus,
.cid-teL85KH6my .nav-link:focus {
  outline: none;
}
.cid-teL85KH6my .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-teL85KH6my .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-teL85KH6my .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-teL85KH6my .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-teL85KH6my .menu-logo {
  margin-right: auto;
}
.cid-teL85KH6my .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-teL85KH6my .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-teL85KH6my .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-teL85KH6my .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-teL85KH6my .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-teL85KH6my .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-teL85KH6my .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-teL85KH6my .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-teL85KH6my .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-teL85KH6my .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-teL85KH6my .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-teL85KH6my .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-teL85KH6my .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teL85KH6my .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-teL85KH6my .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-teL85KH6my .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-teL85KH6my .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-teL85KH6my .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-teL85KH6my .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-teL85KH6my .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-teL85KH6my .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-teL85KH6my .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-teL85KH6my .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-teL85KH6my button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-teL85KH6my button.navbar-toggler:focus {
  outline: none;
}
.cid-teL85KH6my button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-teL85KH6my button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-teL85KH6my button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-teL85KH6my button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-teL85KH6my button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-teL85KH6my nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teL85KH6my nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-teL85KH6my nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-teL85KH6my nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teL85KH6my .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-teL85KH6my .collapsed .btn {
  display: flex;
}
.cid-teL85KH6my .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-teL85KH6my .collapsed .navbar-collapse.collapsing,
.cid-teL85KH6my .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-teL85KH6my .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-teL85KH6my .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-teL85KH6my .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-teL85KH6my .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-teL85KH6my .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-teL85KH6my .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-teL85KH6my .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-teL85KH6my .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-teL85KH6my .collapsed button.navbar-toggler {
  display: block;
}
.cid-teL85KH6my .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-teL85KH6my .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-teL85KH6my .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-teL85KH6my .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-teL85KH6my .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-teL85KH6my .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-teL85KH6my .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-teL85KH6my .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-teL85KH6my .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-teL85KH6my .navbar-expand {
    flex-direction: column;
  }
  .cid-teL85KH6my img {
    height: 3rem !important;
  }
  .cid-teL85KH6my .btn {
    display: flex;
  }
  .cid-teL85KH6my button.navbar-toggler {
    display: block;
  }
  .cid-teL85KH6my .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-teL85KH6my .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-teL85KH6my .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-teL85KH6my .navbar-collapse.collapsing,
  .cid-teL85KH6my .navbar-collapse.show {
    display: block !important;
  }
  .cid-teL85KH6my .navbar-collapse.collapsing .navbar-nav,
  .cid-teL85KH6my .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-teL85KH6my .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-teL85KH6my .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-teL85KH6my .navbar-collapse.collapsing .navbar-buttons,
  .cid-teL85KH6my .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-teL85KH6my .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-teL85KH6my .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-teL85KH6my .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-teL85KH6my .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-teL85KH6my .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-teL85KH6my .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-teL85KH6my .logo_s,
  .cid-teL85KH6my .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-teL85KH6my .menu-logo {
    flex-shrink: 3;
  }
}
.cid-teL85KH6my .navbar-collapse {
  flex-basis: auto;
}
.cid-teL85KH6my .nav-link:hover,
.cid-teL85KH6my .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-teL85KH6my .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-teL85KH6my .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-teL85KH6my .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-teL85KH6my .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-teL85KH6my .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-teL85KH6my a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-teL85KH6my a:hover svg polygon,
.cid-teL85KH6my a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-teL85KH6my .hidden {
  display: none !important;
}
.cid-teL85KH6my .shoow {
  display: block !important;
}
.cid-teL85KH6my .navbar-logo a,
.cid-teL85KH6my .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-teL85KH6my .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-teL85KH6my .logo_s {
    height: 2rem !important;
  }
  .cid-teL85KH6my .navbar-logo a img {
    left: 20px;
  }
  .cid-teL85KH6my .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-teL85KH6my .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-teL85KH6my .stoerer_head,
  .cid-teL85KH6my .stoerer_text {
    grid-row: 1;
  }
  .cid-teL85KH6my .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-teL85KH6my a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-teL85KjFRr {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-teL85KjFRr {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-teL85L2o3N {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-teL85L2o3N .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-teL85L2o3N .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-teL85L2o3N .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-teL85L2o3N .mbr-figure,
  .cid-teL85L2o3N img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-teL85L2o3N .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-teL85L2o3N .mbr-author-desc {
  color: #000000;
}
.cid-teL85L2o3N .display-2 {
  font-family: 'Chivo', sans-serif;
  font-size: 3rem;
}
.cid-teL85L2o3N .display-5 {
  line-height: 1.3;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .cid-teL85L2o3N .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
  .cid-teL85L2o3N .display-5 {
    line-height: 1;
  }
  .cid-teL85L2o3N .btn {
    font-size: 1.5rem !important;
  }
  .cid-teL85L2o3N .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-teL85L2o3N .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-teL85L2o3N h2 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-teL85L2o3N .text_block {
  margin-top: 0px;
}
.cid-teL85L2o3N .h2_block {
  margin-bottom: 20px;
}
.cid-teL85L2o3N .mbr-figure {
  align-self: flex-start;
}
.cid-teL85L2o3N .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-teL85L2o3N .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-teL85L2o3N a svg polygon {
  fill: #1d1d1b;
}
.cid-teL85L2o3N a:hover {
  Color: #a76645 !important;
}
.cid-teL85L2o3N a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-teL85L2o3N .btn-black-outline:hover,
.cid-teL85L2o3N .btn-black-outline:focus,
.cid-teL85L2o3N .btn-black-outline.focus,
.cid-teL85L2o3N .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-u7yTHzQmab {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yTHzQmab .content {
    text-align: center;
  }
  .cid-u7yTHzQmab .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yTHzQmab .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yTHzQmab .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yTHzQmab .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yTHzQmab .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yTHzQmab .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yTHzQmab .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yTHzQmab .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yTHzQmab .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yTHzQmab .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yTHzQmab .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yTHzQmab .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yTHzQmab .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yTHzQmab H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yTHzQmab P {
  color: #ffffff;
}
.cid-u7yTHzQmab .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yTHzQmab .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yTHzQmab .logo_footer {
  position: relative;
}
.cid-u7yTHzQmab .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yTHzQmab .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yTHzQmab .col,
  .cid-u7yTHzQmab .col-1,
  .cid-u7yTHzQmab .col-10,
  .cid-u7yTHzQmab .col-11,
  .cid-u7yTHzQmab .col-12,
  .cid-u7yTHzQmab .col-2,
  .cid-u7yTHzQmab .col-3,
  .cid-u7yTHzQmab .col-4,
  .cid-u7yTHzQmab .col-5,
  .cid-u7yTHzQmab .col-6,
  .cid-u7yTHzQmab .col-7,
  .cid-u7yTHzQmab .col-8,
  .cid-u7yTHzQmab .col-9,
  .cid-u7yTHzQmab .col-auto,
  .cid-u7yTHzQmab .col-lg,
  .cid-u7yTHzQmab .col-lg-1,
  .cid-u7yTHzQmab .col-lg-10,
  .cid-u7yTHzQmab .col-lg-11,
  .cid-u7yTHzQmab .col-lg-12,
  .cid-u7yTHzQmab .col-lg-2,
  .cid-u7yTHzQmab .col-lg-3,
  .cid-u7yTHzQmab .col-lg-4,
  .cid-u7yTHzQmab .col-lg-5,
  .cid-u7yTHzQmab .col-lg-6,
  .cid-u7yTHzQmab .col-lg-7,
  .cid-u7yTHzQmab .col-lg-8,
  .cid-u7yTHzQmab .col-lg-9,
  .cid-u7yTHzQmab .col-lg-auto,
  .cid-u7yTHzQmab .col-md,
  .cid-u7yTHzQmab .col-md-1,
  .cid-u7yTHzQmab .col-md-10,
  .cid-u7yTHzQmab .col-md-11,
  .cid-u7yTHzQmab .col-md-12,
  .cid-u7yTHzQmab .col-md-2,
  .cid-u7yTHzQmab .col-md-3,
  .cid-u7yTHzQmab .col-md-4,
  .cid-u7yTHzQmab .col-md-5,
  .cid-u7yTHzQmab .col-md-6,
  .cid-u7yTHzQmab .col-md-7,
  .cid-u7yTHzQmab .col-md-8,
  .cid-u7yTHzQmab .col-md-9,
  .cid-u7yTHzQmab .col-md-auto,
  .cid-u7yTHzQmab .col-sm,
  .cid-u7yTHzQmab .col-sm-1,
  .cid-u7yTHzQmab .col-sm-10,
  .cid-u7yTHzQmab .col-sm-11,
  .cid-u7yTHzQmab .col-sm-12,
  .cid-u7yTHzQmab .col-sm-2,
  .cid-u7yTHzQmab .col-sm-3,
  .cid-u7yTHzQmab .col-sm-4,
  .cid-u7yTHzQmab .col-sm-5,
  .cid-u7yTHzQmab .col-sm-6,
  .cid-u7yTHzQmab .col-sm-7,
  .cid-u7yTHzQmab .col-sm-8,
  .cid-u7yTHzQmab .col-sm-9,
  .cid-u7yTHzQmab .col-sm-auto,
  .cid-u7yTHzQmab .col-xl,
  .cid-u7yTHzQmab .col-xl-1,
  .cid-u7yTHzQmab .col-xl-10,
  .cid-u7yTHzQmab .col-xl-11,
  .cid-u7yTHzQmab .col-xl-12,
  .cid-u7yTHzQmab .col-xl-2,
  .cid-u7yTHzQmab .col-xl-3,
  .cid-u7yTHzQmab .col-xl-4,
  .cid-u7yTHzQmab .col-xl-5,
  .cid-u7yTHzQmab .col-xl-6,
  .cid-u7yTHzQmab .col-xl-7,
  .cid-u7yTHzQmab .col-xl-8,
  .cid-u7yTHzQmab .col-xl-9,
  .cid-u7yTHzQmab .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yTHzQmab .content {
    text-align: left;
  }
  .cid-u7yTHzQmab .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yTHzQmab .logo_footer_box {
    position: relative;
  }
  .cid-u7yTHzQmab .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yTHzQmab .logo_footer {
    position: relative;
  }
  .cid-u7yTHzQmab .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yTHzQmab .copyright > p {
  color: #f9ceb2;
}
.cid-t2jRqedwYp :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-t2jRqedwYp .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-t2jRqedwYp .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-t2jRqedwYp a {
  font-style: normal;
}
.cid-t2jRqedwYp .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t2jRqedwYp .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-t2jRqedwYp .nav-item:focus,
.cid-t2jRqedwYp .nav-link:focus {
  outline: none;
}
.cid-t2jRqedwYp .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-t2jRqedwYp .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-t2jRqedwYp .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-t2jRqedwYp .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t2jRqedwYp .menu-logo {
  margin-right: auto;
}
.cid-t2jRqedwYp .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-t2jRqedwYp .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t2jRqedwYp .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t2jRqedwYp .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t2jRqedwYp .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t2jRqedwYp .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t2jRqedwYp .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t2jRqedwYp .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-t2jRqedwYp .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t2jRqedwYp .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t2jRqedwYp .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t2jRqedwYp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t2jRqedwYp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t2jRqedwYp .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t2jRqedwYp .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t2jRqedwYp .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-t2jRqedwYp .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-t2jRqedwYp .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t2jRqedwYp .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t2jRqedwYp .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t2jRqedwYp .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t2jRqedwYp .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-t2jRqedwYp .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t2jRqedwYp button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t2jRqedwYp button.navbar-toggler:focus {
  outline: none;
}
.cid-t2jRqedwYp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t2jRqedwYp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t2jRqedwYp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t2jRqedwYp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t2jRqedwYp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t2jRqedwYp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2jRqedwYp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t2jRqedwYp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t2jRqedwYp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t2jRqedwYp .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-t2jRqedwYp .collapsed .btn {
  display: flex;
}
.cid-t2jRqedwYp .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t2jRqedwYp .collapsed .navbar-collapse.collapsing,
.cid-t2jRqedwYp .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t2jRqedwYp .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t2jRqedwYp .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t2jRqedwYp .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t2jRqedwYp .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t2jRqedwYp .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t2jRqedwYp .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-t2jRqedwYp .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t2jRqedwYp .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-t2jRqedwYp .collapsed button.navbar-toggler {
  display: block;
}
.cid-t2jRqedwYp .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t2jRqedwYp .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t2jRqedwYp .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t2jRqedwYp .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t2jRqedwYp .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t2jRqedwYp .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t2jRqedwYp .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-t2jRqedwYp .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-t2jRqedwYp .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-t2jRqedwYp .navbar-expand {
    flex-direction: column;
  }
  .cid-t2jRqedwYp img {
    height: 3rem !important;
  }
  .cid-t2jRqedwYp .btn {
    display: flex;
  }
  .cid-t2jRqedwYp button.navbar-toggler {
    display: block;
  }
  .cid-t2jRqedwYp .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t2jRqedwYp .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t2jRqedwYp .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t2jRqedwYp .navbar-collapse.collapsing,
  .cid-t2jRqedwYp .navbar-collapse.show {
    display: block !important;
  }
  .cid-t2jRqedwYp .navbar-collapse.collapsing .navbar-nav,
  .cid-t2jRqedwYp .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t2jRqedwYp .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t2jRqedwYp .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t2jRqedwYp .navbar-collapse.collapsing .navbar-buttons,
  .cid-t2jRqedwYp .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t2jRqedwYp .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t2jRqedwYp .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t2jRqedwYp .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t2jRqedwYp .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t2jRqedwYp .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t2jRqedwYp .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t2jRqedwYp .logo_s,
  .cid-t2jRqedwYp .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-t2jRqedwYp .menu-logo {
    flex-shrink: 3;
  }
}
.cid-t2jRqedwYp .navbar-collapse {
  flex-basis: auto;
}
.cid-t2jRqedwYp .nav-link:hover,
.cid-t2jRqedwYp .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-t2jRqedwYp .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-t2jRqedwYp .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-t2jRqedwYp .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-t2jRqedwYp .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-t2jRqedwYp .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-t2jRqedwYp a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t2jRqedwYp a:hover svg polygon,
.cid-t2jRqedwYp a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t2jRqedwYp .hidden {
  display: none !important;
}
.cid-t2jRqedwYp .shoow {
  display: block !important;
}
.cid-t2jRqedwYp .navbar-logo a,
.cid-t2jRqedwYp .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-t2jRqedwYp .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-t2jRqedwYp .logo_s {
    height: 2rem !important;
  }
  .cid-t2jRqedwYp .navbar-logo a img {
    left: 20px;
  }
  .cid-t2jRqedwYp .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-t2jRqedwYp .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-t2jRqedwYp .stoerer_head,
  .cid-t2jRqedwYp .stoerer_text {
    grid-row: 1;
  }
  .cid-t2jRqedwYp .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-t2jRqedwYp a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-t2jRqf3tO8 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-t2jRqf3tO8 {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tQpWTS8FcD {
  background: #ffffff;
}
.cid-tQpWTS8FcD .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tQpWTS8FcD figcaption {
  position: relative;
}
.cid-tQpWTS8FcD figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tQpWTS8FcD .image-block {
    width: 100% !important;
  }
}
.cid-t2jRqgkJn0 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #f9ceb2;
}
.cid-t2jRqgkJn0 p {
  color: #767676;
}
.cid-t2jRqgkJn0 .item:focus,
.cid-t2jRqgkJn0 span:focus {
  outline: none;
}
.cid-t2jRqgkJn0 .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-t2jRqgkJn0 .item-wrapper {
  position: relative;
}
.cid-t2jRqgkJn0 .item-btn,
.cid-t2jRqgkJn0 h4,
.cid-t2jRqgkJn0 h5 {
  margin: 0;
}
.cid-t2jRqgkJn0 .item-content {
  padding-top: 2rem;
}
.cid-t2jRqgkJn0 .item-title {
  color: #1d1d1b;
}
.cid-t2jRqgkJn0 .abstand {
  margin-top: -10px;
}
.cid-t2jRqgkJn0 h4 {
  line-height: 1.2;
}
.cid-t2jRqgkJn0 .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t2jRqgkJn0 .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t2jRqgkJn0 .item-subtitle {
  color: #1d1d1b;
}
.cid-t2jRqgkJn0 .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-t2jRqgkJn0 .item-text {
  color: #1d1d1b;
}
.cid-t2jRqgkJn0 h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t2jRqgkJn0 .space_down_50 {
  margin-bottom: 50px;
}
.cid-t2jRqgkJn0 item-text {
  color: #1d1d1b;
}
.cid-t2jRqgkJn0 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  text-transform: uppercase ;
  color: #1d1d1b !important;
}
.cid-t2jRqgkJn0 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-t2jRqgkJn0 .btn {
  border-width: 0px !important;
  padding: 0px;
  margin: 0px;
  display: inline-block;
}
@media (max-width: 768px) {
  .cid-t2jRqgkJn0 .display-5 {
    line-height: 1;
  }
  .cid-t2jRqgkJn0 .btn {
    font-size: 1.5rem !important;
  }
  .cid-t2jRqgkJn0 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-t2jRqgkJn0 svg polygon {
  fill: #1d1d1b ;
}
.cid-t2jRqgkJn0 a:hover {
  Color: #a76645 !important;
}
.cid-t2jRqgkJn0 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t2jRqgkJn0 .btn-black-outline:hover,
.cid-t2jRqgkJn0 .btn-black-outline:focus,
.cid-t2jRqgkJn0 .btn-black-outline.focus,
.cid-t2jRqgkJn0 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-t2jRqgkJn0 .btn-white-outline:hover,
.cid-t2jRqgkJn0 .btn-white-outline:focus,
.cid-t2jRqgkJn0 .btn-white-outline.focus,
.cid-t2jRqgkJn0 .btn-white-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-t2jRqgkJn0 .special_button {
  width: 100%;
}
.cid-t2jRqgkJn0 .special_button a {
  text-align: left;
}
.cid-t2jRqgkJn0 .card-img {
  margin-bottom: -20px;
}
.cid-tfrpoBGCeK {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-tfrpoBGCeK .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tfrpoBGCeK .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-tfrpoBGCeK .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tfrpoBGCeK a:hover {
  Color: #a76645;
}
.cid-tfrpoBGCeK a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tfrpoBGCeK .btn-black-outline:hover,
.cid-tfrpoBGCeK .btn-black-outline:focus,
.cid-tfrpoBGCeK .btn-black-outline.focus,
.cid-tfrpoBGCeK .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tfrpoBGCeK .display-5 {
    line-height: 1;
  }
  .cid-tfrpoBGCeK .btn {
    font-size: 1.5rem !important;
  }
  .cid-tfrpoBGCeK .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7yUsaXD2e {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yUsaXD2e .content {
    text-align: center;
  }
  .cid-u7yUsaXD2e .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yUsaXD2e .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yUsaXD2e .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yUsaXD2e .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yUsaXD2e .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yUsaXD2e .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yUsaXD2e .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yUsaXD2e .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yUsaXD2e .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yUsaXD2e .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yUsaXD2e .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yUsaXD2e .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yUsaXD2e .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yUsaXD2e H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yUsaXD2e P {
  color: #ffffff;
}
.cid-u7yUsaXD2e .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yUsaXD2e .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yUsaXD2e .logo_footer {
  position: relative;
}
.cid-u7yUsaXD2e .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yUsaXD2e .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yUsaXD2e .col,
  .cid-u7yUsaXD2e .col-1,
  .cid-u7yUsaXD2e .col-10,
  .cid-u7yUsaXD2e .col-11,
  .cid-u7yUsaXD2e .col-12,
  .cid-u7yUsaXD2e .col-2,
  .cid-u7yUsaXD2e .col-3,
  .cid-u7yUsaXD2e .col-4,
  .cid-u7yUsaXD2e .col-5,
  .cid-u7yUsaXD2e .col-6,
  .cid-u7yUsaXD2e .col-7,
  .cid-u7yUsaXD2e .col-8,
  .cid-u7yUsaXD2e .col-9,
  .cid-u7yUsaXD2e .col-auto,
  .cid-u7yUsaXD2e .col-lg,
  .cid-u7yUsaXD2e .col-lg-1,
  .cid-u7yUsaXD2e .col-lg-10,
  .cid-u7yUsaXD2e .col-lg-11,
  .cid-u7yUsaXD2e .col-lg-12,
  .cid-u7yUsaXD2e .col-lg-2,
  .cid-u7yUsaXD2e .col-lg-3,
  .cid-u7yUsaXD2e .col-lg-4,
  .cid-u7yUsaXD2e .col-lg-5,
  .cid-u7yUsaXD2e .col-lg-6,
  .cid-u7yUsaXD2e .col-lg-7,
  .cid-u7yUsaXD2e .col-lg-8,
  .cid-u7yUsaXD2e .col-lg-9,
  .cid-u7yUsaXD2e .col-lg-auto,
  .cid-u7yUsaXD2e .col-md,
  .cid-u7yUsaXD2e .col-md-1,
  .cid-u7yUsaXD2e .col-md-10,
  .cid-u7yUsaXD2e .col-md-11,
  .cid-u7yUsaXD2e .col-md-12,
  .cid-u7yUsaXD2e .col-md-2,
  .cid-u7yUsaXD2e .col-md-3,
  .cid-u7yUsaXD2e .col-md-4,
  .cid-u7yUsaXD2e .col-md-5,
  .cid-u7yUsaXD2e .col-md-6,
  .cid-u7yUsaXD2e .col-md-7,
  .cid-u7yUsaXD2e .col-md-8,
  .cid-u7yUsaXD2e .col-md-9,
  .cid-u7yUsaXD2e .col-md-auto,
  .cid-u7yUsaXD2e .col-sm,
  .cid-u7yUsaXD2e .col-sm-1,
  .cid-u7yUsaXD2e .col-sm-10,
  .cid-u7yUsaXD2e .col-sm-11,
  .cid-u7yUsaXD2e .col-sm-12,
  .cid-u7yUsaXD2e .col-sm-2,
  .cid-u7yUsaXD2e .col-sm-3,
  .cid-u7yUsaXD2e .col-sm-4,
  .cid-u7yUsaXD2e .col-sm-5,
  .cid-u7yUsaXD2e .col-sm-6,
  .cid-u7yUsaXD2e .col-sm-7,
  .cid-u7yUsaXD2e .col-sm-8,
  .cid-u7yUsaXD2e .col-sm-9,
  .cid-u7yUsaXD2e .col-sm-auto,
  .cid-u7yUsaXD2e .col-xl,
  .cid-u7yUsaXD2e .col-xl-1,
  .cid-u7yUsaXD2e .col-xl-10,
  .cid-u7yUsaXD2e .col-xl-11,
  .cid-u7yUsaXD2e .col-xl-12,
  .cid-u7yUsaXD2e .col-xl-2,
  .cid-u7yUsaXD2e .col-xl-3,
  .cid-u7yUsaXD2e .col-xl-4,
  .cid-u7yUsaXD2e .col-xl-5,
  .cid-u7yUsaXD2e .col-xl-6,
  .cid-u7yUsaXD2e .col-xl-7,
  .cid-u7yUsaXD2e .col-xl-8,
  .cid-u7yUsaXD2e .col-xl-9,
  .cid-u7yUsaXD2e .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yUsaXD2e .content {
    text-align: left;
  }
  .cid-u7yUsaXD2e .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yUsaXD2e .logo_footer_box {
    position: relative;
  }
  .cid-u7yUsaXD2e .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yUsaXD2e .logo_footer {
    position: relative;
  }
  .cid-u7yUsaXD2e .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yUsaXD2e .copyright > p {
  color: #f9ceb2;
}
.cid-tkOcPGqPCa :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-tkOcPGqPCa .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-tkOcPGqPCa .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tkOcPGqPCa a {
  font-style: normal;
}
.cid-tkOcPGqPCa .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tkOcPGqPCa .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tkOcPGqPCa .nav-item:focus,
.cid-tkOcPGqPCa .nav-link:focus {
  outline: none;
}
.cid-tkOcPGqPCa .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-tkOcPGqPCa .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-tkOcPGqPCa .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tkOcPGqPCa .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tkOcPGqPCa .menu-logo {
  margin-right: auto;
}
.cid-tkOcPGqPCa .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-tkOcPGqPCa .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tkOcPGqPCa .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tkOcPGqPCa .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tkOcPGqPCa .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tkOcPGqPCa .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tkOcPGqPCa .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tkOcPGqPCa .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-tkOcPGqPCa .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tkOcPGqPCa .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tkOcPGqPCa .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tkOcPGqPCa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tkOcPGqPCa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkOcPGqPCa .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tkOcPGqPCa .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkOcPGqPCa .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-tkOcPGqPCa .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-tkOcPGqPCa .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tkOcPGqPCa .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tkOcPGqPCa .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tkOcPGqPCa .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tkOcPGqPCa .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-tkOcPGqPCa .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tkOcPGqPCa button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tkOcPGqPCa button.navbar-toggler:focus {
  outline: none;
}
.cid-tkOcPGqPCa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tkOcPGqPCa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tkOcPGqPCa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tkOcPGqPCa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tkOcPGqPCa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tkOcPGqPCa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkOcPGqPCa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tkOcPGqPCa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tkOcPGqPCa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tkOcPGqPCa .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tkOcPGqPCa .collapsed .btn {
  display: flex;
}
.cid-tkOcPGqPCa .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tkOcPGqPCa .collapsed .navbar-collapse.collapsing,
.cid-tkOcPGqPCa .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tkOcPGqPCa .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tkOcPGqPCa .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tkOcPGqPCa .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tkOcPGqPCa .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tkOcPGqPCa .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tkOcPGqPCa .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-tkOcPGqPCa .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tkOcPGqPCa .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tkOcPGqPCa .collapsed button.navbar-toggler {
  display: block;
}
.cid-tkOcPGqPCa .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tkOcPGqPCa .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tkOcPGqPCa .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tkOcPGqPCa .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tkOcPGqPCa .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tkOcPGqPCa .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tkOcPGqPCa .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-tkOcPGqPCa .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-tkOcPGqPCa .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-tkOcPGqPCa .navbar-expand {
    flex-direction: column;
  }
  .cid-tkOcPGqPCa img {
    height: 3rem !important;
  }
  .cid-tkOcPGqPCa .btn {
    display: flex;
  }
  .cid-tkOcPGqPCa button.navbar-toggler {
    display: block;
  }
  .cid-tkOcPGqPCa .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tkOcPGqPCa .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tkOcPGqPCa .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tkOcPGqPCa .navbar-collapse.collapsing,
  .cid-tkOcPGqPCa .navbar-collapse.show {
    display: block !important;
  }
  .cid-tkOcPGqPCa .navbar-collapse.collapsing .navbar-nav,
  .cid-tkOcPGqPCa .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tkOcPGqPCa .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tkOcPGqPCa .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tkOcPGqPCa .navbar-collapse.collapsing .navbar-buttons,
  .cid-tkOcPGqPCa .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tkOcPGqPCa .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tkOcPGqPCa .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tkOcPGqPCa .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tkOcPGqPCa .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tkOcPGqPCa .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tkOcPGqPCa .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tkOcPGqPCa .logo_s,
  .cid-tkOcPGqPCa .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-tkOcPGqPCa .menu-logo {
    flex-shrink: 3;
  }
}
.cid-tkOcPGqPCa .navbar-collapse {
  flex-basis: auto;
}
.cid-tkOcPGqPCa .nav-link:hover,
.cid-tkOcPGqPCa .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-tkOcPGqPCa .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-tkOcPGqPCa .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-tkOcPGqPCa .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-tkOcPGqPCa .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-tkOcPGqPCa .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-tkOcPGqPCa a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tkOcPGqPCa a:hover svg polygon,
.cid-tkOcPGqPCa a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tkOcPGqPCa .hidden {
  display: none !important;
}
.cid-tkOcPGqPCa .shoow {
  display: block !important;
}
.cid-tkOcPGqPCa .navbar-logo a,
.cid-tkOcPGqPCa .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tkOcPGqPCa .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tkOcPGqPCa .logo_s {
    height: 2rem !important;
  }
  .cid-tkOcPGqPCa .navbar-logo a img {
    left: 20px;
  }
  .cid-tkOcPGqPCa .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-tkOcPGqPCa .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-tkOcPGqPCa .stoerer_head,
  .cid-tkOcPGqPCa .stoerer_text {
    grid-row: 1;
  }
  .cid-tkOcPGqPCa .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-tkOcPGqPCa a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-tkOcPGWFVk {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-tkOcPGWFVk {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tkOcPHgs1y {
  background: #ffffff;
}
.cid-tkOcPHgs1y .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tkOcPHgs1y figcaption {
  position: relative;
}
.cid-tkOcPHgs1y figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tkOcPHgs1y .image-block {
    width: 300% !important;
  }
}
.cid-tkOcPHr89C {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tkOcPHr89C .testimonial-text {
  font-weight: 200;
  color: #000000;
  text-align: left;
}
.cid-tkOcPHr89C .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-tkOcPHr89C .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tkOcPHr89C .mbr-figure,
  .cid-tkOcPHr89C img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-tkOcPHr89C .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tkOcPHr89C .mbr-author-desc {
  color: #000000;
}
.cid-tkOcPHr89C h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tkOcPHr89C .text_block {
  margin-top: 0px;
}
.cid-tkOcPHr89C .h2_block {
  margin-bottom: 20px;
}
.cid-tkOcPHr89C .mbr-figure {
  align-self: flex-start;
}
.cid-tkOcPHr89C .display-5 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  font-style: italic;
}
.cid-tkOcPHr89C .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tkOcPHr89C .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-tkOcPHr89C a:hover {
  Color: #a76645 !important;
}
.cid-tkOcPHr89C a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tkOcPHr89C .btn-black-outline:hover,
.cid-tkOcPHr89C .btn-black-outline:focus,
.cid-tkOcPHr89C .btn-black-outline.focus,
.cid-tkOcPHr89C .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tkOcPHr89C .display-5 {
    line-height: 1;
    font-size: 1.3rem;
  }
  .cid-tkOcPHr89C .btn {
    font-size: 1.5rem !important;
  }
  .cid-tkOcPHr89C .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tkOcPHr89C .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tkOcPHGRK5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tkOcPHGRK5 .mbr-text,
.cid-tkOcPHGRK5 blockquote {
  color: #767676;
}
.cid-tkOcPHGRK5 .fundraisingbox {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #fff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #fff;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #fff;
}
.cid-tkOcPHRGEi {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tkOcPHRGEi .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tkOcPHRGEi h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tkOcPHRGEi .space_down_50 {
  margin-bottom: 50px;
}
.cid-tkOcPI05ip {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tkOcPI05ip h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tkOcPI05ip p {
  color: #767676;
  text-align: left;
}
.cid-tkOcPI05ip .card-box {
  padding-top: 2rem;
}
.cid-tkOcPI05ip .card-wrapper {
  height: 100%;
}
.cid-tkOcPI05ip P {
  color: #1d1d1b;
}
.cid-ueaNv1ZxaJ {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ueaNv1ZxaJ .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ueaNv1ZxaJ .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-ueaNv1ZxaJ .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-ueaNv1ZxaJ a:hover {
  Color: #a76645;
}
.cid-ueaNv1ZxaJ a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ueaNv1ZxaJ .btn-black-outline:hover,
.cid-ueaNv1ZxaJ .btn-black-outline:focus,
.cid-ueaNv1ZxaJ .btn-black-outline.focus,
.cid-ueaNv1ZxaJ .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ueaNv1ZxaJ .display-5 {
    line-height: 1;
  }
  .cid-ueaNv1ZxaJ .btn {
    font-size: 1.5rem !important;
  }
  .cid-ueaNv1ZxaJ .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tkOcPIq6fu {
  background: #ffffff;
}
.cid-tkOcPIq6fu .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tkOcPIq6fu figcaption {
  position: relative;
}
.cid-tkOcPIq6fu figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tkOcPIq6fu .image-block {
    width: 300% !important;
  }
}
.cid-tkOcPICZ2I {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-14-2000x1333.png");
}
.cid-tkOcPICZ2I H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-tkOcPICZ2I .mbr-section-subtitle {
  color: #000000;
}
.cid-tkOcPICZ2I span {
  visibility: hidden;
}
.cid-tkOcPICZ2I .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-tkOcPICZ2I span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-tkOcPIPIcn {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-tkOcPIPIcn .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tkOcPIPIcn .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tkOcPIPIcn .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tItX9dnLNZ {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-tItX9dnLNZ .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tItX9dnLNZ .display-5 {
  font-size: 2rem;
  color: black;
}
.cid-tItX9dnLNZ .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tItX9dnLNZ a svg polygon {
  fill: black !important;
}
.cid-tItX9dnLNZ a:hover {
  Color: #F9CEB2!important;
}
.cid-tItX9dnLNZ a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tItX9dnLNZ .btn-white-outline:hover,
.cid-tItX9dnLNZ .btn-white-outline:focus,
.cid-tItX9dnLNZ .btn-white-outline.focus,
.cid-tItX9dnLNZ .btn-white-outline.active,
.cid-tItX9dnLNZ .btn-black-outline:hover,
.cid-tItX9dnLNZ .btn-black-outline:focus,
.cid-tItX9dnLNZ .btn-black-outline.focus,
.cid-tItX9dnLNZ .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tItX9dnLNZ .display-5 {
    line-height: 1;
  }
  .cid-tItX9dnLNZ .btn {
    font-size: 1.5rem !important;
  }
  .cid-tItX9dnLNZ .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tkOcPJ4IIv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-4-1500x1695.jpg");
}
.cid-tkOcPJ4IIv .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-tkOcPJ4IIv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tkOcPJ4IIv p {
  color: #767676;
  text-align: left;
}
.cid-tkOcPJ4IIv .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-tkOcPJ4IIv .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tkOcPJ4IIv .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tkOcPJ4IIv .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tkOcPJ4IIv .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tkOcPJ4IIv .notched-box:before,
.cid-tkOcPJ4IIv .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-tkOcPJ4IIv .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-tkOcPJ4IIv .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-tkOcPJ4IIv .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-tkOcPJ4IIv .border:before,
.cid-tkOcPJ4IIv .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-tkOcPJ4IIv .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-tkOcPJ4IIv .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-tkOcPJ4IIv .mbr-author-name {
  padding-left: 40px;
}
.cid-tkOcPJ4IIv P {
  color: #ffffff;
}
.cid-tkOcPJ4IIv .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-tkOcPJHRwe {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-16-2000x1330.png");
}
.cid-tkOcPJHRwe H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-tkOcPJHRwe .mbr-section-subtitle {
  color: #000000;
}
.cid-tkOcPJHRwe span {
  visibility: hidden;
}
.cid-tkOcPJHRwe .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-tkOcPJHRwe span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-tkOcPK1lBb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tkOcPK1lBb .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
  text-align: right;
}
.cid-tkOcPK1lBb .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tkOcPK1lBb .mbr-author-desc {
  color: #1d1d1b;
  text-align: right;
}
.cid-tkOcPK1lBb .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tkOcPK1lBb .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tkOcPK1lBb .mbr-figure,
  .cid-tkOcPK1lBb img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-tkOcPK1lBb h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tkOcPK1lBb .text_block {
  margin-top: 0px;
}
.cid-tkOcPK1lBb .h2_block {
  margin-bottom: 20px;
  text-align: right;
}
.cid-tkOcPK1lBb .mbr-figure {
  align-self: flex-start;
}
.cid-tkOcPK1lBb .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-tkOcPK1lBb .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tkOcPK1lBb a:hover {
  Color: #a76645 !important;
}
.cid-tkOcPK1lBb a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tkOcPK1lBb .btn-black-outline:hover,
.cid-tkOcPK1lBb .btn-black-outline:focus,
.cid-tkOcPK1lBb .btn-black-outline.focus,
.cid-tkOcPK1lBb .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tkOcPK1lBb .display-5 {
    line-height: 1;
  }
  .cid-tkOcPK1lBb .btn {
    font-size: 1.5rem !important;
  }
  .cid-tkOcPK1lBb .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tkOcPK1lBb .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tkOcPK1lBb .content {
  padding-left: 3px;
}
.cid-tkOcPKfbf4 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-10-1500x622.jpg");
}
.cid-tkOcPKfbf4 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-tkOcPKfbf4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tkOcPKfbf4 span {
  visibility: hidden;
}
.cid-tkOcPKfbf4 .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-tkOcPKfbf4 span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-tPKCNeYK8P {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tPKCNeYK8P h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tPKCNeYK8P p {
  color: #767676;
  text-align: left;
}
.cid-tPKCNeYK8P .card-box {
  padding-top: 2rem;
}
.cid-tPKCNeYK8P .card-wrapper {
  height: 100%;
}
.cid-ug8BiGex0S {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ug8BiGex0S .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ug8BiGex0S .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-ug8BiGex0S .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-ug8BiGex0S a svg polygon {
  fill: white !important;
}
.cid-ug8BiGex0S a:hover {
  Color: #F9CEB2!important;
}
.cid-ug8BiGex0S a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ug8BiGex0S .btn-white-outline:hover,
.cid-ug8BiGex0S .btn-white-outline:focus,
.cid-ug8BiGex0S .btn-white-outline.focus,
.cid-ug8BiGex0S .btn-white-outline.active,
.cid-ug8BiGex0S .btn-black-outline:hover,
.cid-ug8BiGex0S .btn-black-outline:focus,
.cid-ug8BiGex0S .btn-black-outline.focus,
.cid-ug8BiGex0S .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ug8BiGex0S .display-5 {
    line-height: 1;
  }
  .cid-ug8BiGex0S .btn {
    font-size: 1.5rem !important;
  }
  .cid-ug8BiGex0S .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7yTUTHNoS {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yTUTHNoS .content {
    text-align: center;
  }
  .cid-u7yTUTHNoS .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yTUTHNoS .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yTUTHNoS .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yTUTHNoS .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yTUTHNoS .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yTUTHNoS .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yTUTHNoS .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yTUTHNoS .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yTUTHNoS .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yTUTHNoS .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yTUTHNoS .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yTUTHNoS .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yTUTHNoS .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yTUTHNoS H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yTUTHNoS P {
  color: #ffffff;
}
.cid-u7yTUTHNoS .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yTUTHNoS .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yTUTHNoS .logo_footer {
  position: relative;
}
.cid-u7yTUTHNoS .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yTUTHNoS .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yTUTHNoS .col,
  .cid-u7yTUTHNoS .col-1,
  .cid-u7yTUTHNoS .col-10,
  .cid-u7yTUTHNoS .col-11,
  .cid-u7yTUTHNoS .col-12,
  .cid-u7yTUTHNoS .col-2,
  .cid-u7yTUTHNoS .col-3,
  .cid-u7yTUTHNoS .col-4,
  .cid-u7yTUTHNoS .col-5,
  .cid-u7yTUTHNoS .col-6,
  .cid-u7yTUTHNoS .col-7,
  .cid-u7yTUTHNoS .col-8,
  .cid-u7yTUTHNoS .col-9,
  .cid-u7yTUTHNoS .col-auto,
  .cid-u7yTUTHNoS .col-lg,
  .cid-u7yTUTHNoS .col-lg-1,
  .cid-u7yTUTHNoS .col-lg-10,
  .cid-u7yTUTHNoS .col-lg-11,
  .cid-u7yTUTHNoS .col-lg-12,
  .cid-u7yTUTHNoS .col-lg-2,
  .cid-u7yTUTHNoS .col-lg-3,
  .cid-u7yTUTHNoS .col-lg-4,
  .cid-u7yTUTHNoS .col-lg-5,
  .cid-u7yTUTHNoS .col-lg-6,
  .cid-u7yTUTHNoS .col-lg-7,
  .cid-u7yTUTHNoS .col-lg-8,
  .cid-u7yTUTHNoS .col-lg-9,
  .cid-u7yTUTHNoS .col-lg-auto,
  .cid-u7yTUTHNoS .col-md,
  .cid-u7yTUTHNoS .col-md-1,
  .cid-u7yTUTHNoS .col-md-10,
  .cid-u7yTUTHNoS .col-md-11,
  .cid-u7yTUTHNoS .col-md-12,
  .cid-u7yTUTHNoS .col-md-2,
  .cid-u7yTUTHNoS .col-md-3,
  .cid-u7yTUTHNoS .col-md-4,
  .cid-u7yTUTHNoS .col-md-5,
  .cid-u7yTUTHNoS .col-md-6,
  .cid-u7yTUTHNoS .col-md-7,
  .cid-u7yTUTHNoS .col-md-8,
  .cid-u7yTUTHNoS .col-md-9,
  .cid-u7yTUTHNoS .col-md-auto,
  .cid-u7yTUTHNoS .col-sm,
  .cid-u7yTUTHNoS .col-sm-1,
  .cid-u7yTUTHNoS .col-sm-10,
  .cid-u7yTUTHNoS .col-sm-11,
  .cid-u7yTUTHNoS .col-sm-12,
  .cid-u7yTUTHNoS .col-sm-2,
  .cid-u7yTUTHNoS .col-sm-3,
  .cid-u7yTUTHNoS .col-sm-4,
  .cid-u7yTUTHNoS .col-sm-5,
  .cid-u7yTUTHNoS .col-sm-6,
  .cid-u7yTUTHNoS .col-sm-7,
  .cid-u7yTUTHNoS .col-sm-8,
  .cid-u7yTUTHNoS .col-sm-9,
  .cid-u7yTUTHNoS .col-sm-auto,
  .cid-u7yTUTHNoS .col-xl,
  .cid-u7yTUTHNoS .col-xl-1,
  .cid-u7yTUTHNoS .col-xl-10,
  .cid-u7yTUTHNoS .col-xl-11,
  .cid-u7yTUTHNoS .col-xl-12,
  .cid-u7yTUTHNoS .col-xl-2,
  .cid-u7yTUTHNoS .col-xl-3,
  .cid-u7yTUTHNoS .col-xl-4,
  .cid-u7yTUTHNoS .col-xl-5,
  .cid-u7yTUTHNoS .col-xl-6,
  .cid-u7yTUTHNoS .col-xl-7,
  .cid-u7yTUTHNoS .col-xl-8,
  .cid-u7yTUTHNoS .col-xl-9,
  .cid-u7yTUTHNoS .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yTUTHNoS .content {
    text-align: left;
  }
  .cid-u7yTUTHNoS .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yTUTHNoS .logo_footer_box {
    position: relative;
  }
  .cid-u7yTUTHNoS .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yTUTHNoS .logo_footer {
    position: relative;
  }
  .cid-u7yTUTHNoS .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yTUTHNoS .copyright > p {
  color: #f9ceb2;
}
.cid-tiJF6vdOv5 :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-tiJF6vdOv5 .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-tiJF6vdOv5 .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tiJF6vdOv5 a {
  font-style: normal;
}
.cid-tiJF6vdOv5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tiJF6vdOv5 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tiJF6vdOv5 .nav-item:focus,
.cid-tiJF6vdOv5 .nav-link:focus {
  outline: none;
}
.cid-tiJF6vdOv5 .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-tiJF6vdOv5 .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-tiJF6vdOv5 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tiJF6vdOv5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tiJF6vdOv5 .menu-logo {
  margin-right: auto;
}
.cid-tiJF6vdOv5 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-tiJF6vdOv5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tiJF6vdOv5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tiJF6vdOv5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tiJF6vdOv5 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tiJF6vdOv5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tiJF6vdOv5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tiJF6vdOv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-tiJF6vdOv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tiJF6vdOv5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tiJF6vdOv5 .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tiJF6vdOv5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tiJF6vdOv5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tiJF6vdOv5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tiJF6vdOv5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tiJF6vdOv5 .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-tiJF6vdOv5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-tiJF6vdOv5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tiJF6vdOv5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tiJF6vdOv5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tiJF6vdOv5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tiJF6vdOv5 .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-tiJF6vdOv5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tiJF6vdOv5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tiJF6vdOv5 button.navbar-toggler:focus {
  outline: none;
}
.cid-tiJF6vdOv5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tiJF6vdOv5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tiJF6vdOv5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tiJF6vdOv5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tiJF6vdOv5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tiJF6vdOv5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tiJF6vdOv5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tiJF6vdOv5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tiJF6vdOv5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tiJF6vdOv5 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tiJF6vdOv5 .collapsed .btn {
  display: flex;
}
.cid-tiJF6vdOv5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tiJF6vdOv5 .collapsed .navbar-collapse.collapsing,
.cid-tiJF6vdOv5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tiJF6vdOv5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tiJF6vdOv5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tiJF6vdOv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tiJF6vdOv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tiJF6vdOv5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tiJF6vdOv5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-tiJF6vdOv5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tiJF6vdOv5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tiJF6vdOv5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tiJF6vdOv5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tiJF6vdOv5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tiJF6vdOv5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tiJF6vdOv5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tiJF6vdOv5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tiJF6vdOv5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tiJF6vdOv5 .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-tiJF6vdOv5 .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-tiJF6vdOv5 .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-tiJF6vdOv5 .navbar-expand {
    flex-direction: column;
  }
  .cid-tiJF6vdOv5 img {
    height: 3rem !important;
  }
  .cid-tiJF6vdOv5 .btn {
    display: flex;
  }
  .cid-tiJF6vdOv5 button.navbar-toggler {
    display: block;
  }
  .cid-tiJF6vdOv5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tiJF6vdOv5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tiJF6vdOv5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tiJF6vdOv5 .navbar-collapse.collapsing,
  .cid-tiJF6vdOv5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tiJF6vdOv5 .navbar-collapse.collapsing .navbar-nav,
  .cid-tiJF6vdOv5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tiJF6vdOv5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tiJF6vdOv5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tiJF6vdOv5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tiJF6vdOv5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tiJF6vdOv5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tiJF6vdOv5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tiJF6vdOv5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tiJF6vdOv5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tiJF6vdOv5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tiJF6vdOv5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tiJF6vdOv5 .logo_s,
  .cid-tiJF6vdOv5 .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-tiJF6vdOv5 .menu-logo {
    flex-shrink: 3;
  }
}
.cid-tiJF6vdOv5 .navbar-collapse {
  flex-basis: auto;
}
.cid-tiJF6vdOv5 .nav-link:hover,
.cid-tiJF6vdOv5 .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-tiJF6vdOv5 .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-tiJF6vdOv5 .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-tiJF6vdOv5 .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-tiJF6vdOv5 .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-tiJF6vdOv5 .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-tiJF6vdOv5 a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tiJF6vdOv5 a:hover svg polygon,
.cid-tiJF6vdOv5 a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tiJF6vdOv5 .hidden {
  display: none !important;
}
.cid-tiJF6vdOv5 .shoow {
  display: block !important;
}
.cid-tiJF6vdOv5 .navbar-logo a,
.cid-tiJF6vdOv5 .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tiJF6vdOv5 .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tiJF6vdOv5 .logo_s {
    height: 2rem !important;
  }
  .cid-tiJF6vdOv5 .navbar-logo a img {
    left: 20px;
  }
  .cid-tiJF6vdOv5 .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-tiJF6vdOv5 .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-tiJF6vdOv5 .stoerer_head,
  .cid-tiJF6vdOv5 .stoerer_text {
    grid-row: 1;
  }
  .cid-tiJF6vdOv5 .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-tiJF6vdOv5 a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-tiJF6u7yPJ {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-tiJF6u7yPJ {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tCwP8rvy1P {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tCwP8rvy1P .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tCwP8rvy1P .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tCwP8rvy1P .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tVGZzAa33L {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tVGZzAa33L .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tVGZzAa33L h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVGZzAa33L .space_down_50 {
  margin-bottom: 50px;
}
.cid-tVGZq4wV1B {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tVGZq4wV1B .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tVGZq4wV1B h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVGZq4wV1B .space_down_50 {
  margin-bottom: 50px;
}
.cid-tVGZq4wV1B .mbr-section-subtitle P {
  color: #ffffff;
}
#custom-html-31g div {
  padding: 10px 0;
  color: #1d1d1b;
  text-align: center;
  font-weight: 700 !important;
  font-family: chivo;
}
#custom-html-31g p {
  font-family: chivo;
}
@keyframes marquee {
  0% {
    text-indent: 800px;
  }
  100% {
    text-indent: -800px;
  }
}
#custom-html-31g .marquee {
  width: 100%;
  margin: auto;
  padding: 2px;
  overflow: hidden;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.cid-tCwP9Iy6nh {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tCwP9Iy6nh h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tCwP9Iy6nh p {
  color: #767676;
  text-align: left;
}
.cid-tCwP9Iy6nh .card-box {
  padding-top: 2rem;
}
.cid-tCwP9Iy6nh .card-wrapper {
  height: 100%;
}
.cid-tCwPaQO3VN {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tCwPaQO3VN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tCwPaQO3VN p {
  color: #767676;
  text-align: left;
}
.cid-tCwPaQO3VN .card-box {
  padding-top: 2rem;
}
.cid-tCwPaQO3VN .card-wrapper {
  height: 100%;
}
.cid-tVHOHzpy9M {
  background: #ffffff;
}
.cid-tVHOHzpy9M .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tVHOHzpy9M figcaption {
  position: relative;
}
.cid-tVHOHzpy9M figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tVHOHzpy9M .image-block {
    width: 100% !important;
  }
}
.cid-tDRVF81VPq {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tDRVF81VPq .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tDRVF81VPq h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tDRVF81VPq .space_down_50 {
  margin-bottom: 50px;
}
.cid-tVHMeOFRR1 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tVHMeOFRR1 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tVHMeOFRR1 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVHMeOFRR1 .space_down_50 {
  margin-bottom: 50px;
}
.cid-tVHMeOFRR1 .mbr-section-subtitle P {
  color: #000000;
}
.cid-tVH5aSyVxP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH5aSyVxP .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH5aSyVxP .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH5aSyVxP .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH5aSyVxP .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH5aSyVxP .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH5aSyVxP .mbr-figure,
  .cid-tVH5aSyVxP img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH5aSyVxP h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH5aSyVxP .text_block {
  margin-top: 0px;
}
.cid-tVH5aSyVxP .h2_block {
  margin-bottom: 20px;
}
.cid-tVH5aSyVxP .mbr-figure {
  align-self: flex-start;
}
.cid-tVH5aSyVxP .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH5aSyVxP .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH5aSyVxP a:hover {
  Color: #a76645 !important;
}
.cid-tVH5aSyVxP a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH5aSyVxP .btn-black-outline:hover,
.cid-tVH5aSyVxP .btn-black-outline:focus,
.cid-tVH5aSyVxP .btn-black-outline.focus,
.cid-tVH5aSyVxP .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH5aSyVxP .display-5 {
    line-height: 1;
  }
  .cid-tVH5aSyVxP .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH5aSyVxP .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH5aSyVxP .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH5aSyVxP .content {
  padding-left: 3px;
}
.cid-tVH5ezOrFA {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH5ezOrFA .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH5ezOrFA .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH5ezOrFA .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH5ezOrFA .mbr-figure,
  .cid-tVH5ezOrFA img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH5ezOrFA .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH5ezOrFA h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH5ezOrFA .h2_block {
  margin-bottom: 20px;
}
.cid-tVH5ezOrFA .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH6s1UJfQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH6s1UJfQ .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6s1UJfQ .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH6s1UJfQ .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH6s1UJfQ .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH6s1UJfQ .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH6s1UJfQ .mbr-figure,
  .cid-tVH6s1UJfQ img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH6s1UJfQ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH6s1UJfQ .text_block {
  margin-top: 0px;
}
.cid-tVH6s1UJfQ .h2_block {
  margin-bottom: 20px;
}
.cid-tVH6s1UJfQ .mbr-figure {
  align-self: flex-start;
}
.cid-tVH6s1UJfQ .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6s1UJfQ .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH6s1UJfQ a:hover {
  Color: #a76645 !important;
}
.cid-tVH6s1UJfQ a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH6s1UJfQ .btn-black-outline:hover,
.cid-tVH6s1UJfQ .btn-black-outline:focus,
.cid-tVH6s1UJfQ .btn-black-outline.focus,
.cid-tVH6s1UJfQ .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH6s1UJfQ .display-5 {
    line-height: 1;
  }
  .cid-tVH6s1UJfQ .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH6s1UJfQ .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH6s1UJfQ .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH6s1UJfQ .content {
  padding-left: 3px;
}
.cid-tVH6sWLsYQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH6sWLsYQ .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6sWLsYQ .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH6sWLsYQ .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH6sWLsYQ .mbr-figure,
  .cid-tVH6sWLsYQ img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH6sWLsYQ .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH6sWLsYQ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH6sWLsYQ .h2_block {
  margin-bottom: 20px;
}
.cid-tVH6sWLsYQ .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH6tMVNHO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH6tMVNHO .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6tMVNHO .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH6tMVNHO .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH6tMVNHO .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH6tMVNHO .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH6tMVNHO .mbr-figure,
  .cid-tVH6tMVNHO img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH6tMVNHO h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH6tMVNHO .text_block {
  margin-top: 0px;
}
.cid-tVH6tMVNHO .h2_block {
  margin-bottom: 20px;
}
.cid-tVH6tMVNHO .mbr-figure {
  align-self: flex-start;
}
.cid-tVH6tMVNHO .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6tMVNHO .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH6tMVNHO a:hover {
  Color: #a76645 !important;
}
.cid-tVH6tMVNHO a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH6tMVNHO .btn-black-outline:hover,
.cid-tVH6tMVNHO .btn-black-outline:focus,
.cid-tVH6tMVNHO .btn-black-outline.focus,
.cid-tVH6tMVNHO .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH6tMVNHO .display-5 {
    line-height: 1;
  }
  .cid-tVH6tMVNHO .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH6tMVNHO .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH6tMVNHO .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH6tMVNHO .content {
  padding-left: 3px;
}
.cid-tVH6uH88XX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH6uH88XX .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6uH88XX .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH6uH88XX .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH6uH88XX .mbr-figure,
  .cid-tVH6uH88XX img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH6uH88XX .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH6uH88XX h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH6uH88XX .h2_block {
  margin-bottom: 20px;
}
.cid-tVH6uH88XX .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH6EcbXIW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH6EcbXIW .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6EcbXIW .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH6EcbXIW .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH6EcbXIW .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH6EcbXIW .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH6EcbXIW .mbr-figure,
  .cid-tVH6EcbXIW img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH6EcbXIW h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH6EcbXIW .text_block {
  margin-top: 0px;
}
.cid-tVH6EcbXIW .h2_block {
  margin-bottom: 20px;
}
.cid-tVH6EcbXIW .mbr-figure {
  align-self: flex-start;
}
.cid-tVH6EcbXIW .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6EcbXIW .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH6EcbXIW a:hover {
  Color: #a76645 !important;
}
.cid-tVH6EcbXIW a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH6EcbXIW .btn-black-outline:hover,
.cid-tVH6EcbXIW .btn-black-outline:focus,
.cid-tVH6EcbXIW .btn-black-outline.focus,
.cid-tVH6EcbXIW .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH6EcbXIW .display-5 {
    line-height: 1;
  }
  .cid-tVH6EcbXIW .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH6EcbXIW .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH6EcbXIW .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH6EcbXIW .content {
  padding-left: 3px;
}
.cid-tVH6EVUYss {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH6EVUYss .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6EVUYss .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH6EVUYss .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH6EVUYss .mbr-figure,
  .cid-tVH6EVUYss img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH6EVUYss .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH6EVUYss h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH6EVUYss .h2_block {
  margin-bottom: 20px;
}
.cid-tVH6EVUYss .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH6FAEP1W {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH6FAEP1W .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6FAEP1W .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH6FAEP1W .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH6FAEP1W .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH6FAEP1W .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH6FAEP1W .mbr-figure,
  .cid-tVH6FAEP1W img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH6FAEP1W h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH6FAEP1W .text_block {
  margin-top: 0px;
}
.cid-tVH6FAEP1W .h2_block {
  margin-bottom: 20px;
}
.cid-tVH6FAEP1W .mbr-figure {
  align-self: flex-start;
}
.cid-tVH6FAEP1W .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6FAEP1W .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH6FAEP1W a:hover {
  Color: #a76645 !important;
}
.cid-tVH6FAEP1W a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH6FAEP1W .btn-black-outline:hover,
.cid-tVH6FAEP1W .btn-black-outline:focus,
.cid-tVH6FAEP1W .btn-black-outline.focus,
.cid-tVH6FAEP1W .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH6FAEP1W .display-5 {
    line-height: 1;
  }
  .cid-tVH6FAEP1W .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH6FAEP1W .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH6FAEP1W .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH6FAEP1W .content {
  padding-left: 3px;
}
.cid-tVH6GrLFnr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH6GrLFnr .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6GrLFnr .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH6GrLFnr .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH6GrLFnr .mbr-figure,
  .cid-tVH6GrLFnr img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH6GrLFnr .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH6GrLFnr h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH6GrLFnr .h2_block {
  margin-bottom: 20px;
}
.cid-tVH6GrLFnr .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH6HgzLtH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH6HgzLtH .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6HgzLtH .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH6HgzLtH .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH6HgzLtH .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH6HgzLtH .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH6HgzLtH .mbr-figure,
  .cid-tVH6HgzLtH img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH6HgzLtH h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH6HgzLtH .text_block {
  margin-top: 0px;
}
.cid-tVH6HgzLtH .h2_block {
  margin-bottom: 20px;
}
.cid-tVH6HgzLtH .mbr-figure {
  align-self: flex-start;
}
.cid-tVH6HgzLtH .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6HgzLtH .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH6HgzLtH a:hover {
  Color: #a76645 !important;
}
.cid-tVH6HgzLtH a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH6HgzLtH .btn-black-outline:hover,
.cid-tVH6HgzLtH .btn-black-outline:focus,
.cid-tVH6HgzLtH .btn-black-outline.focus,
.cid-tVH6HgzLtH .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH6HgzLtH .display-5 {
    line-height: 1;
  }
  .cid-tVH6HgzLtH .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH6HgzLtH .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH6HgzLtH .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH6HgzLtH .content {
  padding-left: 3px;
}
.cid-tVH6HYPIdu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH6HYPIdu .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6HYPIdu .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH6HYPIdu .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH6HYPIdu .mbr-figure,
  .cid-tVH6HYPIdu img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH6HYPIdu .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH6HYPIdu h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH6HYPIdu .h2_block {
  margin-bottom: 20px;
}
.cid-tVH6HYPIdu .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH6IFYGPZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH6IFYGPZ .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6IFYGPZ .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH6IFYGPZ .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH6IFYGPZ .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH6IFYGPZ .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH6IFYGPZ .mbr-figure,
  .cid-tVH6IFYGPZ img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH6IFYGPZ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH6IFYGPZ .text_block {
  margin-top: 0px;
}
.cid-tVH6IFYGPZ .h2_block {
  margin-bottom: 20px;
}
.cid-tVH6IFYGPZ .mbr-figure {
  align-self: flex-start;
}
.cid-tVH6IFYGPZ .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6IFYGPZ .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH6IFYGPZ a:hover {
  Color: #a76645 !important;
}
.cid-tVH6IFYGPZ a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH6IFYGPZ .btn-black-outline:hover,
.cid-tVH6IFYGPZ .btn-black-outline:focus,
.cid-tVH6IFYGPZ .btn-black-outline.focus,
.cid-tVH6IFYGPZ .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH6IFYGPZ .display-5 {
    line-height: 1;
  }
  .cid-tVH6IFYGPZ .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH6IFYGPZ .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH6IFYGPZ .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH6IFYGPZ .content {
  padding-left: 3px;
}
.cid-tVH6IFYGPZ .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH6Jp2P9B {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH6Jp2P9B .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH6Jp2P9B .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH6Jp2P9B .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH6Jp2P9B .mbr-figure,
  .cid-tVH6Jp2P9B img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH6Jp2P9B .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH6Jp2P9B h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH6Jp2P9B .h2_block {
  margin-bottom: 20px;
}
.cid-tVH6Jp2P9B .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH75lor0H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH75lor0H .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH75lor0H .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH75lor0H .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH75lor0H .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH75lor0H .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH75lor0H .mbr-figure,
  .cid-tVH75lor0H img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH75lor0H h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH75lor0H .text_block {
  margin-top: 0px;
}
.cid-tVH75lor0H .h2_block {
  margin-bottom: 20px;
}
.cid-tVH75lor0H .mbr-figure {
  align-self: flex-start;
}
.cid-tVH75lor0H .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH75lor0H .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH75lor0H a:hover {
  Color: #a76645 !important;
}
.cid-tVH75lor0H a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH75lor0H .btn-black-outline:hover,
.cid-tVH75lor0H .btn-black-outline:focus,
.cid-tVH75lor0H .btn-black-outline.focus,
.cid-tVH75lor0H .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH75lor0H .display-5 {
    line-height: 1;
  }
  .cid-tVH75lor0H .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH75lor0H .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH75lor0H .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH75lor0H .content {
  padding-left: 3px;
}
.cid-tVH7649Izl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH7649Izl .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7649Izl .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH7649Izl .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH7649Izl .mbr-figure,
  .cid-tVH7649Izl img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH7649Izl .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH7649Izl h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH7649Izl .h2_block {
  margin-bottom: 20px;
}
.cid-tVH7649Izl .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH76OpIB8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH76OpIB8 .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH76OpIB8 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH76OpIB8 .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH76OpIB8 .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH76OpIB8 .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH76OpIB8 .mbr-figure,
  .cid-tVH76OpIB8 img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH76OpIB8 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH76OpIB8 .text_block {
  margin-top: 0px;
}
.cid-tVH76OpIB8 .h2_block {
  margin-bottom: 20px;
}
.cid-tVH76OpIB8 .mbr-figure {
  align-self: flex-start;
}
.cid-tVH76OpIB8 .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH76OpIB8 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH76OpIB8 a:hover {
  Color: #a76645 !important;
}
.cid-tVH76OpIB8 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH76OpIB8 .btn-black-outline:hover,
.cid-tVH76OpIB8 .btn-black-outline:focus,
.cid-tVH76OpIB8 .btn-black-outline.focus,
.cid-tVH76OpIB8 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH76OpIB8 .display-5 {
    line-height: 1;
  }
  .cid-tVH76OpIB8 .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH76OpIB8 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH76OpIB8 .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH76OpIB8 .content {
  padding-left: 3px;
}
.cid-tVH77A12ju {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH77A12ju .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH77A12ju .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH77A12ju .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH77A12ju .mbr-figure,
  .cid-tVH77A12ju img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH77A12ju .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH77A12ju h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH77A12ju .h2_block {
  margin-bottom: 20px;
}
.cid-tVH77A12ju .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH78qHOlO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH78qHOlO .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH78qHOlO .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH78qHOlO .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH78qHOlO .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH78qHOlO .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH78qHOlO .mbr-figure,
  .cid-tVH78qHOlO img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH78qHOlO h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH78qHOlO .text_block {
  margin-top: 0px;
}
.cid-tVH78qHOlO .h2_block {
  margin-bottom: 20px;
}
.cid-tVH78qHOlO .mbr-figure {
  align-self: flex-start;
}
.cid-tVH78qHOlO .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH78qHOlO .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH78qHOlO a:hover {
  Color: #a76645 !important;
}
.cid-tVH78qHOlO a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH78qHOlO .btn-black-outline:hover,
.cid-tVH78qHOlO .btn-black-outline:focus,
.cid-tVH78qHOlO .btn-black-outline.focus,
.cid-tVH78qHOlO .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH78qHOlO .display-5 {
    line-height: 1;
  }
  .cid-tVH78qHOlO .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH78qHOlO .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH78qHOlO .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH78qHOlO .content {
  padding-left: 3px;
}
.cid-tVH799Pjd7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH799Pjd7 .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH799Pjd7 .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH799Pjd7 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH799Pjd7 .mbr-figure,
  .cid-tVH799Pjd7 img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH799Pjd7 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH799Pjd7 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH799Pjd7 .h2_block {
  margin-bottom: 20px;
}
.cid-tVH799Pjd7 .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH79SCldu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH79SCldu .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH79SCldu .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH79SCldu .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH79SCldu .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH79SCldu .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH79SCldu .mbr-figure,
  .cid-tVH79SCldu img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH79SCldu h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH79SCldu .text_block {
  margin-top: 0px;
}
.cid-tVH79SCldu .h2_block {
  margin-bottom: 20px;
}
.cid-tVH79SCldu .mbr-figure {
  align-self: flex-start;
}
.cid-tVH79SCldu .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH79SCldu .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH79SCldu a:hover {
  Color: #a76645 !important;
}
.cid-tVH79SCldu a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH79SCldu .btn-black-outline:hover,
.cid-tVH79SCldu .btn-black-outline:focus,
.cid-tVH79SCldu .btn-black-outline.focus,
.cid-tVH79SCldu .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH79SCldu .display-5 {
    line-height: 1;
  }
  .cid-tVH79SCldu .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH79SCldu .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH79SCldu .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH79SCldu .content {
  padding-left: 3px;
}
.cid-tVH7aHq17X {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH7aHq17X .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7aHq17X .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH7aHq17X .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH7aHq17X .mbr-figure,
  .cid-tVH7aHq17X img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH7aHq17X .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH7aHq17X h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH7aHq17X .h2_block {
  margin-bottom: 20px;
}
.cid-tVH7aHq17X .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH7bs5IUi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH7bs5IUi .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7bs5IUi .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH7bs5IUi .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH7bs5IUi .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH7bs5IUi .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH7bs5IUi .mbr-figure,
  .cid-tVH7bs5IUi img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH7bs5IUi h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH7bs5IUi .text_block {
  margin-top: 0px;
}
.cid-tVH7bs5IUi .h2_block {
  margin-bottom: 20px;
}
.cid-tVH7bs5IUi .mbr-figure {
  align-self: flex-start;
}
.cid-tVH7bs5IUi .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7bs5IUi .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH7bs5IUi a:hover {
  Color: #a76645 !important;
}
.cid-tVH7bs5IUi a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH7bs5IUi .btn-black-outline:hover,
.cid-tVH7bs5IUi .btn-black-outline:focus,
.cid-tVH7bs5IUi .btn-black-outline.focus,
.cid-tVH7bs5IUi .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH7bs5IUi .display-5 {
    line-height: 1;
  }
  .cid-tVH7bs5IUi .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH7bs5IUi .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH7bs5IUi .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH7bs5IUi .content {
  padding-left: 3px;
}
.cid-tVH7cci5Y2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH7cci5Y2 .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7cci5Y2 .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH7cci5Y2 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH7cci5Y2 .mbr-figure,
  .cid-tVH7cci5Y2 img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH7cci5Y2 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH7cci5Y2 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH7cci5Y2 .h2_block {
  margin-bottom: 20px;
}
.cid-tVH7cci5Y2 .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH7Hv1Uvu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH7Hv1Uvu .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7Hv1Uvu .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH7Hv1Uvu .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH7Hv1Uvu .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH7Hv1Uvu .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH7Hv1Uvu .mbr-figure,
  .cid-tVH7Hv1Uvu img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH7Hv1Uvu h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH7Hv1Uvu .text_block {
  margin-top: 0px;
}
.cid-tVH7Hv1Uvu .h2_block {
  margin-bottom: 20px;
}
.cid-tVH7Hv1Uvu .mbr-figure {
  align-self: flex-start;
}
.cid-tVH7Hv1Uvu .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7Hv1Uvu .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH7Hv1Uvu a:hover {
  Color: #a76645 !important;
}
.cid-tVH7Hv1Uvu a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH7Hv1Uvu .btn-black-outline:hover,
.cid-tVH7Hv1Uvu .btn-black-outline:focus,
.cid-tVH7Hv1Uvu .btn-black-outline.focus,
.cid-tVH7Hv1Uvu .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH7Hv1Uvu .display-5 {
    line-height: 1;
  }
  .cid-tVH7Hv1Uvu .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH7Hv1Uvu .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH7Hv1Uvu .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH7Hv1Uvu .content {
  padding-left: 3px;
}
.cid-tVH7Ij7vbW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH7Ij7vbW .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7Ij7vbW .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH7Ij7vbW .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH7Ij7vbW .mbr-figure,
  .cid-tVH7Ij7vbW img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH7Ij7vbW .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH7Ij7vbW h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH7Ij7vbW .h2_block {
  margin-bottom: 20px;
}
.cid-tVH7Ij7vbW .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH7IW0ZAc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH7IW0ZAc .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7IW0ZAc .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH7IW0ZAc .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH7IW0ZAc .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH7IW0ZAc .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH7IW0ZAc .mbr-figure,
  .cid-tVH7IW0ZAc img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH7IW0ZAc h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH7IW0ZAc .text_block {
  margin-top: 0px;
}
.cid-tVH7IW0ZAc .h2_block {
  margin-bottom: 20px;
}
.cid-tVH7IW0ZAc .mbr-figure {
  align-self: flex-start;
}
.cid-tVH7IW0ZAc .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7IW0ZAc .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH7IW0ZAc a:hover {
  Color: #a76645 !important;
}
.cid-tVH7IW0ZAc a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH7IW0ZAc .btn-black-outline:hover,
.cid-tVH7IW0ZAc .btn-black-outline:focus,
.cid-tVH7IW0ZAc .btn-black-outline.focus,
.cid-tVH7IW0ZAc .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH7IW0ZAc .display-5 {
    line-height: 1;
  }
  .cid-tVH7IW0ZAc .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH7IW0ZAc .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH7IW0ZAc .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH7IW0ZAc .content {
  padding-left: 3px;
}
.cid-tVH7JD2e2K {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH7JD2e2K .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7JD2e2K .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH7JD2e2K .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH7JD2e2K .mbr-figure,
  .cid-tVH7JD2e2K img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH7JD2e2K .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH7JD2e2K h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH7JD2e2K .h2_block {
  margin-bottom: 20px;
}
.cid-tVH7JD2e2K .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH7Kj8rNn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH7Kj8rNn .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7Kj8rNn .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH7Kj8rNn .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH7Kj8rNn .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH7Kj8rNn .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH7Kj8rNn .mbr-figure,
  .cid-tVH7Kj8rNn img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH7Kj8rNn h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH7Kj8rNn .text_block {
  margin-top: 0px;
}
.cid-tVH7Kj8rNn .h2_block {
  margin-bottom: 20px;
}
.cid-tVH7Kj8rNn .mbr-figure {
  align-self: flex-start;
}
.cid-tVH7Kj8rNn .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7Kj8rNn .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH7Kj8rNn a:hover {
  Color: #a76645 !important;
}
.cid-tVH7Kj8rNn a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH7Kj8rNn .btn-black-outline:hover,
.cid-tVH7Kj8rNn .btn-black-outline:focus,
.cid-tVH7Kj8rNn .btn-black-outline.focus,
.cid-tVH7Kj8rNn .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH7Kj8rNn .display-5 {
    line-height: 1;
  }
  .cid-tVH7Kj8rNn .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH7Kj8rNn .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH7Kj8rNn .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH7Kj8rNn .content {
  padding-left: 3px;
}
.cid-tVH7KXGMWG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH7KXGMWG .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7KXGMWG .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH7KXGMWG .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH7KXGMWG .mbr-figure,
  .cid-tVH7KXGMWG img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH7KXGMWG .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH7KXGMWG h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH7KXGMWG .h2_block {
  margin-bottom: 20px;
}
.cid-tVH7KXGMWG .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH7ZibCzp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH7ZibCzp .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7ZibCzp .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH7ZibCzp .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH7ZibCzp .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH7ZibCzp .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH7ZibCzp .mbr-figure,
  .cid-tVH7ZibCzp img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH7ZibCzp h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH7ZibCzp .text_block {
  margin-top: 0px;
}
.cid-tVH7ZibCzp .h2_block {
  margin-bottom: 20px;
}
.cid-tVH7ZibCzp .mbr-figure {
  align-self: flex-start;
}
.cid-tVH7ZibCzp .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7ZibCzp .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH7ZibCzp a:hover {
  Color: #a76645 !important;
}
.cid-tVH7ZibCzp a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH7ZibCzp .btn-black-outline:hover,
.cid-tVH7ZibCzp .btn-black-outline:focus,
.cid-tVH7ZibCzp .btn-black-outline.focus,
.cid-tVH7ZibCzp .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH7ZibCzp .display-5 {
    line-height: 1;
  }
  .cid-tVH7ZibCzp .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH7ZibCzp .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH7ZibCzp .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH7ZibCzp .content {
  padding-left: 3px;
}
.cid-tVH7ZMZFaK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH7ZMZFaK .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH7ZMZFaK .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH7ZMZFaK .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH7ZMZFaK .mbr-figure,
  .cid-tVH7ZMZFaK img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH7ZMZFaK .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH7ZMZFaK h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH7ZMZFaK .h2_block {
  margin-bottom: 20px;
}
.cid-tVH7ZMZFaK .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH80ibWVm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH80ibWVm .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH80ibWVm .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH80ibWVm .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH80ibWVm .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH80ibWVm .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH80ibWVm .mbr-figure,
  .cid-tVH80ibWVm img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH80ibWVm h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH80ibWVm .text_block {
  margin-top: 0px;
}
.cid-tVH80ibWVm .h2_block {
  margin-bottom: 20px;
}
.cid-tVH80ibWVm .mbr-figure {
  align-self: flex-start;
}
.cid-tVH80ibWVm .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH80ibWVm .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH80ibWVm a:hover {
  Color: #a76645 !important;
}
.cid-tVH80ibWVm a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH80ibWVm .btn-black-outline:hover,
.cid-tVH80ibWVm .btn-black-outline:focus,
.cid-tVH80ibWVm .btn-black-outline.focus,
.cid-tVH80ibWVm .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH80ibWVm .display-5 {
    line-height: 1;
  }
  .cid-tVH80ibWVm .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH80ibWVm .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH80ibWVm .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH80ibWVm .content {
  padding-left: 3px;
}
.cid-tVH80O7boV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH80O7boV .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH80O7boV .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH80O7boV .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH80O7boV .mbr-figure,
  .cid-tVH80O7boV img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH80O7boV .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH80O7boV h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH80O7boV .h2_block {
  margin-bottom: 20px;
}
.cid-tVH80O7boV .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tVH81k6y50 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH81k6y50 .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH81k6y50 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tVH81k6y50 .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tVH81k6y50 .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tVH81k6y50 .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tVH81k6y50 .mbr-figure,
  .cid-tVH81k6y50 img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
}
.cid-tVH81k6y50 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH81k6y50 .text_block {
  margin-top: 0px;
}
.cid-tVH81k6y50 .h2_block {
  margin-bottom: 20px;
}
.cid-tVH81k6y50 .mbr-figure {
  align-self: flex-start;
}
.cid-tVH81k6y50 .display-5 {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH81k6y50 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tVH81k6y50 a:hover {
  Color: #a76645 !important;
}
.cid-tVH81k6y50 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tVH81k6y50 .btn-black-outline:hover,
.cid-tVH81k6y50 .btn-black-outline:focus,
.cid-tVH81k6y50 .btn-black-outline.focus,
.cid-tVH81k6y50 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tVH81k6y50 .display-5 {
    line-height: 1;
  }
  .cid-tVH81k6y50 .btn {
    font-size: 1.5rem !important;
  }
  .cid-tVH81k6y50 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tVH81k6y50 .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tVH81k6y50 .content {
  padding-left: 3px;
}
.cid-tVH81X7mMV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH81X7mMV .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-tVH81X7mMV .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tVH81X7mMV .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tVH81X7mMV .mbr-figure,
  .cid-tVH81X7mMV img {
    max-height: 160px;
    width: auto;
    margin: auto;
  }
  .cid-tVH81X7mMV .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tVH81X7mMV h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVH81X7mMV .h2_block {
  margin-bottom: 20px;
}
.cid-tVH81X7mMV .mbr-text {
  line-heigt: 1.2 !important;
}
.cid-tsEEuKkfcq {
  background: #ffffff;
}
.cid-tsEEuKkfcq .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tsEEuKkfcq figcaption {
  position: relative;
}
.cid-tsEEuKkfcq figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tsEEuKkfcq .image-block {
    width: 100% !important;
  }
}
.cid-tVHOfhSOnn {
  background: #ffffff;
}
.cid-tVHOfhSOnn .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tVHOfhSOnn figcaption {
  position: relative;
}
.cid-tVHOfhSOnn figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tVHOfhSOnn .image-block {
    width: 100% !important;
  }
}
.cid-tsEE9eOTIs {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tsEE9eOTIs .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tsEE9eOTIs h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tsEE9eOTIs .space_down_50 {
  margin-bottom: 50px;
}
.cid-tsEEoMJR1E {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tsEEoMJR1E .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tsEEoMJR1E h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tsEEoMJR1E .space_down_50 {
  margin-bottom: 50px;
}
.cid-tsEEoMJR1E .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tsEDTuuatQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tsEDTuuatQ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tsEDTuuatQ p {
  color: #767676;
  text-align: left;
}
.cid-tsEDTuuatQ .card-box {
  padding-top: 2rem;
}
.cid-tsEDTuuatQ .card-wrapper {
  height: 100%;
}
.cid-tVH8mSN8cw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH8mSN8cw h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tVH8mSN8cw p {
  color: #767676;
  text-align: left;
}
.cid-tVH8mSN8cw .card-box {
  padding-top: 2rem;
}
.cid-tVH8mSN8cw .card-wrapper {
  height: 100%;
}
.cid-tVH8L1GGuc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tVH8L1GGuc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tVH8L1GGuc p {
  color: #767676;
  text-align: left;
}
.cid-tVH8L1GGuc .card-box {
  padding-top: 2rem;
}
.cid-tVH8L1GGuc .card-wrapper {
  height: 100%;
}
.cid-tVH9a3VXmZ {
  background: #ffffff;
}
.cid-tVH9a3VXmZ .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tVH9a3VXmZ figcaption {
  position: relative;
}
.cid-tVH9a3VXmZ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tVH9a3VXmZ .image-block {
    width: 100% !important;
  }
}
.cid-tsEFGEI0r5 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tsEFGEI0r5 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-tsEFGEI0r5 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tsEFGEI0r5 .space_down_30 {
  margin-bottom: 30px;
}
.cid-tsEFGEI0r5 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tDRWX1mo4K {
  background: #ffffff;
}
.cid-tDRWX1mo4K .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tDRWX1mo4K figcaption {
  position: relative;
}
.cid-tDRWX1mo4K figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tDRWX1mo4K .image-block {
    width: 100% !important;
  }
}
.cid-tiJF6CloFj {
  background: #ffffff;
}
.cid-tiJF6CloFj .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tiJF6CloFj figcaption {
  position: relative;
}
.cid-tiJF6CloFj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tiJF6CloFj .image-block {
    width: 300% !important;
  }
}
.cid-uccob1CRNy {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-uccob1CRNy .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-uccob1CRNy .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccob1CRNy .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccob1CRNy .mbr-figure,
  .cid-uccob1CRNy img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccob1CRNy .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccob1CRNy .mbr-author-desc {
  color: #000000;
}
.cid-uccob1CRNy h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccob1CRNy .text_block {
  margin-top: 0px;
}
.cid-uccob1CRNy .h2_block {
  margin-bottom: 20px;
}
.cid-uccob1CRNy .mbr-figure {
  align-self: flex-start;
}
.cid-uccob1CRNy .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccob1CRNy .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccob1CRNy .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccob1CRNy a svg polygon {
  fill: white !important;
}
.cid-uccob1CRNy a:hover {
  Color: #F9CEB2!important;
}
.cid-uccob1CRNy a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccob1CRNy .btn-white-outline:hover,
.cid-uccob1CRNy .btn-white-outline:focus,
.cid-uccob1CRNy .btn-white-outline.focus,
.cid-uccob1CRNy .btn-white-outline.active,
.cid-uccob1CRNy .btn-black-outline:hover,
.cid-uccob1CRNy .btn-black-outline:focus,
.cid-uccob1CRNy .btn-black-outline.focus,
.cid-uccob1CRNy .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccob1CRNy .display-5 {
    line-height: 1;
  }
  .cid-uccob1CRNy .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccob1CRNy .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccob1CRNy .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tiJF6D5HC5 {
  background: #ffffff;
}
.cid-tiJF6D5HC5 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tiJF6D5HC5 figcaption {
  position: relative;
}
.cid-tiJF6D5HC5 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tiJF6D5HC5 .image-block {
    width: 300% !important;
  }
}
.cid-tsEG8vZ0ux {
  background: #ffffff;
}
.cid-tsEG8vZ0ux .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tsEG8vZ0ux figcaption {
  position: relative;
}
.cid-tsEG8vZ0ux figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tsEG8vZ0ux .image-block {
    width: 100% !important;
  }
}
.cid-tsEG3wS8kD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tsEG3wS8kD .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-tsEG3wS8kD h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tsEG3wS8kD .space_down_30 {
  margin-bottom: 30px;
}
.cid-tsEG3wS8kD .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tVHNpXkcIg {
  background: #ffffff;
}
.cid-tVHNpXkcIg .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tVHNpXkcIg figcaption {
  position: relative;
}
.cid-tVHNpXkcIg figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tVHNpXkcIg .image-block {
    width: 100% !important;
  }
}
.cid-tVHNBPiaF7 {
  background: #ffffff;
}
.cid-tVHNBPiaF7 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tVHNBPiaF7 figcaption {
  position: relative;
}
.cid-tVHNBPiaF7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tVHNBPiaF7 .image-block {
    width: 100% !important;
  }
}
.cid-tiJF6GNRVk {
  padding-top: 75px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/asche-12-web-2000x607.jpg");
}
.cid-tiJF6GNRVk H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-tiJF6GNRVk .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-tiJF6GNRVk .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-tiJF6GNRVk .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-tiJF6GNRVk a {
  font-style: oblique;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  cursor: pointer;
  padding-bottom: 3px;
  color: #fff;
}
.cid-tiJF6GNRVk a:hover {
  color: #F9CEB2 !important;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tiJF76f0uU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tiJF76f0uU .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-tiJF76f0uU h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tiJF76f0uU .space_down_30 {
  margin-bottom: 30px;
}
.cid-tiJF76f0uU .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tVHNQNPIAE {
  background: #ffffff;
}
.cid-tVHNQNPIAE .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tVHNQNPIAE figcaption {
  position: relative;
}
.cid-tVHNQNPIAE figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tVHNQNPIAE .image-block {
    width: 100% !important;
  }
}
.cid-u7yUEoFaiF {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yUEoFaiF .content {
    text-align: center;
  }
  .cid-u7yUEoFaiF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yUEoFaiF .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yUEoFaiF .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yUEoFaiF .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yUEoFaiF .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yUEoFaiF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yUEoFaiF .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yUEoFaiF .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yUEoFaiF .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yUEoFaiF .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yUEoFaiF .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yUEoFaiF .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yUEoFaiF .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yUEoFaiF H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yUEoFaiF P {
  color: #ffffff;
}
.cid-u7yUEoFaiF .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yUEoFaiF .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yUEoFaiF .logo_footer {
  position: relative;
}
.cid-u7yUEoFaiF .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yUEoFaiF .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yUEoFaiF .col,
  .cid-u7yUEoFaiF .col-1,
  .cid-u7yUEoFaiF .col-10,
  .cid-u7yUEoFaiF .col-11,
  .cid-u7yUEoFaiF .col-12,
  .cid-u7yUEoFaiF .col-2,
  .cid-u7yUEoFaiF .col-3,
  .cid-u7yUEoFaiF .col-4,
  .cid-u7yUEoFaiF .col-5,
  .cid-u7yUEoFaiF .col-6,
  .cid-u7yUEoFaiF .col-7,
  .cid-u7yUEoFaiF .col-8,
  .cid-u7yUEoFaiF .col-9,
  .cid-u7yUEoFaiF .col-auto,
  .cid-u7yUEoFaiF .col-lg,
  .cid-u7yUEoFaiF .col-lg-1,
  .cid-u7yUEoFaiF .col-lg-10,
  .cid-u7yUEoFaiF .col-lg-11,
  .cid-u7yUEoFaiF .col-lg-12,
  .cid-u7yUEoFaiF .col-lg-2,
  .cid-u7yUEoFaiF .col-lg-3,
  .cid-u7yUEoFaiF .col-lg-4,
  .cid-u7yUEoFaiF .col-lg-5,
  .cid-u7yUEoFaiF .col-lg-6,
  .cid-u7yUEoFaiF .col-lg-7,
  .cid-u7yUEoFaiF .col-lg-8,
  .cid-u7yUEoFaiF .col-lg-9,
  .cid-u7yUEoFaiF .col-lg-auto,
  .cid-u7yUEoFaiF .col-md,
  .cid-u7yUEoFaiF .col-md-1,
  .cid-u7yUEoFaiF .col-md-10,
  .cid-u7yUEoFaiF .col-md-11,
  .cid-u7yUEoFaiF .col-md-12,
  .cid-u7yUEoFaiF .col-md-2,
  .cid-u7yUEoFaiF .col-md-3,
  .cid-u7yUEoFaiF .col-md-4,
  .cid-u7yUEoFaiF .col-md-5,
  .cid-u7yUEoFaiF .col-md-6,
  .cid-u7yUEoFaiF .col-md-7,
  .cid-u7yUEoFaiF .col-md-8,
  .cid-u7yUEoFaiF .col-md-9,
  .cid-u7yUEoFaiF .col-md-auto,
  .cid-u7yUEoFaiF .col-sm,
  .cid-u7yUEoFaiF .col-sm-1,
  .cid-u7yUEoFaiF .col-sm-10,
  .cid-u7yUEoFaiF .col-sm-11,
  .cid-u7yUEoFaiF .col-sm-12,
  .cid-u7yUEoFaiF .col-sm-2,
  .cid-u7yUEoFaiF .col-sm-3,
  .cid-u7yUEoFaiF .col-sm-4,
  .cid-u7yUEoFaiF .col-sm-5,
  .cid-u7yUEoFaiF .col-sm-6,
  .cid-u7yUEoFaiF .col-sm-7,
  .cid-u7yUEoFaiF .col-sm-8,
  .cid-u7yUEoFaiF .col-sm-9,
  .cid-u7yUEoFaiF .col-sm-auto,
  .cid-u7yUEoFaiF .col-xl,
  .cid-u7yUEoFaiF .col-xl-1,
  .cid-u7yUEoFaiF .col-xl-10,
  .cid-u7yUEoFaiF .col-xl-11,
  .cid-u7yUEoFaiF .col-xl-12,
  .cid-u7yUEoFaiF .col-xl-2,
  .cid-u7yUEoFaiF .col-xl-3,
  .cid-u7yUEoFaiF .col-xl-4,
  .cid-u7yUEoFaiF .col-xl-5,
  .cid-u7yUEoFaiF .col-xl-6,
  .cid-u7yUEoFaiF .col-xl-7,
  .cid-u7yUEoFaiF .col-xl-8,
  .cid-u7yUEoFaiF .col-xl-9,
  .cid-u7yUEoFaiF .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yUEoFaiF .content {
    text-align: left;
  }
  .cid-u7yUEoFaiF .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yUEoFaiF .logo_footer_box {
    position: relative;
  }
  .cid-u7yUEoFaiF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yUEoFaiF .logo_footer {
    position: relative;
  }
  .cid-u7yUEoFaiF .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yUEoFaiF .copyright > p {
  color: #f9ceb2;
}
.cid-t8auyHMnkJ :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-t8auyHMnkJ .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-t8auyHMnkJ .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-t8auyHMnkJ a {
  font-style: normal;
}
.cid-t8auyHMnkJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t8auyHMnkJ .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-t8auyHMnkJ .nav-item:focus,
.cid-t8auyHMnkJ .nav-link:focus {
  outline: none;
}
.cid-t8auyHMnkJ .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-t8auyHMnkJ .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-t8auyHMnkJ .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-t8auyHMnkJ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t8auyHMnkJ .menu-logo {
  margin-right: auto;
}
.cid-t8auyHMnkJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-t8auyHMnkJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t8auyHMnkJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t8auyHMnkJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t8auyHMnkJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t8auyHMnkJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t8auyHMnkJ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t8auyHMnkJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-t8auyHMnkJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t8auyHMnkJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t8auyHMnkJ .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t8auyHMnkJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t8auyHMnkJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8auyHMnkJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t8auyHMnkJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8auyHMnkJ .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-t8auyHMnkJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-t8auyHMnkJ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t8auyHMnkJ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t8auyHMnkJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t8auyHMnkJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t8auyHMnkJ .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-t8auyHMnkJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t8auyHMnkJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t8auyHMnkJ button.navbar-toggler:focus {
  outline: none;
}
.cid-t8auyHMnkJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-t8auyHMnkJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t8auyHMnkJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t8auyHMnkJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t8auyHMnkJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t8auyHMnkJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8auyHMnkJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t8auyHMnkJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t8auyHMnkJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8auyHMnkJ .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-t8auyHMnkJ .collapsed .btn {
  display: flex;
}
.cid-t8auyHMnkJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t8auyHMnkJ .collapsed .navbar-collapse.collapsing,
.cid-t8auyHMnkJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t8auyHMnkJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t8auyHMnkJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t8auyHMnkJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t8auyHMnkJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t8auyHMnkJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t8auyHMnkJ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-t8auyHMnkJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t8auyHMnkJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-t8auyHMnkJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-t8auyHMnkJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t8auyHMnkJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t8auyHMnkJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t8auyHMnkJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t8auyHMnkJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t8auyHMnkJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-t8auyHMnkJ .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-t8auyHMnkJ .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-t8auyHMnkJ .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-t8auyHMnkJ .navbar-expand {
    flex-direction: column;
  }
  .cid-t8auyHMnkJ img {
    height: 3rem !important;
  }
  .cid-t8auyHMnkJ .btn {
    display: flex;
  }
  .cid-t8auyHMnkJ button.navbar-toggler {
    display: block;
  }
  .cid-t8auyHMnkJ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t8auyHMnkJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t8auyHMnkJ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t8auyHMnkJ .navbar-collapse.collapsing,
  .cid-t8auyHMnkJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-t8auyHMnkJ .navbar-collapse.collapsing .navbar-nav,
  .cid-t8auyHMnkJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t8auyHMnkJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t8auyHMnkJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t8auyHMnkJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-t8auyHMnkJ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t8auyHMnkJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t8auyHMnkJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t8auyHMnkJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t8auyHMnkJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t8auyHMnkJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t8auyHMnkJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-t8auyHMnkJ .logo_s,
  .cid-t8auyHMnkJ .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-t8auyHMnkJ .menu-logo {
    flex-shrink: 3;
  }
}
.cid-t8auyHMnkJ .navbar-collapse {
  flex-basis: auto;
}
.cid-t8auyHMnkJ .nav-link:hover,
.cid-t8auyHMnkJ .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-t8auyHMnkJ .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-t8auyHMnkJ .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-t8auyHMnkJ .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-t8auyHMnkJ .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-t8auyHMnkJ .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-t8auyHMnkJ a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8auyHMnkJ a:hover svg polygon,
.cid-t8auyHMnkJ a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8auyHMnkJ .hidden {
  display: none !important;
}
.cid-t8auyHMnkJ .shoow {
  display: block !important;
}
.cid-t8auyHMnkJ .navbar-logo a,
.cid-t8auyHMnkJ .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-t8auyHMnkJ .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-t8auyHMnkJ .logo_s {
    height: 2rem !important;
  }
  .cid-t8auyHMnkJ .navbar-logo a img {
    left: 20px;
  }
  .cid-t8auyHMnkJ .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-t8auyHMnkJ .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-t8auyHMnkJ .stoerer_head,
  .cid-t8auyHMnkJ .stoerer_text {
    grid-row: 1;
  }
  .cid-t8auyHMnkJ .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-t8auyHMnkJ a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-t8auyItB42 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-t8auyItB42 {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tB7YBnJD4I {
  background-image: url("../../../assets/images/schreddern-10-web-2000x1331.jpg");
}
.cid-tB7YBnJD4I h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tB7YBnJD4I .space_down_50 {
  margin-bottom: 50px;
}
.cid-tB7YBnJD4I H3 {
  color: #ffffff;
}
.cid-tB7YDR8YPV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tB7YDR8YPV .mbr-text,
.cid-tB7YDR8YPV blockquote {
  color: #767676;
}
.cid-tB7YDR8YPV .mbr-text {
  color: #1d1d1b;
}
.cid-tB7YDR8YPV .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tB7YDR8YPV h3 {
  font-size: inherit;
}
.cid-tBSUfCmAc9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBSUfCmAc9 .mbr-text,
.cid-tBSUfCmAc9 blockquote {
  color: #767676;
}
.cid-tBSUfCmAc9 .mbr-text {
  color: #1d1d1b;
}
.cid-tBSUfCmAc9 .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tBSUfCmAc9 p {
  margin-bottom: 0px;
}
.cid-tDciw8BTTJ {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 15px;
}
.cid-tDciw8BTTJ .video-block {
  margin: 10px auto 10px auto;
}
.cid-tDciw8BTTJ .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-tDciw8BTTJ .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .cid-tDciw8BTTJ .video-block {
    width: 100% !important;
  }
}
.cid-tDciw8BTTJ .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tDciw8BTTJ .testimonial-text {
  text-align: left;
}
.cid-tBST0YmcK8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBST0YmcK8 .mbr-text,
.cid-tBST0YmcK8 blockquote {
  color: #767676;
}
.cid-tBST0YmcK8 .mbr-text {
  color: #1d1d1b;
}
.cid-tBST0YmcK8 .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tBST0YmcK8 p {
  margin-bottom: 0px;
}
.cid-tBST0YmcK8 .mbr-text P {
  text-align: left;
}
.cid-tDcll6KFin {
  background: #ffffff;
}
.cid-tDcll6KFin .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tDcll6KFin figcaption {
  position: relative;
}
.cid-tDcll6KFin figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tDcll6KFin .image-block {
    width: 100% !important;
  }
}
.cid-tBSNJPymvN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBSNJPymvN .mbr-text,
.cid-tBSNJPymvN blockquote {
  color: #767676;
}
.cid-tBSNJPymvN .mbr-text {
  color: #1d1d1b;
}
.cid-tBSNJPymvN .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tBSNJPymvN h3 {
  font-size: inherit;
}
.cid-tBSNKPhve4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBSNKPhve4 .mbr-text,
.cid-tBSNKPhve4 blockquote {
  color: #767676;
}
.cid-tBSNKPhve4 .mbr-text {
  color: #1d1d1b;
}
.cid-tBSNKPhve4 .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tBSNKPhve4 p {
  margin-bottom: 0px;
}
.cid-tBSV7mDcbJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBSV7mDcbJ .testimonial-text {
  font-weight: 400;
  color: #1d1d1b;
  text-align: left;
}
.cid-tBSV7mDcbJ .mbr-text {
  line-height: 1.32 !important;
}
.cid-tBSV7mDcbJ .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tBSV7mDcbJ .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tBSV7mDcbJ .h2_block {
  margin-bottom: 20px;
}
.cid-tBSV7mDcbJ .px-3 {
  padding-left: 0rem !important;
}
.cid-tBSV7mDcbJ .py-2 {
  padding-top: 0rem !important;
  padding-bottom: .0rem !important;
}
.cid-tBSV7mDcbJ .pr-lg-5 {
  padding-right: 1rem !important;
}
.cid-tBSV7mDcbJ .mbr-figure {
  margin-top: 20px;
  float: left;
}
.cid-tBSV7mDcbJ .media-content,
.cid-tBSV7mDcbJ .mbr-figure {
  align-self: flex-start;
}
.cid-tBSV7mDcbJ p {
  margin-bottom: 0px;
}
.cid-tBSV7mDcbJ .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 991px) {
  .cid-tBSV7mDcbJ .mbr-figure,
  .cid-tBSV7mDcbJ img {
    width: 100%;
    margin-top: 20px;
    margin: auto;
  }
  .cid-tBSV7mDcbJ .col-10,
  .cid-tBSV7mDcbJ .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-tBSV7mDcbJ .pr-lg-5 {
    padding-right: 0rem !important;
    padding-top: 1rem !important;
  }
  .cid-tBSV7mDcbJ .media-content {
    padding-top: 1.5rem !important;
  }
}
@media (max-width: 768px) {
  .cid-tBSV7mDcbJ .col-10,
  .cid-tBSV7mDcbJ .col-md-8 {
    max-width: 100%;
  }
}
.cid-tBSV7mDcbJ h3 {
  margin-top: 1rem;
  color: #1d1d1b;
}
.cid-tBSVekxOSo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBSVekxOSo .mbr-text,
.cid-tBSVekxOSo blockquote {
  color: #767676;
}
.cid-tBSVekxOSo .mbr-text {
  color: #1d1d1b;
}
.cid-tBSVekxOSo .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tBSVekxOSo p {
  margin-bottom: 0px;
}
.cid-tBSP2MxYv8 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tBSP2MxYv8 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tBSP2MxYv8 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-tBSP2MxYv8 .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-tBSP2MxYv8 .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tBSP2MxYv8 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tBSP2MxYv8 .testimonial-text {
  text-align: left;
}
.cid-tDcl9svS4Y {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tDcl9svS4Y .mbr-text,
.cid-tDcl9svS4Y blockquote {
  color: #767676;
}
.cid-tDcl9svS4Y .mbr-text {
  color: #1d1d1b;
}
.cid-tDcl9svS4Y .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tDcl9svS4Y p {
  margin-bottom: 0px;
}
.cid-tBSTlh6huY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBSTlh6huY .testimonial-text {
  font-weight: 400;
  color: #1d1d1b;
}
.cid-tBSTlh6huY .mbr-text {
  line-height: 1.32;
}
.cid-tBSTlh6huY .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tBSTlh6huY .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tBSTlh6huY .h2_block {
  margin-bottom: 20px;
}
.cid-tBSTlh6huY .px-3 {
  padding-left: 0rem !important;
}
.cid-tBSTlh6huY .py-2 {
  padding-top: 0rem !important;
  padding-bottom: .0rem !important;
}
.cid-tBSTlh6huY .pr-lg-5 {
  padding-right: 1rem !important;
}
.cid-tBSTlh6huY .mbr-figure {
  margin-top: 20px;
  float: left;
}
.cid-tBSTlh6huY .media-content,
.cid-tBSTlh6huY .mbr-figure {
  align-self: flex-start;
}
.cid-tBSTlh6huY p {
  margin-bottom: 0px;
}
.cid-tBSTlh6huY .display-2 {
  font-size: 1em;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
}
.cid-tBSTlh6huY .container {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-tBSTlh6huY .mbr-figure,
  .cid-tBSTlh6huY img {
    width: 100%;
    margin-top: 20px;
    margin: auto;
  }
  .cid-tBSTlh6huY .col-10,
  .cid-tBSTlh6huY .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-tBSTlh6huY .pr-lg-5 {
    padding-right: 0rem !important;
    padding-top: 1rem !important;
  }
  .cid-tBSTlh6huY .media-content {
    padding-top: 1.5rem !important;
  }
}
@media (max-width: 768px) {
  .cid-tBSTlh6huY .col-10,
  .cid-tBSTlh6huY .col-md-8 {
    max-width: 100%;
  }
}
.cid-tBT7ecCcI9 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tBT7ecCcI9 .mbr-text,
.cid-tBT7ecCcI9 blockquote {
  color: #767676;
}
.cid-tBT7ecCcI9 .mbr-text {
  color: #1d1d1b;
}
.cid-tBT7ecCcI9 .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tBT7ecCcI9 p {
  margin-bottom: 0px;
}
.cid-tB7YHinKwL {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tB7YHinKwL P {
  color: #767676;
}
.cid-tB7YHinKwL .display-2 {
  font-size: 3rem;
  font-weight: 200;
}
.cid-tB7YHinKwL .justify-content-md-right {
  justify-content: flex-end !important;
}
@media (max-width: 768px) {
  .cid-tB7YHinKwL .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-tB7YKOqldT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tB7YKOqldT .mbr-text,
.cid-tB7YKOqldT blockquote {
  color: #767676;
}
.cid-tB7YKOqldT .mbr-text {
  color: #1d1d1b;
}
.cid-tB7YKOqldT .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tB7YKOqldT h3 {
  font-size: inherit;
}
.cid-tB7YLUswzo {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tB7YLUswzo .mbr-text,
.cid-tB7YLUswzo blockquote {
  color: #767676;
}
.cid-tB7YLUswzo .mbr-text {
  color: #1d1d1b;
}
.cid-tB7YLUswzo .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tB7YLUswzo p {
  margin-bottom: 0px;
}
.cid-tDchr9YTUP {
  background: #ffffff;
}
.cid-tDchr9YTUP .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tDchr9YTUP figcaption {
  position: relative;
}
.cid-tDchr9YTUP figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tDchr9YTUP .image-block {
    width: 100% !important;
  }
}
.cid-t8auyJ5Krm {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t8auyJ5Krm .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-t8auyJ5Krm .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-t8auyJ5Krm .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-t8auyJ5Krm .mbr-figure,
  .cid-t8auyJ5Krm img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-t8auyJ5Krm .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-t8auyJ5Krm .mbr-author-desc {
  color: #000000;
}
.cid-t8auyJ5Krm .display-2 {
  font-family: 'Chivo', sans-serif;
  font-size: 3rem;
}
.cid-t8auyJ5Krm .display-5 {
  line-height: 1.3;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .cid-t8auyJ5Krm .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
  .cid-t8auyJ5Krm .display-5 {
    line-height: 1;
  }
  .cid-t8auyJ5Krm .btn {
    font-size: 1.5rem !important;
  }
  .cid-t8auyJ5Krm .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-t8auyJ5Krm .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-t8auyJ5Krm h2 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t8auyJ5Krm .text_block {
  margin-top: 0px;
}
.cid-t8auyJ5Krm .h2_block {
  margin-bottom: 20px;
}
.cid-t8auyJ5Krm .mbr-figure {
  align-self: flex-start;
}
.cid-t8auyJ5Krm .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-t8auyJ5Krm .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-t8auyJ5Krm a svg polygon {
  fill: #1d1d1b;
}
.cid-t8auyJ5Krm a:hover {
  Color: #a76645 !important;
}
.cid-t8auyJ5Krm a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8auyJ5Krm .btn-black-outline:hover,
.cid-t8auyJ5Krm .btn-black-outline:focus,
.cid-t8auyJ5Krm .btn-black-outline.focus,
.cid-t8auyJ5Krm .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-tDcfUoMk72 {
  background: #ffffff;
}
.cid-tDcfUoMk72 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tDcfUoMk72 figcaption {
  position: relative;
}
.cid-tDcfUoMk72 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tDcfUoMk72 .image-block {
    width: 100% !important;
  }
}
.cid-tBSNQtqS3E {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBSNQtqS3E .mbr-text,
.cid-tBSNQtqS3E blockquote {
  color: #767676;
}
.cid-tBSNQtqS3E .mbr-text {
  color: #1d1d1b;
}
.cid-tBSNQtqS3E .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tBSNQtqS3E h3 {
  font-size: inherit;
}
.cid-tBSNR42sJJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBSNR42sJJ .mbr-text,
.cid-tBSNR42sJJ blockquote {
  color: #767676;
}
.cid-tBSNR42sJJ .mbr-text {
  color: #1d1d1b;
}
.cid-tBSNR42sJJ .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tBSNR42sJJ p {
  margin-bottom: 0px;
}
.cid-tDcm9n60oG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tDcm9n60oG .testimonial-text {
  font-weight: 400;
  color: #1d1d1b;
}
.cid-tDcm9n60oG .mbr-text {
  line-height: 1.32;
}
.cid-tDcm9n60oG .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tDcm9n60oG .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tDcm9n60oG .h2_block {
  margin-bottom: 20px;
}
.cid-tDcm9n60oG .px-3 {
  padding-left: 0rem !important;
}
.cid-tDcm9n60oG .py-2 {
  padding-top: 0rem !important;
  padding-bottom: .0rem !important;
}
.cid-tDcm9n60oG .pr-lg-5 {
  padding-right: 1rem !important;
}
.cid-tDcm9n60oG .mbr-figure {
  margin-top: 20px;
  float: left;
}
.cid-tDcm9n60oG .media-content,
.cid-tDcm9n60oG .mbr-figure {
  align-self: flex-start;
}
.cid-tDcm9n60oG p {
  margin-bottom: 0px;
}
.cid-tDcm9n60oG .display-2 {
  font-size: 1em;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
}
.cid-tDcm9n60oG .container {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cid-tDcm9n60oG .mbr-figure,
  .cid-tDcm9n60oG img {
    width: 100%;
    margin-top: 20px;
    margin: auto;
  }
  .cid-tDcm9n60oG .col-10,
  .cid-tDcm9n60oG .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-tDcm9n60oG .pr-lg-5 {
    padding-right: 0rem !important;
    padding-top: 1rem !important;
  }
  .cid-tDcm9n60oG .media-content {
    padding-top: 1.5rem !important;
  }
}
@media (max-width: 768px) {
  .cid-tDcm9n60oG .col-10,
  .cid-tDcm9n60oG .col-md-8 {
    max-width: 100%;
  }
}
.cid-tBT7b5nVay {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tBT7b5nVay .mbr-text,
.cid-tBT7b5nVay blockquote {
  color: #767676;
}
.cid-tBT7b5nVay .mbr-text {
  color: #1d1d1b;
}
.cid-tBT7b5nVay .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tBT7b5nVay p {
  margin-bottom: 0px;
}
.cid-tB85pMTLcp {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tB85pMTLcp .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tB85pMTLcp .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-tB85pMTLcp .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-tB85pMTLcp .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tB85pMTLcp .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tB85pMTLcp .testimonial-text {
  text-align: left;
}
.cid-tBSx8hhHLB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBSx8hhHLB .mbr-text,
.cid-tBSx8hhHLB blockquote {
  color: #767676;
}
.cid-tBSx8hhHLB .mbr-text {
  color: #1d1d1b;
}
.cid-tBSx8hhHLB .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tBSx8hhHLB h3 {
  font-size: inherit;
}
.cid-tBSx8Vwjle {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBSx8Vwjle .mbr-text,
.cid-tBSx8Vwjle blockquote {
  color: #767676;
}
.cid-tBSx8Vwjle .mbr-text {
  color: #1d1d1b;
}
.cid-tBSx8Vwjle .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tBSx8Vwjle p {
  margin-bottom: 0px;
}
.cid-tBST080hum {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBST080hum .testimonial-text {
  font-weight: 400;
  color: #1d1d1b;
  text-align: left;
}
.cid-tBST080hum .mbr-text {
  line-height: 1.32 !important;
}
.cid-tBST080hum .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tBST080hum .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tBST080hum .h2_block {
  margin-bottom: 20px;
}
.cid-tBST080hum .px-3 {
  padding-left: 0rem !important;
}
.cid-tBST080hum .py-2 {
  padding-top: 0rem !important;
  padding-bottom: .0rem !important;
}
.cid-tBST080hum .pr-lg-5 {
  padding-right: 1rem !important;
}
.cid-tBST080hum .mbr-figure {
  margin-top: 20px;
  float: left;
}
.cid-tBST080hum .media-content,
.cid-tBST080hum .mbr-figure {
  align-self: flex-start;
}
.cid-tBST080hum p {
  margin-bottom: 0px;
}
.cid-tBST080hum .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 991px) {
  .cid-tBST080hum .mbr-figure,
  .cid-tBST080hum img {
    width: 100%;
    margin-top: 20px;
    margin: auto;
  }
  .cid-tBST080hum .col-10,
  .cid-tBST080hum .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-tBST080hum .pr-lg-5 {
    padding-right: 0rem !important;
    padding-top: 1rem !important;
  }
  .cid-tBST080hum .media-content {
    padding-top: 1.5rem !important;
  }
}
@media (max-width: 768px) {
  .cid-tBST080hum .col-10,
  .cid-tBST080hum .col-md-8 {
    max-width: 100%;
  }
}
.cid-tBST080hum h3 {
  margin-top: 1rem;
  color: #1d1d1b;
}
.cid-tBTaYuZfeM {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tBTaYuZfeM .mbr-text,
.cid-tBTaYuZfeM blockquote {
  color: #767676;
}
.cid-tBTaYuZfeM .mbr-text {
  color: #1d1d1b;
}
.cid-tBTaYuZfeM .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tBTaYuZfeM p {
  margin-bottom: 0px;
}
.cid-tBSOwsQqYp {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tBSOwsQqYp .mbr-text,
.cid-tBSOwsQqYp blockquote {
  color: #767676;
}
.cid-tBSOwsQqYp .mbr-text {
  color: #1d1d1b;
}
.cid-tBSOwsQqYp .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tBSOwsQqYp p {
  margin-bottom: 0px;
}
.cid-tDbOkfFmw1 {
  background: #ffffff;
}
.cid-tDbOkfFmw1 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tDbOkfFmw1 figcaption {
  position: relative;
}
.cid-tDbOkfFmw1 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tDbOkfFmw1 .image-block {
    width: 100% !important;
  }
}
.cid-t8auyJif7I {
  background: #ffffff;
}
.cid-t8auyJif7I .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-t8auyJif7I figcaption {
  position: relative;
}
.cid-t8auyJif7I figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t8auyJif7I .image-block {
    width: 300% !important;
  }
}
.cid-uccG07RHt1 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-uccG07RHt1 .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-uccG07RHt1 .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccG07RHt1 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccG07RHt1 .mbr-figure,
  .cid-uccG07RHt1 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccG07RHt1 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccG07RHt1 .mbr-author-desc {
  color: #000000;
}
.cid-uccG07RHt1 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccG07RHt1 .text_block {
  margin-top: 0px;
}
.cid-uccG07RHt1 .h2_block {
  margin-bottom: 20px;
}
.cid-uccG07RHt1 .mbr-figure {
  align-self: flex-start;
}
.cid-uccG07RHt1 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccG07RHt1 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccG07RHt1 .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccG07RHt1 a svg polygon {
  fill: white !important;
}
.cid-uccG07RHt1 a:hover {
  Color: #F9CEB2!important;
}
.cid-uccG07RHt1 a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccG07RHt1 .btn-white-outline:hover,
.cid-uccG07RHt1 .btn-white-outline:focus,
.cid-uccG07RHt1 .btn-white-outline.focus,
.cid-uccG07RHt1 .btn-white-outline.active,
.cid-uccG07RHt1 .btn-black-outline:hover,
.cid-uccG07RHt1 .btn-black-outline:focus,
.cid-uccG07RHt1 .btn-black-outline.focus,
.cid-uccG07RHt1 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccG07RHt1 .display-5 {
    line-height: 1;
  }
  .cid-uccG07RHt1 .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccG07RHt1 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccG07RHt1 .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-t8auyJNsWs {
  background: #ffffff;
}
.cid-t8auyJNsWs .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-t8auyJNsWs figcaption {
  position: relative;
}
.cid-t8auyJNsWs figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-t8auyJNsWs .image-block {
    width: 300% !important;
  }
}
.cid-tDcofOEJjw {
  background: #ffffff;
}
.cid-tDcofOEJjw .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tDcofOEJjw figcaption {
  position: relative;
}
.cid-tDcofOEJjw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tDcofOEJjw .image-block {
    width: 100% !important;
  }
}
.cid-t8auyKLp01 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-t8auyKLp01 .aktions_section {
  z-index: 99999;
}
.cid-t8auyKLp01 .item:focus,
.cid-t8auyKLp01 span:focus {
  outline: none;
}
.cid-t8auyKLp01 .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-t8auyKLp01 .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-t8auyKLp01 .item-btn,
.cid-t8auyKLp01 h4,
.cid-t8auyKLp01 h5 {
  margin: 0;
}
.cid-t8auyKLp01 .item-content {
  padding-top: 1rem;
}
.cid-t8auyKLp01 .item-title {
  color: #ffffff;
}
.cid-t8auyKLp01 .abstand {
  margin-top: -10px;
}
.cid-t8auyKLp01 h2 {
  font-weight: 700 !important;
  padding-left: 0.3rem;
  padding-right: 0.6rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 0.2px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-t8auyKLp01 h5 {
  color: #a76645 !important;
}
.cid-t8auyKLp01 h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-t8auyKLp01 .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8auyKLp01 .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8auyKLp01 .item-subtitle {
  color: #1d1d1b;
}
.cid-t8auyKLp01 .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-t8auyKLp01 .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-t8auyKLp01 .item-text {
  color: #1d1d1b;
}
.cid-t8auyKLp01 .space_down_50 {
  margin-bottom: 50px;
}
.cid-t8auyKLp01 item-text {
  color: #1d1d1b;
}
.cid-t8auyKLp01 .hiddden {
  display: none !important;
}
.cid-t8auyKLp01 .shoow {
  display: block !important;
}
.cid-t8auyKLp01 a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-t8auyKLp01 a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-t8auyKLp01 .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-t8auyKLp01 .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-t8auyKLp01 .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-t8auyKLp01 .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-t8auyKLp01 .embla {
  overflow: hidden;
}
.cid-t8auyKLp01 .embla__container {
  display: flex;
  will-change: transform;
}
.cid-t8auyKLp01 .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-t8auyKLp01 .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-t8auyKLp01 .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-t8auyKLp01 .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-t8auyKLp01 .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-t8auyKLp01 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-t8auyKLp01 .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-t8auyKLp01 .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-t8auyKLp01 .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-t8auyKLp01 .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-t8auyKLp01 .item-content {
    margin-top: 1rem;
  }
  .cid-t8auyKLp01 .item {
    padding-bottom: 1rem;
  }
  .cid-t8auyKLp01 .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-t8auyKLp01 h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-t8auyKLp01 .item-wrapper {
    width: 35vw;
  }
  .cid-t8auyKLp01 .embla__slide {
    padding: 0px;
  }
  .cid-t8auyKLp01 .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-t8auyKLp01 .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-t8auyKLp01 .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-t8auyKLp01 .embla__button {
    bottom: -0.5rem;
  }
}
.cid-tDcddZKzk1 {
  background: #ffffff;
}
.cid-tDcddZKzk1 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tDcddZKzk1 figcaption {
  position: relative;
}
.cid-tDcddZKzk1 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tDcddZKzk1 .image-block {
    width: 100% !important;
  }
}
.cid-u7A9mOc93N {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7A9mOc93N .content {
    text-align: center;
  }
  .cid-u7A9mOc93N .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7A9mOc93N .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7A9mOc93N .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7A9mOc93N .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7A9mOc93N .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7A9mOc93N .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7A9mOc93N .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7A9mOc93N .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7A9mOc93N .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7A9mOc93N .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7A9mOc93N .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7A9mOc93N .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7A9mOc93N .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7A9mOc93N H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7A9mOc93N P {
  color: #ffffff;
}
.cid-u7A9mOc93N .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7A9mOc93N .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7A9mOc93N .logo_footer {
  position: relative;
}
.cid-u7A9mOc93N .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7A9mOc93N .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7A9mOc93N .col,
  .cid-u7A9mOc93N .col-1,
  .cid-u7A9mOc93N .col-10,
  .cid-u7A9mOc93N .col-11,
  .cid-u7A9mOc93N .col-12,
  .cid-u7A9mOc93N .col-2,
  .cid-u7A9mOc93N .col-3,
  .cid-u7A9mOc93N .col-4,
  .cid-u7A9mOc93N .col-5,
  .cid-u7A9mOc93N .col-6,
  .cid-u7A9mOc93N .col-7,
  .cid-u7A9mOc93N .col-8,
  .cid-u7A9mOc93N .col-9,
  .cid-u7A9mOc93N .col-auto,
  .cid-u7A9mOc93N .col-lg,
  .cid-u7A9mOc93N .col-lg-1,
  .cid-u7A9mOc93N .col-lg-10,
  .cid-u7A9mOc93N .col-lg-11,
  .cid-u7A9mOc93N .col-lg-12,
  .cid-u7A9mOc93N .col-lg-2,
  .cid-u7A9mOc93N .col-lg-3,
  .cid-u7A9mOc93N .col-lg-4,
  .cid-u7A9mOc93N .col-lg-5,
  .cid-u7A9mOc93N .col-lg-6,
  .cid-u7A9mOc93N .col-lg-7,
  .cid-u7A9mOc93N .col-lg-8,
  .cid-u7A9mOc93N .col-lg-9,
  .cid-u7A9mOc93N .col-lg-auto,
  .cid-u7A9mOc93N .col-md,
  .cid-u7A9mOc93N .col-md-1,
  .cid-u7A9mOc93N .col-md-10,
  .cid-u7A9mOc93N .col-md-11,
  .cid-u7A9mOc93N .col-md-12,
  .cid-u7A9mOc93N .col-md-2,
  .cid-u7A9mOc93N .col-md-3,
  .cid-u7A9mOc93N .col-md-4,
  .cid-u7A9mOc93N .col-md-5,
  .cid-u7A9mOc93N .col-md-6,
  .cid-u7A9mOc93N .col-md-7,
  .cid-u7A9mOc93N .col-md-8,
  .cid-u7A9mOc93N .col-md-9,
  .cid-u7A9mOc93N .col-md-auto,
  .cid-u7A9mOc93N .col-sm,
  .cid-u7A9mOc93N .col-sm-1,
  .cid-u7A9mOc93N .col-sm-10,
  .cid-u7A9mOc93N .col-sm-11,
  .cid-u7A9mOc93N .col-sm-12,
  .cid-u7A9mOc93N .col-sm-2,
  .cid-u7A9mOc93N .col-sm-3,
  .cid-u7A9mOc93N .col-sm-4,
  .cid-u7A9mOc93N .col-sm-5,
  .cid-u7A9mOc93N .col-sm-6,
  .cid-u7A9mOc93N .col-sm-7,
  .cid-u7A9mOc93N .col-sm-8,
  .cid-u7A9mOc93N .col-sm-9,
  .cid-u7A9mOc93N .col-sm-auto,
  .cid-u7A9mOc93N .col-xl,
  .cid-u7A9mOc93N .col-xl-1,
  .cid-u7A9mOc93N .col-xl-10,
  .cid-u7A9mOc93N .col-xl-11,
  .cid-u7A9mOc93N .col-xl-12,
  .cid-u7A9mOc93N .col-xl-2,
  .cid-u7A9mOc93N .col-xl-3,
  .cid-u7A9mOc93N .col-xl-4,
  .cid-u7A9mOc93N .col-xl-5,
  .cid-u7A9mOc93N .col-xl-6,
  .cid-u7A9mOc93N .col-xl-7,
  .cid-u7A9mOc93N .col-xl-8,
  .cid-u7A9mOc93N .col-xl-9,
  .cid-u7A9mOc93N .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7A9mOc93N .content {
    text-align: left;
  }
  .cid-u7A9mOc93N .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7A9mOc93N .logo_footer_box {
    position: relative;
  }
  .cid-u7A9mOc93N .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7A9mOc93N .logo_footer {
    position: relative;
  }
  .cid-u7A9mOc93N .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7A9mOc93N .copyright > p {
  color: #f9ceb2;
}
.cid-tGvckdYUCi :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-tGvckdYUCi .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-tGvckdYUCi .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tGvckdYUCi a {
  font-style: normal;
}
.cid-tGvckdYUCi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tGvckdYUCi .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tGvckdYUCi .nav-item:focus,
.cid-tGvckdYUCi .nav-link:focus {
  outline: none;
}
.cid-tGvckdYUCi .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-tGvckdYUCi .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-tGvckdYUCi .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tGvckdYUCi .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tGvckdYUCi .menu-logo {
  margin-right: auto;
}
.cid-tGvckdYUCi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-tGvckdYUCi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tGvckdYUCi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tGvckdYUCi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tGvckdYUCi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tGvckdYUCi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tGvckdYUCi .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tGvckdYUCi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-tGvckdYUCi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tGvckdYUCi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tGvckdYUCi .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tGvckdYUCi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tGvckdYUCi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGvckdYUCi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tGvckdYUCi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGvckdYUCi .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-tGvckdYUCi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-tGvckdYUCi .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tGvckdYUCi .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tGvckdYUCi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tGvckdYUCi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tGvckdYUCi .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-tGvckdYUCi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tGvckdYUCi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tGvckdYUCi button.navbar-toggler:focus {
  outline: none;
}
.cid-tGvckdYUCi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGvckdYUCi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tGvckdYUCi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tGvckdYUCi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tGvckdYUCi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tGvckdYUCi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tGvckdYUCi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tGvckdYUCi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tGvckdYUCi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tGvckdYUCi .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tGvckdYUCi .collapsed .btn {
  display: flex;
}
.cid-tGvckdYUCi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tGvckdYUCi .collapsed .navbar-collapse.collapsing,
.cid-tGvckdYUCi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tGvckdYUCi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tGvckdYUCi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tGvckdYUCi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tGvckdYUCi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tGvckdYUCi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tGvckdYUCi .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-tGvckdYUCi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tGvckdYUCi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tGvckdYUCi .collapsed button.navbar-toggler {
  display: block;
}
.cid-tGvckdYUCi .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tGvckdYUCi .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tGvckdYUCi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tGvckdYUCi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tGvckdYUCi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tGvckdYUCi .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tGvckdYUCi .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-tGvckdYUCi .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-tGvckdYUCi .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-tGvckdYUCi .navbar-expand {
    flex-direction: column;
  }
  .cid-tGvckdYUCi img {
    height: 3rem !important;
  }
  .cid-tGvckdYUCi .btn {
    display: flex;
  }
  .cid-tGvckdYUCi button.navbar-toggler {
    display: block;
  }
  .cid-tGvckdYUCi .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tGvckdYUCi .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tGvckdYUCi .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tGvckdYUCi .navbar-collapse.collapsing,
  .cid-tGvckdYUCi .navbar-collapse.show {
    display: block !important;
  }
  .cid-tGvckdYUCi .navbar-collapse.collapsing .navbar-nav,
  .cid-tGvckdYUCi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tGvckdYUCi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tGvckdYUCi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tGvckdYUCi .navbar-collapse.collapsing .navbar-buttons,
  .cid-tGvckdYUCi .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tGvckdYUCi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tGvckdYUCi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tGvckdYUCi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tGvckdYUCi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tGvckdYUCi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tGvckdYUCi .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tGvckdYUCi .logo_s,
  .cid-tGvckdYUCi .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-tGvckdYUCi .menu-logo {
    flex-shrink: 3;
  }
}
.cid-tGvckdYUCi .navbar-collapse {
  flex-basis: auto;
}
.cid-tGvckdYUCi .nav-link:hover,
.cid-tGvckdYUCi .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-tGvckdYUCi .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-tGvckdYUCi .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-tGvckdYUCi .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-tGvckdYUCi .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-tGvckdYUCi .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-tGvckdYUCi a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tGvckdYUCi a:hover svg polygon,
.cid-tGvckdYUCi a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tGvckdYUCi .hidden {
  display: none !important;
}
.cid-tGvckdYUCi .shoow {
  display: block !important;
}
.cid-tGvckdYUCi .navbar-logo a,
.cid-tGvckdYUCi .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tGvckdYUCi .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tGvckdYUCi .logo_s {
    height: 2rem !important;
  }
  .cid-tGvckdYUCi .navbar-logo a img {
    left: 20px;
  }
  .cid-tGvckdYUCi .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-tGvckdYUCi .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-tGvckdYUCi .stoerer_head,
  .cid-tGvckdYUCi .stoerer_text {
    grid-row: 1;
  }
  .cid-tGvckdYUCi .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-tGvckdYUCi a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-tGvckeObf1 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-tGvckeObf1 {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tJO2Qvyb50 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/impact-spendenwirkung-header-2-2000x947.jpg");
}
.cid-tJO2Qvyb50 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tJO2Qvyb50 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tJO2Qvyb50 .mbr-figure img {
    width: 100% !important;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.cid-tJO8GLoTyC {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tJO8GLoTyC .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tJO8GLoTyC h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tJO8GLoTyC .space_down_50 {
  margin-bottom: 50px;
}
.cid-tJO8J1a7hZ {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tJO8J1a7hZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tJO8J1a7hZ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tJO8J1a7hZ .space_down_50 {
  margin-bottom: 50px;
}
.cid-tJO8J1a7hZ .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tJO8J1a7hZ .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
  font-size: 1.5rem !important;
  margin-top: -1.2rem;
}
.cid-tJO8J1a7hZ .pfeil_button {
  height: 16px;
  display: inline-block;
  margin-top: -4px;
  margin-left: 8px;
}
.cid-tJO8J1a7hZ a:hover {
  Color: #a76645 !important;
}
.cid-tJO8J1a7hZ a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tJO8J1a7hZ .btn-black-outline:hover,
.cid-tJO8J1a7hZ .btn-black-outline:focus,
.cid-tJO8J1a7hZ .btn-black-outline.focus,
.cid-tJO8J1a7hZ .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-tGvckoVeir {
  padding-top: 75px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-tGvckoVeir H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-tGvckoVeir .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tGvckoVeir span {
  visibility: hidden;
}
.cid-tGvckoVeir .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-tGvckoVeir span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-tGvckhaot1 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tGvckhaot1 .aktions_section {
  z-index: 99999;
}
.cid-tGvckhaot1 .item:focus,
.cid-tGvckhaot1 span:focus {
  outline: none;
}
.cid-tGvckhaot1 .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-tGvckhaot1 .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-tGvckhaot1 .item-btn,
.cid-tGvckhaot1 h4,
.cid-tGvckhaot1 h5 {
  margin: 0;
}
.cid-tGvckhaot1 .item-content {
  padding-top: 1rem;
}
.cid-tGvckhaot1 .item-title {
  color: #ffffff;
}
.cid-tGvckhaot1 .abstand {
  margin-top: -10px;
}
.cid-tGvckhaot1 h5 {
  color: #a76645 !important;
}
.cid-tGvckhaot1 h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-tGvckhaot1 .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tGvckhaot1 .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tGvckhaot1 .item-subtitle {
  color: #1d1d1b;
}
.cid-tGvckhaot1 .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-tGvckhaot1 .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-tGvckhaot1 .item-text {
  color: #1d1d1b;
}
.cid-tGvckhaot1 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tGvckhaot1 .space_down_50 {
  margin-bottom: 50px;
}
.cid-tGvckhaot1 item-text {
  color: #1d1d1b;
}
.cid-tGvckhaot1 .hiddden {
  display: none !important;
}
.cid-tGvckhaot1 .shoow {
  display: block !important;
}
.cid-tGvckhaot1 a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tGvckhaot1 a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tGvckhaot1 .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-tGvckhaot1 .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-tGvckhaot1 .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-tGvckhaot1 .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-tGvckhaot1 .embla {
  overflow: hidden;
}
.cid-tGvckhaot1 .embla__container {
  display: flex;
  will-change: transform;
}
.cid-tGvckhaot1 .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-tGvckhaot1 .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-tGvckhaot1 .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-tGvckhaot1 .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-tGvckhaot1 .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-tGvckhaot1 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tGvckhaot1 .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-tGvckhaot1 .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-tGvckhaot1 .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-tGvckhaot1 .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-tGvckhaot1 .item-content {
    margin-top: 1rem;
  }
  .cid-tGvckhaot1 .item {
    padding-bottom: 1rem;
  }
  .cid-tGvckhaot1 .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-tGvckhaot1 h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-tGvckhaot1 .item-wrapper {
    width: 35vw;
  }
  .cid-tGvckhaot1 .embla__slide {
    padding: 0px;
  }
  .cid-tGvckhaot1 .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-tGvckhaot1 .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-tGvckhaot1 .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-tGvckhaot1 .embla__button {
    bottom: -0.5rem;
  }
}
.cid-tH4idQa6Jd {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-tH4idQa6Jd .aktions_section {
  z-index: 99999;
}
.cid-tH4idQa6Jd .item:focus,
.cid-tH4idQa6Jd span:focus {
  outline: none;
}
.cid-tH4idQa6Jd .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-tH4idQa6Jd .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-tH4idQa6Jd .item-btn,
.cid-tH4idQa6Jd h4,
.cid-tH4idQa6Jd h5 {
  margin: 0;
}
.cid-tH4idQa6Jd .item-content {
  padding-top: 1rem;
}
.cid-tH4idQa6Jd .item-title {
  color: #ffffff;
}
.cid-tH4idQa6Jd .abstand {
  margin-top: -10px;
}
.cid-tH4idQa6Jd h5 {
  color: #a76645 !important;
}
.cid-tH4idQa6Jd h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-tH4idQa6Jd .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tH4idQa6Jd .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tH4idQa6Jd .item-subtitle {
  color: #1d1d1b;
}
.cid-tH4idQa6Jd .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-tH4idQa6Jd .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-tH4idQa6Jd .item-text {
  color: #1d1d1b;
}
.cid-tH4idQa6Jd h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tH4idQa6Jd .space_down_50 {
  margin-bottom: 50px;
}
.cid-tH4idQa6Jd item-text {
  color: #1d1d1b;
}
.cid-tH4idQa6Jd .hiddden {
  display: none !important;
}
.cid-tH4idQa6Jd .shoow {
  display: block !important;
}
.cid-tH4idQa6Jd a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tH4idQa6Jd a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tH4idQa6Jd .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-tH4idQa6Jd .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-tH4idQa6Jd .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-tH4idQa6Jd .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-tH4idQa6Jd .embla {
  overflow: hidden;
}
.cid-tH4idQa6Jd .embla__container {
  display: flex;
  will-change: transform;
}
.cid-tH4idQa6Jd .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-tH4idQa6Jd .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-tH4idQa6Jd .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-tH4idQa6Jd .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-tH4idQa6Jd .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-tH4idQa6Jd .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tH4idQa6Jd .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-tH4idQa6Jd .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-tH4idQa6Jd .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-tH4idQa6Jd .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-tH4idQa6Jd .item-content {
    margin-top: 1rem;
  }
  .cid-tH4idQa6Jd .item {
    padding-bottom: 1rem;
  }
  .cid-tH4idQa6Jd .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-tH4idQa6Jd h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-tH4idQa6Jd .item-wrapper {
    width: 35vw;
  }
  .cid-tH4idQa6Jd .embla__slide {
    padding: 0px;
  }
  .cid-tH4idQa6Jd .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-tH4idQa6Jd .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-tH4idQa6Jd .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-tH4idQa6Jd .embla__button {
    bottom: -0.5rem;
  }
}
.cid-tGvOCM3LiU {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tGvOCM3LiU .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tGvOCM3LiU h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tGvOCM3LiU .space_down_50 {
  margin-bottom: 50px;
}
.cid-tH4mGuseVA {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tH4mGuseVA .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tH4mGuseVA h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tH4mGuseVA .space_down_50 {
  margin-bottom: 50px;
}
.cid-tH4mGuseVA .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tH4mGuseVA span {
  font-weight: 700 !important;
  font-size: 2.9rem;
  color: #f9ceb2;
  line-height: 3rem;
}
.cid-tH4mGuseVA p {
  hyphens: auto;
}
.cid-tH4mo3zye5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tH4mo3zye5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tH4mo3zye5 p {
  color: #767676;
  text-align: left;
}
.cid-tH4mo3zye5 .card-box {
  padding-top: 2rem;
}
.cid-tH4mo3zye5 .card-wrapper {
  height: 100%;
}
.cid-tH4pOYAySh {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tH4pOYAySh h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tH4pOYAySh p {
  color: #767676;
  text-align: left;
}
.cid-tH4pOYAySh .card-box {
  padding-top: 2rem;
}
.cid-tH4pOYAySh .card-wrapper {
  height: 100%;
}
.cid-tGvzRRo1en {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tGvzRRo1en .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-tGvzRRo1en .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tGvzRRo1en .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tGvzRRo1en .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tGvzRRo1en .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tGvzRRo1en .mbr-figure,
  .cid-tGvzRRo1en img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-tGvzRRo1en h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tGvzRRo1en .text_block {
  margin-top: 0px;
}
.cid-tGvzRRo1en .h2_block {
  margin-bottom: 20px;
}
.cid-tGvzRRo1en .mbr-figure {
  align-self: flex-start;
}
.cid-tGvzRRo1en .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-tGvzRRo1en .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tGvzRRo1en a:hover {
  Color: #a76645 !important;
}
.cid-tGvzRRo1en a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tGvzRRo1en .btn-black-outline:hover,
.cid-tGvzRRo1en .btn-black-outline:focus,
.cid-tGvzRRo1en .btn-black-outline.focus,
.cid-tGvzRRo1en .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tGvzRRo1en .display-5 {
    line-height: 1;
  }
  .cid-tGvzRRo1en .btn {
    font-size: 1.5rem !important;
  }
  .cid-tGvzRRo1en .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tGvzRRo1en .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tGvzRRo1en .content {
  padding-left: 3px;
}
.cid-tItKkOdhjc {
  background-image: url("../../../assets/images/menschheits-tshirt-1280x707.jpg");
}
.cid-tItKkOdhjc P {
  color: #767676;
}
.cid-tGvkSeMwwC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tGvkSeMwwC .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-tGvkSeMwwC h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tGvkSeMwwC .space_down_30 {
  margin-bottom: 30px;
}
.cid-tGvkSeMwwC .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tGvcklHrRf {
  background: #ffffff;
}
.cid-tGvcklHrRf .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tGvcklHrRf figcaption {
  position: relative;
}
.cid-tGvcklHrRf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tGvcklHrRf .image-block {
    width: 300% !important;
  }
}
.cid-uccGhdlSHw {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-uccGhdlSHw .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-uccGhdlSHw .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccGhdlSHw .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccGhdlSHw .mbr-figure,
  .cid-uccGhdlSHw img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccGhdlSHw .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccGhdlSHw .mbr-author-desc {
  color: #000000;
}
.cid-uccGhdlSHw h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccGhdlSHw .text_block {
  margin-top: 0px;
}
.cid-uccGhdlSHw .h2_block {
  margin-bottom: 20px;
}
.cid-uccGhdlSHw .mbr-figure {
  align-self: flex-start;
}
.cid-uccGhdlSHw .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccGhdlSHw .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccGhdlSHw .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccGhdlSHw a:hover {
  Color: #a76645 !important;
}
.cid-uccGhdlSHw a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccGhdlSHw .btn-black-outline:hover,
.cid-uccGhdlSHw .btn-black-outline:focus,
.cid-uccGhdlSHw .btn-black-outline.focus,
.cid-uccGhdlSHw .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccGhdlSHw .display-5 {
    line-height: 1;
  }
  .cid-uccGhdlSHw .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccGhdlSHw .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccGhdlSHw .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tGvckmjIwz {
  background: #ffffff;
}
.cid-tGvckmjIwz .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tGvckmjIwz figcaption {
  position: relative;
}
.cid-tGvckmjIwz figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tGvckmjIwz .image-block {
    width: 300% !important;
  }
}
.cid-tH4lnc3TaF {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tH4lnc3TaF .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tH4lnc3TaF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tH4lnc3TaF .space_down_50 {
  margin-bottom: 50px;
}
.cid-tH4ljqZ1oV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tH4ljqZ1oV h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tH4ljqZ1oV p {
  color: #767676;
  text-align: left;
}
.cid-tH4ljqZ1oV .card-box {
  padding-top: 2rem;
}
.cid-tH4ljqZ1oV .card-wrapper {
  height: 100%;
}
.cid-tH4ljqZ1oV P {
  color: #1d1d1b;
}
.cid-tH4ljqZ1oV span {
  font-weight: 700 !important;
  font-size: 1.5rem;
  color: #f9ceb2;
  line-height: 1rem;
}
.cid-tH4q8TOw2B {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tH4q8TOw2B h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tH4q8TOw2B p {
  color: #767676;
  text-align: left;
}
.cid-tH4q8TOw2B .card-box {
  padding-top: 2rem;
}
.cid-tH4q8TOw2B .card-wrapper {
  height: 100%;
}
.cid-tGvl7lTktV {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tGvl7lTktV .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tGvl7lTktV h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tGvl7lTktV .space_down_50 {
  margin-bottom: 50px;
}
.cid-tGvl38wHVT {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tGvl38wHVT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tGvl38wHVT p {
  color: #767676;
  text-align: left;
}
.cid-tGvl38wHVT .card-box {
  padding-top: 2rem;
}
.cid-tGvl38wHVT .card-wrapper {
  height: 100%;
}
.cid-tGvl38wHVT P {
  color: #1d1d1b;
}
.cid-tGvl38wHVT span {
  font-weight: 700 !important;
  font-size: 1.5rem;
  color: #f9ceb2;
  line-height: 1rem;
}
.cid-tH4GQYQSrA {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-tH4GQYQSrA .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tH4GQYQSrA .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tH4GQYQSrA .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tHOytqoBGe {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tHOytqoBGe .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tHOytqoBGe h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tHOytqoBGe .space_down_50 {
  margin-bottom: 50px;
}
.cid-tHOyTBWPvJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tHOyTBWPvJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tHOyTBWPvJ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tHOyTBWPvJ .space_down_50 {
  margin-bottom: 50px;
}
.cid-tHOyTBWPvJ .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tHOywW6zM0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tHOywW6zM0 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tHOywW6zM0 p {
  color: #767676;
  text-align: left;
}
.cid-tHOywW6zM0 .card-box {
  padding-top: 2rem;
}
.cid-tHOywW6zM0 .card-wrapper {
  height: 100%;
}
.cid-tHOyy00Y0Y {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tHOyy00Y0Y h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tHOyy00Y0Y p {
  color: #767676;
  text-align: left;
}
.cid-tHOyy00Y0Y .card-box {
  padding-top: 2rem;
}
.cid-tHOyy00Y0Y .card-wrapper {
  height: 100%;
}
.cid-tItSPDmzmS {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-tItSPDmzmS .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tItSPDmzmS h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tItSPDmzmS .space_down_50 {
  margin-bottom: 50px;
}
.cid-tItSPDmzmS .testimonial-text {
  text-align: left;
}
.cid-tItSMihnEd {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #f9ceb2;
}
.cid-tItSMihnEd .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-tItSMihnEd h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tItSMihnEd p {
  color: #767676;
  text-align: left;
}
.cid-tItSMihnEd .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-tItSMihnEd .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tItSMihnEd .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tItSMihnEd .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tItSMihnEd .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tItSMihnEd .notched-box:before,
.cid-tItSMihnEd .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-tItSMihnEd .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-tItSMihnEd .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-tItSMihnEd .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-tItSMihnEd .border:before,
.cid-tItSMihnEd .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-tItSMihnEd .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-tItSMihnEd .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-tItSMihnEd .mbr-author-name {
  padding-left: 40px;
}
.cid-tItSMihnEd P {
  color: #000000;
  line-height: 1.3;
}
.cid-tItSMihnEd .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-tGvlGckG6v {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tGvlGckG6v .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-tGvlGckG6v h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tGvlGckG6v .space_down_30 {
  margin-bottom: 30px;
}
.cid-tGvlGckG6v .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tGvckowCBL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tGvckowCBL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tGvckowCBL p {
  color: #767676;
  text-align: left;
}
.cid-tGvckowCBL .card-box {
  padding-top: 2rem;
}
.cid-tGvckowCBL .card-wrapper {
  height: 100%;
}
.cid-tItValFCA5 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-7-1500x302.jpg");
}
.cid-tItValFCA5 H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-tItValFCA5 .mbr-section-subtitle {
  color: #000000;
}
.cid-tItValFCA5 section {
  background-color: none;
}
.cid-tItValFCA5 .logo_footer {
  position: relative;
  right: 100px;
}
.cid-tGvckuyk9E {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tGvckuyk9E .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-tGvckuyk9E h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tGvckuyk9E .space_down_30 {
  margin-bottom: 30px;
}
.cid-tGvckuyk9E .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tGvckuyk9E span {
  font-weight: 700 !important;
  font-size: 1.5rem;
  color: #f9ceb2;
  line-height: 1rem;
}
.cid-tGvckuyk9E .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
  font-size: 1.5rem !important;
  margin-top: -1.2rem;
}
.cid-tGvckuyk9E .pfeil_button {
  height: 16px;
  display: inline-block;
  margin-top: -4px;
  margin-left: 8px;
}
.cid-tGvckuyk9E a:hover {
  Color: #a76645 !important;
}
.cid-tGvckuyk9E a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tGvckuyk9E .btn-black-outline:hover,
.cid-tGvckuyk9E .btn-black-outline:focus,
.cid-tGvckuyk9E .btn-black-outline.focus,
.cid-tGvckuyk9E .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-tIuCAHHbn7 {
  background-image: url("../../../assets/images/reaktion-buch-2000x1329.jpg");
}
.cid-tIuCAHHbn7 P {
  color: #767676;
}
.cid-tIuCAHHbn7 .mbr-text,
.cid-tIuCAHHbn7 .mbr-section-btn {
  color: #ffffff;
}
.cid-tIuCAHHbn7 .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase ;
}
.cid-tIuCAHHbn7 .label {
  text-align: left;
  width: 400px;
  margin: 0px;
  margin-bottom: -22px;
  padding: 0px;
}
.cid-tIuCAHHbn7 .container {
  align-self: flex-end;
}
.cid-tIuCAHHbn7 .aktuelle_aktion_button {
  position: relative;
  left: 60vw;
  bottom: 15vh;
  max-width: 400px;
}
.cid-tIuCAHHbn7 .special_button {
  width: 100%;
}
.cid-tIuCAHHbn7 .special_button a {
  text-align: left;
}
.cid-tIuCAHHbn7 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: white !important;
  text-transform: uppercase ;
  line-height: 1.2;
}
.cid-tIuCAHHbn7 svg polygon {
  fill: white ;
}
.cid-tIuCAHHbn7 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tIuCAHHbn7 a:hover {
  Color: #a76645 !important;
}
.cid-tIuCAHHbn7 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tIuCAHHbn7 .btn-black-outline:hover,
.cid-tIuCAHHbn7 .btn-black-outline:focus,
.cid-tIuCAHHbn7 .btn-black-outline.focus,
.cid-tIuCAHHbn7 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-tIuCAHHbn7 .btn {
  justify-content: left;
  -webkit-justify-content: left;
  border-width: 0px !important;
  padding: 0px;
  margin: 0px;
  display: inline-block;
}
.cid-tIuCAHHbn7 .mbr-section-btn {
  margin-top: 5px;
}
@media (max-width: 768px) {
  .cid-tIuCAHHbn7 .aktuelle_aktion_button {
    left: 0vw;
    bottom: 30vh;
  }
  .cid-tIuCAHHbn7 .container {
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-tIuCAHHbn7 .display-5 {
    line-height: 1;
  }
  .cid-tIuCAHHbn7 .btn {
    font-size: 1.5rem !important;
  }
  .cid-tIuCAHHbn7 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
@media (min-width: 768px) {
  .cid-tIuCAHHbn7 .aktuelle_aktion_button {
    left: 0vw;
  }
}
@media (min-width: 992px) {
  .cid-tIuCAHHbn7 .aktuelle_aktion_button {
    left: 42vw;
  }
}
@media (min-width: 1200px) {
  .cid-tIuCAHHbn7 .aktuelle_aktion_button {
    left: 55vw;
  }
}
.cid-tGvckmRQY5 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-4-1500x490.jpg");
}
.cid-tGvckmRQY5 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-tGvckmRQY5 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tGvckmRQY5 span {
  visibility: hidden;
}
.cid-tGvckmRQY5 .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-tGvckmRQY5 span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-tGvcktQnR8 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-4-1500x1695.jpg");
}
.cid-tGvcktQnR8 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-tGvcktQnR8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tGvcktQnR8 p {
  color: #767676;
  text-align: left;
}
.cid-tGvcktQnR8 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-tGvcktQnR8 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tGvcktQnR8 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-tGvcktQnR8 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tGvcktQnR8 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-tGvcktQnR8 .notched-box:before,
.cid-tGvcktQnR8 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-tGvcktQnR8 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-tGvcktQnR8 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-tGvcktQnR8 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-tGvcktQnR8 .border:before,
.cid-tGvcktQnR8 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-tGvcktQnR8 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-tGvcktQnR8 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-tGvcktQnR8 .mbr-author-name {
  padding-left: 40px;
}
.cid-tGvcktQnR8 P {
  color: #ffffff;
}
.cid-tGvcktQnR8 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u7A9pxzDk2 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7A9pxzDk2 .content {
    text-align: center;
  }
  .cid-u7A9pxzDk2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7A9pxzDk2 .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7A9pxzDk2 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7A9pxzDk2 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7A9pxzDk2 .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7A9pxzDk2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7A9pxzDk2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7A9pxzDk2 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7A9pxzDk2 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7A9pxzDk2 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7A9pxzDk2 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7A9pxzDk2 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7A9pxzDk2 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7A9pxzDk2 H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7A9pxzDk2 P {
  color: #ffffff;
}
.cid-u7A9pxzDk2 .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7A9pxzDk2 .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7A9pxzDk2 .logo_footer {
  position: relative;
}
.cid-u7A9pxzDk2 .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7A9pxzDk2 .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7A9pxzDk2 .col,
  .cid-u7A9pxzDk2 .col-1,
  .cid-u7A9pxzDk2 .col-10,
  .cid-u7A9pxzDk2 .col-11,
  .cid-u7A9pxzDk2 .col-12,
  .cid-u7A9pxzDk2 .col-2,
  .cid-u7A9pxzDk2 .col-3,
  .cid-u7A9pxzDk2 .col-4,
  .cid-u7A9pxzDk2 .col-5,
  .cid-u7A9pxzDk2 .col-6,
  .cid-u7A9pxzDk2 .col-7,
  .cid-u7A9pxzDk2 .col-8,
  .cid-u7A9pxzDk2 .col-9,
  .cid-u7A9pxzDk2 .col-auto,
  .cid-u7A9pxzDk2 .col-lg,
  .cid-u7A9pxzDk2 .col-lg-1,
  .cid-u7A9pxzDk2 .col-lg-10,
  .cid-u7A9pxzDk2 .col-lg-11,
  .cid-u7A9pxzDk2 .col-lg-12,
  .cid-u7A9pxzDk2 .col-lg-2,
  .cid-u7A9pxzDk2 .col-lg-3,
  .cid-u7A9pxzDk2 .col-lg-4,
  .cid-u7A9pxzDk2 .col-lg-5,
  .cid-u7A9pxzDk2 .col-lg-6,
  .cid-u7A9pxzDk2 .col-lg-7,
  .cid-u7A9pxzDk2 .col-lg-8,
  .cid-u7A9pxzDk2 .col-lg-9,
  .cid-u7A9pxzDk2 .col-lg-auto,
  .cid-u7A9pxzDk2 .col-md,
  .cid-u7A9pxzDk2 .col-md-1,
  .cid-u7A9pxzDk2 .col-md-10,
  .cid-u7A9pxzDk2 .col-md-11,
  .cid-u7A9pxzDk2 .col-md-12,
  .cid-u7A9pxzDk2 .col-md-2,
  .cid-u7A9pxzDk2 .col-md-3,
  .cid-u7A9pxzDk2 .col-md-4,
  .cid-u7A9pxzDk2 .col-md-5,
  .cid-u7A9pxzDk2 .col-md-6,
  .cid-u7A9pxzDk2 .col-md-7,
  .cid-u7A9pxzDk2 .col-md-8,
  .cid-u7A9pxzDk2 .col-md-9,
  .cid-u7A9pxzDk2 .col-md-auto,
  .cid-u7A9pxzDk2 .col-sm,
  .cid-u7A9pxzDk2 .col-sm-1,
  .cid-u7A9pxzDk2 .col-sm-10,
  .cid-u7A9pxzDk2 .col-sm-11,
  .cid-u7A9pxzDk2 .col-sm-12,
  .cid-u7A9pxzDk2 .col-sm-2,
  .cid-u7A9pxzDk2 .col-sm-3,
  .cid-u7A9pxzDk2 .col-sm-4,
  .cid-u7A9pxzDk2 .col-sm-5,
  .cid-u7A9pxzDk2 .col-sm-6,
  .cid-u7A9pxzDk2 .col-sm-7,
  .cid-u7A9pxzDk2 .col-sm-8,
  .cid-u7A9pxzDk2 .col-sm-9,
  .cid-u7A9pxzDk2 .col-sm-auto,
  .cid-u7A9pxzDk2 .col-xl,
  .cid-u7A9pxzDk2 .col-xl-1,
  .cid-u7A9pxzDk2 .col-xl-10,
  .cid-u7A9pxzDk2 .col-xl-11,
  .cid-u7A9pxzDk2 .col-xl-12,
  .cid-u7A9pxzDk2 .col-xl-2,
  .cid-u7A9pxzDk2 .col-xl-3,
  .cid-u7A9pxzDk2 .col-xl-4,
  .cid-u7A9pxzDk2 .col-xl-5,
  .cid-u7A9pxzDk2 .col-xl-6,
  .cid-u7A9pxzDk2 .col-xl-7,
  .cid-u7A9pxzDk2 .col-xl-8,
  .cid-u7A9pxzDk2 .col-xl-9,
  .cid-u7A9pxzDk2 .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7A9pxzDk2 .content {
    text-align: left;
  }
  .cid-u7A9pxzDk2 .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7A9pxzDk2 .logo_footer_box {
    position: relative;
  }
  .cid-u7A9pxzDk2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7A9pxzDk2 .logo_footer {
    position: relative;
  }
  .cid-u7A9pxzDk2 .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7A9pxzDk2 .copyright > p {
  color: #f9ceb2;
}
.cid-tHPqYwsMs2 :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-tHPqYwsMs2 .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-tHPqYwsMs2 .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tHPqYwsMs2 a {
  font-style: normal;
}
.cid-tHPqYwsMs2 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tHPqYwsMs2 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tHPqYwsMs2 .nav-item:focus,
.cid-tHPqYwsMs2 .nav-link:focus {
  outline: none;
}
.cid-tHPqYwsMs2 .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-tHPqYwsMs2 .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-tHPqYwsMs2 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tHPqYwsMs2 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tHPqYwsMs2 .menu-logo {
  margin-right: auto;
}
.cid-tHPqYwsMs2 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-tHPqYwsMs2 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tHPqYwsMs2 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tHPqYwsMs2 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tHPqYwsMs2 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tHPqYwsMs2 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tHPqYwsMs2 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tHPqYwsMs2 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-tHPqYwsMs2 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tHPqYwsMs2 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tHPqYwsMs2 .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tHPqYwsMs2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tHPqYwsMs2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHPqYwsMs2 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tHPqYwsMs2 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHPqYwsMs2 .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-tHPqYwsMs2 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-tHPqYwsMs2 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tHPqYwsMs2 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tHPqYwsMs2 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tHPqYwsMs2 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tHPqYwsMs2 .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-tHPqYwsMs2 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tHPqYwsMs2 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tHPqYwsMs2 button.navbar-toggler:focus {
  outline: none;
}
.cid-tHPqYwsMs2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tHPqYwsMs2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tHPqYwsMs2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tHPqYwsMs2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tHPqYwsMs2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tHPqYwsMs2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHPqYwsMs2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tHPqYwsMs2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tHPqYwsMs2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tHPqYwsMs2 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tHPqYwsMs2 .collapsed .btn {
  display: flex;
}
.cid-tHPqYwsMs2 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tHPqYwsMs2 .collapsed .navbar-collapse.collapsing,
.cid-tHPqYwsMs2 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tHPqYwsMs2 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tHPqYwsMs2 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tHPqYwsMs2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tHPqYwsMs2 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tHPqYwsMs2 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tHPqYwsMs2 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-tHPqYwsMs2 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tHPqYwsMs2 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tHPqYwsMs2 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tHPqYwsMs2 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tHPqYwsMs2 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tHPqYwsMs2 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tHPqYwsMs2 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tHPqYwsMs2 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tHPqYwsMs2 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tHPqYwsMs2 .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-tHPqYwsMs2 .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-tHPqYwsMs2 .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-tHPqYwsMs2 .navbar-expand {
    flex-direction: column;
  }
  .cid-tHPqYwsMs2 img {
    height: 3rem !important;
  }
  .cid-tHPqYwsMs2 .btn {
    display: flex;
  }
  .cid-tHPqYwsMs2 button.navbar-toggler {
    display: block;
  }
  .cid-tHPqYwsMs2 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tHPqYwsMs2 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tHPqYwsMs2 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tHPqYwsMs2 .navbar-collapse.collapsing,
  .cid-tHPqYwsMs2 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tHPqYwsMs2 .navbar-collapse.collapsing .navbar-nav,
  .cid-tHPqYwsMs2 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tHPqYwsMs2 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tHPqYwsMs2 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tHPqYwsMs2 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tHPqYwsMs2 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tHPqYwsMs2 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tHPqYwsMs2 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tHPqYwsMs2 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tHPqYwsMs2 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tHPqYwsMs2 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tHPqYwsMs2 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tHPqYwsMs2 .logo_s,
  .cid-tHPqYwsMs2 .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-tHPqYwsMs2 .menu-logo {
    flex-shrink: 3;
  }
}
.cid-tHPqYwsMs2 .navbar-collapse {
  flex-basis: auto;
}
.cid-tHPqYwsMs2 .nav-link:hover,
.cid-tHPqYwsMs2 .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-tHPqYwsMs2 .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-tHPqYwsMs2 .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-tHPqYwsMs2 .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-tHPqYwsMs2 .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-tHPqYwsMs2 .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-tHPqYwsMs2 a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tHPqYwsMs2 a:hover svg polygon,
.cid-tHPqYwsMs2 a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tHPqYwsMs2 .hidden {
  display: none !important;
}
.cid-tHPqYwsMs2 .shoow {
  display: block !important;
}
.cid-tHPqYwsMs2 .navbar-logo a,
.cid-tHPqYwsMs2 .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tHPqYwsMs2 .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tHPqYwsMs2 .logo_s {
    height: 2rem !important;
  }
  .cid-tHPqYwsMs2 .navbar-logo a img {
    left: 20px;
  }
  .cid-tHPqYwsMs2 .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-tHPqYwsMs2 .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-tHPqYwsMs2 .stoerer_head,
  .cid-tHPqYwsMs2 .stoerer_text {
    grid-row: 1;
  }
  .cid-tHPqYwsMs2 .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-tHPqYwsMs2 a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-tHPqYx9SYQ {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-2-1500x205.png");
}
@media (max-width: 768px) {
  .cid-tHPqYx9SYQ {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tJ9tSV5AqE {
  background-image: url("../../../assets/images/zps-deinestele-0228-v2-10627-2000x1333.jpg");
}
.cid-tJ9tSV5AqE h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tJ9tSV5AqE .space_down_50 {
  margin-bottom: 50px;
}
.cid-tJ9uHb887n {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tJ9uHb887n .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-tJ9uHb887n .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tJ9uHb887n .mbr-author-desc {
  color: #1d1d1b;
}
.cid-tJ9uHb887n .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-tJ9uHb887n .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tJ9uHb887n .mbr-figure,
  .cid-tJ9uHb887n img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-tJ9uHb887n h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tJ9uHb887n .text_block {
  margin-top: 0px;
}
.cid-tJ9uHb887n .h2_block {
  margin-bottom: 20px;
}
.cid-tJ9uHb887n .mbr-figure {
  align-self: flex-start;
}
.cid-tJ9uHb887n .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-tJ9uHb887n .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tJ9uHb887n a:hover {
  Color: #a76645 !important;
}
.cid-tJ9uHb887n a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tJ9uHb887n .btn-black-outline:hover,
.cid-tJ9uHb887n .btn-black-outline:focus,
.cid-tJ9uHb887n .btn-black-outline.focus,
.cid-tJ9uHb887n .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tJ9uHb887n .display-5 {
    line-height: 1;
  }
  .cid-tJ9uHb887n .btn {
    font-size: 1.5rem !important;
  }
  .cid-tJ9uHb887n .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tJ9uHb887n .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tJ9uHb887n .content {
  padding-left: 3px;
}
.cid-tJ9vs6oYNp {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-tJ9vs6oYNp .images-container.container-fluid {
  padding: 0;
}
.cid-tJ9vs6oYNp .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tJ9vs6oYNp .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tJ9vs6oYNp .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tJ9vs6oYNp .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tJ9vs6oYNp .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tJ9vs6oYNp .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tJ9vs6oYNp .img-item {
    width: 100% !important;
  }
  .cid-tJ9vs6oYNp .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tHPqYB7HBL {
  background: #ffffff;
}
.cid-tHPqYB7HBL .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tHPqYB7HBL figcaption {
  position: relative;
}
.cid-tHPqYB7HBL figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tHPqYB7HBL .image-block {
    width: 300% !important;
  }
}
.cid-tHPqYBtjWD {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-tHPqYBtjWD .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tHPqYBtjWD .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-tHPqYBtjWD .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tHPqYBtjWD .mbr-figure,
  .cid-tHPqYBtjWD img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-tHPqYBtjWD .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tHPqYBtjWD .mbr-author-desc {
  color: #000000;
}
.cid-tHPqYBtjWD h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tHPqYBtjWD .text_block {
  margin-top: 0px;
}
.cid-tHPqYBtjWD .h2_block {
  margin-bottom: 20px;
}
.cid-tHPqYBtjWD .mbr-figure {
  align-self: flex-start;
}
.cid-tHPqYBtjWD .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-tHPqYBtjWD .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tHPqYBtjWD .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-tHPqYBtjWD a:hover {
  Color: #a76645 !important;
}
.cid-tHPqYBtjWD a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tHPqYBtjWD .btn-black-outline:hover,
.cid-tHPqYBtjWD .btn-black-outline:focus,
.cid-tHPqYBtjWD .btn-black-outline.focus,
.cid-tHPqYBtjWD .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tHPqYBtjWD .display-5 {
    line-height: 1;
  }
  .cid-tHPqYBtjWD .btn {
    font-size: 1.5rem !important;
  }
  .cid-tHPqYBtjWD .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tHPqYBtjWD .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tHPqYBOjr3 {
  background: #ffffff;
}
.cid-tHPqYBOjr3 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tHPqYBOjr3 figcaption {
  position: relative;
}
.cid-tHPqYBOjr3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tHPqYBOjr3 .image-block {
    width: 300% !important;
  }
}
.cid-u7A9s8ZDDH {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7A9s8ZDDH .content {
    text-align: center;
  }
  .cid-u7A9s8ZDDH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7A9s8ZDDH .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7A9s8ZDDH .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7A9s8ZDDH .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7A9s8ZDDH .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7A9s8ZDDH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7A9s8ZDDH .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7A9s8ZDDH .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7A9s8ZDDH .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7A9s8ZDDH .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7A9s8ZDDH .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7A9s8ZDDH .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7A9s8ZDDH .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7A9s8ZDDH H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7A9s8ZDDH P {
  color: #ffffff;
}
.cid-u7A9s8ZDDH .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7A9s8ZDDH .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7A9s8ZDDH .logo_footer {
  position: relative;
}
.cid-u7A9s8ZDDH .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7A9s8ZDDH .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7A9s8ZDDH .col,
  .cid-u7A9s8ZDDH .col-1,
  .cid-u7A9s8ZDDH .col-10,
  .cid-u7A9s8ZDDH .col-11,
  .cid-u7A9s8ZDDH .col-12,
  .cid-u7A9s8ZDDH .col-2,
  .cid-u7A9s8ZDDH .col-3,
  .cid-u7A9s8ZDDH .col-4,
  .cid-u7A9s8ZDDH .col-5,
  .cid-u7A9s8ZDDH .col-6,
  .cid-u7A9s8ZDDH .col-7,
  .cid-u7A9s8ZDDH .col-8,
  .cid-u7A9s8ZDDH .col-9,
  .cid-u7A9s8ZDDH .col-auto,
  .cid-u7A9s8ZDDH .col-lg,
  .cid-u7A9s8ZDDH .col-lg-1,
  .cid-u7A9s8ZDDH .col-lg-10,
  .cid-u7A9s8ZDDH .col-lg-11,
  .cid-u7A9s8ZDDH .col-lg-12,
  .cid-u7A9s8ZDDH .col-lg-2,
  .cid-u7A9s8ZDDH .col-lg-3,
  .cid-u7A9s8ZDDH .col-lg-4,
  .cid-u7A9s8ZDDH .col-lg-5,
  .cid-u7A9s8ZDDH .col-lg-6,
  .cid-u7A9s8ZDDH .col-lg-7,
  .cid-u7A9s8ZDDH .col-lg-8,
  .cid-u7A9s8ZDDH .col-lg-9,
  .cid-u7A9s8ZDDH .col-lg-auto,
  .cid-u7A9s8ZDDH .col-md,
  .cid-u7A9s8ZDDH .col-md-1,
  .cid-u7A9s8ZDDH .col-md-10,
  .cid-u7A9s8ZDDH .col-md-11,
  .cid-u7A9s8ZDDH .col-md-12,
  .cid-u7A9s8ZDDH .col-md-2,
  .cid-u7A9s8ZDDH .col-md-3,
  .cid-u7A9s8ZDDH .col-md-4,
  .cid-u7A9s8ZDDH .col-md-5,
  .cid-u7A9s8ZDDH .col-md-6,
  .cid-u7A9s8ZDDH .col-md-7,
  .cid-u7A9s8ZDDH .col-md-8,
  .cid-u7A9s8ZDDH .col-md-9,
  .cid-u7A9s8ZDDH .col-md-auto,
  .cid-u7A9s8ZDDH .col-sm,
  .cid-u7A9s8ZDDH .col-sm-1,
  .cid-u7A9s8ZDDH .col-sm-10,
  .cid-u7A9s8ZDDH .col-sm-11,
  .cid-u7A9s8ZDDH .col-sm-12,
  .cid-u7A9s8ZDDH .col-sm-2,
  .cid-u7A9s8ZDDH .col-sm-3,
  .cid-u7A9s8ZDDH .col-sm-4,
  .cid-u7A9s8ZDDH .col-sm-5,
  .cid-u7A9s8ZDDH .col-sm-6,
  .cid-u7A9s8ZDDH .col-sm-7,
  .cid-u7A9s8ZDDH .col-sm-8,
  .cid-u7A9s8ZDDH .col-sm-9,
  .cid-u7A9s8ZDDH .col-sm-auto,
  .cid-u7A9s8ZDDH .col-xl,
  .cid-u7A9s8ZDDH .col-xl-1,
  .cid-u7A9s8ZDDH .col-xl-10,
  .cid-u7A9s8ZDDH .col-xl-11,
  .cid-u7A9s8ZDDH .col-xl-12,
  .cid-u7A9s8ZDDH .col-xl-2,
  .cid-u7A9s8ZDDH .col-xl-3,
  .cid-u7A9s8ZDDH .col-xl-4,
  .cid-u7A9s8ZDDH .col-xl-5,
  .cid-u7A9s8ZDDH .col-xl-6,
  .cid-u7A9s8ZDDH .col-xl-7,
  .cid-u7A9s8ZDDH .col-xl-8,
  .cid-u7A9s8ZDDH .col-xl-9,
  .cid-u7A9s8ZDDH .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7A9s8ZDDH .content {
    text-align: left;
  }
  .cid-u7A9s8ZDDH .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7A9s8ZDDH .logo_footer_box {
    position: relative;
  }
  .cid-u7A9s8ZDDH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7A9s8ZDDH .logo_footer {
    position: relative;
  }
  .cid-u7A9s8ZDDH .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7A9s8ZDDH .copyright > p {
  color: #f9ceb2;
}
.cid-tIudBrstu0 :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-tIudBrstu0 .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-tIudBrstu0 .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tIudBrstu0 a {
  font-style: normal;
}
.cid-tIudBrstu0 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tIudBrstu0 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tIudBrstu0 .nav-item:focus,
.cid-tIudBrstu0 .nav-link:focus {
  outline: none;
}
.cid-tIudBrstu0 .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-tIudBrstu0 .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-tIudBrstu0 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tIudBrstu0 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tIudBrstu0 .menu-logo {
  margin-right: auto;
}
.cid-tIudBrstu0 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-tIudBrstu0 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tIudBrstu0 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tIudBrstu0 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tIudBrstu0 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tIudBrstu0 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tIudBrstu0 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tIudBrstu0 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-tIudBrstu0 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tIudBrstu0 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tIudBrstu0 .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tIudBrstu0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tIudBrstu0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tIudBrstu0 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tIudBrstu0 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tIudBrstu0 .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-tIudBrstu0 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-tIudBrstu0 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tIudBrstu0 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tIudBrstu0 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tIudBrstu0 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tIudBrstu0 .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-tIudBrstu0 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tIudBrstu0 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tIudBrstu0 button.navbar-toggler:focus {
  outline: none;
}
.cid-tIudBrstu0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tIudBrstu0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tIudBrstu0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tIudBrstu0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tIudBrstu0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tIudBrstu0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tIudBrstu0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tIudBrstu0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tIudBrstu0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tIudBrstu0 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tIudBrstu0 .collapsed .btn {
  display: flex;
}
.cid-tIudBrstu0 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tIudBrstu0 .collapsed .navbar-collapse.collapsing,
.cid-tIudBrstu0 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tIudBrstu0 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tIudBrstu0 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tIudBrstu0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tIudBrstu0 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tIudBrstu0 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tIudBrstu0 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-tIudBrstu0 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tIudBrstu0 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tIudBrstu0 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tIudBrstu0 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tIudBrstu0 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tIudBrstu0 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tIudBrstu0 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tIudBrstu0 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tIudBrstu0 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tIudBrstu0 .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-tIudBrstu0 .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-tIudBrstu0 .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-tIudBrstu0 .navbar-expand {
    flex-direction: column;
  }
  .cid-tIudBrstu0 img {
    height: 3rem !important;
  }
  .cid-tIudBrstu0 .btn {
    display: flex;
  }
  .cid-tIudBrstu0 button.navbar-toggler {
    display: block;
  }
  .cid-tIudBrstu0 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tIudBrstu0 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tIudBrstu0 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tIudBrstu0 .navbar-collapse.collapsing,
  .cid-tIudBrstu0 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tIudBrstu0 .navbar-collapse.collapsing .navbar-nav,
  .cid-tIudBrstu0 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tIudBrstu0 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tIudBrstu0 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tIudBrstu0 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tIudBrstu0 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tIudBrstu0 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tIudBrstu0 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tIudBrstu0 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tIudBrstu0 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tIudBrstu0 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tIudBrstu0 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tIudBrstu0 .logo_s,
  .cid-tIudBrstu0 .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-tIudBrstu0 .menu-logo {
    flex-shrink: 3;
  }
}
.cid-tIudBrstu0 .navbar-collapse {
  flex-basis: auto;
}
.cid-tIudBrstu0 .nav-link:hover,
.cid-tIudBrstu0 .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-tIudBrstu0 .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-tIudBrstu0 .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-tIudBrstu0 .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-tIudBrstu0 .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-tIudBrstu0 .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-tIudBrstu0 a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tIudBrstu0 a:hover svg polygon,
.cid-tIudBrstu0 a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tIudBrstu0 .hidden {
  display: none !important;
}
.cid-tIudBrstu0 .shoow {
  display: block !important;
}
.cid-tIudBrstu0 .navbar-logo a,
.cid-tIudBrstu0 .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tIudBrstu0 .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tIudBrstu0 .logo_s {
    height: 2rem !important;
  }
  .cid-tIudBrstu0 .navbar-logo a img {
    left: 20px;
  }
  .cid-tIudBrstu0 .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-tIudBrstu0 .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-tIudBrstu0 .stoerer_head,
  .cid-tIudBrstu0 .stoerer_text {
    grid-row: 1;
  }
  .cid-tIudBrstu0 .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-tIudBrstu0 a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-tIudBsjBMX {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-2-1500x205.png");
}
@media (max-width: 768px) {
  .cid-tIudBsjBMX {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tPKiW0cXHr {
  background: #ffffff;
}
.cid-tPKiW0cXHr .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tPKiW0cXHr figcaption {
  position: relative;
}
.cid-tPKiW0cXHr figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tPKiW0cXHr .image-block {
    width: 100% !important;
  }
}
.cid-tQAuuiqty6 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tQAuuiqty6 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tQAuuiqty6 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  border-radius: 6px;
}
@media (max-width: 991px) {
  .cid-tQAuuiqty6 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tQA3SYJNf4 {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #000000;
}
.cid-tQA3SYJNf4 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tQA3SYJNf4 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tQA3SYJNf4 .space_down_50 {
  margin-bottom: 50px;
}
.cid-tQA3SYJNf4 .testimonial-text {
  text-align: right;
  color: #171717;
}
.cid-tIudBzPD1D {
  background: #ffffff;
}
.cid-tIudBzPD1D .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tIudBzPD1D figcaption {
  position: relative;
}
.cid-tIudBzPD1D figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tIudBzPD1D .image-block {
    width: 300% !important;
  }
}
.cid-tIudBA8OJl {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-tIudBA8OJl .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tIudBA8OJl .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-tIudBA8OJl .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tIudBA8OJl .mbr-figure,
  .cid-tIudBA8OJl img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-tIudBA8OJl .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tIudBA8OJl .mbr-author-desc {
  color: #000000;
}
.cid-tIudBA8OJl h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tIudBA8OJl span {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 1.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 1.5rem;
}
.cid-tIudBA8OJl .text_block {
  margin-top: 0px;
}
.cid-tIudBA8OJl .h2_block {
  margin-bottom: 20px;
}
.cid-tIudBA8OJl .mbr-figure {
  align-self: flex-start;
}
.cid-tIudBA8OJl .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-tIudBA8OJl .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tIudBA8OJl .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-tIudBA8OJl a:hover {
  Color: #a76645 !important;
}
.cid-tIudBA8OJl a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tIudBA8OJl .btn-black-outline:hover,
.cid-tIudBA8OJl .btn-black-outline:focus,
.cid-tIudBA8OJl .btn-black-outline.focus,
.cid-tIudBA8OJl .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tIudBA8OJl .display-5 {
    line-height: 1;
  }
  .cid-tIudBA8OJl .btn {
    font-size: 1.5rem !important;
  }
  .cid-tIudBA8OJl .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tIudBA8OJl .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tIuf6j5K8K {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tIuf6j5K8K .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tIuf6j5K8K h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tIuf6j5K8K .space_down_50 {
  margin-bottom: 50px;
}
.cid-tIuf2xxy9Q {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tIuf2xxy9Q h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tIuf2xxy9Q p {
  color: #767676;
  text-align: left;
}
.cid-tIuf2xxy9Q .card-box {
  padding-top: 2rem;
}
.cid-tIuf2xxy9Q .card-wrapper {
  height: 100%;
}
.cid-tIuf2xxy9Q P {
  color: #ffffff;
}
.cid-tIuh8pwQhE {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tIuh8pwQhE .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tIuh8pwQhE h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tIuh8pwQhE .space_down_50 {
  margin-bottom: 50px;
}
.cid-tIumPY3aEr {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIumPY3aEr .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tIumPY3aEr .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tIumPY3aEr .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tIumQIGOle {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIumQIGOle .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tIumQIGOle .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-tIumQIGOle .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tIuvz72n2R {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIuvz72n2R .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tIuvz72n2R .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tIuvz72n2R .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tIuvzEgnrY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIuvzEgnrY .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tIuvzEgnrY .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-tIuvzEgnrY .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tJ8SbdA9Po {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJ8SbdA9Po .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tJ8SbdA9Po .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tJ8SbdA9Po .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tJ8SaAIZit {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJ8SaAIZit .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJ8SaAIZit .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-tJ8SaAIZit .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tJ8ScknNzf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJ8ScknNzf .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tJ8ScknNzf .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tJ8ScknNzf .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tJ8SbHwXwR {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJ8SbHwXwR .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJ8SbHwXwR .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-tJ8SbHwXwR .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tJ93VwZ2Go {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJ93VwZ2Go .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tJ93VwZ2Go .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tJ93VwZ2Go .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tJ93V3NY1G {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tJ93V3NY1G .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tJ93V3NY1G .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-tJ93V3NY1G .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tIuwd50IV7 {
  padding-top: 60px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tIuwd50IV7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tIuwd50IV7 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tIuwd50IV7 .mbr-text {
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-ucchDNENqq {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #f9ceb2;
}
.cid-ucchDNENqq h1 {
  font-weight: 700 !important;
  font-size: 10rem;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
}
.cid-ucchDNENqq .space_down_50 {
  margin-bottom: 50px;
}
.cid-ucchDNENqq .mbr-text-u P {
  text-align: center;
  text-decoration: underline;
  font-weight: 600;
}
.cid-ucchDNENqq .mbr-tex {
  text-align: left;
}
.cid-ucchDNENqq .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ucchDNENqq .display-btn {
  font-family: chivo;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-ucchDNENqq .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-ucchDNENqq a:hover {
  Color: #a76645;
}
.cid-ucchDNENqq a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ucchDNENqq .btn-black-outline:hover,
.cid-ucchDNENqq .btn-black-outline:focus,
.cid-ucchDNENqq .btn-black-outline.focus,
.cid-ucchDNENqq .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-ucchDNENqq .display-5 {
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
  margin-bottom: 0px;
  margin-left: 1rem;
}
.cid-ucchDNENqq .container {
  border-color: black;
  border-width: 5px;
  border-style: solid;
}
.cid-ucchDNENqq .mbr-white {
  margin-top: 5rem;
}
.cid-ucchDNENqq .mbr-figure {
  padding-top: 1.5rem;
  padding-left: 0.5rem;
  width: 65%;
}
.cid-ucchDNENqq .testimonial-text {
  color: #f9ceb2;
}
@media (max-width: 768px) {
  .cid-ucchDNENqq .display-btn {
    line-height: 1;
  }
  .cid-ucchDNENqq .btn {
    font-size: 1.5rem !important;
  }
  .cid-ucchDNENqq .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7A9uyIieP {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7A9uyIieP .content {
    text-align: center;
  }
  .cid-u7A9uyIieP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7A9uyIieP .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7A9uyIieP .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7A9uyIieP .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7A9uyIieP .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7A9uyIieP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7A9uyIieP .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7A9uyIieP .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7A9uyIieP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7A9uyIieP .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7A9uyIieP .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7A9uyIieP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7A9uyIieP .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7A9uyIieP H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7A9uyIieP P {
  color: #ffffff;
}
.cid-u7A9uyIieP .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7A9uyIieP .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7A9uyIieP .logo_footer {
  position: relative;
}
.cid-u7A9uyIieP .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7A9uyIieP .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7A9uyIieP .col,
  .cid-u7A9uyIieP .col-1,
  .cid-u7A9uyIieP .col-10,
  .cid-u7A9uyIieP .col-11,
  .cid-u7A9uyIieP .col-12,
  .cid-u7A9uyIieP .col-2,
  .cid-u7A9uyIieP .col-3,
  .cid-u7A9uyIieP .col-4,
  .cid-u7A9uyIieP .col-5,
  .cid-u7A9uyIieP .col-6,
  .cid-u7A9uyIieP .col-7,
  .cid-u7A9uyIieP .col-8,
  .cid-u7A9uyIieP .col-9,
  .cid-u7A9uyIieP .col-auto,
  .cid-u7A9uyIieP .col-lg,
  .cid-u7A9uyIieP .col-lg-1,
  .cid-u7A9uyIieP .col-lg-10,
  .cid-u7A9uyIieP .col-lg-11,
  .cid-u7A9uyIieP .col-lg-12,
  .cid-u7A9uyIieP .col-lg-2,
  .cid-u7A9uyIieP .col-lg-3,
  .cid-u7A9uyIieP .col-lg-4,
  .cid-u7A9uyIieP .col-lg-5,
  .cid-u7A9uyIieP .col-lg-6,
  .cid-u7A9uyIieP .col-lg-7,
  .cid-u7A9uyIieP .col-lg-8,
  .cid-u7A9uyIieP .col-lg-9,
  .cid-u7A9uyIieP .col-lg-auto,
  .cid-u7A9uyIieP .col-md,
  .cid-u7A9uyIieP .col-md-1,
  .cid-u7A9uyIieP .col-md-10,
  .cid-u7A9uyIieP .col-md-11,
  .cid-u7A9uyIieP .col-md-12,
  .cid-u7A9uyIieP .col-md-2,
  .cid-u7A9uyIieP .col-md-3,
  .cid-u7A9uyIieP .col-md-4,
  .cid-u7A9uyIieP .col-md-5,
  .cid-u7A9uyIieP .col-md-6,
  .cid-u7A9uyIieP .col-md-7,
  .cid-u7A9uyIieP .col-md-8,
  .cid-u7A9uyIieP .col-md-9,
  .cid-u7A9uyIieP .col-md-auto,
  .cid-u7A9uyIieP .col-sm,
  .cid-u7A9uyIieP .col-sm-1,
  .cid-u7A9uyIieP .col-sm-10,
  .cid-u7A9uyIieP .col-sm-11,
  .cid-u7A9uyIieP .col-sm-12,
  .cid-u7A9uyIieP .col-sm-2,
  .cid-u7A9uyIieP .col-sm-3,
  .cid-u7A9uyIieP .col-sm-4,
  .cid-u7A9uyIieP .col-sm-5,
  .cid-u7A9uyIieP .col-sm-6,
  .cid-u7A9uyIieP .col-sm-7,
  .cid-u7A9uyIieP .col-sm-8,
  .cid-u7A9uyIieP .col-sm-9,
  .cid-u7A9uyIieP .col-sm-auto,
  .cid-u7A9uyIieP .col-xl,
  .cid-u7A9uyIieP .col-xl-1,
  .cid-u7A9uyIieP .col-xl-10,
  .cid-u7A9uyIieP .col-xl-11,
  .cid-u7A9uyIieP .col-xl-12,
  .cid-u7A9uyIieP .col-xl-2,
  .cid-u7A9uyIieP .col-xl-3,
  .cid-u7A9uyIieP .col-xl-4,
  .cid-u7A9uyIieP .col-xl-5,
  .cid-u7A9uyIieP .col-xl-6,
  .cid-u7A9uyIieP .col-xl-7,
  .cid-u7A9uyIieP .col-xl-8,
  .cid-u7A9uyIieP .col-xl-9,
  .cid-u7A9uyIieP .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7A9uyIieP .content {
    text-align: left;
  }
  .cid-u7A9uyIieP .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7A9uyIieP .logo_footer_box {
    position: relative;
  }
  .cid-u7A9uyIieP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7A9uyIieP .logo_footer {
    position: relative;
  }
  .cid-u7A9uyIieP .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7A9uyIieP .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-rRCW1YnNVz {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-rRCW1YnNVz {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-rRCXqSqsED {
  background-image: url("../../../assets/images/flugblttr-header-2-2000x1125.jpg");
}
.cid-rRCXqSqsED P {
  color: #767676;
}
.cid-rRCXWkXrm0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-rRCXWkXrm0 .images-container.container-fluid {
  padding: 0;
}
.cid-rRCXWkXrm0 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRCXWkXrm0 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRCXWkXrm0 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRCXWkXrm0 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRCXWkXrm0 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRCXWkXrm0 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRCXWkXrm0 .img-item {
    width: 100% !important;
  }
  .cid-rRCXWkXrm0 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRCYcGKJMP {
  background-image: url("../../../assets/images/zps-scholl2017-247-2000x1333.jpg");
}
.cid-rRCYcGKJMP P {
  color: #767676;
}
.cid-rRCYpAAfeS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-rRCYpAAfeS .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRCYpAAfeS h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRCYpAAfeS .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRCYpAAfeS .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRCYOeR5Ve {
  background: #f9ceb2;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRCYOeR5Ve .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRCYOeR5Ve .video-block {
    width: 100% !important;
  }
}
.cid-rRCYOeR5Ve .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRCZ2RSb57 {
  background: #ffffff;
}
.cid-rRCZ2RSb57 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRCZ2RSb57 figcaption {
  position: relative;
}
.cid-rRCZ2RSb57 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRCZ2RSb57 .image-block {
    width: 100% !important;
  }
}
.cid-rRCZrXfX8f {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRCZrXfX8f .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRCZrXfX8f h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRCZrXfX8f .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRCZrXfX8f .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRCZuFf5kV {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRCZuFf5kV .images-container.container-fluid {
  padding: 0;
}
.cid-rRCZuFf5kV .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRCZuFf5kV .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRCZuFf5kV .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRCZuFf5kV .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRCZuFf5kV .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRCZuFf5kV .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRCZuFf5kV .img-item {
    width: 100% !important;
  }
  .cid-rRCZuFf5kV .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-se4cYEtsVj {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-4-1500x352.jpg");
}
.cid-se4cYEtsVj H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-se4cYEtsVj .mbr-section-subtitle {
  color: #000000;
}
.cid-se4cYEtsVj span {
  visibility: hidden;
}
.cid-se4cYEtsVj .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-se4cYEtsVj span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-rRCZyGdDTJ {
  background-image: url("../../../assets/images/zps-scholl2017-86-2000x1333.jpg");
}
.cid-rRCZyGdDTJ P {
  color: #767676;
}
.cid-rRCZCH1Lkt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRCZCH1Lkt .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRCZCH1Lkt .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRCZCH1Lkt .mbr-author-desc {
  color: #232;
}
.cid-rRCZCH1Lkt .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRCZCH1Lkt .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRCZCH1Lkt .mbr-figure,
  .cid-rRCZCH1Lkt img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRCZCH1Lkt h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRCZCH1Lkt .text_block {
  margin-top: 0px;
}
.cid-rRCZCH1Lkt .h2_block {
  margin-bottom: 20px;
}
.cid-rRCZCH1Lkt .mbr-figure {
  align-self: flex-start;
}
.cid-rRCZCH1Lkt .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}
.cid-rRCZCH1Lkt .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRCZCH1Lkt a:hover {
  Color: #a76645 !important;
}
.cid-rRCZCH1Lkt a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRCZCH1Lkt .btn-black-outline:hover,
.cid-rRCZCH1Lkt .btn-black-outline:focus,
.cid-rRCZCH1Lkt .btn-black-outline.focus,
.cid-rRCZCH1Lkt .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRCZCH1Lkt .display-5 {
    line-height: 1;
  }
  .cid-rRCZCH1Lkt .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRCZCH1Lkt .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRCZCH1Lkt .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRCZCH1Lkt .content {
  padding-left: 3px;
}
.cid-rRD00sTQFM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRD00sTQFM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD00sTQFM p {
  color: #767676;
  text-align: left;
}
.cid-rRD00sTQFM .card-box {
  padding-top: 2rem;
}
.cid-rRD00sTQFM .card-wrapper {
  height: 100%;
}
.cid-rRCZYXrRqU {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRCZYXrRqU h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRCZYXrRqU p {
  color: #767676;
  text-align: left;
}
.cid-rRCZYXrRqU .card-box {
  padding-top: 2rem;
}
.cid-rRCZYXrRqU .card-wrapper {
  height: 100%;
}
.cid-rRCZYXrRqU P {
  color: #1d1d1b;
}
.cid-rRIGMyx3lO {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-rRIGMyx3lO .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRIGMyx3lO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRIGMyx3lO p {
  color: #767676;
  text-align: left;
}
.cid-rRIGMyx3lO .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRIGMyx3lO .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRIGMyx3lO .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRIGMyx3lO .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRIGMyx3lO .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRIGMyx3lO .notched-box:before,
.cid-rRIGMyx3lO .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRIGMyx3lO .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRIGMyx3lO .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRIGMyx3lO .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRIGMyx3lO .border:before,
.cid-rRIGMyx3lO .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRIGMyx3lO .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRIGMyx3lO .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRIGMyx3lO .mbr-author-name {
  padding-left: 40px;
}
.cid-rRIGMyx3lO P {
  color: #000000;
  line-height: 1.3;
}
.cid-rRIGMyx3lO .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRD0hggbKo {
  background-image: url("../../../assets/images/zps-scholl2017-76-2000x3000.jpg");
}
.cid-rRD0hggbKo h2 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRD0hggbKo .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRIFwGyh6b {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRIFwGyh6b .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRIFwGyh6b .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRIFwGyh6b .mbr-author-desc {
  color: #232;
}
.cid-rRIFwGyh6b .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRIFwGyh6b .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRIFwGyh6b .mbr-figure,
  .cid-rRIFwGyh6b img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRIFwGyh6b h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRIFwGyh6b .text_block {
  margin-top: 0px;
}
.cid-rRIFwGyh6b .h2_block {
  margin-bottom: 20px;
}
.cid-rRIFwGyh6b .mbr-figure {
  align-self: flex-start;
}
.cid-rRIFwGyh6b .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRIFwGyh6b .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRIFwGyh6b a:hover {
  Color: #a76645 !important;
}
.cid-rRIFwGyh6b a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRIFwGyh6b .btn-black-outline:hover,
.cid-rRIFwGyh6b .btn-black-outline:focus,
.cid-rRIFwGyh6b .btn-black-outline.focus,
.cid-rRIFwGyh6b .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRIFwGyh6b .display-5 {
    line-height: 1;
  }
  .cid-rRIFwGyh6b .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRIFwGyh6b .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRIFwGyh6b .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRIFwGyh6b .content {
  padding-left: 3px;
}
.cid-rRD0wllgjx {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-rRD0wllgjx .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRD0wllgjx h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD0wllgjx p {
  color: #767676;
  text-align: left;
}
.cid-rRD0wllgjx .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRD0wllgjx .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRD0wllgjx .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRD0wllgjx .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRD0wllgjx .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRD0wllgjx .notched-box:before,
.cid-rRD0wllgjx .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRD0wllgjx .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRD0wllgjx .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRD0wllgjx .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRD0wllgjx .border:before,
.cid-rRD0wllgjx .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRD0wllgjx .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRD0wllgjx .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRD0wllgjx .mbr-author-name {
  padding-left: 40px;
}
.cid-rRD0wllgjx P {
  color: #000000;
  line-height: 1.3;
}
.cid-rRD0wllgjx .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rT2mR1zOBt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rT2mR1zOBt .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rT2mR1zOBt .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rT2mR1zOBt .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rT2mR1zOBt .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rT2mR1zOBt .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rT2mR1zOBt .mbr-figure,
  .cid-rT2mR1zOBt img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rT2mR1zOBt h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rT2mR1zOBt .text_block {
  margin-top: 0px;
}
.cid-rT2mR1zOBt .h2_block {
  margin-bottom: 20px;
}
.cid-rT2mR1zOBt .mbr-figure {
  align-self: flex-start;
}
.cid-rT2mR1zOBt .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rT2mR1zOBt .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rT2mR1zOBt a:hover {
  Color: #a76645 !important;
}
.cid-rT2mR1zOBt a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rT2mR1zOBt .btn-black-outline:hover,
.cid-rT2mR1zOBt .btn-black-outline:focus,
.cid-rT2mR1zOBt .btn-black-outline.focus,
.cid-rT2mR1zOBt .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rT2mR1zOBt .display-5 {
    line-height: 1;
  }
  .cid-rT2mR1zOBt .btn {
    font-size: 1.5rem !important;
  }
  .cid-rT2mR1zOBt .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rT2mR1zOBt .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rT2mR1zOBt .content {
  padding-left: 3px;
}
.cid-s7gBQXyTuJ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s7gBQXyTuJ .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-s7gBQXyTuJ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-s7gBQXyTuJ .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRIynh9YVd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRIynh9YVd .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRIynh9YVd .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rRIynh9YVd .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rRIynh9YVd a:hover {
  Color: #a76645;
}
.cid-rRIynh9YVd a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRIynh9YVd .btn-black-outline:hover,
.cid-rRIynh9YVd .btn-black-outline:focus,
.cid-rRIynh9YVd .btn-black-outline.focus,
.cid-rRIynh9YVd .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRIynh9YVd .display-5 {
    line-height: 1;
  }
  .cid-rRIynh9YVd .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRIynh9YVd .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRIBDyg0zn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRIBDyg0zn .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRIBDyg0zn .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rRIBDyg0zn .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rRIBDyg0zn a:hover {
  Color: #a76645;
}
.cid-rRIBDyg0zn a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRIBDyg0zn .btn-black-outline:hover,
.cid-rRIBDyg0zn .btn-black-outline:focus,
.cid-rRIBDyg0zn .btn-black-outline.focus,
.cid-rRIBDyg0zn .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRIBDyg0zn .display-5 {
    line-height: 1;
  }
  .cid-rRIBDyg0zn .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRIBDyg0zn .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRIBJ9KBM2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRIBJ9KBM2 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRIBJ9KBM2 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rRIBJ9KBM2 .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rRIBJ9KBM2 a:hover {
  Color: #a76645;
}
.cid-rRIBJ9KBM2 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRIBJ9KBM2 .btn-black-outline:hover,
.cid-rRIBJ9KBM2 .btn-black-outline:focus,
.cid-rRIBJ9KBM2 .btn-black-outline.focus,
.cid-rRIBJ9KBM2 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRIBJ9KBM2 .display-5 {
    line-height: 1;
  }
  .cid-rRIBJ9KBM2 .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRIBJ9KBM2 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRIBJWT7FO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRIBJWT7FO .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRIBJWT7FO .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rRIBJWT7FO .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rRIBJWT7FO a:hover {
  Color: #a76645;
}
.cid-rRIBJWT7FO a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRIBJWT7FO .btn-black-outline:hover,
.cid-rRIBJWT7FO .btn-black-outline:focus,
.cid-rRIBJWT7FO .btn-black-outline.focus,
.cid-rRIBJWT7FO .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRIBJWT7FO .display-5 {
    line-height: 1;
  }
  .cid-rRIBJWT7FO .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRIBJWT7FO .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRIBLdiHAc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRIBLdiHAc .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRIBLdiHAc .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rRIBLdiHAc .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rRIBLdiHAc a:hover {
  Color: #a76645;
}
.cid-rRIBLdiHAc a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRIBLdiHAc .btn-black-outline:hover,
.cid-rRIBLdiHAc .btn-black-outline:focus,
.cid-rRIBLdiHAc .btn-black-outline.focus,
.cid-rRIBLdiHAc .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRIBLdiHAc .display-5 {
    line-height: 1;
  }
  .cid-rRIBLdiHAc .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRIBLdiHAc .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRIBLL6GB7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRIBLL6GB7 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRIBLL6GB7 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rRIBLL6GB7 .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rRIBLL6GB7 a:hover {
  Color: #a76645;
}
.cid-rRIBLL6GB7 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRIBLL6GB7 .btn-black-outline:hover,
.cid-rRIBLL6GB7 .btn-black-outline:focus,
.cid-rRIBLL6GB7 .btn-black-outline.focus,
.cid-rRIBLL6GB7 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRIBLL6GB7 .display-5 {
    line-height: 1;
  }
  .cid-rRIBLL6GB7 .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRIBLL6GB7 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRIBMpL7qg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRIBMpL7qg .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRIBMpL7qg .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rRIBMpL7qg .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rRIBMpL7qg a:hover {
  Color: #a76645;
}
.cid-rRIBMpL7qg a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRIBMpL7qg .btn-black-outline:hover,
.cid-rRIBMpL7qg .btn-black-outline:focus,
.cid-rRIBMpL7qg .btn-black-outline.focus,
.cid-rRIBMpL7qg .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRIBMpL7qg .display-5 {
    line-height: 1;
  }
  .cid-rRIBMpL7qg .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRIBMpL7qg .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRIBNbQtjG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRIBNbQtjG .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRIBNbQtjG .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rRIBNbQtjG .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rRIBNbQtjG a:hover {
  Color: #a76645;
}
.cid-rRIBNbQtjG a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRIBNbQtjG .btn-black-outline:hover,
.cid-rRIBNbQtjG .btn-black-outline:focus,
.cid-rRIBNbQtjG .btn-black-outline.focus,
.cid-rRIBNbQtjG .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRIBNbQtjG .display-5 {
    line-height: 1;
  }
  .cid-rRIBNbQtjG .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRIBNbQtjG .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRIBNTPAiD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRIBNTPAiD .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRIBNTPAiD .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rRIBNTPAiD .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rRIBNTPAiD a:hover {
  Color: #a76645;
}
.cid-rRIBNTPAiD a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRIBNTPAiD .btn-black-outline:hover,
.cid-rRIBNTPAiD .btn-black-outline:focus,
.cid-rRIBNTPAiD .btn-black-outline.focus,
.cid-rRIBNTPAiD .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRIBNTPAiD .display-5 {
    line-height: 1;
  }
  .cid-rRIBNTPAiD .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRIBNTPAiD .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRIBOFQ9bf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRIBOFQ9bf .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRIBOFQ9bf .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rRIBOFQ9bf .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rRIBOFQ9bf a:hover {
  Color: #a76645;
}
.cid-rRIBOFQ9bf a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRIBOFQ9bf .btn-black-outline:hover,
.cid-rRIBOFQ9bf .btn-black-outline:focus,
.cid-rRIBOFQ9bf .btn-black-outline.focus,
.cid-rRIBOFQ9bf .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRIBOFQ9bf .display-5 {
    line-height: 1;
  }
  .cid-rRIBOFQ9bf .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRIBOFQ9bf .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRIDc30n5C {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRIDc30n5C .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRIDc30n5C .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-rRIDc30n5C .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-rRIDc30n5C a:hover {
  Color: #a76645;
}
.cid-rRIDc30n5C a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRIDc30n5C .btn-black-outline:hover,
.cid-rRIDc30n5C .btn-black-outline:focus,
.cid-rRIDc30n5C .btn-black-outline.focus,
.cid-rRIDc30n5C .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRIDc30n5C .display-5 {
    line-height: 1;
  }
  .cid-rRIDc30n5C .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRIDc30n5C .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-rRD0QLDawM {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRD0QLDawM H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRD0QLDawM .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRD0QLDawM .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRD0QLDawM .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRD173anvm {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-rRD173anvm h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD173anvm p {
  color: #767676;
  text-align: left;
}
.cid-rRD173anvm .card-box {
  padding-top: 2rem;
}
.cid-rRD173anvm .card-wrapper {
  height: 100%;
}
.cid-rRD173anvm P {
  color: #1d1d1b;
}
.cid-soNLTHypkS {
  background-image: url("../../../assets/images/asche-19-2000x1330.png");
}
.cid-soNLTHypkS h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-soNLTHypkS .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRD1bGzvbF {
  background-image: url("../../../assets/images/politicalbeauty-pressekonferenz-kammerspiele-0087-web-1200x800.jpg");
}
.cid-rRD1bGzvbF P {
  color: #767676;
}
.cid-rRD1fUol72 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRD1fUol72 .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRD1fUol72 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRD1fUol72 .mbr-author-desc {
  color: #232;
}
.cid-rRD1fUol72 .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRD1fUol72 .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRD1fUol72 .mbr-figure,
  .cid-rRD1fUol72 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRD1fUol72 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRD1fUol72 .text_block {
  margin-top: 0px;
}
.cid-rRD1fUol72 .h2_block {
  margin-bottom: 20px;
}
.cid-rRD1fUol72 .mbr-figure {
  align-self: flex-start;
}
.cid-rRD1fUol72 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRD1fUol72 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRD1fUol72 a:hover {
  Color: #a76645 !important;
}
.cid-rRD1fUol72 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRD1fUol72 .btn-black-outline:hover,
.cid-rRD1fUol72 .btn-black-outline:focus,
.cid-rRD1fUol72 .btn-black-outline.focus,
.cid-rRD1fUol72 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRD1fUol72 .display-5 {
    line-height: 1;
  }
  .cid-rRD1fUol72 .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRD1fUol72 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRD1fUol72 .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRD1fUol72 .content {
  padding-left: 3px;
}
.cid-rRD1jlAl6L {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRD1jlAl6L h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD1jlAl6L p {
  color: #767676;
  text-align: left;
}
.cid-rRD1jlAl6L .card-box {
  padding-top: 2rem;
}
.cid-rRD1jlAl6L .card-wrapper {
  height: 100%;
}
.cid-rRD1jlAl6L P {
  color: #1d1d1b;
}
.cid-rRD1mhMh7v {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-2-1500x352.jpg");
}
.cid-rRD1mhMh7v H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRD1mhMh7v .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRD1mhMh7v .breites_Zitat,
  .cid-rRD1mhMh7v .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRD1nXD3AP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRD1nXD3AP .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRD1nXD3AP h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRD1nXD3AP .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRD1nXD3AP .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u6fQBtXmX7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u6fQBtXmX7 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6fQBtXmX7 p {
  color: #767676;
  text-align: left;
}
.cid-u6fQBtXmX7 .card-box {
  padding-top: 2rem;
}
.cid-u6fQBtXmX7 .card-wrapper {
  height: 100%;
}
.cid-u6fQBtXmX7 P {
  text-align: left;
}
.cid-rRD1FGZMxO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRD1FGZMxO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD1FGZMxO p {
  color: #767676;
  text-align: left;
}
.cid-rRD1FGZMxO .card-box {
  padding-top: 2rem;
}
.cid-rRD1FGZMxO .card-wrapper {
  height: 100%;
}
.cid-rRD1A55yn1 {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRD1A55yn1 .images-container.container-fluid {
  padding: 0;
}
.cid-rRD1A55yn1 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRD1A55yn1 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRD1A55yn1 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRD1A55yn1 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRD1A55yn1 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRD1A55yn1 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRD1A55yn1 .img-item {
    width: 100% !important;
  }
  .cid-rRD1A55yn1 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRD1BS1DxW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRD1BS1DxW h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD1BS1DxW p {
  color: #767676;
  text-align: left;
}
.cid-rRD1BS1DxW .card-box {
  padding-top: 2rem;
}
.cid-rRD1BS1DxW .card-wrapper {
  height: 100%;
}
.cid-rRD1L8tJzv {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-14-2000x1330.png");
}
.cid-rRD1L8tJzv H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRD1L8tJzv .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRD1L8tJzv .breites_Zitat,
  .cid-rRD1L8tJzv .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRD1PNr6gn {
  background: #ffffff;
}
.cid-rRD1PNr6gn .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRD1PNr6gn figcaption {
  position: relative;
}
.cid-rRD1PNr6gn figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRD1PNr6gn .image-block {
    width: 100% !important;
  }
}
.cid-rRD1W2JNZ6 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRD1W2JNZ6 .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRD1W2JNZ6 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRD1W2JNZ6 .mbr-author-desc {
  color: #232;
}
.cid-rRD1W2JNZ6 .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRD1W2JNZ6 .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRD1W2JNZ6 .mbr-figure,
  .cid-rRD1W2JNZ6 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRD1W2JNZ6 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRD1W2JNZ6 .text_block {
  margin-top: 0px;
}
.cid-rRD1W2JNZ6 .h2_block {
  margin-bottom: 20px;
}
.cid-rRD1W2JNZ6 .mbr-figure {
  align-self: flex-start;
}
.cid-rRD1W2JNZ6 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRD1W2JNZ6 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRD1W2JNZ6 a:hover {
  Color: #a76645 !important;
}
.cid-rRD1W2JNZ6 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRD1W2JNZ6 .btn-black-outline:hover,
.cid-rRD1W2JNZ6 .btn-black-outline:focus,
.cid-rRD1W2JNZ6 .btn-black-outline.focus,
.cid-rRD1W2JNZ6 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRD1W2JNZ6 .display-5 {
    line-height: 1;
  }
  .cid-rRD1W2JNZ6 .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRD1W2JNZ6 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRD1W2JNZ6 .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRD1W2JNZ6 .content {
  padding-left: 3px;
}
.cid-rRD1XBuKou {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRD1XBuKou H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRD1XBuKou .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRD1XBuKou .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRD1XBuKou .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRD20lnfxE {
  background-image: url("../../../assets/images/zps-geschichtsunterricht-16-2000x1333.jpg");
}
.cid-rRD20lnfxE P {
  color: #767676;
}
.cid-rRD22BBnrg {
  background: #ffffff;
}
.cid-rRD22BBnrg .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRD22BBnrg figcaption {
  position: relative;
}
.cid-rRD22BBnrg figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRD22BBnrg .image-block {
    width: 300% !important;
  }
}
.cid-uccwZyGfTu {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-uccwZyGfTu .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-uccwZyGfTu .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccwZyGfTu .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccwZyGfTu .mbr-figure,
  .cid-uccwZyGfTu img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccwZyGfTu .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccwZyGfTu .mbr-author-desc {
  color: #000000;
}
.cid-uccwZyGfTu h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccwZyGfTu .text_block {
  margin-top: 0px;
}
.cid-uccwZyGfTu .h2_block {
  margin-bottom: 20px;
}
.cid-uccwZyGfTu .mbr-figure {
  align-self: flex-start;
}
.cid-uccwZyGfTu .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccwZyGfTu .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccwZyGfTu .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccwZyGfTu a svg polygon {
  fill: white !important;
}
.cid-uccwZyGfTu a:hover {
  Color: #F9CEB2!important;
}
.cid-uccwZyGfTu a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccwZyGfTu .btn-white-outline:hover,
.cid-uccwZyGfTu .btn-white-outline:focus,
.cid-uccwZyGfTu .btn-white-outline.focus,
.cid-uccwZyGfTu .btn-white-outline.active,
.cid-uccwZyGfTu .btn-black-outline:hover,
.cid-uccwZyGfTu .btn-black-outline:focus,
.cid-uccwZyGfTu .btn-black-outline.focus,
.cid-uccwZyGfTu .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccwZyGfTu .display-5 {
    line-height: 1;
  }
  .cid-uccwZyGfTu .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccwZyGfTu .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccwZyGfTu .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRD23dKE7A {
  background: #ffffff;
}
.cid-rRD23dKE7A .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRD23dKE7A figcaption {
  position: relative;
}
.cid-rRD23dKE7A figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRD23dKE7A .image-block {
    width: 300% !important;
  }
}
.cid-rRD28RkYhB {
  background-image: url("../../../assets/images/scholl2017-lmu-87-2000x1333.jpg");
}
.cid-rRD28RkYhB h2 {
  font-weight: 700 !important;
  padding-left: 1rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRD28RkYhB .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRD2fJngXp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRD2fJngXp .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-rRD2fJngXp .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-rRD2fJngXp .mbr-author-desc {
  color: #1d1d1b;
}
.cid-rRD2fJngXp .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-rRD2fJngXp .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-rRD2fJngXp .mbr-figure,
  .cid-rRD2fJngXp img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-rRD2fJngXp h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRD2fJngXp .text_block {
  margin-top: 0px;
}
.cid-rRD2fJngXp .h2_block {
  margin-bottom: 20px;
}
.cid-rRD2fJngXp .mbr-figure {
  align-self: flex-start;
}
.cid-rRD2fJngXp .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-rRD2fJngXp .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-rRD2fJngXp a:hover {
  Color: #a76645 !important;
}
.cid-rRD2fJngXp a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRD2fJngXp .btn-black-outline:hover,
.cid-rRD2fJngXp .btn-black-outline:focus,
.cid-rRD2fJngXp .btn-black-outline.focus,
.cid-rRD2fJngXp .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-rRD2fJngXp .display-5 {
    line-height: 1;
  }
  .cid-rRD2fJngXp .btn {
    font-size: 1.5rem !important;
  }
  .cid-rRD2fJngXp .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-rRD2fJngXp .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-rRD2fJngXp .content {
  padding-left: 3px;
}
.cid-rRD2tiFN6z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRD2tiFN6z h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD2tiFN6z p {
  color: #767676;
  text-align: left;
}
.cid-rRD2tiFN6z .card-box {
  padding-top: 2rem;
}
.cid-rRD2tiFN6z .card-wrapper {
  height: 100%;
}
.cid-rRD2u7tCJK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRD2u7tCJK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD2u7tCJK p {
  color: #767676;
  text-align: left;
}
.cid-rRD2u7tCJK .card-box {
  padding-top: 2rem;
}
.cid-rRD2u7tCJK .card-wrapper {
  height: 100%;
}
.cid-rRD2v6mlC4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRD2v6mlC4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD2v6mlC4 p {
  color: #767676;
  text-align: left;
}
.cid-rRD2v6mlC4 .card-box {
  padding-top: 2rem;
}
.cid-rRD2v6mlC4 .card-wrapper {
  height: 100%;
}
.cid-rRD2xMSRBw {
  padding-top: 30px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRD2xMSRBw .images-container.container-fluid {
  padding: 0;
}
.cid-rRD2xMSRBw .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRD2xMSRBw .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRD2xMSRBw .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRD2xMSRBw .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRD2xMSRBw .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRD2xMSRBw .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRD2xMSRBw .img-item {
    width: 100% !important;
  }
  .cid-rRD2xMSRBw .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRD2M8mzVE {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRD2M8mzVE .images-container.container-fluid {
  padding: 0;
}
.cid-rRD2M8mzVE .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRD2M8mzVE .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRD2M8mzVE .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRD2M8mzVE .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRD2M8mzVE .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRD2M8mzVE .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRD2M8mzVE .img-item {
    width: 100% !important;
  }
  .cid-rRD2M8mzVE .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRD2Yj91E3 {
  background-image: url("../../../assets/images/flugblatter4-2000x1125.png");
}
.cid-rRD2Yj91E3 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRD2Yj91E3 .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRD38jhY2w {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-rRD38jhY2w .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRD38jhY2w h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRD38jhY2w .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRD38jhY2w .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-rRD38jhY2w a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #ffffff;
  color: #fff;
  padding-bottom: 3px;
}
.cid-rRD38jhY2w a:hover {
  color: #F9CEB2;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 100%;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  box-shadow: inset 0 0px 0 white, inset 0 -5px 0 #f9ceb2;
  cursor: pointer;
}
.cid-rRD3a1MO7l {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRD3a1MO7l .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRD3a1MO7l .video-block {
    width: 100% !important;
  }
}
.cid-rRD3a1MO7l .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRD3cQeXxw {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRD3cQeXxw H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRD3cQeXxw .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rRD4rtkDtA {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRD4rtkDtA h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD4rtkDtA p {
  color: #767676;
  text-align: left;
}
.cid-rRD4rtkDtA .card-box {
  padding-top: 2rem;
}
.cid-rRD4rtkDtA .card-wrapper {
  height: 100%;
}
.cid-rRD4sg5m2A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRD4sg5m2A h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD4sg5m2A p {
  color: #767676;
  text-align: left;
}
.cid-rRD4sg5m2A .card-box {
  padding-top: 2rem;
}
.cid-rRD4sg5m2A .card-wrapper {
  height: 100%;
}
.cid-rRD4t3jsYJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRD4t3jsYJ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD4t3jsYJ p {
  color: #767676;
  text-align: left;
}
.cid-rRD4t3jsYJ .card-box {
  padding-top: 2rem;
}
.cid-rRD4t3jsYJ .card-wrapper {
  height: 100%;
}
.cid-rRD4upyBOz {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRD4upyBOz .images-container.container-fluid {
  padding: 0;
}
.cid-rRD4upyBOz .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRD4upyBOz .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRD4upyBOz .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRD4upyBOz .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRD4upyBOz .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRD4upyBOz .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRD4upyBOz .img-item {
    width: 100% !important;
  }
  .cid-rRD4upyBOz .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRD4zIYPnR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-rRD4zIYPnR .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRD4zIYPnR h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD4zIYPnR p {
  color: #767676;
  text-align: left;
}
.cid-rRD4zIYPnR .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRD4zIYPnR .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRD4zIYPnR .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRD4zIYPnR .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRD4zIYPnR .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRD4zIYPnR .notched-box:before,
.cid-rRD4zIYPnR .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-rRD4zIYPnR .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRD4zIYPnR .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRD4zIYPnR .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRD4zIYPnR .border:before,
.cid-rRD4zIYPnR .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-rRD4zIYPnR .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRD4zIYPnR .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRD4zIYPnR .mbr-author-name {
  padding-left: 40px;
}
.cid-rRD4zIYPnR P {
  color: #000000;
  line-height: 1.3;
}
.cid-rRD4zIYPnR .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRD4QOHJ7R {
  background: #000000;
  padding-top: 75px;
  padding-bottom: 75px;
}
.cid-rRD4QOHJ7R .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRD4QOHJ7R .video-block {
    width: 100% !important;
  }
}
.cid-rRD4QOHJ7R .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRD4TUaxKf {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRD4TUaxKf .images-container.container-fluid {
  padding: 0;
}
.cid-rRD4TUaxKf .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRD4TUaxKf .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRD4TUaxKf .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRD4TUaxKf .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRD4TUaxKf .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRD4TUaxKf .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRD4TUaxKf .img-item {
    width: 100% !important;
  }
  .cid-rRD4TUaxKf .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-s7gDQHsDrm {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s7gDQHsDrm .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-s7gDQHsDrm h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-s7gDQHsDrm .space_down_50 {
  margin-bottom: 50px;
}
.cid-s7gCzLxwJY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s7gCzLxwJY h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s7gCzLxwJY p {
  color: #767676;
  text-align: left;
}
.cid-s7gCzLxwJY .card-box {
  padding-top: 2rem;
}
.cid-s7gCzLxwJY .card-wrapper {
  height: 100%;
}
.cid-s7gCAUq9gN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-s7gCAUq9gN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s7gCAUq9gN p {
  color: #767676;
  text-align: left;
}
.cid-s7gCAUq9gN .card-box {
  padding-top: 2rem;
}
.cid-s7gCAUq9gN .card-wrapper {
  height: 100%;
}
.cid-s7gCBXp9P5 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-s7gCBXp9P5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s7gCBXp9P5 p {
  color: #767676;
  text-align: left;
}
.cid-s7gCBXp9P5 .card-box {
  padding-top: 2rem;
}
.cid-s7gCBXp9P5 .card-wrapper {
  height: 100%;
}
.cid-rRD4X6wgqk {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-4-1500x1695.jpg");
}
.cid-rRD4X6wgqk H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRD4X6wgqk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rRD507dtup {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #000000;
}
.cid-rRD507dtup .images-container.container-fluid {
  padding: 0;
}
.cid-rRD507dtup .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRD507dtup .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRD507dtup .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRD507dtup .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRD507dtup .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRD507dtup .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRD507dtup .img-item {
    width: 100% !important;
  }
  .cid-rRD507dtup .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRD5aNT1ic {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-13-2000x1333.png");
}
.cid-rRD5aNT1ic .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-rRD5aNT1ic .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-rRD5aNT1ic .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-rRD5aNT1ic .mbr-figure,
  .cid-rRD5aNT1ic img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-rRD5aNT1ic .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-rRD5aNT1ic .mbr-author-desc {
  color: #000000;
}
.cid-rRD5aNT1ic h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRD5aNT1ic .text_block {
  margin-top: 0px;
}
.cid-rRD5aNT1ic .h2_block {
  margin-bottom: 20px;
}
.cid-rRD5aNT1ic .mbr-figure {
  align-self: flex-start;
}
.cid-rRD5aNT1ic .video--container {
  margin-left: auto;
  margin-right: auto;
  width: 90%;
}
.cid-rRD5aNT1ic .video--inner-container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.cid-rRD5aNT1ic .video--iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cid-rRD5aNT1ic .video--iframe--light:hover {
  outline: 8px solid #a76645;
}
.cid-rRD5aNT1ic .video--iframe--dark:hover {
  outline: 8px solid #F9CEB2;
}
.cid-rRD5guoWoC {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-rRD5guoWoC h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD5guoWoC p {
  color: #767676;
  text-align: left;
}
.cid-rRD5guoWoC .card-box {
  padding-top: 2rem;
}
.cid-rRD5guoWoC .card-wrapper {
  height: 100%;
}
.cid-rRD5guoWoC P {
  color: #1d1d1b;
}
.cid-rRD5hhwMc8 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-rRD5hhwMc8 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD5hhwMc8 p {
  color: #767676;
  text-align: left;
}
.cid-rRD5hhwMc8 .card-box {
  padding-top: 2rem;
}
.cid-rRD5hhwMc8 .card-wrapper {
  height: 100%;
}
.cid-rRD5hhwMc8 P {
  color: #1d1d1b;
}
.cid-rRD5mURLu0 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-3-1500x490.jpg");
}
.cid-rRD5mURLu0 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-rRD5mURLu0 .mbr-section-subtitle {
  color: #ffffff;
}
@media (max-width: 768px) {
  .cid-rRD5mURLu0 .breites_Zitat {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
  .cid-rRD5mURLu0 .breiter_Autor {
    font-size: 1rem;
  }
}
.cid-rRD5pwgdc9 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRD5pwgdc9 .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-rRD5pwgdc9 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRD5pwgdc9 .space_down_30 {
  margin-bottom: 30px;
}
.cid-rRD5pwgdc9 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-rRD5IdyZaX {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRD5IdyZaX .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRD5IdyZaX .video-block {
    width: 100% !important;
  }
}
.cid-rRD5IdyZaX .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRD5ZaliDn {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRD5ZaliDn .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRD5ZaliDn h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD5ZaliDn p {
  color: #767676;
  text-align: left;
}
.cid-rRD5ZaliDn .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRD5ZaliDn .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRD5ZaliDn .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRD5ZaliDn .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRD5ZaliDn .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRD5ZaliDn .notched-box:before,
.cid-rRD5ZaliDn .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRD5ZaliDn .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRD5ZaliDn .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRD5ZaliDn .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRD5ZaliDn .border:before,
.cid-rRD5ZaliDn .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRD5ZaliDn .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRD5ZaliDn .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRD5ZaliDn .mbr-author-name {
  padding-left: 40px;
}
.cid-rRD5ZaliDn P {
  color: #ffffff;
}
.cid-rRD5ZaliDn .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRD62RuxAr {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-rRD62RuxAr .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRD62RuxAr h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD62RuxAr p {
  color: #767676;
  text-align: left;
}
.cid-rRD62RuxAr .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRD62RuxAr .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRD62RuxAr .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRD62RuxAr .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRD62RuxAr .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRD62RuxAr .notched-box:before,
.cid-rRD62RuxAr .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRD62RuxAr .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRD62RuxAr .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRD62RuxAr .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRD62RuxAr .border:before,
.cid-rRD62RuxAr .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRD62RuxAr .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRD62RuxAr .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRD62RuxAr .mbr-author-name {
  padding-left: 40px;
}
.cid-rRD62RuxAr P {
  color: #ffffff;
}
.cid-rRD62RuxAr .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRD68mQ5WB {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-10-2000x1405.png");
}
.cid-rRD68mQ5WB H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRD68mQ5WB .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRD68mQ5WB .breites_Zitat,
  .cid-rRD68mQ5WB .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRD6dk1onb {
  background-image: url("../../../assets/images/zps-kanzleramt-0296-v2-1600x1066.jpg");
}
.cid-rRD6dk1onb P {
  color: #767676;
}
.cid-rRD6iUoClX {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-rRD6iUoClX .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-rRD6iUoClX h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-rRD6iUoClX .space_down_50 {
  margin-bottom: 50px;
}
.cid-rRD6mEwtOB {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-rRD6mEwtOB .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-rRD6mEwtOB .video-block {
    width: 100% !important;
  }
}
.cid-rRD6mEwtOB .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-rRD6saGqxu {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-5-1500x302.jpg");
}
.cid-rRD6saGqxu H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-rRD6saGqxu .mbr-section-subtitle {
  color: #1d1d1b;
}
@media (max-width: 768px) {
  .cid-rRD6saGqxu .breites_Zitat,
  .cid-rRD6saGqxu .breiter_Autor {
    font-size: 1rem;
    line-height: 1.2 !important;
  }
}
.cid-rRD9nMhbBS {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #000000;
}
.cid-rRD9nMhbBS .images-container.container-fluid {
  padding: 0;
}
.cid-rRD9nMhbBS .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRD9nMhbBS .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRD9nMhbBS .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRD9nMhbBS .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRD9nMhbBS .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRD9nMhbBS .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRD9nMhbBS .img-item {
    width: 100% !important;
  }
  .cid-rRD9nMhbBS .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRD6DL1jrf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-4-1500x1695.jpg");
}
.cid-rRD6DL1jrf .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-rRD6DL1jrf h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rRD6DL1jrf p {
  color: #767676;
  text-align: left;
}
.cid-rRD6DL1jrf .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-rRD6DL1jrf .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-rRD6DL1jrf .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-rRD6DL1jrf .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rRD6DL1jrf .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-rRD6DL1jrf .notched-box:before,
.cid-rRD6DL1jrf .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-rRD6DL1jrf .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-rRD6DL1jrf .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-rRD6DL1jrf .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-rRD6DL1jrf .border:before,
.cid-rRD6DL1jrf .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-rRD6DL1jrf .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-rRD6DL1jrf .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-rRD6DL1jrf .mbr-author-name {
  padding-left: 40px;
}
.cid-rRD6DL1jrf P {
  color: #ffffff;
}
.cid-rRD6DL1jrf .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-rRD6LwCMCe {
  background: #ffffff;
}
.cid-rRD6LwCMCe .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-rRD6LwCMCe figcaption {
  position: relative;
}
.cid-rRD6LwCMCe figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-rRD6LwCMCe .image-block {
    width: 100% !important;
  }
}
.cid-rRD76xum1T {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rRD76xum1T .images-container.container-fluid {
  padding: 0;
}
.cid-rRD76xum1T .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rRD76xum1T .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rRD76xum1T .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rRD76xum1T .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rRD76xum1T .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rRD76xum1T .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rRD76xum1T .img-item {
    width: 100% !important;
  }
  .cid-rRD76xum1T .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-rRD7mXCn3s {
  background-image: url("../../../assets/images/putin-hangt-2017-09-09-um-12.37.40-2880x1620.jpg");
}
.cid-rRD7mXCn3s P {
  color: #767676;
}
.cid-uccxbTiolk {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #f9ceb2;
}
.cid-uccxbTiolk h1 {
  font-weight: 700 !important;
  font-size: 10rem;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
}
.cid-uccxbTiolk .space_down_50 {
  margin-bottom: 50px;
}
.cid-uccxbTiolk .mbr-text-u P {
  text-align: center;
  text-decoration: underline;
  font-weight: 600;
}
.cid-uccxbTiolk .mbr-tex {
  text-align: left;
}
.cid-uccxbTiolk .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uccxbTiolk .display-btn {
  font-family: chivo;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-uccxbTiolk .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-uccxbTiolk a:hover {
  Color: #a76645;
}
.cid-uccxbTiolk a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccxbTiolk .btn-black-outline:hover,
.cid-uccxbTiolk .btn-black-outline:focus,
.cid-uccxbTiolk .btn-black-outline.focus,
.cid-uccxbTiolk .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-uccxbTiolk .display-5 {
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
  margin-bottom: 0px;
  margin-left: 1rem;
}
.cid-uccxbTiolk .container {
  border-color: black;
  border-width: 5px;
  border-style: solid;
}
.cid-uccxbTiolk .mbr-white {
  margin-top: 5rem;
}
.cid-uccxbTiolk .mbr-figure {
  padding-top: 1.5rem;
  padding-left: 0.5rem;
  width: 65%;
}
.cid-uccxbTiolk .testimonial-text {
  color: #f9ceb2;
}
@media (max-width: 768px) {
  .cid-uccxbTiolk .display-btn {
    line-height: 1;
  }
  .cid-uccxbTiolk .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccxbTiolk .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7yVaMXGrf {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVaMXGrf .content {
    text-align: center;
  }
  .cid-u7yVaMXGrf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVaMXGrf .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVaMXGrf .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVaMXGrf .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVaMXGrf .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVaMXGrf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVaMXGrf .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVaMXGrf .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVaMXGrf .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVaMXGrf .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVaMXGrf .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVaMXGrf .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVaMXGrf .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVaMXGrf H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVaMXGrf P {
  color: #ffffff;
}
.cid-u7yVaMXGrf .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVaMXGrf .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVaMXGrf .logo_footer {
  position: relative;
}
.cid-u7yVaMXGrf .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVaMXGrf .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVaMXGrf .col,
  .cid-u7yVaMXGrf .col-1,
  .cid-u7yVaMXGrf .col-10,
  .cid-u7yVaMXGrf .col-11,
  .cid-u7yVaMXGrf .col-12,
  .cid-u7yVaMXGrf .col-2,
  .cid-u7yVaMXGrf .col-3,
  .cid-u7yVaMXGrf .col-4,
  .cid-u7yVaMXGrf .col-5,
  .cid-u7yVaMXGrf .col-6,
  .cid-u7yVaMXGrf .col-7,
  .cid-u7yVaMXGrf .col-8,
  .cid-u7yVaMXGrf .col-9,
  .cid-u7yVaMXGrf .col-auto,
  .cid-u7yVaMXGrf .col-lg,
  .cid-u7yVaMXGrf .col-lg-1,
  .cid-u7yVaMXGrf .col-lg-10,
  .cid-u7yVaMXGrf .col-lg-11,
  .cid-u7yVaMXGrf .col-lg-12,
  .cid-u7yVaMXGrf .col-lg-2,
  .cid-u7yVaMXGrf .col-lg-3,
  .cid-u7yVaMXGrf .col-lg-4,
  .cid-u7yVaMXGrf .col-lg-5,
  .cid-u7yVaMXGrf .col-lg-6,
  .cid-u7yVaMXGrf .col-lg-7,
  .cid-u7yVaMXGrf .col-lg-8,
  .cid-u7yVaMXGrf .col-lg-9,
  .cid-u7yVaMXGrf .col-lg-auto,
  .cid-u7yVaMXGrf .col-md,
  .cid-u7yVaMXGrf .col-md-1,
  .cid-u7yVaMXGrf .col-md-10,
  .cid-u7yVaMXGrf .col-md-11,
  .cid-u7yVaMXGrf .col-md-12,
  .cid-u7yVaMXGrf .col-md-2,
  .cid-u7yVaMXGrf .col-md-3,
  .cid-u7yVaMXGrf .col-md-4,
  .cid-u7yVaMXGrf .col-md-5,
  .cid-u7yVaMXGrf .col-md-6,
  .cid-u7yVaMXGrf .col-md-7,
  .cid-u7yVaMXGrf .col-md-8,
  .cid-u7yVaMXGrf .col-md-9,
  .cid-u7yVaMXGrf .col-md-auto,
  .cid-u7yVaMXGrf .col-sm,
  .cid-u7yVaMXGrf .col-sm-1,
  .cid-u7yVaMXGrf .col-sm-10,
  .cid-u7yVaMXGrf .col-sm-11,
  .cid-u7yVaMXGrf .col-sm-12,
  .cid-u7yVaMXGrf .col-sm-2,
  .cid-u7yVaMXGrf .col-sm-3,
  .cid-u7yVaMXGrf .col-sm-4,
  .cid-u7yVaMXGrf .col-sm-5,
  .cid-u7yVaMXGrf .col-sm-6,
  .cid-u7yVaMXGrf .col-sm-7,
  .cid-u7yVaMXGrf .col-sm-8,
  .cid-u7yVaMXGrf .col-sm-9,
  .cid-u7yVaMXGrf .col-sm-auto,
  .cid-u7yVaMXGrf .col-xl,
  .cid-u7yVaMXGrf .col-xl-1,
  .cid-u7yVaMXGrf .col-xl-10,
  .cid-u7yVaMXGrf .col-xl-11,
  .cid-u7yVaMXGrf .col-xl-12,
  .cid-u7yVaMXGrf .col-xl-2,
  .cid-u7yVaMXGrf .col-xl-3,
  .cid-u7yVaMXGrf .col-xl-4,
  .cid-u7yVaMXGrf .col-xl-5,
  .cid-u7yVaMXGrf .col-xl-6,
  .cid-u7yVaMXGrf .col-xl-7,
  .cid-u7yVaMXGrf .col-xl-8,
  .cid-u7yVaMXGrf .col-xl-9,
  .cid-u7yVaMXGrf .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVaMXGrf .content {
    text-align: left;
  }
  .cid-u7yVaMXGrf .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVaMXGrf .logo_footer_box {
    position: relative;
  }
  .cid-u7yVaMXGrf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVaMXGrf .logo_footer {
    position: relative;
  }
  .cid-u7yVaMXGrf .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVaMXGrf .copyright > p {
  color: #f9ceb2;
}
.cid-tJNEIPKys5 :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-tJNEIPKys5 .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-tJNEIPKys5 .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tJNEIPKys5 a {
  font-style: normal;
}
.cid-tJNEIPKys5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tJNEIPKys5 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tJNEIPKys5 .nav-item:focus,
.cid-tJNEIPKys5 .nav-link:focus {
  outline: none;
}
.cid-tJNEIPKys5 .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-tJNEIPKys5 .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-tJNEIPKys5 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tJNEIPKys5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tJNEIPKys5 .menu-logo {
  margin-right: auto;
}
.cid-tJNEIPKys5 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-tJNEIPKys5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tJNEIPKys5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tJNEIPKys5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tJNEIPKys5 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tJNEIPKys5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tJNEIPKys5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tJNEIPKys5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-tJNEIPKys5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tJNEIPKys5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tJNEIPKys5 .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tJNEIPKys5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tJNEIPKys5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tJNEIPKys5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tJNEIPKys5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tJNEIPKys5 .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-tJNEIPKys5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-tJNEIPKys5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tJNEIPKys5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tJNEIPKys5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tJNEIPKys5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tJNEIPKys5 .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-tJNEIPKys5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tJNEIPKys5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tJNEIPKys5 button.navbar-toggler:focus {
  outline: none;
}
.cid-tJNEIPKys5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tJNEIPKys5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tJNEIPKys5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tJNEIPKys5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tJNEIPKys5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tJNEIPKys5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tJNEIPKys5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tJNEIPKys5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tJNEIPKys5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tJNEIPKys5 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tJNEIPKys5 .collapsed .btn {
  display: flex;
}
.cid-tJNEIPKys5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tJNEIPKys5 .collapsed .navbar-collapse.collapsing,
.cid-tJNEIPKys5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tJNEIPKys5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tJNEIPKys5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tJNEIPKys5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tJNEIPKys5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tJNEIPKys5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tJNEIPKys5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-tJNEIPKys5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tJNEIPKys5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tJNEIPKys5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tJNEIPKys5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tJNEIPKys5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tJNEIPKys5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tJNEIPKys5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tJNEIPKys5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tJNEIPKys5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tJNEIPKys5 .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-tJNEIPKys5 .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-tJNEIPKys5 .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-tJNEIPKys5 .navbar-expand {
    flex-direction: column;
  }
  .cid-tJNEIPKys5 img {
    height: 3rem !important;
  }
  .cid-tJNEIPKys5 .btn {
    display: flex;
  }
  .cid-tJNEIPKys5 button.navbar-toggler {
    display: block;
  }
  .cid-tJNEIPKys5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tJNEIPKys5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tJNEIPKys5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tJNEIPKys5 .navbar-collapse.collapsing,
  .cid-tJNEIPKys5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tJNEIPKys5 .navbar-collapse.collapsing .navbar-nav,
  .cid-tJNEIPKys5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tJNEIPKys5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tJNEIPKys5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tJNEIPKys5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tJNEIPKys5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tJNEIPKys5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tJNEIPKys5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tJNEIPKys5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tJNEIPKys5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tJNEIPKys5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tJNEIPKys5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tJNEIPKys5 .logo_s,
  .cid-tJNEIPKys5 .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-tJNEIPKys5 .menu-logo {
    flex-shrink: 3;
  }
}
.cid-tJNEIPKys5 .navbar-collapse {
  flex-basis: auto;
}
.cid-tJNEIPKys5 .nav-link:hover,
.cid-tJNEIPKys5 .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-tJNEIPKys5 .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-tJNEIPKys5 .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-tJNEIPKys5 .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-tJNEIPKys5 .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-tJNEIPKys5 .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-tJNEIPKys5 a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tJNEIPKys5 a:hover svg polygon,
.cid-tJNEIPKys5 a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tJNEIPKys5 .hidden {
  display: none !important;
}
.cid-tJNEIPKys5 .shoow {
  display: block !important;
}
.cid-tJNEIPKys5 .navbar-logo a,
.cid-tJNEIPKys5 .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tJNEIPKys5 .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tJNEIPKys5 .logo_s {
    height: 2rem !important;
  }
  .cid-tJNEIPKys5 .navbar-logo a img {
    left: 20px;
  }
  .cid-tJNEIPKys5 .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-tJNEIPKys5 .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-tJNEIPKys5 .stoerer_head,
  .cid-tJNEIPKys5 .stoerer_text {
    grid-row: 1;
  }
  .cid-tJNEIPKys5 .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-tJNEIPKys5 a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-tJNEIQ9zI9 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-2-1500x205.png");
}
@media (max-width: 768px) {
  .cid-tJNEIQ9zI9 {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tTIfVVXWLf {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTIfVVXWLf .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tTIfVVXWLf h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tTIfVVXWLf .space_down_50 {
  margin-bottom: 50px;
}
.cid-tTIfDWRT1G {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTIfDWRT1G .mbr-text,
.cid-tTIfDWRT1G blockquote {
  color: #767676;
}
.cid-tTIfDWRT1G .mbr-text {
  color: #1d1d1b;
}
.cid-tTIfDWRT1G .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tTIfDWRT1G p {
  margin-bottom: 0px;
}
.cid-tTIfKqh8Yz {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tTIfKqh8Yz .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tTIfKqh8Yz .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-tTIfKqh8Yz .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-tTIfKqh8Yz .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tTIfKqh8Yz .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tTIfKqh8Yz .testimonial-text {
  text-align: left;
}
.cid-tTIjz881vW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTIjz881vW .mbr-text,
.cid-tTIjz881vW blockquote {
  color: #767676;
}
.cid-tTIjz881vW .mbr-text {
  color: #1d1d1b;
}
.cid-tTIjz881vW .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tTIjz881vW p {
  margin-bottom: 0px;
}
.cid-tTIfEK5gma {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTIfEK5gma .testimonial-text {
  font-weight: 400;
  color: #1d1d1b;
  text-align: left;
}
.cid-tTIfEK5gma .mbr-text {
  line-height: 1.32 !important;
}
.cid-tTIfEK5gma .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tTIfEK5gma .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tTIfEK5gma .h2_block {
  margin-bottom: 20px;
}
.cid-tTIfEK5gma .px-3 {
  padding-left: 0rem !important;
}
.cid-tTIfEK5gma .py-2 {
  padding-top: 0rem !important;
  padding-bottom: .0rem !important;
}
.cid-tTIfEK5gma .pr-lg-5 {
  padding-right: 1rem !important;
}
.cid-tTIfEK5gma .mbr-figure {
  margin-top: 20px;
  float: left;
}
.cid-tTIfEK5gma .media-content,
.cid-tTIfEK5gma .mbr-figure {
  align-self: flex-start;
}
.cid-tTIfEK5gma p {
  margin-bottom: 0px;
}
.cid-tTIfEK5gma .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 991px) {
  .cid-tTIfEK5gma .mbr-figure,
  .cid-tTIfEK5gma img {
    width: 100%;
    margin-top: 20px;
    margin: auto;
  }
  .cid-tTIfEK5gma .col-10,
  .cid-tTIfEK5gma .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-tTIfEK5gma .pr-lg-5 {
    padding-right: 0rem !important;
    padding-top: 1rem !important;
  }
  .cid-tTIfEK5gma .media-content {
    padding-top: 1.5rem !important;
  }
}
@media (max-width: 768px) {
  .cid-tTIfEK5gma .col-10,
  .cid-tTIfEK5gma .col-md-8 {
    max-width: 100%;
  }
}
.cid-tTIfEK5gma h3 {
  margin-top: 1rem;
  color: #1d1d1b;
}
.cid-tTIfH1b8wS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTIfH1b8wS .mbr-text,
.cid-tTIfH1b8wS blockquote {
  color: #767676;
}
.cid-tTIfH1b8wS .mbr-text {
  color: #1d1d1b;
}
.cid-tTIfH1b8wS .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tTIfH1b8wS p {
  margin-bottom: 0px;
}
.cid-tTIfLYy1KB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTIfLYy1KB .mbr-text,
.cid-tTIfLYy1KB blockquote {
  color: #767676;
}
.cid-tTIfLYy1KB .mbr-text {
  color: #1d1d1b;
}
.cid-tTIfLYy1KB .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tTIfLYy1KB p {
  margin-bottom: 0px;
}
.cid-tTIfMNlFSw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTIfMNlFSw .testimonial-text {
  font-weight: 400;
  color: #1d1d1b;
  text-align: left;
}
.cid-tTIfMNlFSw .mbr-text {
  line-height: 1.32 !important;
}
.cid-tTIfMNlFSw .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-tTIfMNlFSw .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tTIfMNlFSw .h2_block {
  margin-bottom: 20px;
}
.cid-tTIfMNlFSw .px-3 {
  padding-left: 0rem !important;
}
.cid-tTIfMNlFSw .py-2 {
  padding-top: 0rem !important;
  padding-bottom: .0rem !important;
}
.cid-tTIfMNlFSw .pr-lg-5 {
  padding-right: 1rem !important;
}
.cid-tTIfMNlFSw .mbr-figure {
  margin-top: 20px;
  float: left;
}
.cid-tTIfMNlFSw .media-content,
.cid-tTIfMNlFSw .mbr-figure {
  align-self: flex-start;
}
.cid-tTIfMNlFSw p {
  margin-bottom: 0px;
}
.cid-tTIfMNlFSw .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 991px) {
  .cid-tTIfMNlFSw .mbr-figure,
  .cid-tTIfMNlFSw img {
    width: 100%;
    margin-top: 20px;
    margin: auto;
  }
  .cid-tTIfMNlFSw .col-10,
  .cid-tTIfMNlFSw .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    margin-left: auto;
    margin-right: auto;
  }
  .cid-tTIfMNlFSw .pr-lg-5 {
    padding-right: 0rem !important;
    padding-top: 1rem !important;
  }
  .cid-tTIfMNlFSw .media-content {
    padding-top: 1.5rem !important;
  }
}
@media (max-width: 768px) {
  .cid-tTIfMNlFSw .col-10,
  .cid-tTIfMNlFSw .col-md-8 {
    max-width: 100%;
  }
}
.cid-tTIfMNlFSw h3 {
  margin-top: 1rem;
  color: #1d1d1b;
}
.cid-tTIiTuBXD7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tTIiTuBXD7 .mbr-text,
.cid-tTIiTuBXD7 blockquote {
  color: #767676;
}
.cid-tTIiTuBXD7 .mbr-text {
  color: #1d1d1b;
}
.cid-tTIiTuBXD7 .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tTIiTuBXD7 p {
  margin-bottom: 0px;
}
.cid-tTIgFDskp8 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tTIgFDskp8 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tTIgFDskp8 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
.cid-tTIgFDskp8 .display-2 {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.2px;
  margin-top: 0.5rem;
  font-style: italic;
}
.cid-tTIgFDskp8 .mbr-text {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .cid-tTIgFDskp8 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tTIgFDskp8 .testimonial-text {
  text-align: left;
}
.cid-tTIjiytVSm {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tTIjiytVSm .mbr-text,
.cid-tTIjiytVSm blockquote {
  color: #767676;
}
.cid-tTIjiytVSm .mbr-text {
  color: #1d1d1b;
}
.cid-tTIjiytVSm .display-5 {
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
}
.cid-tTIjiytVSm p {
  margin-bottom: 0px;
}
.cid-tQA4vCa0P9 {
  background: #ffffff;
}
.cid-tQA4vCa0P9 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tQA4vCa0P9 figcaption {
  position: relative;
}
.cid-tQA4vCa0P9 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tQA4vCa0P9 .image-block {
    width: 100% !important;
  }
}
.cid-tQA4JJs6Mm {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tQA4JJs6Mm .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tQA4JJs6Mm .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-tQA4JJs6Mm .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tQA4JJs6Mm a svg polygon {
  fill: white !important;
}
.cid-tQA4JJs6Mm a:hover {
  Color: #F9CEB2!important;
}
.cid-tQA4JJs6Mm a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tQA4JJs6Mm .btn-white-outline:hover,
.cid-tQA4JJs6Mm .btn-white-outline:focus,
.cid-tQA4JJs6Mm .btn-white-outline.focus,
.cid-tQA4JJs6Mm .btn-white-outline.active,
.cid-tQA4JJs6Mm .btn-black-outline:hover,
.cid-tQA4JJs6Mm .btn-black-outline:focus,
.cid-tQA4JJs6Mm .btn-black-outline.focus,
.cid-tQA4JJs6Mm .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tQA4JJs6Mm .display-5 {
    line-height: 1;
  }
  .cid-tQA4JJs6Mm .btn {
    font-size: 1.5rem !important;
  }
  .cid-tQA4JJs6Mm .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7A9wXWk06 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7A9wXWk06 .content {
    text-align: center;
  }
  .cid-u7A9wXWk06 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7A9wXWk06 .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7A9wXWk06 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7A9wXWk06 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7A9wXWk06 .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7A9wXWk06 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7A9wXWk06 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7A9wXWk06 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7A9wXWk06 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7A9wXWk06 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7A9wXWk06 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7A9wXWk06 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7A9wXWk06 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7A9wXWk06 H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7A9wXWk06 P {
  color: #ffffff;
}
.cid-u7A9wXWk06 .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7A9wXWk06 .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7A9wXWk06 .logo_footer {
  position: relative;
}
.cid-u7A9wXWk06 .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7A9wXWk06 .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7A9wXWk06 .col,
  .cid-u7A9wXWk06 .col-1,
  .cid-u7A9wXWk06 .col-10,
  .cid-u7A9wXWk06 .col-11,
  .cid-u7A9wXWk06 .col-12,
  .cid-u7A9wXWk06 .col-2,
  .cid-u7A9wXWk06 .col-3,
  .cid-u7A9wXWk06 .col-4,
  .cid-u7A9wXWk06 .col-5,
  .cid-u7A9wXWk06 .col-6,
  .cid-u7A9wXWk06 .col-7,
  .cid-u7A9wXWk06 .col-8,
  .cid-u7A9wXWk06 .col-9,
  .cid-u7A9wXWk06 .col-auto,
  .cid-u7A9wXWk06 .col-lg,
  .cid-u7A9wXWk06 .col-lg-1,
  .cid-u7A9wXWk06 .col-lg-10,
  .cid-u7A9wXWk06 .col-lg-11,
  .cid-u7A9wXWk06 .col-lg-12,
  .cid-u7A9wXWk06 .col-lg-2,
  .cid-u7A9wXWk06 .col-lg-3,
  .cid-u7A9wXWk06 .col-lg-4,
  .cid-u7A9wXWk06 .col-lg-5,
  .cid-u7A9wXWk06 .col-lg-6,
  .cid-u7A9wXWk06 .col-lg-7,
  .cid-u7A9wXWk06 .col-lg-8,
  .cid-u7A9wXWk06 .col-lg-9,
  .cid-u7A9wXWk06 .col-lg-auto,
  .cid-u7A9wXWk06 .col-md,
  .cid-u7A9wXWk06 .col-md-1,
  .cid-u7A9wXWk06 .col-md-10,
  .cid-u7A9wXWk06 .col-md-11,
  .cid-u7A9wXWk06 .col-md-12,
  .cid-u7A9wXWk06 .col-md-2,
  .cid-u7A9wXWk06 .col-md-3,
  .cid-u7A9wXWk06 .col-md-4,
  .cid-u7A9wXWk06 .col-md-5,
  .cid-u7A9wXWk06 .col-md-6,
  .cid-u7A9wXWk06 .col-md-7,
  .cid-u7A9wXWk06 .col-md-8,
  .cid-u7A9wXWk06 .col-md-9,
  .cid-u7A9wXWk06 .col-md-auto,
  .cid-u7A9wXWk06 .col-sm,
  .cid-u7A9wXWk06 .col-sm-1,
  .cid-u7A9wXWk06 .col-sm-10,
  .cid-u7A9wXWk06 .col-sm-11,
  .cid-u7A9wXWk06 .col-sm-12,
  .cid-u7A9wXWk06 .col-sm-2,
  .cid-u7A9wXWk06 .col-sm-3,
  .cid-u7A9wXWk06 .col-sm-4,
  .cid-u7A9wXWk06 .col-sm-5,
  .cid-u7A9wXWk06 .col-sm-6,
  .cid-u7A9wXWk06 .col-sm-7,
  .cid-u7A9wXWk06 .col-sm-8,
  .cid-u7A9wXWk06 .col-sm-9,
  .cid-u7A9wXWk06 .col-sm-auto,
  .cid-u7A9wXWk06 .col-xl,
  .cid-u7A9wXWk06 .col-xl-1,
  .cid-u7A9wXWk06 .col-xl-10,
  .cid-u7A9wXWk06 .col-xl-11,
  .cid-u7A9wXWk06 .col-xl-12,
  .cid-u7A9wXWk06 .col-xl-2,
  .cid-u7A9wXWk06 .col-xl-3,
  .cid-u7A9wXWk06 .col-xl-4,
  .cid-u7A9wXWk06 .col-xl-5,
  .cid-u7A9wXWk06 .col-xl-6,
  .cid-u7A9wXWk06 .col-xl-7,
  .cid-u7A9wXWk06 .col-xl-8,
  .cid-u7A9wXWk06 .col-xl-9,
  .cid-u7A9wXWk06 .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7A9wXWk06 .content {
    text-align: left;
  }
  .cid-u7A9wXWk06 .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7A9wXWk06 .logo_footer_box {
    position: relative;
  }
  .cid-u7A9wXWk06 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7A9wXWk06 .logo_footer {
    position: relative;
  }
  .cid-u7A9wXWk06 .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7A9wXWk06 .copyright > p {
  color: #f9ceb2;
}
.cid-tKtgwb5n0N :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-tKtgwb5n0N .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-tKtgwb5n0N .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tKtgwb5n0N a {
  font-style: normal;
}
.cid-tKtgwb5n0N .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tKtgwb5n0N .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tKtgwb5n0N .nav-item:focus,
.cid-tKtgwb5n0N .nav-link:focus {
  outline: none;
}
.cid-tKtgwb5n0N .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-tKtgwb5n0N .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-tKtgwb5n0N .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tKtgwb5n0N .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tKtgwb5n0N .menu-logo {
  margin-right: auto;
}
.cid-tKtgwb5n0N .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-tKtgwb5n0N .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tKtgwb5n0N .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tKtgwb5n0N .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tKtgwb5n0N .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tKtgwb5n0N .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tKtgwb5n0N .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tKtgwb5n0N .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-tKtgwb5n0N .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tKtgwb5n0N .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tKtgwb5n0N .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tKtgwb5n0N .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tKtgwb5n0N .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tKtgwb5n0N .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tKtgwb5n0N .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tKtgwb5n0N .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-tKtgwb5n0N .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-tKtgwb5n0N .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tKtgwb5n0N .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tKtgwb5n0N .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tKtgwb5n0N .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tKtgwb5n0N .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-tKtgwb5n0N .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tKtgwb5n0N button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tKtgwb5n0N button.navbar-toggler:focus {
  outline: none;
}
.cid-tKtgwb5n0N button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tKtgwb5n0N button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tKtgwb5n0N button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tKtgwb5n0N button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tKtgwb5n0N button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tKtgwb5n0N nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKtgwb5n0N nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tKtgwb5n0N nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tKtgwb5n0N nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tKtgwb5n0N .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tKtgwb5n0N .collapsed .btn {
  display: flex;
}
.cid-tKtgwb5n0N .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tKtgwb5n0N .collapsed .navbar-collapse.collapsing,
.cid-tKtgwb5n0N .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tKtgwb5n0N .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tKtgwb5n0N .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tKtgwb5n0N .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tKtgwb5n0N .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tKtgwb5n0N .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tKtgwb5n0N .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-tKtgwb5n0N .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tKtgwb5n0N .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tKtgwb5n0N .collapsed button.navbar-toggler {
  display: block;
}
.cid-tKtgwb5n0N .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tKtgwb5n0N .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tKtgwb5n0N .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tKtgwb5n0N .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tKtgwb5n0N .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tKtgwb5n0N .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tKtgwb5n0N .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-tKtgwb5n0N .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-tKtgwb5n0N .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-tKtgwb5n0N .navbar-expand {
    flex-direction: column;
  }
  .cid-tKtgwb5n0N img {
    height: 3rem !important;
  }
  .cid-tKtgwb5n0N .btn {
    display: flex;
  }
  .cid-tKtgwb5n0N button.navbar-toggler {
    display: block;
  }
  .cid-tKtgwb5n0N .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tKtgwb5n0N .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tKtgwb5n0N .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tKtgwb5n0N .navbar-collapse.collapsing,
  .cid-tKtgwb5n0N .navbar-collapse.show {
    display: block !important;
  }
  .cid-tKtgwb5n0N .navbar-collapse.collapsing .navbar-nav,
  .cid-tKtgwb5n0N .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tKtgwb5n0N .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tKtgwb5n0N .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tKtgwb5n0N .navbar-collapse.collapsing .navbar-buttons,
  .cid-tKtgwb5n0N .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tKtgwb5n0N .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tKtgwb5n0N .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tKtgwb5n0N .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tKtgwb5n0N .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tKtgwb5n0N .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tKtgwb5n0N .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tKtgwb5n0N .logo_s,
  .cid-tKtgwb5n0N .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-tKtgwb5n0N .menu-logo {
    flex-shrink: 3;
  }
}
.cid-tKtgwb5n0N .navbar-collapse {
  flex-basis: auto;
}
.cid-tKtgwb5n0N .nav-link:hover,
.cid-tKtgwb5n0N .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-tKtgwb5n0N .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-tKtgwb5n0N .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-tKtgwb5n0N .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-tKtgwb5n0N .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-tKtgwb5n0N .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-tKtgwb5n0N a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tKtgwb5n0N a:hover svg polygon,
.cid-tKtgwb5n0N a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tKtgwb5n0N .hidden {
  display: none !important;
}
.cid-tKtgwb5n0N .shoow {
  display: block !important;
}
.cid-tKtgwb5n0N .navbar-logo a,
.cid-tKtgwb5n0N .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tKtgwb5n0N .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tKtgwb5n0N .logo_s {
    height: 2rem !important;
  }
  .cid-tKtgwb5n0N .navbar-logo a img {
    left: 20px;
  }
  .cid-tKtgwb5n0N .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-tKtgwb5n0N .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-tKtgwb5n0N .stoerer_head,
  .cid-tKtgwb5n0N .stoerer_text {
    grid-row: 1;
  }
  .cid-tKtgwb5n0N .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-tKtgwb5n0N a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-tKtgwaN33F {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-tKtgwaN33F {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tKtklxiBtF {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-tKtklxiBtF .testimonial-text {
  font-style: italic;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-tKtklxiBtF .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-tKtklxiBtF .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-tKtklxiBtF .mbr-figure,
  .cid-tKtklxiBtF img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-tKtklxiBtF .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-tKtklxiBtF .mbr-author-desc {
  color: #000000;
}
.cid-tKtklxiBtF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tKtklxiBtF .text_block {
  margin-top: 0px;
}
.cid-tKtklxiBtF .h2_block {
  margin-bottom: 20px;
}
.cid-tKtklxiBtF .mbr-figure {
  align-self: flex-start;
}
.cid-tKtklxiBtF .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-tKtklxiBtF .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tKtklxiBtF .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-tKtklxiBtF a:hover {
  Color: #a76645 !important;
}
.cid-tKtklxiBtF a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tKtklxiBtF .btn-black-outline:hover,
.cid-tKtklxiBtF .btn-black-outline:focus,
.cid-tKtklxiBtF .btn-black-outline.focus,
.cid-tKtklxiBtF .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tKtklxiBtF .display-5 {
    line-height: 1;
  }
  .cid-tKtklxiBtF .btn {
    font-size: 1.5rem !important;
  }
  .cid-tKtklxiBtF .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-tKtklxiBtF .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-u7yTKur30D {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yTKur30D .content {
    text-align: center;
  }
  .cid-u7yTKur30D .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yTKur30D .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yTKur30D .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yTKur30D .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yTKur30D .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yTKur30D .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yTKur30D .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yTKur30D .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yTKur30D .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yTKur30D .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yTKur30D .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yTKur30D .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yTKur30D .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yTKur30D H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yTKur30D P {
  color: #ffffff;
}
.cid-u7yTKur30D .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yTKur30D .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yTKur30D .logo_footer {
  position: relative;
}
.cid-u7yTKur30D .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yTKur30D .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yTKur30D .col,
  .cid-u7yTKur30D .col-1,
  .cid-u7yTKur30D .col-10,
  .cid-u7yTKur30D .col-11,
  .cid-u7yTKur30D .col-12,
  .cid-u7yTKur30D .col-2,
  .cid-u7yTKur30D .col-3,
  .cid-u7yTKur30D .col-4,
  .cid-u7yTKur30D .col-5,
  .cid-u7yTKur30D .col-6,
  .cid-u7yTKur30D .col-7,
  .cid-u7yTKur30D .col-8,
  .cid-u7yTKur30D .col-9,
  .cid-u7yTKur30D .col-auto,
  .cid-u7yTKur30D .col-lg,
  .cid-u7yTKur30D .col-lg-1,
  .cid-u7yTKur30D .col-lg-10,
  .cid-u7yTKur30D .col-lg-11,
  .cid-u7yTKur30D .col-lg-12,
  .cid-u7yTKur30D .col-lg-2,
  .cid-u7yTKur30D .col-lg-3,
  .cid-u7yTKur30D .col-lg-4,
  .cid-u7yTKur30D .col-lg-5,
  .cid-u7yTKur30D .col-lg-6,
  .cid-u7yTKur30D .col-lg-7,
  .cid-u7yTKur30D .col-lg-8,
  .cid-u7yTKur30D .col-lg-9,
  .cid-u7yTKur30D .col-lg-auto,
  .cid-u7yTKur30D .col-md,
  .cid-u7yTKur30D .col-md-1,
  .cid-u7yTKur30D .col-md-10,
  .cid-u7yTKur30D .col-md-11,
  .cid-u7yTKur30D .col-md-12,
  .cid-u7yTKur30D .col-md-2,
  .cid-u7yTKur30D .col-md-3,
  .cid-u7yTKur30D .col-md-4,
  .cid-u7yTKur30D .col-md-5,
  .cid-u7yTKur30D .col-md-6,
  .cid-u7yTKur30D .col-md-7,
  .cid-u7yTKur30D .col-md-8,
  .cid-u7yTKur30D .col-md-9,
  .cid-u7yTKur30D .col-md-auto,
  .cid-u7yTKur30D .col-sm,
  .cid-u7yTKur30D .col-sm-1,
  .cid-u7yTKur30D .col-sm-10,
  .cid-u7yTKur30D .col-sm-11,
  .cid-u7yTKur30D .col-sm-12,
  .cid-u7yTKur30D .col-sm-2,
  .cid-u7yTKur30D .col-sm-3,
  .cid-u7yTKur30D .col-sm-4,
  .cid-u7yTKur30D .col-sm-5,
  .cid-u7yTKur30D .col-sm-6,
  .cid-u7yTKur30D .col-sm-7,
  .cid-u7yTKur30D .col-sm-8,
  .cid-u7yTKur30D .col-sm-9,
  .cid-u7yTKur30D .col-sm-auto,
  .cid-u7yTKur30D .col-xl,
  .cid-u7yTKur30D .col-xl-1,
  .cid-u7yTKur30D .col-xl-10,
  .cid-u7yTKur30D .col-xl-11,
  .cid-u7yTKur30D .col-xl-12,
  .cid-u7yTKur30D .col-xl-2,
  .cid-u7yTKur30D .col-xl-3,
  .cid-u7yTKur30D .col-xl-4,
  .cid-u7yTKur30D .col-xl-5,
  .cid-u7yTKur30D .col-xl-6,
  .cid-u7yTKur30D .col-xl-7,
  .cid-u7yTKur30D .col-xl-8,
  .cid-u7yTKur30D .col-xl-9,
  .cid-u7yTKur30D .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yTKur30D .content {
    text-align: left;
  }
  .cid-u7yTKur30D .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yTKur30D .logo_footer_box {
    position: relative;
  }
  .cid-u7yTKur30D .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yTKur30D .logo_footer {
    position: relative;
  }
  .cid-u7yTKur30D .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yTKur30D .copyright > p {
  color: #f9ceb2;
}
.cid-tOpmy1mbYk :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-tOpmy1mbYk .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-tOpmy1mbYk .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tOpmy1mbYk a {
  font-style: normal;
}
.cid-tOpmy1mbYk .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tOpmy1mbYk .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tOpmy1mbYk .nav-item:focus,
.cid-tOpmy1mbYk .nav-link:focus {
  outline: none;
}
.cid-tOpmy1mbYk .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-tOpmy1mbYk .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-tOpmy1mbYk .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tOpmy1mbYk .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tOpmy1mbYk .menu-logo {
  margin-right: auto;
}
.cid-tOpmy1mbYk .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-tOpmy1mbYk .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tOpmy1mbYk .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tOpmy1mbYk .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tOpmy1mbYk .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tOpmy1mbYk .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tOpmy1mbYk .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tOpmy1mbYk .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-tOpmy1mbYk .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOpmy1mbYk .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tOpmy1mbYk .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tOpmy1mbYk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tOpmy1mbYk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOpmy1mbYk .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tOpmy1mbYk .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOpmy1mbYk .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-tOpmy1mbYk .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-tOpmy1mbYk .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tOpmy1mbYk .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tOpmy1mbYk .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tOpmy1mbYk .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tOpmy1mbYk .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-tOpmy1mbYk .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tOpmy1mbYk button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tOpmy1mbYk button.navbar-toggler:focus {
  outline: none;
}
.cid-tOpmy1mbYk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOpmy1mbYk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tOpmy1mbYk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tOpmy1mbYk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tOpmy1mbYk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tOpmy1mbYk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOpmy1mbYk nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tOpmy1mbYk nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tOpmy1mbYk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOpmy1mbYk .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tOpmy1mbYk .collapsed .btn {
  display: flex;
}
.cid-tOpmy1mbYk .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tOpmy1mbYk .collapsed .navbar-collapse.collapsing,
.cid-tOpmy1mbYk .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tOpmy1mbYk .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tOpmy1mbYk .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tOpmy1mbYk .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tOpmy1mbYk .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tOpmy1mbYk .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tOpmy1mbYk .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-tOpmy1mbYk .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tOpmy1mbYk .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tOpmy1mbYk .collapsed button.navbar-toggler {
  display: block;
}
.cid-tOpmy1mbYk .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tOpmy1mbYk .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tOpmy1mbYk .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tOpmy1mbYk .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tOpmy1mbYk .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tOpmy1mbYk .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tOpmy1mbYk .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-tOpmy1mbYk .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-tOpmy1mbYk .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-tOpmy1mbYk .navbar-expand {
    flex-direction: column;
  }
  .cid-tOpmy1mbYk img {
    height: 3rem !important;
  }
  .cid-tOpmy1mbYk .btn {
    display: flex;
  }
  .cid-tOpmy1mbYk button.navbar-toggler {
    display: block;
  }
  .cid-tOpmy1mbYk .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tOpmy1mbYk .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tOpmy1mbYk .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tOpmy1mbYk .navbar-collapse.collapsing,
  .cid-tOpmy1mbYk .navbar-collapse.show {
    display: block !important;
  }
  .cid-tOpmy1mbYk .navbar-collapse.collapsing .navbar-nav,
  .cid-tOpmy1mbYk .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tOpmy1mbYk .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tOpmy1mbYk .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tOpmy1mbYk .navbar-collapse.collapsing .navbar-buttons,
  .cid-tOpmy1mbYk .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tOpmy1mbYk .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tOpmy1mbYk .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tOpmy1mbYk .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tOpmy1mbYk .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tOpmy1mbYk .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tOpmy1mbYk .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tOpmy1mbYk .logo_s,
  .cid-tOpmy1mbYk .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-tOpmy1mbYk .menu-logo {
    flex-shrink: 3;
  }
}
.cid-tOpmy1mbYk .navbar-collapse {
  flex-basis: auto;
}
.cid-tOpmy1mbYk .nav-link:hover,
.cid-tOpmy1mbYk .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-tOpmy1mbYk .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-tOpmy1mbYk .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-tOpmy1mbYk .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-tOpmy1mbYk .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-tOpmy1mbYk .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-tOpmy1mbYk a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tOpmy1mbYk a:hover svg polygon,
.cid-tOpmy1mbYk a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tOpmy1mbYk .hidden {
  display: none !important;
}
.cid-tOpmy1mbYk .shoow {
  display: block !important;
}
.cid-tOpmy1mbYk .navbar-logo a,
.cid-tOpmy1mbYk .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tOpmy1mbYk .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tOpmy1mbYk .logo_s {
    height: 2rem !important;
  }
  .cid-tOpmy1mbYk .navbar-logo a img {
    left: 20px;
  }
  .cid-tOpmy1mbYk .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-tOpmy1mbYk .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-tOpmy1mbYk .stoerer_head,
  .cid-tOpmy1mbYk .stoerer_text {
    grid-row: 1;
  }
  .cid-tOpmy1mbYk .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-tOpmy1mbYk a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-tOpmy2nGT1 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-tOpmy2nGT1 {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tOpmykEbre {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-tOpmykEbre .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-tOpmykEbre h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tOpmykEbre .space_down_30 {
  margin-bottom: 30px;
}
.cid-tOpmykEbre .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tQpZGjELeA {
  background: #f9ceb2;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-tQpZGjELeA .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-tQpZGjELeA .video-block {
    width: 100% !important;
  }
}
.cid-tQpZGjELeA .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tPEAYNdMmQ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-tPEAYNdMmQ .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tPEAYNdMmQ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tPEAYNdMmQ .space_down_50 {
  margin-bottom: 50px;
}
.cid-tOpmykXeD3 {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #f9ceb2;
}
.cid-tOpmykXeD3 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tOpmykXeD3 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tOpmykXeD3 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tOpmylld7q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tOpmylld7q .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-tOpmylld7q h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tOpmylld7q .space_down_30 {
  margin-bottom: 30px;
}
.cid-tOpmylld7q .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-tOpmylGdJn {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 75px;
}
.cid-tOpmylGdJn .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-tOpmylGdJn .video-block {
    width: 100% !important;
  }
}
.cid-tOpmylGdJn .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u7yVQPb7un {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVQPb7un .content {
    text-align: center;
  }
  .cid-u7yVQPb7un .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVQPb7un .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVQPb7un .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVQPb7un .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVQPb7un .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVQPb7un .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVQPb7un .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVQPb7un .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVQPb7un .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVQPb7un .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVQPb7un .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVQPb7un .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVQPb7un .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVQPb7un H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVQPb7un P {
  color: #ffffff;
}
.cid-u7yVQPb7un .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVQPb7un .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVQPb7un .logo_footer {
  position: relative;
}
.cid-u7yVQPb7un .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVQPb7un .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVQPb7un .col,
  .cid-u7yVQPb7un .col-1,
  .cid-u7yVQPb7un .col-10,
  .cid-u7yVQPb7un .col-11,
  .cid-u7yVQPb7un .col-12,
  .cid-u7yVQPb7un .col-2,
  .cid-u7yVQPb7un .col-3,
  .cid-u7yVQPb7un .col-4,
  .cid-u7yVQPb7un .col-5,
  .cid-u7yVQPb7un .col-6,
  .cid-u7yVQPb7un .col-7,
  .cid-u7yVQPb7un .col-8,
  .cid-u7yVQPb7un .col-9,
  .cid-u7yVQPb7un .col-auto,
  .cid-u7yVQPb7un .col-lg,
  .cid-u7yVQPb7un .col-lg-1,
  .cid-u7yVQPb7un .col-lg-10,
  .cid-u7yVQPb7un .col-lg-11,
  .cid-u7yVQPb7un .col-lg-12,
  .cid-u7yVQPb7un .col-lg-2,
  .cid-u7yVQPb7un .col-lg-3,
  .cid-u7yVQPb7un .col-lg-4,
  .cid-u7yVQPb7un .col-lg-5,
  .cid-u7yVQPb7un .col-lg-6,
  .cid-u7yVQPb7un .col-lg-7,
  .cid-u7yVQPb7un .col-lg-8,
  .cid-u7yVQPb7un .col-lg-9,
  .cid-u7yVQPb7un .col-lg-auto,
  .cid-u7yVQPb7un .col-md,
  .cid-u7yVQPb7un .col-md-1,
  .cid-u7yVQPb7un .col-md-10,
  .cid-u7yVQPb7un .col-md-11,
  .cid-u7yVQPb7un .col-md-12,
  .cid-u7yVQPb7un .col-md-2,
  .cid-u7yVQPb7un .col-md-3,
  .cid-u7yVQPb7un .col-md-4,
  .cid-u7yVQPb7un .col-md-5,
  .cid-u7yVQPb7un .col-md-6,
  .cid-u7yVQPb7un .col-md-7,
  .cid-u7yVQPb7un .col-md-8,
  .cid-u7yVQPb7un .col-md-9,
  .cid-u7yVQPb7un .col-md-auto,
  .cid-u7yVQPb7un .col-sm,
  .cid-u7yVQPb7un .col-sm-1,
  .cid-u7yVQPb7un .col-sm-10,
  .cid-u7yVQPb7un .col-sm-11,
  .cid-u7yVQPb7un .col-sm-12,
  .cid-u7yVQPb7un .col-sm-2,
  .cid-u7yVQPb7un .col-sm-3,
  .cid-u7yVQPb7un .col-sm-4,
  .cid-u7yVQPb7un .col-sm-5,
  .cid-u7yVQPb7un .col-sm-6,
  .cid-u7yVQPb7un .col-sm-7,
  .cid-u7yVQPb7un .col-sm-8,
  .cid-u7yVQPb7un .col-sm-9,
  .cid-u7yVQPb7un .col-sm-auto,
  .cid-u7yVQPb7un .col-xl,
  .cid-u7yVQPb7un .col-xl-1,
  .cid-u7yVQPb7un .col-xl-10,
  .cid-u7yVQPb7un .col-xl-11,
  .cid-u7yVQPb7un .col-xl-12,
  .cid-u7yVQPb7un .col-xl-2,
  .cid-u7yVQPb7un .col-xl-3,
  .cid-u7yVQPb7un .col-xl-4,
  .cid-u7yVQPb7un .col-xl-5,
  .cid-u7yVQPb7un .col-xl-6,
  .cid-u7yVQPb7un .col-xl-7,
  .cid-u7yVQPb7un .col-xl-8,
  .cid-u7yVQPb7un .col-xl-9,
  .cid-u7yVQPb7un .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVQPb7un .content {
    text-align: left;
  }
  .cid-u7yVQPb7un .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVQPb7un .logo_footer_box {
    position: relative;
  }
  .cid-u7yVQPb7un .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVQPb7un .logo_footer {
    position: relative;
  }
  .cid-u7yVQPb7un .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVQPb7un .copyright > p {
  color: #f9ceb2;
}
.cid-tOpm6QNwXR :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-tOpm6QNwXR .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-tOpm6QNwXR .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tOpm6QNwXR a {
  font-style: normal;
}
.cid-tOpm6QNwXR .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tOpm6QNwXR .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tOpm6QNwXR .nav-item:focus,
.cid-tOpm6QNwXR .nav-link:focus {
  outline: none;
}
.cid-tOpm6QNwXR .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-tOpm6QNwXR .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-tOpm6QNwXR .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tOpm6QNwXR .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tOpm6QNwXR .menu-logo {
  margin-right: auto;
}
.cid-tOpm6QNwXR .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-tOpm6QNwXR .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tOpm6QNwXR .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tOpm6QNwXR .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tOpm6QNwXR .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tOpm6QNwXR .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tOpm6QNwXR .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tOpm6QNwXR .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-tOpm6QNwXR .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOpm6QNwXR .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tOpm6QNwXR .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tOpm6QNwXR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tOpm6QNwXR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOpm6QNwXR .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tOpm6QNwXR .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOpm6QNwXR .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-tOpm6QNwXR .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-tOpm6QNwXR .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tOpm6QNwXR .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tOpm6QNwXR .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tOpm6QNwXR .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tOpm6QNwXR .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-tOpm6QNwXR .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tOpm6QNwXR button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tOpm6QNwXR button.navbar-toggler:focus {
  outline: none;
}
.cid-tOpm6QNwXR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOpm6QNwXR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tOpm6QNwXR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tOpm6QNwXR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tOpm6QNwXR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tOpm6QNwXR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOpm6QNwXR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tOpm6QNwXR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tOpm6QNwXR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOpm6QNwXR .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tOpm6QNwXR .collapsed .btn {
  display: flex;
}
.cid-tOpm6QNwXR .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tOpm6QNwXR .collapsed .navbar-collapse.collapsing,
.cid-tOpm6QNwXR .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tOpm6QNwXR .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tOpm6QNwXR .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tOpm6QNwXR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tOpm6QNwXR .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tOpm6QNwXR .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tOpm6QNwXR .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-tOpm6QNwXR .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tOpm6QNwXR .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tOpm6QNwXR .collapsed button.navbar-toggler {
  display: block;
}
.cid-tOpm6QNwXR .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tOpm6QNwXR .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tOpm6QNwXR .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tOpm6QNwXR .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tOpm6QNwXR .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tOpm6QNwXR .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tOpm6QNwXR .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-tOpm6QNwXR .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-tOpm6QNwXR .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-tOpm6QNwXR .navbar-expand {
    flex-direction: column;
  }
  .cid-tOpm6QNwXR img {
    height: 3rem !important;
  }
  .cid-tOpm6QNwXR .btn {
    display: flex;
  }
  .cid-tOpm6QNwXR button.navbar-toggler {
    display: block;
  }
  .cid-tOpm6QNwXR .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tOpm6QNwXR .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tOpm6QNwXR .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tOpm6QNwXR .navbar-collapse.collapsing,
  .cid-tOpm6QNwXR .navbar-collapse.show {
    display: block !important;
  }
  .cid-tOpm6QNwXR .navbar-collapse.collapsing .navbar-nav,
  .cid-tOpm6QNwXR .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tOpm6QNwXR .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tOpm6QNwXR .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tOpm6QNwXR .navbar-collapse.collapsing .navbar-buttons,
  .cid-tOpm6QNwXR .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tOpm6QNwXR .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tOpm6QNwXR .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tOpm6QNwXR .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tOpm6QNwXR .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tOpm6QNwXR .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tOpm6QNwXR .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tOpm6QNwXR .logo_s,
  .cid-tOpm6QNwXR .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-tOpm6QNwXR .menu-logo {
    flex-shrink: 3;
  }
}
.cid-tOpm6QNwXR .navbar-collapse {
  flex-basis: auto;
}
.cid-tOpm6QNwXR .nav-link:hover,
.cid-tOpm6QNwXR .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-tOpm6QNwXR .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-tOpm6QNwXR .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-tOpm6QNwXR .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-tOpm6QNwXR .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-tOpm6QNwXR .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-tOpm6QNwXR a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tOpm6QNwXR a:hover svg polygon,
.cid-tOpm6QNwXR a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tOpm6QNwXR .hidden {
  display: none !important;
}
.cid-tOpm6QNwXR .shoow {
  display: block !important;
}
.cid-tOpm6QNwXR .navbar-logo a,
.cid-tOpm6QNwXR .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tOpm6QNwXR .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tOpm6QNwXR .logo_s {
    height: 2rem !important;
  }
  .cid-tOpm6QNwXR .navbar-logo a img {
    left: 20px;
  }
  .cid-tOpm6QNwXR .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-tOpm6QNwXR .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-tOpm6QNwXR .stoerer_head,
  .cid-tOpm6QNwXR .stoerer_text {
    grid-row: 1;
  }
  .cid-tOpm6QNwXR .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-tOpm6QNwXR a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-tOpm6RAutx {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-tOpm6RAutx {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tOpm6ZxGtL {
  background-image: url("../../../assets/images/img-0153-kopie-2000x1144.jpg");
}
.cid-tOpm6ZxGtL h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tOpm6ZxGtL .space_down_50 {
  margin-bottom: 50px;
}
.cid-tOpm6ZQz4X {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tOpm6ZQz4X .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tOpm6ZQz4X h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tOpm6ZQz4X .space_down_50 {
  margin-bottom: 50px;
}
.cid-tOpm6ZQz4X .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u5AROWCarJ {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-u5AROWCarJ .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-u5AROWCarJ .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-u5AROWCarJ .mbr-figure img {
    width: 100% !important;
  }
}
.cid-u5ARUz5xTm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u5ARUz5xTm h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u5ARUz5xTm p {
  color: #767676;
  text-align: left;
}
.cid-u5ARUz5xTm .card-box {
  padding-top: 2rem;
}
.cid-u5ARUz5xTm .card-wrapper {
  height: 100%;
}
.cid-u5ARUz5xTm P {
  text-align: left;
}
.cid-u5ARWAj0mj {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-u5ARWAj0mj .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-u5ARWAj0mj .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-u5ARWAj0mj .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tOpm70IEFY {
  background: #ffffff;
}
.cid-tOpm70IEFY .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tOpm70IEFY figcaption {
  position: relative;
}
.cid-tOpm70IEFY figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tOpm70IEFY .image-block {
    width: 100% !important;
  }
}
.cid-tOpm70Z1BM {
  padding-top: 60px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-tOpm70Z1BM .images-container.container-fluid {
  padding: 0;
}
.cid-tOpm70Z1BM .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tOpm70Z1BM .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-tOpm70Z1BM .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-tOpm70Z1BM .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tOpm70Z1BM .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tOpm70Z1BM .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tOpm70Z1BM .img-item {
    width: 100% !important;
  }
  .cid-tOpm70Z1BM .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-tOpm71gURd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tOpm71gURd h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tOpm71gURd p {
  color: #767676;
  text-align: left;
}
.cid-tOpm71gURd .card-box {
  padding-top: 2rem;
}
.cid-tOpm71gURd .card-wrapper {
  height: 100%;
}
.cid-tOpm71Hj96 {
  padding-top: 30px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-9-2000x1402.png");
}
.cid-tOpm71Hj96 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tOpm71Hj96 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tOpm71Hj96 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tOpm78zbIK {
  background: #ffffff;
}
.cid-tOpm78zbIK .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tOpm78zbIK figcaption {
  position: relative;
}
.cid-tOpm78zbIK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tOpm78zbIK .image-block {
    width: 300% !important;
  }
}
.cid-uccDNxvOqZ {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-uccDNxvOqZ .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-uccDNxvOqZ .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccDNxvOqZ .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccDNxvOqZ .mbr-figure,
  .cid-uccDNxvOqZ img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccDNxvOqZ .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccDNxvOqZ .mbr-author-desc {
  color: #000000;
}
.cid-uccDNxvOqZ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccDNxvOqZ .text_block {
  margin-top: 0px;
}
.cid-uccDNxvOqZ .h2_block {
  margin-bottom: 20px;
}
.cid-uccDNxvOqZ .mbr-figure {
  align-self: flex-start;
}
.cid-uccDNxvOqZ .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccDNxvOqZ .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccDNxvOqZ .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccDNxvOqZ a svg polygon {
  fill: white !important;
}
.cid-uccDNxvOqZ a:hover {
  Color: #F9CEB2!important;
}
.cid-uccDNxvOqZ a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccDNxvOqZ .btn-white-outline:hover,
.cid-uccDNxvOqZ .btn-white-outline:focus,
.cid-uccDNxvOqZ .btn-white-outline.focus,
.cid-uccDNxvOqZ .btn-white-outline.active,
.cid-uccDNxvOqZ .btn-black-outline:hover,
.cid-uccDNxvOqZ .btn-black-outline:focus,
.cid-uccDNxvOqZ .btn-black-outline.focus,
.cid-uccDNxvOqZ .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccDNxvOqZ .display-5 {
    line-height: 1;
  }
  .cid-uccDNxvOqZ .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccDNxvOqZ .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccDNxvOqZ .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tOpm79jhgj {
  background: #ffffff;
}
.cid-tOpm79jhgj .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tOpm79jhgj figcaption {
  position: relative;
}
.cid-tOpm79jhgj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tOpm79jhgj .image-block {
    width: 300% !important;
  }
}
.cid-tOpm721Oa3 {
  background: #f9ceb2;
  padding-top: 60px;
  padding-bottom: 75px;
}
.cid-tOpm721Oa3 .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-tOpm721Oa3 .video-block {
    width: 100% !important;
  }
}
.cid-tOpm721Oa3 .video-block:hover {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u7yVTo1XrN {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yVTo1XrN .content {
    text-align: center;
  }
  .cid-u7yVTo1XrN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yVTo1XrN .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yVTo1XrN .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yVTo1XrN .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yVTo1XrN .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yVTo1XrN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yVTo1XrN .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yVTo1XrN .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yVTo1XrN .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yVTo1XrN .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yVTo1XrN .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yVTo1XrN .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yVTo1XrN .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yVTo1XrN H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yVTo1XrN P {
  color: #ffffff;
}
.cid-u7yVTo1XrN .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yVTo1XrN .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yVTo1XrN .logo_footer {
  position: relative;
}
.cid-u7yVTo1XrN .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yVTo1XrN .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yVTo1XrN .col,
  .cid-u7yVTo1XrN .col-1,
  .cid-u7yVTo1XrN .col-10,
  .cid-u7yVTo1XrN .col-11,
  .cid-u7yVTo1XrN .col-12,
  .cid-u7yVTo1XrN .col-2,
  .cid-u7yVTo1XrN .col-3,
  .cid-u7yVTo1XrN .col-4,
  .cid-u7yVTo1XrN .col-5,
  .cid-u7yVTo1XrN .col-6,
  .cid-u7yVTo1XrN .col-7,
  .cid-u7yVTo1XrN .col-8,
  .cid-u7yVTo1XrN .col-9,
  .cid-u7yVTo1XrN .col-auto,
  .cid-u7yVTo1XrN .col-lg,
  .cid-u7yVTo1XrN .col-lg-1,
  .cid-u7yVTo1XrN .col-lg-10,
  .cid-u7yVTo1XrN .col-lg-11,
  .cid-u7yVTo1XrN .col-lg-12,
  .cid-u7yVTo1XrN .col-lg-2,
  .cid-u7yVTo1XrN .col-lg-3,
  .cid-u7yVTo1XrN .col-lg-4,
  .cid-u7yVTo1XrN .col-lg-5,
  .cid-u7yVTo1XrN .col-lg-6,
  .cid-u7yVTo1XrN .col-lg-7,
  .cid-u7yVTo1XrN .col-lg-8,
  .cid-u7yVTo1XrN .col-lg-9,
  .cid-u7yVTo1XrN .col-lg-auto,
  .cid-u7yVTo1XrN .col-md,
  .cid-u7yVTo1XrN .col-md-1,
  .cid-u7yVTo1XrN .col-md-10,
  .cid-u7yVTo1XrN .col-md-11,
  .cid-u7yVTo1XrN .col-md-12,
  .cid-u7yVTo1XrN .col-md-2,
  .cid-u7yVTo1XrN .col-md-3,
  .cid-u7yVTo1XrN .col-md-4,
  .cid-u7yVTo1XrN .col-md-5,
  .cid-u7yVTo1XrN .col-md-6,
  .cid-u7yVTo1XrN .col-md-7,
  .cid-u7yVTo1XrN .col-md-8,
  .cid-u7yVTo1XrN .col-md-9,
  .cid-u7yVTo1XrN .col-md-auto,
  .cid-u7yVTo1XrN .col-sm,
  .cid-u7yVTo1XrN .col-sm-1,
  .cid-u7yVTo1XrN .col-sm-10,
  .cid-u7yVTo1XrN .col-sm-11,
  .cid-u7yVTo1XrN .col-sm-12,
  .cid-u7yVTo1XrN .col-sm-2,
  .cid-u7yVTo1XrN .col-sm-3,
  .cid-u7yVTo1XrN .col-sm-4,
  .cid-u7yVTo1XrN .col-sm-5,
  .cid-u7yVTo1XrN .col-sm-6,
  .cid-u7yVTo1XrN .col-sm-7,
  .cid-u7yVTo1XrN .col-sm-8,
  .cid-u7yVTo1XrN .col-sm-9,
  .cid-u7yVTo1XrN .col-sm-auto,
  .cid-u7yVTo1XrN .col-xl,
  .cid-u7yVTo1XrN .col-xl-1,
  .cid-u7yVTo1XrN .col-xl-10,
  .cid-u7yVTo1XrN .col-xl-11,
  .cid-u7yVTo1XrN .col-xl-12,
  .cid-u7yVTo1XrN .col-xl-2,
  .cid-u7yVTo1XrN .col-xl-3,
  .cid-u7yVTo1XrN .col-xl-4,
  .cid-u7yVTo1XrN .col-xl-5,
  .cid-u7yVTo1XrN .col-xl-6,
  .cid-u7yVTo1XrN .col-xl-7,
  .cid-u7yVTo1XrN .col-xl-8,
  .cid-u7yVTo1XrN .col-xl-9,
  .cid-u7yVTo1XrN .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yVTo1XrN .content {
    text-align: left;
  }
  .cid-u7yVTo1XrN .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yVTo1XrN .logo_footer_box {
    position: relative;
  }
  .cid-u7yVTo1XrN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yVTo1XrN .logo_footer {
    position: relative;
  }
  .cid-u7yVTo1XrN .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yVTo1XrN .copyright > p {
  color: #f9ceb2;
}
.cid-tOqjB74duS :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-tOqjB74duS .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-tOqjB74duS .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tOqjB74duS a {
  font-style: normal;
}
.cid-tOqjB74duS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tOqjB74duS .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tOqjB74duS .nav-item:focus,
.cid-tOqjB74duS .nav-link:focus {
  outline: none;
}
.cid-tOqjB74duS .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-tOqjB74duS .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-tOqjB74duS .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tOqjB74duS .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tOqjB74duS .menu-logo {
  margin-right: auto;
}
.cid-tOqjB74duS .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-tOqjB74duS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tOqjB74duS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tOqjB74duS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tOqjB74duS .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tOqjB74duS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tOqjB74duS .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tOqjB74duS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-tOqjB74duS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOqjB74duS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tOqjB74duS .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tOqjB74duS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tOqjB74duS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOqjB74duS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tOqjB74duS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOqjB74duS .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-tOqjB74duS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-tOqjB74duS .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tOqjB74duS .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tOqjB74duS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tOqjB74duS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tOqjB74duS .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-tOqjB74duS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tOqjB74duS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tOqjB74duS button.navbar-toggler:focus {
  outline: none;
}
.cid-tOqjB74duS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOqjB74duS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tOqjB74duS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tOqjB74duS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tOqjB74duS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tOqjB74duS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOqjB74duS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tOqjB74duS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tOqjB74duS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tOqjB74duS .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tOqjB74duS .collapsed .btn {
  display: flex;
}
.cid-tOqjB74duS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tOqjB74duS .collapsed .navbar-collapse.collapsing,
.cid-tOqjB74duS .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tOqjB74duS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tOqjB74duS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tOqjB74duS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tOqjB74duS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tOqjB74duS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tOqjB74duS .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-tOqjB74duS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tOqjB74duS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tOqjB74duS .collapsed button.navbar-toggler {
  display: block;
}
.cid-tOqjB74duS .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tOqjB74duS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tOqjB74duS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tOqjB74duS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tOqjB74duS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tOqjB74duS .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tOqjB74duS .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-tOqjB74duS .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-tOqjB74duS .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-tOqjB74duS .navbar-expand {
    flex-direction: column;
  }
  .cid-tOqjB74duS img {
    height: 3rem !important;
  }
  .cid-tOqjB74duS .btn {
    display: flex;
  }
  .cid-tOqjB74duS button.navbar-toggler {
    display: block;
  }
  .cid-tOqjB74duS .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tOqjB74duS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tOqjB74duS .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tOqjB74duS .navbar-collapse.collapsing,
  .cid-tOqjB74duS .navbar-collapse.show {
    display: block !important;
  }
  .cid-tOqjB74duS .navbar-collapse.collapsing .navbar-nav,
  .cid-tOqjB74duS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tOqjB74duS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tOqjB74duS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tOqjB74duS .navbar-collapse.collapsing .navbar-buttons,
  .cid-tOqjB74duS .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tOqjB74duS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tOqjB74duS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tOqjB74duS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tOqjB74duS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tOqjB74duS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tOqjB74duS .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tOqjB74duS .logo_s,
  .cid-tOqjB74duS .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-tOqjB74duS .menu-logo {
    flex-shrink: 3;
  }
}
.cid-tOqjB74duS .navbar-collapse {
  flex-basis: auto;
}
.cid-tOqjB74duS .nav-link:hover,
.cid-tOqjB74duS .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-tOqjB74duS .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-tOqjB74duS .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-tOqjB74duS .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-tOqjB74duS .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-tOqjB74duS .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-tOqjB74duS a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tOqjB74duS a:hover svg polygon,
.cid-tOqjB74duS a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tOqjB74duS .hidden {
  display: none !important;
}
.cid-tOqjB74duS .shoow {
  display: block !important;
}
.cid-tOqjB74duS .navbar-logo a,
.cid-tOqjB74duS .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tOqjB74duS .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tOqjB74duS .logo_s {
    height: 2rem !important;
  }
  .cid-tOqjB74duS .navbar-logo a img {
    left: 20px;
  }
  .cid-tOqjB74duS .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-tOqjB74duS .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-tOqjB74duS .stoerer_head,
  .cid-tOqjB74duS .stoerer_text {
    grid-row: 1;
  }
  .cid-tOqjB74duS .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-tOqjB74duS a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-tOqjB6FfAd {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-tOqjB6FfAd {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tOqkiWkNJ4 {
  background: #ffffff;
}
.cid-tOqkiWkNJ4 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tOqkiWkNJ4 figcaption {
  position: relative;
}
.cid-tOqkiWkNJ4 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tOqkiWkNJ4 .image-block {
    width: 100% !important;
  }
}
.cid-tOql2Ldhxk {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tOql2Ldhxk .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tOql2Ldhxk h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tOql2Ldhxk .space_down_50 {
  margin-bottom: 50px;
}
.cid-tOql2Ldhxk .testimonial-text {
  color: #f9ceb2;
}
.cid-tOql4T5p88 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tOql4T5p88 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tOql4T5p88 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tOql4T5p88 .space_down_50 {
  margin-bottom: 50px;
}
.cid-tOql4T5p88 .mbr-section-subtitle P {
  color: #f9ceb2;
}
.cid-tXcUuSwbNg {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tXcUuSwbNg .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tXcUuSwbNg .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tXcUuSwbNg .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tP5vwfSTGs {
  padding-top: 30px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-tP5vwfSTGs .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-tP5vwfSTGs h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tP5vwfSTGs .space_down_50 {
  margin-bottom: 50px;
}
.cid-tP5vwfSTGs .mbr-section-subtitle P {
  color: #f9ceb2;
}
.cid-tP5u9n2i9M {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #000000;
}
.cid-tP5u9n2i9M .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tP5u9n2i9M .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-tP5u9n2i9M .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tP5u9n2i9M a svg polygon {
  fill: white !important;
}
.cid-tP5u9n2i9M a:hover {
  Color: #F9CEB2!important;
}
.cid-tP5u9n2i9M a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tP5u9n2i9M .btn-white-outline:hover,
.cid-tP5u9n2i9M .btn-white-outline:focus,
.cid-tP5u9n2i9M .btn-white-outline.focus,
.cid-tP5u9n2i9M .btn-white-outline.active,
.cid-tP5u9n2i9M .btn-black-outline:hover,
.cid-tP5u9n2i9M .btn-black-outline:focus,
.cid-tP5u9n2i9M .btn-black-outline.focus,
.cid-tP5u9n2i9M .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tP5u9n2i9M .display-5 {
    line-height: 1;
  }
  .cid-tP5u9n2i9M .btn {
    font-size: 1.5rem !important;
  }
  .cid-tP5u9n2i9M .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tP5TnY32gt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tP5TnY32gt .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tP5TnY32gt h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tP5TnY32gt .space_down_50 {
  margin-bottom: 50px;
}
.cid-tP5TnY32gt .testimonial-text {
  text-align: right;
  color: #171717;
}
.cid-tP5RKQcYQx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #000000;
}
.cid-tP5RKQcYQx p {
  color: #767676;
}
.cid-tP5RKQcYQx .item:focus,
.cid-tP5RKQcYQx span:focus {
  outline: none;
}
.cid-tP5RKQcYQx .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-tP5RKQcYQx .item-wrapper {
  position: relative;
}
.cid-tP5RKQcYQx .item-btn,
.cid-tP5RKQcYQx h4,
.cid-tP5RKQcYQx h5 {
  margin: 0;
}
.cid-tP5RKQcYQx .item-content {
  padding-top: 2rem;
}
.cid-tP5RKQcYQx .abstand {
  margin-top: -10px;
}
.cid-tP5RKQcYQx h4 {
  line-height: 1.2;
}
.cid-tP5RKQcYQx .item-text h5,
.cid-tP5RKQcYQx .item-text h4 {
  color: #1d1d1b;
}
.cid-tP5RKQcYQx .item-wrapper:hover .card-img {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tP5RKQcYQx .item-wrapper:hover h4 a {
  color: #F9CEB2;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tP5RKQcYQx item-text {
  color: #1d1d1b;
}
.cid-tP5RKQcYQx .link_no_link {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tP5RKQcYQx .display-5,
.cid-tP5RKQcYQx .btn {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  text-transform: uppercase ;
}
.cid-tP5RKQcYQx .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tP5RKQcYQx .btn {
  border-width: 0px !important;
  padding: 0px;
  margin: 0px;
  display: inline-block;
}
.cid-tP5RKQcYQx .special_button {
  width: 100%;
}
.cid-tP5RKQcYQx .special_button a {
  text-align: left;
}
.cid-tP5RKQcYQx .display-5 {
  color: white !important;
}
.cid-tP5RKQcYQx svg polygon {
  fill: white ;
}
.cid-tP5RKQcYQx a:hover {
  Color: #F9CEB2 !important;
}
.cid-tP5RKQcYQx a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tP5RKQcYQx .btn-black-outline:hover,
.cid-tP5RKQcYQx .btn-black-outline:focus,
.cid-tP5RKQcYQx .btn-black-outline.focus,
.cid-tP5RKQcYQx .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-tP5RKQcYQx .btn-white-outline:hover,
.cid-tP5RKQcYQx .btn-white-outline:focus,
.cid-tP5RKQcYQx .btn-white-outline.focus,
.cid-tP5RKQcYQx .btn-white-outline.active {
  background-color: rgba(255, 0, 0, 0.2) !important;
}
.cid-tP5RKQcYQx .card-img {
  margin-bottom: -20px;
}
@media (max-width: 768px) {
  .cid-tP5RKQcYQx .display-5 {
    line-height: 1;
  }
  .cid-tP5RKQcYQx .btn {
    font-size: 1.5rem !important;
  }
  .cid-tP5RKQcYQx .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7yTMKM3XQ {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yTMKM3XQ .content {
    text-align: center;
  }
  .cid-u7yTMKM3XQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yTMKM3XQ .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yTMKM3XQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yTMKM3XQ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yTMKM3XQ .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yTMKM3XQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yTMKM3XQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yTMKM3XQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yTMKM3XQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yTMKM3XQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yTMKM3XQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yTMKM3XQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yTMKM3XQ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yTMKM3XQ H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yTMKM3XQ P {
  color: #ffffff;
}
.cid-u7yTMKM3XQ .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yTMKM3XQ .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yTMKM3XQ .logo_footer {
  position: relative;
}
.cid-u7yTMKM3XQ .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yTMKM3XQ .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yTMKM3XQ .col,
  .cid-u7yTMKM3XQ .col-1,
  .cid-u7yTMKM3XQ .col-10,
  .cid-u7yTMKM3XQ .col-11,
  .cid-u7yTMKM3XQ .col-12,
  .cid-u7yTMKM3XQ .col-2,
  .cid-u7yTMKM3XQ .col-3,
  .cid-u7yTMKM3XQ .col-4,
  .cid-u7yTMKM3XQ .col-5,
  .cid-u7yTMKM3XQ .col-6,
  .cid-u7yTMKM3XQ .col-7,
  .cid-u7yTMKM3XQ .col-8,
  .cid-u7yTMKM3XQ .col-9,
  .cid-u7yTMKM3XQ .col-auto,
  .cid-u7yTMKM3XQ .col-lg,
  .cid-u7yTMKM3XQ .col-lg-1,
  .cid-u7yTMKM3XQ .col-lg-10,
  .cid-u7yTMKM3XQ .col-lg-11,
  .cid-u7yTMKM3XQ .col-lg-12,
  .cid-u7yTMKM3XQ .col-lg-2,
  .cid-u7yTMKM3XQ .col-lg-3,
  .cid-u7yTMKM3XQ .col-lg-4,
  .cid-u7yTMKM3XQ .col-lg-5,
  .cid-u7yTMKM3XQ .col-lg-6,
  .cid-u7yTMKM3XQ .col-lg-7,
  .cid-u7yTMKM3XQ .col-lg-8,
  .cid-u7yTMKM3XQ .col-lg-9,
  .cid-u7yTMKM3XQ .col-lg-auto,
  .cid-u7yTMKM3XQ .col-md,
  .cid-u7yTMKM3XQ .col-md-1,
  .cid-u7yTMKM3XQ .col-md-10,
  .cid-u7yTMKM3XQ .col-md-11,
  .cid-u7yTMKM3XQ .col-md-12,
  .cid-u7yTMKM3XQ .col-md-2,
  .cid-u7yTMKM3XQ .col-md-3,
  .cid-u7yTMKM3XQ .col-md-4,
  .cid-u7yTMKM3XQ .col-md-5,
  .cid-u7yTMKM3XQ .col-md-6,
  .cid-u7yTMKM3XQ .col-md-7,
  .cid-u7yTMKM3XQ .col-md-8,
  .cid-u7yTMKM3XQ .col-md-9,
  .cid-u7yTMKM3XQ .col-md-auto,
  .cid-u7yTMKM3XQ .col-sm,
  .cid-u7yTMKM3XQ .col-sm-1,
  .cid-u7yTMKM3XQ .col-sm-10,
  .cid-u7yTMKM3XQ .col-sm-11,
  .cid-u7yTMKM3XQ .col-sm-12,
  .cid-u7yTMKM3XQ .col-sm-2,
  .cid-u7yTMKM3XQ .col-sm-3,
  .cid-u7yTMKM3XQ .col-sm-4,
  .cid-u7yTMKM3XQ .col-sm-5,
  .cid-u7yTMKM3XQ .col-sm-6,
  .cid-u7yTMKM3XQ .col-sm-7,
  .cid-u7yTMKM3XQ .col-sm-8,
  .cid-u7yTMKM3XQ .col-sm-9,
  .cid-u7yTMKM3XQ .col-sm-auto,
  .cid-u7yTMKM3XQ .col-xl,
  .cid-u7yTMKM3XQ .col-xl-1,
  .cid-u7yTMKM3XQ .col-xl-10,
  .cid-u7yTMKM3XQ .col-xl-11,
  .cid-u7yTMKM3XQ .col-xl-12,
  .cid-u7yTMKM3XQ .col-xl-2,
  .cid-u7yTMKM3XQ .col-xl-3,
  .cid-u7yTMKM3XQ .col-xl-4,
  .cid-u7yTMKM3XQ .col-xl-5,
  .cid-u7yTMKM3XQ .col-xl-6,
  .cid-u7yTMKM3XQ .col-xl-7,
  .cid-u7yTMKM3XQ .col-xl-8,
  .cid-u7yTMKM3XQ .col-xl-9,
  .cid-u7yTMKM3XQ .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yTMKM3XQ .content {
    text-align: left;
  }
  .cid-u7yTMKM3XQ .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yTMKM3XQ .logo_footer_box {
    position: relative;
  }
  .cid-u7yTMKM3XQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yTMKM3XQ .logo_footer {
    position: relative;
  }
  .cid-u7yTMKM3XQ .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yTMKM3XQ .copyright > p {
  color: #f9ceb2;
}
.cid-u1DbdWYooX :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-u1DbdWYooX .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-u1DbdWYooX .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-u1DbdWYooX a {
  font-style: normal;
}
.cid-u1DbdWYooX .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-u1DbdWYooX .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-u1DbdWYooX .nav-item:focus,
.cid-u1DbdWYooX .nav-link:focus {
  outline: none;
}
.cid-u1DbdWYooX .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-u1DbdWYooX .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-u1DbdWYooX .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-u1DbdWYooX .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-u1DbdWYooX .menu-logo {
  margin-right: auto;
}
.cid-u1DbdWYooX .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-u1DbdWYooX .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-u1DbdWYooX .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-u1DbdWYooX .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-u1DbdWYooX .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-u1DbdWYooX .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-u1DbdWYooX .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-u1DbdWYooX .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-u1DbdWYooX .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-u1DbdWYooX .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-u1DbdWYooX .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-u1DbdWYooX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-u1DbdWYooX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u1DbdWYooX .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-u1DbdWYooX .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-u1DbdWYooX .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-u1DbdWYooX .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-u1DbdWYooX .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-u1DbdWYooX .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-u1DbdWYooX .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-u1DbdWYooX .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-u1DbdWYooX .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-u1DbdWYooX .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-u1DbdWYooX button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-u1DbdWYooX button.navbar-toggler:focus {
  outline: none;
}
.cid-u1DbdWYooX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-u1DbdWYooX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u1DbdWYooX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u1DbdWYooX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u1DbdWYooX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u1DbdWYooX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u1DbdWYooX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u1DbdWYooX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u1DbdWYooX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u1DbdWYooX .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-u1DbdWYooX .collapsed .btn {
  display: flex;
}
.cid-u1DbdWYooX .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-u1DbdWYooX .collapsed .navbar-collapse.collapsing,
.cid-u1DbdWYooX .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-u1DbdWYooX .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-u1DbdWYooX .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-u1DbdWYooX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-u1DbdWYooX .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-u1DbdWYooX .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-u1DbdWYooX .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-u1DbdWYooX .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-u1DbdWYooX .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-u1DbdWYooX .collapsed button.navbar-toggler {
  display: block;
}
.cid-u1DbdWYooX .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-u1DbdWYooX .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-u1DbdWYooX .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-u1DbdWYooX .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-u1DbdWYooX .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-u1DbdWYooX .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-u1DbdWYooX .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-u1DbdWYooX .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-u1DbdWYooX .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-u1DbdWYooX .navbar-expand {
    flex-direction: column;
  }
  .cid-u1DbdWYooX img {
    height: 3rem !important;
  }
  .cid-u1DbdWYooX .btn {
    display: flex;
  }
  .cid-u1DbdWYooX button.navbar-toggler {
    display: block;
  }
  .cid-u1DbdWYooX .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-u1DbdWYooX .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-u1DbdWYooX .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-u1DbdWYooX .navbar-collapse.collapsing,
  .cid-u1DbdWYooX .navbar-collapse.show {
    display: block !important;
  }
  .cid-u1DbdWYooX .navbar-collapse.collapsing .navbar-nav,
  .cid-u1DbdWYooX .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-u1DbdWYooX .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-u1DbdWYooX .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-u1DbdWYooX .navbar-collapse.collapsing .navbar-buttons,
  .cid-u1DbdWYooX .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-u1DbdWYooX .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-u1DbdWYooX .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-u1DbdWYooX .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-u1DbdWYooX .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-u1DbdWYooX .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-u1DbdWYooX .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-u1DbdWYooX .logo_s,
  .cid-u1DbdWYooX .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-u1DbdWYooX .menu-logo {
    flex-shrink: 3;
  }
}
.cid-u1DbdWYooX .navbar-collapse {
  flex-basis: auto;
}
.cid-u1DbdWYooX .nav-link:hover,
.cid-u1DbdWYooX .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-u1DbdWYooX .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-u1DbdWYooX .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-u1DbdWYooX .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-u1DbdWYooX .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-u1DbdWYooX .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-u1DbdWYooX a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u1DbdWYooX a:hover svg polygon,
.cid-u1DbdWYooX a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u1DbdWYooX .hidden {
  display: none !important;
}
.cid-u1DbdWYooX .shoow {
  display: block !important;
}
.cid-u1DbdWYooX .navbar-logo a,
.cid-u1DbdWYooX .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-u1DbdWYooX .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-u1DbdWYooX .logo_s {
    height: 2rem !important;
  }
  .cid-u1DbdWYooX .navbar-logo a img {
    left: 20px;
  }
  .cid-u1DbdWYooX .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-u1DbdWYooX .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-u1DbdWYooX .stoerer_head,
  .cid-u1DbdWYooX .stoerer_text {
    grid-row: 1;
  }
  .cid-u1DbdWYooX .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-u1DbdWYooX a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-u1DbdXIg8N {
  padding-top: 90px;
  background-image: url("../../../assets/images/header-2-1500x205.png");
}
@media (max-width: 768px) {
  .cid-u1DbdXIg8N {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-uac1CFxrLK {
  background: #ffffff;
}
.cid-uac1CFxrLK .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uac1CFxrLK figcaption {
  position: relative;
}
.cid-uac1CFxrLK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uac1CFxrLK .image-block {
    width: 100% !important;
  }
}
.cid-u1DbdYdUlM {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-u1DbdYdUlM .mbr-text,
.cid-u1DbdYdUlM blockquote {
  color: #767676;
}
.cid-u1DbdYdUlM .mbr-text {
  color: #000000;
}
.cid-u1DbdYnUUo {
  background: #000000;
  padding-top: 60px;
  padding-bottom: 30px;
}
.cid-u1DbdYnUUo .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-u1DbdYnUUo .video-block {
    width: 100% !important;
  }
}
.cid-u1DbdYnUUo .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u1DOhL1xrR {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u1DOhL1xrR .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-u1DOhL1xrR h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u1DOhL1xrR .space_down_50 {
  margin-bottom: 50px;
}
.cid-u1DOhL1xrR .testimonial-text {
  text-align: center;
}
.cid-u1DOiNdRux {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-u1DOiNdRux .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u1DOiNdRux h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u1DOiNdRux .space_down_50 {
  margin-bottom: 50px;
}
.cid-u1DOiNdRux .mbr-section-subtitle P {
  color: #ffffff;
  text-align: left;
}
.cid-u6VlccoI3y {
  background: #000000;
  padding-top: 90px;
  padding-bottom: 60px;
}
.cid-u6VlccoI3y .image-block {
  margin: auto;
}
.cid-u6VlccoI3y figcaption {
  position: relative;
}
.cid-u6VlccoI3y figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u6VlccoI3y .image-block {
    width: 100% !important;
  }
}
.cid-uac2mEWWYv {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-uac2mEWWYv .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uac2mEWWYv .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-uac2mEWWYv .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-uac2mEWWYv a svg polygon {
  fill: white !important;
}
.cid-uac2mEWWYv a:hover {
  Color: #F9CEB2!important;
}
.cid-uac2mEWWYv a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uac2mEWWYv .btn-white-outline:hover,
.cid-uac2mEWWYv .btn-white-outline:focus,
.cid-uac2mEWWYv .btn-white-outline.focus,
.cid-uac2mEWWYv .btn-white-outline.active,
.cid-uac2mEWWYv .btn-black-outline:hover,
.cid-uac2mEWWYv .btn-black-outline:focus,
.cid-uac2mEWWYv .btn-black-outline.focus,
.cid-uac2mEWWYv .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uac2mEWWYv .display-5 {
    line-height: 1;
  }
  .cid-uac2mEWWYv .btn {
    font-size: 1.5rem !important;
  }
  .cid-uac2mEWWYv .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u3C1xnfhqw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-4-1500x1695.jpg");
}
.cid-u3C1xnfhqw .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u3C1xnfhqw h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u3C1xnfhqw p {
  color: #767676;
  text-align: left;
}
.cid-u3C1xnfhqw .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u3C1xnfhqw .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u3C1xnfhqw .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u3C1xnfhqw .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u3C1xnfhqw .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u3C1xnfhqw .notched-box:before,
.cid-u3C1xnfhqw .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u3C1xnfhqw .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u3C1xnfhqw .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u3C1xnfhqw .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u3C1xnfhqw .border:before,
.cid-u3C1xnfhqw .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u3C1xnfhqw .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u3C1xnfhqw .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u3C1xnfhqw .mbr-author-name {
  padding-left: 40px;
}
.cid-u3C1xnfhqw P {
  color: #ffffff;
}
.cid-u3C1xnfhqw .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u3C1ydWzlj {
  padding-top: 0px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-4-1500x1695.jpg");
}
.cid-u3C1ydWzlj .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u3C1ydWzlj h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u3C1ydWzlj p {
  color: #767676;
  text-align: left;
}
.cid-u3C1ydWzlj .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u3C1ydWzlj .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u3C1ydWzlj .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u3C1ydWzlj .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u3C1ydWzlj .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u3C1ydWzlj .notched-box:before,
.cid-u3C1ydWzlj .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u3C1ydWzlj .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u3C1ydWzlj .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u3C1ydWzlj .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u3C1ydWzlj .border:before,
.cid-u3C1ydWzlj .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u3C1ydWzlj .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u3C1ydWzlj .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u3C1ydWzlj .mbr-author-name {
  padding-left: 40px;
}
.cid-u3C1ydWzlj P {
  color: #ffffff;
}
.cid-u3C1ydWzlj .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-ueanbbcBy6 {
  background: #ffffff;
}
.cid-ueanbbcBy6 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ueanbbcBy6 figcaption {
  position: relative;
}
.cid-ueanbbcBy6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ueanbbcBy6 .image-block {
    width: 100% !important;
  }
}
.cid-u3qNDGXKi4 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-u3qNDGXKi4 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qNDGXKi4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u3qNDGXKi4 span {
  visibility: hidden;
}
.cid-u3qNDGXKi4 .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-u3qNDGXKi4 span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-u3C9dEQxSe {
  background: #ffffff;
}
.cid-u3C9dEQxSe .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u3C9dEQxSe figcaption {
  position: relative;
}
.cid-u3C9dEQxSe figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3C9dEQxSe .image-block {
    width: 100% !important;
  }
}
.cid-u7znlaoAgQ {
  background: #ffffff;
  padding-top: 90px;
  padding-bottom: 45px;
}
.cid-u7znlaoAgQ .image-block {
  margin: auto;
}
.cid-u7znlaoAgQ figcaption {
  position: relative;
}
.cid-u7znlaoAgQ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u7znlaoAgQ .image-block {
    width: 100% !important;
  }
}
.cid-u3C9ieERZx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u3C9ieERZx .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u3C9ieERZx h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u3C9ieERZx .space_down_50 {
  margin-bottom: 50px;
}
.cid-u3C9ieERZx .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u7zpkIQZoZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-u7zpkIQZoZ .images-container.container-fluid {
  padding: 0;
}
.cid-u7zpkIQZoZ .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-u7zpkIQZoZ .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-u7zpkIQZoZ .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-u7zpkIQZoZ .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-u7zpkIQZoZ .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-u7zpkIQZoZ .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-u7zpkIQZoZ .img-item {
    width: 100% !important;
  }
  .cid-u7zpkIQZoZ .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-u3C9lMzdOp {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-u3C9lMzdOp .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-u3C9lMzdOp .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-u3C9lMzdOp .mbr-figure img {
    width: 100% !important;
  }
}
.cid-u7zoeOB3eH {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-u7zoeOB3eH .images-container.container-fluid {
  padding: 0;
}
.cid-u7zoeOB3eH .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-u7zoeOB3eH .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-u7zoeOB3eH .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-u7zoeOB3eH .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-u7zoeOB3eH .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-u7zoeOB3eH .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-u7zoeOB3eH .img-item {
    width: 100% !important;
  }
  .cid-u7zoeOB3eH .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-u3C9nbghm7 {
  background: #ffffff;
}
.cid-u3C9nbghm7 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u3C9nbghm7 figcaption {
  position: relative;
}
.cid-u3C9nbghm7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3C9nbghm7 .image-block {
    width: 100% !important;
  }
}
.cid-u3C9whCeFe {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u3C9whCeFe .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #000;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u3C9whCeFe h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u3C9whCeFe p {
  color: #767676;
  text-align: left;
}
.cid-u3C9whCeFe .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u3C9whCeFe .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u3C9whCeFe .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u3C9whCeFe .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u3C9whCeFe .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u3C9whCeFe .notched-box:before,
.cid-u3C9whCeFe .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u3C9whCeFe .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u3C9whCeFe .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u3C9whCeFe .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u3C9whCeFe .border:before,
.cid-u3C9whCeFe .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u3C9whCeFe .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u3C9whCeFe .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u3C9whCeFe .mbr-author-name {
  padding-left: 40px;
}
.cid-u3C9whCeFe P {
  color: #1d1d1b;
}
.cid-u3C9whCeFe .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u7zWf4VGAt {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-u7zWf4VGAt .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u7zWf4VGAt h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u7zWf4VGAt p {
  color: #767676;
  text-align: left;
}
.cid-u7zWf4VGAt .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u7zWf4VGAt .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u7zWf4VGAt .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u7zWf4VGAt .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u7zWf4VGAt .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u7zWf4VGAt .notched-box:before,
.cid-u7zWf4VGAt .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-u7zWf4VGAt .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u7zWf4VGAt .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u7zWf4VGAt .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u7zWf4VGAt .border:before,
.cid-u7zWf4VGAt .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-u7zWf4VGAt .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u7zWf4VGAt .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u7zWf4VGAt .mbr-author-name {
  padding-left: 40px;
}
.cid-u7zWf4VGAt P {
  color: #000000;
  line-height: 1.3;
}
.cid-u7zWf4VGAt .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u3qXe8NpXp {
  background: #ffffff;
}
.cid-u3qXe8NpXp .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u3qXe8NpXp figcaption {
  position: relative;
}
.cid-u3qXe8NpXp figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3qXe8NpXp .image-block {
    width: 100% !important;
  }
}
.cid-u3qJarP6HK {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u3qJarP6HK .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-u3qJarP6HK h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #f9ceb2;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u3qJarP6HK .space_down_50 {
  margin-bottom: 50px;
}
.cid-u3qJarP6HK .testimonial-text {
  color: #000000;
}
.cid-u1DOO9kyEW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-u1DOO9kyEW .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u1DOO9kyEW h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u1DOO9kyEW .space_down_50 {
  margin-bottom: 50px;
}
.cid-u1DOO9kyEW .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-u3BXc7MZ23 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u3BXc7MZ23 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u3BXc7MZ23 p {
  color: #767676;
  text-align: left;
}
.cid-u3BXc7MZ23 .card-box {
  padding-top: 2rem;
}
.cid-u3BXc7MZ23 .card-wrapper {
  height: 100%;
}
.cid-u3qJnWc02L {
  padding-top: 75px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-u3qJnWc02L H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qJnWc02L .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u3qJGqSG8w {
  background: #ffffff;
}
.cid-u3qJGqSG8w .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u3qJGqSG8w figcaption {
  position: relative;
}
.cid-u3qJGqSG8w figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3qJGqSG8w .image-block {
    width: 100% !important;
  }
}
.cid-u3C1m1NmRK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u3C1m1NmRK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u3C1m1NmRK p {
  color: #767676;
  text-align: left;
}
.cid-u3C1m1NmRK .card-box {
  padding-top: 2rem;
}
.cid-u3C1m1NmRK .card-wrapper {
  height: 100%;
}
.cid-u3BYnJorF6 {
  background: #ffffff;
}
.cid-u3BYnJorF6 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u3BYnJorF6 figcaption {
  position: relative;
}
.cid-u3BYnJorF6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3BYnJorF6 .image-block {
    width: 100% !important;
  }
}
.cid-u6V5zp9di6 {
  background: #ffffff;
}
.cid-u6V5zp9di6 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u6V5zp9di6 figcaption {
  position: relative;
}
.cid-u6V5zp9di6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u6V5zp9di6 .image-block {
    width: 100% !important;
  }
}
.cid-u3BUzwpJFK {
  background: #ffffff;
}
.cid-u3BUzwpJFK .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u3BUzwpJFK figcaption {
  position: relative;
}
.cid-u3BUzwpJFK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3BUzwpJFK .image-block {
    width: 100% !important;
  }
}
.cid-u3qNw6XZmH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-u3qNw6XZmH H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qNw6XZmH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u6V98sE6qU {
  background: #ffffff;
}
.cid-u6V98sE6qU .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u6V98sE6qU figcaption {
  position: relative;
}
.cid-u6V98sE6qU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u6V98sE6qU .image-block {
    width: 100% !important;
  }
}
.cid-u3BUAeGWz9 {
  background: #ffffff;
}
.cid-u3BUAeGWz9 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u3BUAeGWz9 figcaption {
  position: relative;
}
.cid-u3BUAeGWz9 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3BUAeGWz9 .image-block {
    width: 100% !important;
  }
}
.cid-u3qNvooHtv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-u3qNvooHtv H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qNvooHtv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u3BV99ALPf {
  background: #ffffff;
}
.cid-u3BV99ALPf .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u3BV99ALPf figcaption {
  position: relative;
}
.cid-u3BV99ALPf figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u3BV99ALPf .image-block {
    width: 100% !important;
  }
}
.cid-u3qKwXIhw4 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u3qKwXIhw4 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-u3qKwXIhw4 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u3qKwXIhw4 .space_down_50 {
  margin-bottom: 50px;
}
.cid-u3qKwXIhw4 .testimonial-text {
  color: #ffffff;
}
.cid-u3qKPPiGvd {
  padding-top: 15px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-u3qKPPiGvd .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u3qKPPiGvd h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u3qKPPiGvd .space_down_50 {
  margin-bottom: 50px;
}
.cid-u3qKPPiGvd .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-u3C0CRU1Ea {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u3C0CRU1Ea .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-u3C0CRU1Ea .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-u3C0CRU1Ea .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-u3C0CRU1Ea a svg polygon {
  fill: white !important;
}
.cid-u3C0CRU1Ea a:hover {
  Color: #F9CEB2!important;
}
.cid-u3C0CRU1Ea a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u3C0CRU1Ea .btn-white-outline:hover,
.cid-u3C0CRU1Ea .btn-white-outline:focus,
.cid-u3C0CRU1Ea .btn-white-outline.focus,
.cid-u3C0CRU1Ea .btn-white-outline.active,
.cid-u3C0CRU1Ea .btn-black-outline:hover,
.cid-u3C0CRU1Ea .btn-black-outline:focus,
.cid-u3C0CRU1Ea .btn-black-outline.focus,
.cid-u3C0CRU1Ea .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-u3C0CRU1Ea .display-5 {
    line-height: 1;
  }
  .cid-u3C0CRU1Ea .btn {
    font-size: 1.5rem !important;
  }
  .cid-u3C0CRU1Ea .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-uac075b2Ah {
  background: #000000;
  padding-top: 15px;
  padding-bottom: 90px;
}
.cid-uac075b2Ah .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-uac075b2Ah .video-block {
    width: 100% !important;
  }
}
.cid-uac075b2Ah .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uac13cDxY0 {
  background: #000000;
  padding-top: 15px;
  padding-bottom: 90px;
}
.cid-uac13cDxY0 .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-uac13cDxY0 .video-block {
    width: 100% !important;
  }
}
.cid-uac13cDxY0 .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ui8I4auOhg {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #019ee0;
}
.cid-ui8I4auOhg .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui8I4auOhg h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui8I4auOhg .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui8I4auOhg .testimonial-text {
  text-align: center;
}
.cid-ui8IuhH6ZB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #019ee0;
}
.cid-ui8IuhH6ZB .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui8IuhH6ZB h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui8IuhH6ZB .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui8IuhH6ZB .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ui8HQhiazy {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #019ee0;
}
.cid-ui8HQhiazy .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui8HQhiazy .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-ui8HQhiazy .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-ui8HQhiazy a svg polygon {
  fill: white !important;
}
.cid-ui8HQhiazy a:hover {
  Color: #F9CEB2!important;
}
.cid-ui8HQhiazy a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ui8HQhiazy .btn-white-outline:hover,
.cid-ui8HQhiazy .btn-white-outline:focus,
.cid-ui8HQhiazy .btn-white-outline.focus,
.cid-ui8HQhiazy .btn-white-outline.active,
.cid-ui8HQhiazy .btn-black-outline:hover,
.cid-ui8HQhiazy .btn-black-outline:focus,
.cid-ui8HQhiazy .btn-black-outline.focus,
.cid-ui8HQhiazy .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ui8HQhiazy .display-5 {
    line-height: 1;
  }
  .cid-ui8HQhiazy .btn {
    font-size: 1.5rem !important;
  }
  .cid-ui8HQhiazy .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u6VjZv7HrP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #019ee0;
}
.cid-u6VjZv7HrP h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6VjZv7HrP p {
  color: #767676;
  text-align: left;
}
.cid-u6VjZv7HrP .card-box {
  padding-top: 2rem;
}
.cid-u6VjZv7HrP .card-wrapper {
  height: 100%;
}
.cid-u3qKBoiPsM {
  padding-top: 15px;
  padding-bottom: 105px;
  background-color: #019ee0;
}
.cid-u3qKBoiPsM .content-slider {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-u3qKBoiPsM .modal-body .close {
  background: #1b1b1b;
}
.cid-u3qKBoiPsM .modal-body .close span {
  font-style: normal;
}
.cid-u3qKBoiPsM .carousel-inner > .active,
.cid-u3qKBoiPsM .carousel-inner > .next,
.cid-u3qKBoiPsM .carousel-inner > .prev {
  display: -webkit-flex;
}
.cid-u3qKBoiPsM .carousel-control .icon-next,
.cid-u3qKBoiPsM .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-u3qKBoiPsM .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u3qKBoiPsM .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-u3qKBoiPsM .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-u3qKBoiPsM .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-u3qKBoiPsM .boxed-slider > div {
  position: relative;
}
.cid-u3qKBoiPsM .container img {
  width: 100%;
}
.cid-u3qKBoiPsM .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-u3qKBoiPsM .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-u3qKBoiPsM .mbr-table-cell {
  padding: 0;
}
.cid-u3qKBoiPsM .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-u3qKBoiPsM .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-u3qKBoiPsM .mbr-overlay {
  z-index: 1;
}
.cid-u3qKBoiPsM .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-u3qKBoiPsM .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-u3qKBoiPsM .carousel-item.active.right,
.cid-u3qKBoiPsM .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-u3qKBoiPsM .carousel-item.active.left,
.cid-u3qKBoiPsM .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-u3qKBoiPsM .carousel-item.active,
.cid-u3qKBoiPsM .carousel-item.next.left,
.cid-u3qKBoiPsM .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-u3qKBoiPsM .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 11;
}
.cid-u3qKBoiPsM .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-u3qKBoiPsM .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-u3qKBoiPsM .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-u3qKBoiPsM .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-u3qKBoiPsM .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-u3qKBoiPsM .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-u3qKBoiPsM .mbr-slider .carousel-indicators li.active,
.cid-u3qKBoiPsM .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-u3qKBoiPsM .mbr-slider .carousel-indicators li::after,
.cid-u3qKBoiPsM .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-u3qKBoiPsM .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-u3qKBoiPsM .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-u3qKBoiPsM .mbr-slider > .container img {
  width: 100%;
}
.cid-u3qKBoiPsM .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-u3qKBoiPsM .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-u3qKBoiPsM .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-u3qKBoiPsM .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-u3qKBoiPsM .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-u3qKBoiPsM .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-u3qKBoiPsM .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-u3qKBoiPsM .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-u3qKBoiPsM .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-u3qKBoiPsM .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-u3qKBoiPsM .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-u3qKBoiPsM .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-u3qKBoiPsM .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-u3qKBoiPsM .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-u3qKBoiPsM .carousel-inner {
  height: 100%;
}
.cid-u3qKBoiPsM .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-u3qKBoiPsM .image_wrapper {
  height: 900px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-u3qKBoiPsM .image_wrapper img {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}
.cid-u3qKBoiPsM .carousel-item .container-slide {
  text-align: center;
}
.cid-u3qKBoiPsM .content-slider-wrap {
  width: 50%;
}
.cid-u6V32C84aP {
  background: #ffffff;
}
.cid-u6V32C84aP .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u6V32C84aP figcaption {
  position: relative;
}
.cid-u6V32C84aP figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u6V32C84aP .image-block {
    width: 100% !important;
  }
}
.cid-u6V3RcKBEQ {
  background: #ffffff;
}
.cid-u6V3RcKBEQ .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u6V3RcKBEQ figcaption {
  position: relative;
}
.cid-u6V3RcKBEQ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u6V3RcKBEQ .image-block {
    width: 100% !important;
  }
}
.cid-uac6PNmeDt {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uac6PNmeDt .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uac6PNmeDt h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uac6PNmeDt .space_down_50 {
  margin-bottom: 50px;
}
.cid-uac6RrAtYP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uac6RrAtYP .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uac6RrAtYP h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uac6RrAtYP .space_down_50 {
  margin-bottom: 50px;
}
.cid-uac6RrAtYP .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-uac9I8jqPs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uac9I8jqPs .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-uac9I8jqPs .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-uac9I8jqPs .mbr-author-desc {
  color: #232;
}
.cid-uac9I8jqPs .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-uac9I8jqPs .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uac9I8jqPs .mbr-figure,
  .cid-uac9I8jqPs img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-uac9I8jqPs h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uac9I8jqPs .text_block {
  margin-top: 0px;
}
.cid-uac9I8jqPs .h2_block {
  margin-bottom: 20px;
}
.cid-uac9I8jqPs .mbr-figure {
  align-self: flex-start;
}
.cid-uac9I8jqPs .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uac9I8jqPs .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uac9I8jqPs a:hover {
  Color: #a76645 !important;
}
.cid-uac9I8jqPs a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uac9I8jqPs .btn-black-outline:hover,
.cid-uac9I8jqPs .btn-black-outline:focus,
.cid-uac9I8jqPs .btn-black-outline.focus,
.cid-uac9I8jqPs .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uac9I8jqPs .display-5 {
    line-height: 1;
  }
  .cid-uac9I8jqPs .btn {
    font-size: 1.5rem !important;
  }
  .cid-uac9I8jqPs .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uac9I8jqPs .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-uac9I8jqPs .content {
  padding-left: 3px;
}
.cid-u6V31GGHb9 {
  background: #ffffff;
}
.cid-u6V31GGHb9 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u6V31GGHb9 figcaption {
  position: relative;
}
.cid-u6V31GGHb9 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u6V31GGHb9 .image-block {
    width: 100% !important;
  }
}
.cid-u3qNxtVJr4 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-u3qNxtVJr4 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qNxtVJr4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u1DbdZo6Q7 {
  background: #ffffff;
}
.cid-u1DbdZo6Q7 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u1DbdZo6Q7 figcaption {
  position: relative;
}
.cid-u1DbdZo6Q7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u1DbdZo6Q7 .image-block {
    width: 100% !important;
  }
}
.cid-uaS0YfEu6i {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-uaS0YfEu6i .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uaS0YfEu6i h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uaS0YfEu6i .space_down_50 {
  margin-bottom: 50px;
}
.cid-u6Vq9OIrjo {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f9ceb2;
}
.cid-u6Vq9OIrjo .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u6Vq9OIrjo h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u6Vq9OIrjo .space_down_50 {
  margin-bottom: 50px;
}
.cid-u6Vq9OIrjo .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-uaS0ULwOrX {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f9ceb2;
}
.cid-uaS0ULwOrX .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uaS0ULwOrX .display-5 {
  font-size: 2rem;
  color: black;
}
.cid-uaS0ULwOrX .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-uaS0ULwOrX a svg polygon {
  fill: black !important;
}
.cid-uaS0ULwOrX a:hover {
  Color: #a76645!important;
}
.cid-uaS0ULwOrX a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uaS0ULwOrX .btn-white-outline:hover,
.cid-uaS0ULwOrX .btn-white-outline:focus,
.cid-uaS0ULwOrX .btn-white-outline.focus,
.cid-uaS0ULwOrX .btn-white-outline.active,
.cid-uaS0ULwOrX .btn-black-outline:hover,
.cid-uaS0ULwOrX .btn-black-outline:focus,
.cid-uaS0ULwOrX .btn-black-outline.focus,
.cid-uaS0ULwOrX .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uaS0ULwOrX .display-5 {
    line-height: 1;
  }
  .cid-uaS0ULwOrX .btn {
    font-size: 1.5rem !important;
  }
  .cid-uaS0ULwOrX .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u2WvKavukR {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u2WvKavukR .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #000;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u2WvKavukR h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u2WvKavukR p {
  color: #767676;
  text-align: left;
}
.cid-u2WvKavukR .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u2WvKavukR .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u2WvKavukR .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u2WvKavukR .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2WvKavukR .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2WvKavukR .notched-box:before,
.cid-u2WvKavukR .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u2WvKavukR .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u2WvKavukR .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u2WvKavukR .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u2WvKavukR .border:before,
.cid-u2WvKavukR .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u2WvKavukR .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u2WvKavukR .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u2WvKavukR .mbr-author-name {
  padding-left: 40px;
}
.cid-u2WvKavukR P {
  color: #1d1d1b;
}
.cid-u2WvKavukR .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u2X1pojklb {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-u2X1pojklb .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #000;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u2X1pojklb h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u2X1pojklb p {
  color: #767676;
  text-align: left;
}
.cid-u2X1pojklb .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u2X1pojklb .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u2X1pojklb .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u2X1pojklb .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2X1pojklb .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2X1pojklb .notched-box:before,
.cid-u2X1pojklb .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u2X1pojklb .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u2X1pojklb .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u2X1pojklb .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u2X1pojklb .border:before,
.cid-u2X1pojklb .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u2X1pojklb .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u2X1pojklb .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u2X1pojklb .mbr-author-name {
  padding-left: 40px;
}
.cid-u2X1pojklb P {
  color: #1d1d1b;
}
.cid-u2X1pojklb .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u6VnaiNPGw {
  background: #ffffff;
}
.cid-u6VnaiNPGw .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u6VnaiNPGw figcaption {
  position: relative;
}
.cid-u6VnaiNPGw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u6VnaiNPGw .image-block {
    width: 100% !important;
  }
}
.cid-u3qLGe2oIS {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u3qLGe2oIS .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-u3qLGe2oIS h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u3qLGe2oIS .space_down_50 {
  margin-bottom: 50px;
}
.cid-u3qLHiAlgb {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u3qLHiAlgb .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u3qLHiAlgb h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u3qLHiAlgb .space_down_50 {
  margin-bottom: 50px;
}
.cid-u3qLHiAlgb .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u3qQT3pWwt {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-u3qQT3pWwt .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-u3qQT3pWwt .video-block {
    width: 100% !important;
  }
}
.cid-u3qQT3pWwt .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u3C53jCXGC {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-u3C53jCXGC .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-u3C53jCXGC .video-block {
    width: 100% !important;
  }
}
.cid-u3C53jCXGC .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-udw15lAhKl {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-udw15lAhKl .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-udw15lAhKl .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-udw15lAhKl .mbr-author-desc {
  color: #1d1d1b;
}
.cid-udw15lAhKl .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-udw15lAhKl .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-udw15lAhKl .mbr-figure,
  .cid-udw15lAhKl img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-udw15lAhKl h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-udw15lAhKl .text_block {
  margin-top: 0px;
}
.cid-udw15lAhKl .h2_block {
  margin-bottom: 20px;
}
.cid-udw15lAhKl .mbr-figure {
  align-self: flex-start;
}
.cid-udw15lAhKl .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-udw15lAhKl .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-udw15lAhKl a:hover {
  Color: #a76645 !important;
}
.cid-udw15lAhKl a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-udw15lAhKl .btn-black-outline:hover,
.cid-udw15lAhKl .btn-black-outline:focus,
.cid-udw15lAhKl .btn-black-outline.focus,
.cid-udw15lAhKl .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-udw15lAhKl .display-5 {
    line-height: 1;
  }
  .cid-udw15lAhKl .btn {
    font-size: 1.5rem !important;
  }
  .cid-udw15lAhKl .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-udw15lAhKl .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-udw15lAhKl .content {
  padding-left: 3px;
}
.cid-u3C5bn38Ri {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-u3C5bn38Ri .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #000;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u3C5bn38Ri h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u3C5bn38Ri p {
  color: #767676;
  text-align: left;
}
.cid-u3C5bn38Ri .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u3C5bn38Ri .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u3C5bn38Ri .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u3C5bn38Ri .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u3C5bn38Ri .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u3C5bn38Ri .notched-box:before,
.cid-u3C5bn38Ri .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u3C5bn38Ri .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u3C5bn38Ri .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u3C5bn38Ri .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u3C5bn38Ri .border:before,
.cid-u3C5bn38Ri .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u3C5bn38Ri .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u3C5bn38Ri .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u3C5bn38Ri .mbr-author-name {
  padding-left: 40px;
}
.cid-u3C5bn38Ri P {
  color: #000000;
}
.cid-u3C5bn38Ri .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u3qNEb5AA0 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/asche-9-web-2000x1402.jpg");
}
.cid-u3qNEb5AA0 H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-u3qNEb5AA0 .mbr-section-subtitle {
  color: #000000;
}
.cid-u3C5aCrmyD {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-u3C5aCrmyD .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #000;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u3C5aCrmyD h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u3C5aCrmyD p {
  color: #767676;
  text-align: left;
}
.cid-u3C5aCrmyD .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u3C5aCrmyD .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u3C5aCrmyD .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u3C5aCrmyD .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u3C5aCrmyD .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u3C5aCrmyD .notched-box:before,
.cid-u3C5aCrmyD .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u3C5aCrmyD .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u3C5aCrmyD .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u3C5aCrmyD .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u3C5aCrmyD .border:before,
.cid-u3C5aCrmyD .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u3C5aCrmyD .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u3C5aCrmyD .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u3C5aCrmyD .mbr-author-name {
  padding-left: 40px;
}
.cid-u3C5aCrmyD P {
  color: #1d1d1b;
}
.cid-u3C5aCrmyD .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u6VbsIeh9M {
  background: #ffffff;
}
.cid-u6VbsIeh9M .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u6VbsIeh9M figcaption {
  position: relative;
}
.cid-u6VbsIeh9M figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u6VbsIeh9M .image-block {
    width: 100% !important;
  }
}
.cid-u3qNtlAvy1 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-u3qNtlAvy1 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qNtlAvy1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u6Ved6hd3r {
  background: #ffffff;
  padding-top: 90px;
  padding-bottom: 0px;
}
.cid-u6Ved6hd3r .image-block {
  margin: auto;
}
.cid-u6Ved6hd3r figcaption {
  position: relative;
}
.cid-u6Ved6hd3r figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u6Ved6hd3r .image-block {
    width: 100% !important;
  }
}
.cid-u3qN3L9E8r {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u3qN3L9E8r .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-u3qN3L9E8r h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u3qN3L9E8r .space_down_50 {
  margin-bottom: 50px;
}
.cid-u7A7sMSeEi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u7A7sMSeEi .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u7A7sMSeEi h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u7A7sMSeEi .space_down_50 {
  margin-bottom: 50px;
}
.cid-u7A7sMSeEi .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u7A7sMSeEi .audio-player {
  width: 15rem;
  height: 15rem;
}
.cid-u7A7sMSeEi .icon-container {
  width: 100%;
  height: 100%;
  background-color: #DE5E97;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u7A7sMSeEi .audio-icon {
  width: 90%;
  height: 90%;
}
.cid-udwJaDlaXr {
  background: #ffffff;
}
.cid-udwJaDlaXr .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-udwJaDlaXr figcaption {
  position: relative;
}
.cid-udwJaDlaXr figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-udwJaDlaXr .image-block {
    width: 100% !important;
  }
}
.cid-u3qNuHGAsN {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u3qNuHGAsN H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qNuHGAsN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u3qRyVtFk6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-u3qRyVtFk6 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u3qRyVtFk6 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u3qRyVtFk6 p {
  color: #767676;
  text-align: left;
}
.cid-u3qRyVtFk6 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u3qRyVtFk6 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u3qRyVtFk6 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u3qRyVtFk6 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u3qRyVtFk6 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u3qRyVtFk6 .notched-box:before,
.cid-u3qRyVtFk6 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u3qRyVtFk6 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u3qRyVtFk6 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u3qRyVtFk6 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u3qRyVtFk6 .border:before,
.cid-u3qRyVtFk6 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u3qRyVtFk6 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u3qRyVtFk6 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u3qRyVtFk6 .mbr-author-name {
  padding-left: 40px;
}
.cid-u3qRyVtFk6 P {
  color: #ffffff;
}
.cid-u3qRyVtFk6 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u3qNy8wCF7 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-u3qNy8wCF7 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qNy8wCF7 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u3qNwNn3PX {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-u3qNwNn3PX H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qNwNn3PX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u6VwGrl36b {
  background: #ffffff;
}
.cid-u6VwGrl36b .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u6VwGrl36b figcaption {
  position: relative;
}
.cid-u6VwGrl36b figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u6VwGrl36b .image-block {
    width: 100% !important;
  }
}
.cid-u3qT76YxLF {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u3qT76YxLF .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-u3qT76YxLF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u3qT76YxLF .space_down_50 {
  margin-bottom: 50px;
}
.cid-u1DbdYQ8Vn {
  background: #000000;
  padding-top: 60px;
  padding-bottom: 75px;
}
.cid-u1DbdYQ8Vn .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-u1DbdYQ8Vn .video-block {
    width: 100% !important;
  }
}
.cid-u1DbdYQ8Vn .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u3qTdlB3WQ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u3qTdlB3WQ .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-u3qTdlB3WQ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u3qTdlB3WQ .space_down_50 {
  margin-bottom: 50px;
}
.cid-u3qTeasxzo {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-u3qTeasxzo .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u3qTeasxzo h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u3qTeasxzo .space_down_50 {
  margin-bottom: 50px;
}
.cid-u3qTeasxzo .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-uccHf3Jfkw {
  background: #ffffff;
}
.cid-uccHf3Jfkw .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uccHf3Jfkw figcaption {
  position: relative;
}
.cid-uccHf3Jfkw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uccHf3Jfkw .image-block {
    width: 300% !important;
  }
}
.cid-uccHAX7qCs {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f9ceb2;
}
.cid-uccHAX7qCs .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-uccHAX7qCs .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-uccHAX7qCs .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uccHAX7qCs .mbr-figure,
  .cid-uccHAX7qCs img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uccHAX7qCs .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uccHAX7qCs .mbr-author-desc {
  color: #000000;
}
.cid-uccHAX7qCs h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uccHAX7qCs .text_block {
  margin-top: 0px;
}
.cid-uccHAX7qCs .h2_block {
  margin-bottom: 20px;
}
.cid-uccHAX7qCs .mbr-figure {
  align-self: flex-start;
}
.cid-uccHAX7qCs .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-uccHAX7qCs .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uccHAX7qCs .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-uccHAX7qCs a:hover {
  Color: #a76645 !important;
}
.cid-uccHAX7qCs a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccHAX7qCs .btn-black-outline:hover,
.cid-uccHAX7qCs .btn-black-outline:focus,
.cid-uccHAX7qCs .btn-black-outline.focus,
.cid-uccHAX7qCs .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uccHAX7qCs .display-5 {
    line-height: 1;
  }
  .cid-uccHAX7qCs .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccHAX7qCs .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uccHAX7qCs .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-uccHhpWqTx {
  background: #ffffff;
}
.cid-uccHhpWqTx .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-uccHhpWqTx figcaption {
  position: relative;
}
.cid-uccHhpWqTx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uccHhpWqTx .image-block {
    width: 300% !important;
  }
}
.cid-u3qU0nqqwi {
  padding-top: 75px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-u3qU0nqqwi H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qU0nqqwi .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u6VhRjp0Io {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u6VhRjp0Io h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6VhRjp0Io p {
  color: #767676;
  text-align: left;
}
.cid-u6VhRjp0Io .card-box {
  padding-top: 2rem;
}
.cid-u6VhRjp0Io .card-wrapper {
  height: 100%;
}
.cid-u6VhSPUqVM {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u6VhSPUqVM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6VhSPUqVM p {
  color: #767676;
  text-align: left;
}
.cid-u6VhSPUqVM .card-box {
  padding-top: 2rem;
}
.cid-u6VhSPUqVM .card-wrapper {
  height: 100%;
}
.cid-u3qVXXF5sv {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u3qVXXF5sv .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-u3qVXXF5sv h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u3qVXXF5sv .space_down_50 {
  margin-bottom: 50px;
}
.cid-u3qVZ2P95T {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u3qVZ2P95T .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-u3qVZ2P95T h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-u3qVZ2P95T .space_down_50 {
  margin-bottom: 50px;
}
.cid-u3qVZ2P95T .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-u1DbdYBwXO {
  background: #000000;
  padding-top: 60px;
  padding-bottom: 90px;
}
.cid-u1DbdYBwXO .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-u1DbdYBwXO .video-block {
    width: 100% !important;
  }
}
.cid-u1DbdYBwXO .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u6V9ocpjlb {
  background: #ffffff;
}
.cid-u6V9ocpjlb .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u6V9ocpjlb figcaption {
  position: relative;
}
.cid-u6V9ocpjlb figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u6V9ocpjlb .image-block {
    width: 100% !important;
  }
}
.cid-u3qVAmbzAo {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-u3qVAmbzAo H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qVAmbzAo .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u4WFEco1rI {
  background: #ffffff;
}
.cid-u4WFEco1rI .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u4WFEco1rI figcaption {
  position: relative;
}
.cid-u4WFEco1rI figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4WFEco1rI .image-block {
    width: 100% !important;
  }
}
.cid-uaS2UKEXBX {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uaS2UKEXBX .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-uaS2UKEXBX h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uaS2UKEXBX .space_down_30 {
  margin-bottom: 30px;
}
.cid-uaS2UKEXBX .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-u6VujHCGcd {
  background: #ffffff;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-u6VujHCGcd .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-u6VujHCGcd .video-block {
    width: 100% !important;
  }
}
.cid-u6VujHCGcd .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-u6Vx9cdkAc {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u6Vx9cdkAc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6Vx9cdkAc p {
  color: #767676;
  text-align: left;
}
.cid-u6Vx9cdkAc .card-box {
  padding-top: 2rem;
}
.cid-u6Vx9cdkAc .card-wrapper {
  height: 100%;
}
.cid-u4WF3ZYQ4b {
  background: #ffffff;
}
.cid-u4WF3ZYQ4b .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u4WF3ZYQ4b figcaption {
  position: relative;
}
.cid-u4WF3ZYQ4b figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4WF3ZYQ4b .image-block {
    width: 100% !important;
  }
}
.cid-u6VHkBKYsK {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-u6VHkBKYsK .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u6VHkBKYsK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6VHkBKYsK p {
  color: #767676;
  text-align: left;
}
.cid-u6VHkBKYsK .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u6VHkBKYsK .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u6VHkBKYsK .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u6VHkBKYsK .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u6VHkBKYsK .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u6VHkBKYsK .notched-box:before,
.cid-u6VHkBKYsK .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-u6VHkBKYsK .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u6VHkBKYsK .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u6VHkBKYsK .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u6VHkBKYsK .border:before,
.cid-u6VHkBKYsK .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-u6VHkBKYsK .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u6VHkBKYsK .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u6VHkBKYsK .mbr-author-name {
  padding-left: 40px;
}
.cid-u6VHkBKYsK P {
  color: #000000;
}
.cid-u6VHkBKYsK .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u6VHlyQ88z {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-u6VHlyQ88z .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u6VHlyQ88z h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u6VHlyQ88z p {
  color: #767676;
  text-align: left;
}
.cid-u6VHlyQ88z .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u6VHlyQ88z .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u6VHlyQ88z .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u6VHlyQ88z .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u6VHlyQ88z .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u6VHlyQ88z .notched-box:before,
.cid-u6VHlyQ88z .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-u6VHlyQ88z .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u6VHlyQ88z .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u6VHlyQ88z .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u6VHlyQ88z .border:before,
.cid-u6VHlyQ88z .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-u6VHlyQ88z .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u6VHlyQ88z .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u6VHlyQ88z .mbr-author-name {
  padding-left: 40px;
}
.cid-u6VHlyQ88z P {
  color: #000000;
}
.cid-u6VHlyQ88z .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u3qVzACC3b {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/sucht-nach-uns1-2000x1333.png");
}
.cid-u3qVzACC3b H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-u3qVzACC3b .mbr-section-subtitle {
  color: #1d1d1b;
}
.cid-u3qTwJMIKS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-u3qTwJMIKS .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #000;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u3qTwJMIKS h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u3qTwJMIKS p {
  color: #767676;
  text-align: left;
}
.cid-u3qTwJMIKS .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u3qTwJMIKS .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u3qTwJMIKS .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u3qTwJMIKS .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u3qTwJMIKS .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u3qTwJMIKS .notched-box:before,
.cid-u3qTwJMIKS .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u3qTwJMIKS .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u3qTwJMIKS .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u3qTwJMIKS .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u3qTwJMIKS .border:before,
.cid-u3qTwJMIKS .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u3qTwJMIKS .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u3qTwJMIKS .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u3qTwJMIKS .mbr-author-name {
  padding-left: 40px;
}
.cid-u3qTwJMIKS P {
  color: #1d1d1b;
}
.cid-u3qTwJMIKS .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u4WFSHWMev {
  background: #ffffff;
}
.cid-u4WFSHWMev .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u4WFSHWMev figcaption {
  position: relative;
}
.cid-u4WFSHWMev figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u4WFSHWMev .image-block {
    width: 100% !important;
  }
}
.cid-u3qVBkPmY0 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/sucht-nach-uns81-2000x1330.png");
}
.cid-u3qVBkPmY0 H2 {
  color: #1d1d1b;
  line-height: 1.2;
}
.cid-u3qVBkPmY0 .mbr-section-subtitle {
  color: #1d1d1b;
}
.cid-u2WUmtcAxX {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u2WUmtcAxX .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #000;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u2WUmtcAxX h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u2WUmtcAxX p {
  color: #767676;
  text-align: left;
}
.cid-u2WUmtcAxX .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u2WUmtcAxX .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u2WUmtcAxX .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u2WUmtcAxX .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2WUmtcAxX .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2WUmtcAxX .notched-box:before,
.cid-u2WUmtcAxX .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u2WUmtcAxX .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u2WUmtcAxX .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u2WUmtcAxX .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u2WUmtcAxX .border:before,
.cid-u2WUmtcAxX .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u2WUmtcAxX .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u2WUmtcAxX .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u2WUmtcAxX .mbr-author-name {
  padding-left: 40px;
}
.cid-u2WUmtcAxX P {
  color: #1d1d1b;
}
.cid-u2WUmtcAxX .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u2WWgb1hrT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u2WWgb1hrT .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #000;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u2WWgb1hrT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u2WWgb1hrT p {
  color: #767676;
  text-align: left;
}
.cid-u2WWgb1hrT .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u2WWgb1hrT .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u2WWgb1hrT .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u2WWgb1hrT .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2WWgb1hrT .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2WWgb1hrT .notched-box:before,
.cid-u2WWgb1hrT .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u2WWgb1hrT .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u2WWgb1hrT .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u2WWgb1hrT .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u2WWgb1hrT .border:before,
.cid-u2WWgb1hrT .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u2WWgb1hrT .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u2WWgb1hrT .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u2WWgb1hrT .mbr-author-name {
  padding-left: 40px;
}
.cid-u2WWgb1hrT P {
  color: #1d1d1b;
}
.cid-u2WWgb1hrT .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u2WYEhHrOh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-u2WYEhHrOh .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #000;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u2WYEhHrOh h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u2WYEhHrOh p {
  color: #767676;
  text-align: left;
}
.cid-u2WYEhHrOh .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u2WYEhHrOh .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u2WYEhHrOh .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u2WYEhHrOh .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2WYEhHrOh .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2WYEhHrOh .notched-box:before,
.cid-u2WYEhHrOh .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u2WYEhHrOh .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u2WYEhHrOh .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u2WYEhHrOh .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u2WYEhHrOh .border:before,
.cid-u2WYEhHrOh .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u2WYEhHrOh .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u2WYEhHrOh .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u2WYEhHrOh .mbr-author-name {
  padding-left: 40px;
}
.cid-u2WYEhHrOh P {
  color: #1d1d1b;
}
.cid-u2WYEhHrOh .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u2X02gfWlj {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-u2X02gfWlj .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #000;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u2X02gfWlj h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u2X02gfWlj p {
  color: #767676;
  text-align: left;
}
.cid-u2X02gfWlj .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u2X02gfWlj .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u2X02gfWlj .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u2X02gfWlj .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2X02gfWlj .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2X02gfWlj .notched-box:before,
.cid-u2X02gfWlj .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u2X02gfWlj .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u2X02gfWlj .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u2X02gfWlj .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u2X02gfWlj .border:before,
.cid-u2X02gfWlj .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u2X02gfWlj .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u2X02gfWlj .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u2X02gfWlj .mbr-author-name {
  padding-left: 40px;
}
.cid-u2X02gfWlj P {
  color: #1d1d1b;
}
.cid-u2X02gfWlj .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u7zQGgHh7g {
  background: #000000;
  padding-top: 90px;
  padding-bottom: 60px;
}
.cid-u7zQGgHh7g .image-block {
  margin: auto;
}
.cid-u7zQGgHh7g figcaption {
  position: relative;
}
.cid-u7zQGgHh7g figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u7zQGgHh7g .image-block {
    width: 100% !important;
  }
}
.cid-u3qUXctTgy {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u3qUXctTgy H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qUXctTgy .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2WvS9GDwc {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-u2WvS9GDwc .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u2WvS9GDwc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u2WvS9GDwc p {
  color: #767676;
  text-align: left;
}
.cid-u2WvS9GDwc .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u2WvS9GDwc .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u2WvS9GDwc .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u2WvS9GDwc .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2WvS9GDwc .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2WvS9GDwc .notched-box:before,
.cid-u2WvS9GDwc .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u2WvS9GDwc .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u2WvS9GDwc .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u2WvS9GDwc .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u2WvS9GDwc .border:before,
.cid-u2WvS9GDwc .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u2WvS9GDwc .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u2WvS9GDwc .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u2WvS9GDwc .mbr-author-name {
  padding-left: 40px;
}
.cid-u2WvS9GDwc P {
  color: #ffffff;
}
.cid-u2WvS9GDwc .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u2WAleKGU1 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-u2WAleKGU1 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u2WAleKGU1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u2WAleKGU1 p {
  color: #767676;
  text-align: left;
}
.cid-u2WAleKGU1 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u2WAleKGU1 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u2WAleKGU1 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u2WAleKGU1 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2WAleKGU1 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2WAleKGU1 .notched-box:before,
.cid-u2WAleKGU1 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u2WAleKGU1 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u2WAleKGU1 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u2WAleKGU1 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u2WAleKGU1 .border:before,
.cid-u2WAleKGU1 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u2WAleKGU1 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u2WAleKGU1 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u2WAleKGU1 .mbr-author-name {
  padding-left: 40px;
}
.cid-u2WAleKGU1 P {
  color: #ffffff;
}
.cid-u2WAleKGU1 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u3qUYE3UHa {
  padding-top: 75px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-u3qUYE3UHa H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qUYE3UHa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2WGh32j4S {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-u2WGh32j4S .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u2WGh32j4S h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u2WGh32j4S p {
  color: #767676;
  text-align: left;
}
.cid-u2WGh32j4S .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u2WGh32j4S .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u2WGh32j4S .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u2WGh32j4S .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2WGh32j4S .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2WGh32j4S .notched-box:before,
.cid-u2WGh32j4S .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u2WGh32j4S .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u2WGh32j4S .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u2WGh32j4S .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u2WGh32j4S .border:before,
.cid-u2WGh32j4S .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u2WGh32j4S .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u2WGh32j4S .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u2WGh32j4S .mbr-author-name {
  padding-left: 40px;
}
.cid-u2WGh32j4S P {
  color: #ffffff;
}
.cid-u2WGh32j4S .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u3qUnFlzU6 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-u3qUnFlzU6 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qUnFlzU6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2WImwjjfE {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-u2WImwjjfE .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u2WImwjjfE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u2WImwjjfE p {
  color: #767676;
  text-align: left;
}
.cid-u2WImwjjfE .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u2WImwjjfE .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u2WImwjjfE .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u2WImwjjfE .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2WImwjjfE .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2WImwjjfE .notched-box:before,
.cid-u2WImwjjfE .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u2WImwjjfE .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u2WImwjjfE .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u2WImwjjfE .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u2WImwjjfE .border:before,
.cid-u2WImwjjfE .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u2WImwjjfE .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u2WImwjjfE .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u2WImwjjfE .mbr-author-name {
  padding-left: 40px;
}
.cid-u2WImwjjfE P {
  color: #ffffff;
}
.cid-u2WImwjjfE .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u3qUoywGY4 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-u3qUoywGY4 H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qUoywGY4 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2WK5PhqfK {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-u2WK5PhqfK .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u2WK5PhqfK h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u2WK5PhqfK p {
  color: #767676;
  text-align: left;
}
.cid-u2WK5PhqfK .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u2WK5PhqfK .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u2WK5PhqfK .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u2WK5PhqfK .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2WK5PhqfK .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2WK5PhqfK .notched-box:before,
.cid-u2WK5PhqfK .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u2WK5PhqfK .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u2WK5PhqfK .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u2WK5PhqfK .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u2WK5PhqfK .border:before,
.cid-u2WK5PhqfK .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u2WK5PhqfK .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u2WK5PhqfK .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u2WK5PhqfK .mbr-author-name {
  padding-left: 40px;
}
.cid-u2WK5PhqfK P {
  color: #ffffff;
}
.cid-u2WK5PhqfK .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u3qUpfVB7f {
  padding-top: 75px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-17-2000x1333.png");
}
.cid-u3qUpfVB7f H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-u3qUpfVB7f .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u2WLkpZGOk {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-u2WLkpZGOk .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-u2WLkpZGOk h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u2WLkpZGOk p {
  color: #767676;
  text-align: left;
}
.cid-u2WLkpZGOk .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-u2WLkpZGOk .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-u2WLkpZGOk .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-u2WLkpZGOk .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u2WLkpZGOk .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-u2WLkpZGOk .notched-box:before,
.cid-u2WLkpZGOk .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-u2WLkpZGOk .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-u2WLkpZGOk .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-u2WLkpZGOk .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-u2WLkpZGOk .border:before,
.cid-u2WLkpZGOk .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-u2WLkpZGOk .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-u2WLkpZGOk .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-u2WLkpZGOk .mbr-author-name {
  padding-left: 40px;
}
.cid-u2WLkpZGOk P {
  color: #ffffff;
}
.cid-u2WLkpZGOk .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-u6VimnRcV7 {
  background: #ffffff;
}
.cid-u6VimnRcV7 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-u6VimnRcV7 figcaption {
  position: relative;
}
.cid-u6VimnRcV7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-u6VimnRcV7 .image-block {
    width: 100% !important;
  }
}
.cid-uccGZr0aaw {
  padding-top: 90px;
  padding-bottom: 135px;
  background-color: #f9ceb2;
}
.cid-uccGZr0aaw h1 {
  font-weight: 700 !important;
  font-size: 10rem;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
}
.cid-uccGZr0aaw .space_down_50 {
  margin-bottom: 50px;
}
.cid-uccGZr0aaw .mbr-text-u P {
  text-align: center;
  text-decoration: underline;
  font-weight: 600;
}
.cid-uccGZr0aaw .mbr-tex {
  text-align: left;
}
.cid-uccGZr0aaw .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem 0rem;
  white-space: normal;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uccGZr0aaw .display-btn {
  font-family: chivo;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  color: #1d1d1b;
}
.cid-uccGZr0aaw .pfeil_button {
  height: 20px;
  display: inline-list-item;
  vertical-align: baseline;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-uccGZr0aaw a:hover {
  Color: #a76645;
}
.cid-uccGZr0aaw a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uccGZr0aaw .btn-black-outline:hover,
.cid-uccGZr0aaw .btn-black-outline:focus,
.cid-uccGZr0aaw .btn-black-outline.focus,
.cid-uccGZr0aaw .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
.cid-uccGZr0aaw .display-5 {
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: 1.32;
  margin-bottom: 0px;
  margin-left: 1rem;
}
.cid-uccGZr0aaw .container {
  border-color: black;
  border-width: 5px;
  border-style: solid;
}
.cid-uccGZr0aaw .mbr-white {
  margin-top: 5rem;
}
.cid-uccGZr0aaw .mbr-figure {
  padding-top: 1.5rem;
  padding-left: 0.5rem;
  width: 65%;
}
.cid-uccGZr0aaw .testimonial-text {
  color: #f9ceb2;
}
@media (max-width: 768px) {
  .cid-uccGZr0aaw .display-btn {
    line-height: 1;
  }
  .cid-uccGZr0aaw .btn {
    font-size: 1.5rem !important;
  }
  .cid-uccGZr0aaw .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-u7A7WLekKO {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7A7WLekKO .content {
    text-align: center;
  }
  .cid-u7A7WLekKO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7A7WLekKO .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7A7WLekKO .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7A7WLekKO .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7A7WLekKO .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7A7WLekKO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7A7WLekKO .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7A7WLekKO .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7A7WLekKO .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7A7WLekKO .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7A7WLekKO .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7A7WLekKO .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7A7WLekKO .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7A7WLekKO H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7A7WLekKO P {
  color: #ffffff;
}
.cid-u7A7WLekKO .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7A7WLekKO .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7A7WLekKO .logo_footer {
  position: relative;
}
.cid-u7A7WLekKO .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7A7WLekKO .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7A7WLekKO .col,
  .cid-u7A7WLekKO .col-1,
  .cid-u7A7WLekKO .col-10,
  .cid-u7A7WLekKO .col-11,
  .cid-u7A7WLekKO .col-12,
  .cid-u7A7WLekKO .col-2,
  .cid-u7A7WLekKO .col-3,
  .cid-u7A7WLekKO .col-4,
  .cid-u7A7WLekKO .col-5,
  .cid-u7A7WLekKO .col-6,
  .cid-u7A7WLekKO .col-7,
  .cid-u7A7WLekKO .col-8,
  .cid-u7A7WLekKO .col-9,
  .cid-u7A7WLekKO .col-auto,
  .cid-u7A7WLekKO .col-lg,
  .cid-u7A7WLekKO .col-lg-1,
  .cid-u7A7WLekKO .col-lg-10,
  .cid-u7A7WLekKO .col-lg-11,
  .cid-u7A7WLekKO .col-lg-12,
  .cid-u7A7WLekKO .col-lg-2,
  .cid-u7A7WLekKO .col-lg-3,
  .cid-u7A7WLekKO .col-lg-4,
  .cid-u7A7WLekKO .col-lg-5,
  .cid-u7A7WLekKO .col-lg-6,
  .cid-u7A7WLekKO .col-lg-7,
  .cid-u7A7WLekKO .col-lg-8,
  .cid-u7A7WLekKO .col-lg-9,
  .cid-u7A7WLekKO .col-lg-auto,
  .cid-u7A7WLekKO .col-md,
  .cid-u7A7WLekKO .col-md-1,
  .cid-u7A7WLekKO .col-md-10,
  .cid-u7A7WLekKO .col-md-11,
  .cid-u7A7WLekKO .col-md-12,
  .cid-u7A7WLekKO .col-md-2,
  .cid-u7A7WLekKO .col-md-3,
  .cid-u7A7WLekKO .col-md-4,
  .cid-u7A7WLekKO .col-md-5,
  .cid-u7A7WLekKO .col-md-6,
  .cid-u7A7WLekKO .col-md-7,
  .cid-u7A7WLekKO .col-md-8,
  .cid-u7A7WLekKO .col-md-9,
  .cid-u7A7WLekKO .col-md-auto,
  .cid-u7A7WLekKO .col-sm,
  .cid-u7A7WLekKO .col-sm-1,
  .cid-u7A7WLekKO .col-sm-10,
  .cid-u7A7WLekKO .col-sm-11,
  .cid-u7A7WLekKO .col-sm-12,
  .cid-u7A7WLekKO .col-sm-2,
  .cid-u7A7WLekKO .col-sm-3,
  .cid-u7A7WLekKO .col-sm-4,
  .cid-u7A7WLekKO .col-sm-5,
  .cid-u7A7WLekKO .col-sm-6,
  .cid-u7A7WLekKO .col-sm-7,
  .cid-u7A7WLekKO .col-sm-8,
  .cid-u7A7WLekKO .col-sm-9,
  .cid-u7A7WLekKO .col-sm-auto,
  .cid-u7A7WLekKO .col-xl,
  .cid-u7A7WLekKO .col-xl-1,
  .cid-u7A7WLekKO .col-xl-10,
  .cid-u7A7WLekKO .col-xl-11,
  .cid-u7A7WLekKO .col-xl-12,
  .cid-u7A7WLekKO .col-xl-2,
  .cid-u7A7WLekKO .col-xl-3,
  .cid-u7A7WLekKO .col-xl-4,
  .cid-u7A7WLekKO .col-xl-5,
  .cid-u7A7WLekKO .col-xl-6,
  .cid-u7A7WLekKO .col-xl-7,
  .cid-u7A7WLekKO .col-xl-8,
  .cid-u7A7WLekKO .col-xl-9,
  .cid-u7A7WLekKO .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7A7WLekKO .content {
    text-align: left;
  }
  .cid-u7A7WLekKO .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7A7WLekKO .logo_footer_box {
    position: relative;
  }
  .cid-u7A7WLekKO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7A7WLekKO .logo_footer {
    position: relative;
  }
  .cid-u7A7WLekKO .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7A7WLekKO .copyright > p {
  color: #f9ceb2;
}
.cid-tR4xTKyNeW :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-tR4xTKyNeW .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-tR4xTKyNeW .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-tR4xTKyNeW a {
  font-style: normal;
}
.cid-tR4xTKyNeW .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tR4xTKyNeW .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tR4xTKyNeW .nav-item:focus,
.cid-tR4xTKyNeW .nav-link:focus {
  outline: none;
}
.cid-tR4xTKyNeW .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-tR4xTKyNeW .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-tR4xTKyNeW .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tR4xTKyNeW .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tR4xTKyNeW .menu-logo {
  margin-right: auto;
}
.cid-tR4xTKyNeW .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-tR4xTKyNeW .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tR4xTKyNeW .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tR4xTKyNeW .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tR4xTKyNeW .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tR4xTKyNeW .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tR4xTKyNeW .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tR4xTKyNeW .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-tR4xTKyNeW .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tR4xTKyNeW .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tR4xTKyNeW .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tR4xTKyNeW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tR4xTKyNeW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tR4xTKyNeW .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tR4xTKyNeW .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tR4xTKyNeW .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-tR4xTKyNeW .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-tR4xTKyNeW .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tR4xTKyNeW .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tR4xTKyNeW .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tR4xTKyNeW .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tR4xTKyNeW .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-tR4xTKyNeW .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tR4xTKyNeW button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tR4xTKyNeW button.navbar-toggler:focus {
  outline: none;
}
.cid-tR4xTKyNeW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tR4xTKyNeW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tR4xTKyNeW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tR4xTKyNeW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tR4xTKyNeW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tR4xTKyNeW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tR4xTKyNeW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tR4xTKyNeW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tR4xTKyNeW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tR4xTKyNeW .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tR4xTKyNeW .collapsed .btn {
  display: flex;
}
.cid-tR4xTKyNeW .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tR4xTKyNeW .collapsed .navbar-collapse.collapsing,
.cid-tR4xTKyNeW .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tR4xTKyNeW .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tR4xTKyNeW .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tR4xTKyNeW .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tR4xTKyNeW .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tR4xTKyNeW .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tR4xTKyNeW .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-tR4xTKyNeW .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tR4xTKyNeW .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tR4xTKyNeW .collapsed button.navbar-toggler {
  display: block;
}
.cid-tR4xTKyNeW .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tR4xTKyNeW .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tR4xTKyNeW .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tR4xTKyNeW .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tR4xTKyNeW .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tR4xTKyNeW .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-tR4xTKyNeW .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-tR4xTKyNeW .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-tR4xTKyNeW .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-tR4xTKyNeW .navbar-expand {
    flex-direction: column;
  }
  .cid-tR4xTKyNeW img {
    height: 3rem !important;
  }
  .cid-tR4xTKyNeW .btn {
    display: flex;
  }
  .cid-tR4xTKyNeW button.navbar-toggler {
    display: block;
  }
  .cid-tR4xTKyNeW .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tR4xTKyNeW .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tR4xTKyNeW .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tR4xTKyNeW .navbar-collapse.collapsing,
  .cid-tR4xTKyNeW .navbar-collapse.show {
    display: block !important;
  }
  .cid-tR4xTKyNeW .navbar-collapse.collapsing .navbar-nav,
  .cid-tR4xTKyNeW .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tR4xTKyNeW .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tR4xTKyNeW .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tR4xTKyNeW .navbar-collapse.collapsing .navbar-buttons,
  .cid-tR4xTKyNeW .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tR4xTKyNeW .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tR4xTKyNeW .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tR4xTKyNeW .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tR4xTKyNeW .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tR4xTKyNeW .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tR4xTKyNeW .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-tR4xTKyNeW .logo_s,
  .cid-tR4xTKyNeW .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-tR4xTKyNeW .menu-logo {
    flex-shrink: 3;
  }
}
.cid-tR4xTKyNeW .navbar-collapse {
  flex-basis: auto;
}
.cid-tR4xTKyNeW .nav-link:hover,
.cid-tR4xTKyNeW .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-tR4xTKyNeW .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-tR4xTKyNeW .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-tR4xTKyNeW .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-tR4xTKyNeW .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-tR4xTKyNeW .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-tR4xTKyNeW a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tR4xTKyNeW a:hover svg polygon,
.cid-tR4xTKyNeW a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tR4xTKyNeW .hidden {
  display: none !important;
}
.cid-tR4xTKyNeW .shoow {
  display: block !important;
}
.cid-tR4xTKyNeW .navbar-logo a,
.cid-tR4xTKyNeW .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-tR4xTKyNeW .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-tR4xTKyNeW .logo_s {
    height: 2rem !important;
  }
  .cid-tR4xTKyNeW .navbar-logo a img {
    left: 20px;
  }
  .cid-tR4xTKyNeW .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-tR4xTKyNeW .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-tR4xTKyNeW .stoerer_head,
  .cid-tR4xTKyNeW .stoerer_text {
    grid-row: 1;
  }
  .cid-tR4xTKyNeW .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-tR4xTKyNeW a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-tR4xTKUqQQ {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-tR4xTKUqQQ {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-tV2NBeUmUE {
  background: #ffffff;
}
.cid-tV2NBeUmUE .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tV2NBeUmUE figcaption {
  position: relative;
}
.cid-tV2NBeUmUE figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tV2NBeUmUE .image-block {
    width: 100% !important;
  }
}
.cid-tVGISIulEQ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tVGISIulEQ .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tVGISIulEQ h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tVGISIulEQ .space_down_50 {
  margin-bottom: 50px;
}
.cid-ucRlUZb0cR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ucRlUZb0cR .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ucRlUZb0cR h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ucRlUZb0cR .space_down_50 {
  margin-bottom: 50px;
}
.cid-ucRlUZb0cR .mbr-section-subtitle P {
  color: #f9ceb2;
}
.cid-ucRmwvIL0A {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ucRmwvIL0A .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ucRmwvIL0A .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-ucRmwvIL0A .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-ucRmwvIL0A a svg polygon {
  fill: white !important;
}
.cid-ucRmwvIL0A a:hover {
  Color: #F9CEB2!important;
}
.cid-ucRmwvIL0A a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ucRmwvIL0A .btn-white-outline:hover,
.cid-ucRmwvIL0A .btn-white-outline:focus,
.cid-ucRmwvIL0A .btn-white-outline.focus,
.cid-ucRmwvIL0A .btn-white-outline.active,
.cid-ucRmwvIL0A .btn-black-outline:hover,
.cid-ucRmwvIL0A .btn-black-outline:focus,
.cid-ucRmwvIL0A .btn-black-outline.focus,
.cid-ucRmwvIL0A .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ucRmwvIL0A .display-5 {
    line-height: 1;
  }
  .cid-ucRmwvIL0A .btn {
    font-size: 1.5rem !important;
  }
  .cid-ucRmwvIL0A .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tV2OSGRADV {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tV2OSGRADV .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tV2OSGRADV h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tV2OSGRADV .space_down_50 {
  margin-bottom: 50px;
}
.cid-tV2VLd3vjL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tV2VLd3vjL h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tV2VLd3vjL p {
  color: #767676;
  text-align: left;
}
.cid-tV2VLd3vjL .card-box {
  padding-top: 2rem;
}
.cid-tV2VLd3vjL .card-wrapper {
  height: 100%;
}
.cid-tV2VxoTYRp {
  background: #ffffff;
}
.cid-tV2VxoTYRp .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tV2VxoTYRp figcaption {
  position: relative;
}
.cid-tV2VxoTYRp figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tV2VxoTYRp .image-block {
    width: 100% !important;
  }
}
.cid-tV2P5kgOMC {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-tV2P5kgOMC .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tV2P5kgOMC .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-tV2P5kgOMC .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-tV2P5kgOMC a svg polygon {
  fill: white !important;
}
.cid-tV2P5kgOMC a:hover {
  Color: #F9CEB2!important;
}
.cid-tV2P5kgOMC a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tV2P5kgOMC .btn-white-outline:hover,
.cid-tV2P5kgOMC .btn-white-outline:focus,
.cid-tV2P5kgOMC .btn-white-outline.focus,
.cid-tV2P5kgOMC .btn-white-outline.active,
.cid-tV2P5kgOMC .btn-black-outline:hover,
.cid-tV2P5kgOMC .btn-black-outline:focus,
.cid-tV2P5kgOMC .btn-black-outline.focus,
.cid-tV2P5kgOMC .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tV2P5kgOMC .display-5 {
    line-height: 1;
  }
  .cid-tV2P5kgOMC .btn {
    font-size: 1.5rem !important;
  }
  .cid-tV2P5kgOMC .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tV2OUq7KNb {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tV2OUq7KNb .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tV2OUq7KNb h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tV2OUq7KNb .space_down_50 {
  margin-bottom: 50px;
}
.cid-tV2UVZa9GN {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-tV2UVZa9GN h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tV2UVZa9GN p {
  color: #767676;
  text-align: left;
}
.cid-tV2UVZa9GN .card-box {
  padding-top: 2rem;
}
.cid-tV2UVZa9GN .card-wrapper {
  height: 100%;
}
.cid-tV2Vu0sPl3 {
  background: #ffffff;
}
.cid-tV2Vu0sPl3 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tV2Vu0sPl3 figcaption {
  position: relative;
}
.cid-tV2Vu0sPl3 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tV2Vu0sPl3 .image-block {
    width: 100% !important;
  }
}
.cid-tV2V67IQAW {
  background: #ffffff;
}
.cid-tV2V67IQAW .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tV2V67IQAW figcaption {
  position: relative;
}
.cid-tV2V67IQAW figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tV2V67IQAW .image-block {
    width: 100% !important;
  }
}
.cid-tV2RI0w0Ub {
  background: #ffffff;
}
.cid-tV2RI0w0Ub .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tV2RI0w0Ub figcaption {
  position: relative;
}
.cid-tV2RI0w0Ub figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tV2RI0w0Ub .image-block {
    width: 100% !important;
  }
}
.cid-tV2OUMXm4z {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tV2OUMXm4z .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tV2OUMXm4z h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tV2OUMXm4z .space_down_50 {
  margin-bottom: 50px;
}
.cid-ucRq8OQSO6 {
  padding-top: 30px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-ucRq8OQSO6 .images-container.container-fluid {
  padding: 0;
}
.cid-ucRq8OQSO6 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-ucRq8OQSO6 .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-ucRq8OQSO6 .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-ucRq8OQSO6 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-ucRq8OQSO6 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-ucRq8OQSO6 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-ucRq8OQSO6 .img-item {
    width: 100% !important;
  }
  .cid-ucRq8OQSO6 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-ucRq9EOjCw {
  padding-top: 30px;
  padding-bottom: 45px;
  background: #000000;
}
.cid-ucRq9EOjCw .images-container.container-fluid {
  padding: 0;
}
.cid-ucRq9EOjCw .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-ucRq9EOjCw .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-ucRq9EOjCw .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-ucRq9EOjCw .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-ucRq9EOjCw .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-ucRq9EOjCw .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-ucRq9EOjCw .img-item {
    width: 100% !important;
  }
  .cid-ucRq9EOjCw .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-ucRqU26xae {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ucRqU26xae .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ucRqU26xae .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-ucRqU26xae .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-ucRqU26xae a svg polygon {
  fill: white !important;
}
.cid-ucRqU26xae a:hover {
  Color: #F9CEB2!important;
}
.cid-ucRqU26xae a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ucRqU26xae .btn-white-outline:hover,
.cid-ucRqU26xae .btn-white-outline:focus,
.cid-ucRqU26xae .btn-white-outline.focus,
.cid-ucRqU26xae .btn-white-outline.active,
.cid-ucRqU26xae .btn-black-outline:hover,
.cid-ucRqU26xae .btn-black-outline:focus,
.cid-ucRqU26xae .btn-black-outline.focus,
.cid-ucRqU26xae .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ucRqU26xae .display-5 {
    line-height: 1;
  }
  .cid-ucRqU26xae .btn {
    font-size: 1.5rem !important;
  }
  .cid-ucRqU26xae .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tV2RGGJ0vC {
  background: #ffffff;
}
.cid-tV2RGGJ0vC .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tV2RGGJ0vC figcaption {
  position: relative;
}
.cid-tV2RGGJ0vC figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tV2RGGJ0vC .image-block {
    width: 100% !important;
  }
}
.cid-tV2RjSogD0 {
  background: #ffffff;
}
.cid-tV2RjSogD0 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tV2RjSogD0 figcaption {
  position: relative;
}
.cid-tV2RjSogD0 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tV2RjSogD0 .image-block {
    width: 100% !important;
  }
}
.cid-ucRoW7LzXw {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-ucRoW7LzXw .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ucRoW7LzXw h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ucRoW7LzXw .space_down_50 {
  margin-bottom: 50px;
}
.cid-ucRnsIKGOs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-ucRnsIKGOs h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-ucRnsIKGOs p {
  color: #767676;
  text-align: left;
}
.cid-ucRnsIKGOs .card-box {
  padding-top: 2rem;
}
.cid-ucRnsIKGOs .card-wrapper {
  height: 100%;
}
.cid-ucRnsIKGOs .card-img {
  width: 50%;
}
.cid-ueapu6NgiH {
  background: #ffffff;
}
.cid-ueapu6NgiH .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ueapu6NgiH figcaption {
  position: relative;
}
.cid-ueapu6NgiH figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ueapu6NgiH .image-block {
    width: 100% !important;
  }
}
.cid-tV2SDMh4S0 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tV2SDMh4S0 .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-tV2SDMh4S0 .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-tV2SDMh4S0 .mbr-author-desc {
  color: #ffffff;
}
.cid-tV2SDMh4S0 .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tV2SDMh4S0 .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tV2SDMh4S0 .mbr-figure,
  .cid-tV2SDMh4S0 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-tV2SDMh4S0 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tV2SDMh4S0 .text_block {
  margin-top: 70px;
}
.cid-tV2SDMh4S0 .h2_block {
  margin-bottom: 20px;
}
.cid-tV2SDMh4S0 .mbr-figure {
  align-self: flex-start;
}
.cid-tV2SDMh4S0 .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
}
.cid-tV2SDMh4S0 .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-tV2SDMh4S0 a:hover {
  Color: #a76645 !important;
}
.cid-tV2SDMh4S0 a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-tV2SDMh4S0 .btn-black-outline:hover,
.cid-tV2SDMh4S0 .btn-black-outline:focus,
.cid-tV2SDMh4S0 .btn-black-outline.focus,
.cid-tV2SDMh4S0 .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-tV2SDMh4S0 .display-5 {
    line-height: 1;
  }
  .cid-tV2SDMh4S0 .btn {
    font-size: 1.5rem !important;
  }
  .cid-tV2SDMh4S0 .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-tV2SCyhh20 {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-tV2SCyhh20 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tV2SCyhh20 p {
  color: #767676;
  text-align: left;
}
.cid-tV2SCyhh20 .card-box {
  padding-top: 2rem;
}
.cid-tV2SCyhh20 .card-wrapper {
  height: 100%;
}
.cid-tV2SCyhh20 P {
  color: #ffffff;
}
.cid-tV2SCyhh20 .card-title {
  color: #ffffff;
}
.cid-tV2OVFhd77 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #f9ceb2;
}
.cid-tV2OVFhd77 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tV2OVFhd77 h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tV2OVFhd77 .space_down_50 {
  margin-bottom: 50px;
}
.cid-tV2TFvHQ9r {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-tV2TFvHQ9r .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tV2TFvHQ9r .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tV2TFvHQ9r .mbr-figure img {
    width: 100% !important;
  }
}
.cid-udvO71c8vK {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f9ceb2;
}
.cid-udvO71c8vK .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-udvO71c8vK .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-udvO71c8vK .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-udvO71c8vK a svg polygon {
  fill: white !important;
}
.cid-udvO71c8vK a:hover {
  Color: #F9CEB2!important;
}
.cid-udvO71c8vK a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-udvO71c8vK .btn-white-outline:hover,
.cid-udvO71c8vK .btn-white-outline:focus,
.cid-udvO71c8vK .btn-white-outline.focus,
.cid-udvO71c8vK .btn-white-outline.active,
.cid-udvO71c8vK .btn-black-outline:hover,
.cid-udvO71c8vK .btn-black-outline:focus,
.cid-udvO71c8vK .btn-black-outline.focus,
.cid-udvO71c8vK .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-udvO71c8vK .display-5 {
    line-height: 1;
  }
  .cid-udvO71c8vK .btn {
    font-size: 1.5rem !important;
  }
  .cid-udvO71c8vK .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-ucRrnu5c51 {
  background: #ffffff;
}
.cid-ucRrnu5c51 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ucRrnu5c51 figcaption {
  position: relative;
}
.cid-ucRrnu5c51 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ucRrnu5c51 .image-block {
    width: 100% !important;
  }
}
.cid-tV2PrAbljM {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tV2PrAbljM .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tV2PrAbljM h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tV2PrAbljM .space_down_50 {
  margin-bottom: 50px;
}
.cid-tV2R05tMon {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tV2R05tMon h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tV2R05tMon p {
  color: #767676;
  text-align: left;
}
.cid-tV2R05tMon .card-box {
  padding-top: 2rem;
}
.cid-tV2R05tMon .card-wrapper {
  height: 100%;
}
.cid-tV2QNmZSNY {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-tV2QNmZSNY .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tV2QNmZSNY .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tV2QNmZSNY .mbr-figure img {
    width: 100% !important;
  }
}
.cid-ucRrNAJj4z {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ucRrNAJj4z .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ucRrNAJj4z .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-ucRrNAJj4z .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-ucRrNAJj4z a svg polygon {
  fill: white !important;
}
.cid-ucRrNAJj4z a:hover {
  Color: #F9CEB2!important;
}
.cid-ucRrNAJj4z a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ucRrNAJj4z .btn-white-outline:hover,
.cid-ucRrNAJj4z .btn-white-outline:focus,
.cid-ucRrNAJj4z .btn-white-outline.focus,
.cid-ucRrNAJj4z .btn-white-outline.active,
.cid-ucRrNAJj4z .btn-black-outline:hover,
.cid-ucRrNAJj4z .btn-black-outline:focus,
.cid-ucRrNAJj4z .btn-black-outline.focus,
.cid-ucRrNAJj4z .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ucRrNAJj4z .display-5 {
    line-height: 1;
  }
  .cid-ucRrNAJj4z .btn {
    font-size: 1.5rem !important;
  }
  .cid-ucRrNAJj4z .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-ucRrVqHIfL {
  background: #ffffff;
}
.cid-ucRrVqHIfL .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ucRrVqHIfL figcaption {
  position: relative;
}
.cid-ucRrVqHIfL figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ucRrVqHIfL .image-block {
    width: 100% !important;
  }
}
.cid-tV2PwScAVl {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-tV2PwScAVl .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-tV2PwScAVl h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-tV2PwScAVl .space_down_50 {
  margin-bottom: 50px;
}
.cid-ucRspFvrPm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ucRspFvrPm h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-ucRspFvrPm p {
  color: #767676;
  text-align: left;
}
.cid-ucRspFvrPm .card-box {
  padding-top: 2rem;
}
.cid-ucRspFvrPm .card-wrapper {
  height: 100%;
}
.cid-udvNUTrbOK {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-udvNUTrbOK .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-udvNUTrbOK .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-udvNUTrbOK .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-udvNUTrbOK a svg polygon {
  fill: white !important;
}
.cid-udvNUTrbOK a:hover {
  Color: #F9CEB2!important;
}
.cid-udvNUTrbOK a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-udvNUTrbOK .btn-white-outline:hover,
.cid-udvNUTrbOK .btn-white-outline:focus,
.cid-udvNUTrbOK .btn-white-outline.focus,
.cid-udvNUTrbOK .btn-white-outline.active,
.cid-udvNUTrbOK .btn-black-outline:hover,
.cid-udvNUTrbOK .btn-black-outline:focus,
.cid-udvNUTrbOK .btn-black-outline.focus,
.cid-udvNUTrbOK .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-udvNUTrbOK .display-5 {
    line-height: 1;
  }
  .cid-udvNUTrbOK .btn {
    font-size: 1.5rem !important;
  }
  .cid-udvNUTrbOK .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-ucRsX0n7eF {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-ucRsX0n7eF .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-ucRsX0n7eF .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-ucRsX0n7eF .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-ucRsX0n7eF .mbr-figure,
  .cid-ucRsX0n7eF img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-ucRsX0n7eF .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-ucRsX0n7eF .mbr-author-desc {
  color: #000000;
}
.cid-ucRsX0n7eF h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ucRsX0n7eF .text_block {
  margin-top: 0px;
}
.cid-ucRsX0n7eF .h2_block {
  margin-bottom: 20px;
}
.cid-ucRsX0n7eF .mbr-figure {
  align-self: flex-start;
}
.cid-ucRsX0n7eF .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-ucRsX0n7eF .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-ucRsX0n7eF .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-ucRsX0n7eF a svg polygon {
  fill: white !important;
}
.cid-ucRsX0n7eF a:hover {
  Color: #F9CEB2!important;
}
.cid-ucRsX0n7eF a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ucRsX0n7eF .btn-white-outline:hover,
.cid-ucRsX0n7eF .btn-white-outline:focus,
.cid-ucRsX0n7eF .btn-white-outline.focus,
.cid-ucRsX0n7eF .btn-white-outline.active,
.cid-ucRsX0n7eF .btn-black-outline:hover,
.cid-ucRsX0n7eF .btn-black-outline:focus,
.cid-ucRsX0n7eF .btn-black-outline.focus,
.cid-ucRsX0n7eF .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ucRsX0n7eF .display-5 {
    line-height: 1;
  }
  .cid-ucRsX0n7eF .btn {
    font-size: 1.5rem !important;
  }
  .cid-ucRsX0n7eF .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-ucRsX0n7eF .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-tV2UMbYnPC {
  background: #ffffff;
}
.cid-tV2UMbYnPC .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tV2UMbYnPC figcaption {
  position: relative;
}
.cid-tV2UMbYnPC figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tV2UMbYnPC .image-block {
    width: 100% !important;
  }
}
.cid-u7yTQ5jpHT {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-u7yTQ5jpHT .content {
    text-align: center;
  }
  .cid-u7yTQ5jpHT .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-u7yTQ5jpHT .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-u7yTQ5jpHT .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-u7yTQ5jpHT .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-u7yTQ5jpHT .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-u7yTQ5jpHT .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-u7yTQ5jpHT .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-u7yTQ5jpHT .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-u7yTQ5jpHT .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-u7yTQ5jpHT .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-u7yTQ5jpHT .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-u7yTQ5jpHT .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-u7yTQ5jpHT .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-u7yTQ5jpHT H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-u7yTQ5jpHT P {
  color: #ffffff;
}
.cid-u7yTQ5jpHT .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-u7yTQ5jpHT .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-u7yTQ5jpHT .logo_footer {
  position: relative;
}
.cid-u7yTQ5jpHT .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-u7yTQ5jpHT .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-u7yTQ5jpHT .col,
  .cid-u7yTQ5jpHT .col-1,
  .cid-u7yTQ5jpHT .col-10,
  .cid-u7yTQ5jpHT .col-11,
  .cid-u7yTQ5jpHT .col-12,
  .cid-u7yTQ5jpHT .col-2,
  .cid-u7yTQ5jpHT .col-3,
  .cid-u7yTQ5jpHT .col-4,
  .cid-u7yTQ5jpHT .col-5,
  .cid-u7yTQ5jpHT .col-6,
  .cid-u7yTQ5jpHT .col-7,
  .cid-u7yTQ5jpHT .col-8,
  .cid-u7yTQ5jpHT .col-9,
  .cid-u7yTQ5jpHT .col-auto,
  .cid-u7yTQ5jpHT .col-lg,
  .cid-u7yTQ5jpHT .col-lg-1,
  .cid-u7yTQ5jpHT .col-lg-10,
  .cid-u7yTQ5jpHT .col-lg-11,
  .cid-u7yTQ5jpHT .col-lg-12,
  .cid-u7yTQ5jpHT .col-lg-2,
  .cid-u7yTQ5jpHT .col-lg-3,
  .cid-u7yTQ5jpHT .col-lg-4,
  .cid-u7yTQ5jpHT .col-lg-5,
  .cid-u7yTQ5jpHT .col-lg-6,
  .cid-u7yTQ5jpHT .col-lg-7,
  .cid-u7yTQ5jpHT .col-lg-8,
  .cid-u7yTQ5jpHT .col-lg-9,
  .cid-u7yTQ5jpHT .col-lg-auto,
  .cid-u7yTQ5jpHT .col-md,
  .cid-u7yTQ5jpHT .col-md-1,
  .cid-u7yTQ5jpHT .col-md-10,
  .cid-u7yTQ5jpHT .col-md-11,
  .cid-u7yTQ5jpHT .col-md-12,
  .cid-u7yTQ5jpHT .col-md-2,
  .cid-u7yTQ5jpHT .col-md-3,
  .cid-u7yTQ5jpHT .col-md-4,
  .cid-u7yTQ5jpHT .col-md-5,
  .cid-u7yTQ5jpHT .col-md-6,
  .cid-u7yTQ5jpHT .col-md-7,
  .cid-u7yTQ5jpHT .col-md-8,
  .cid-u7yTQ5jpHT .col-md-9,
  .cid-u7yTQ5jpHT .col-md-auto,
  .cid-u7yTQ5jpHT .col-sm,
  .cid-u7yTQ5jpHT .col-sm-1,
  .cid-u7yTQ5jpHT .col-sm-10,
  .cid-u7yTQ5jpHT .col-sm-11,
  .cid-u7yTQ5jpHT .col-sm-12,
  .cid-u7yTQ5jpHT .col-sm-2,
  .cid-u7yTQ5jpHT .col-sm-3,
  .cid-u7yTQ5jpHT .col-sm-4,
  .cid-u7yTQ5jpHT .col-sm-5,
  .cid-u7yTQ5jpHT .col-sm-6,
  .cid-u7yTQ5jpHT .col-sm-7,
  .cid-u7yTQ5jpHT .col-sm-8,
  .cid-u7yTQ5jpHT .col-sm-9,
  .cid-u7yTQ5jpHT .col-sm-auto,
  .cid-u7yTQ5jpHT .col-xl,
  .cid-u7yTQ5jpHT .col-xl-1,
  .cid-u7yTQ5jpHT .col-xl-10,
  .cid-u7yTQ5jpHT .col-xl-11,
  .cid-u7yTQ5jpHT .col-xl-12,
  .cid-u7yTQ5jpHT .col-xl-2,
  .cid-u7yTQ5jpHT .col-xl-3,
  .cid-u7yTQ5jpHT .col-xl-4,
  .cid-u7yTQ5jpHT .col-xl-5,
  .cid-u7yTQ5jpHT .col-xl-6,
  .cid-u7yTQ5jpHT .col-xl-7,
  .cid-u7yTQ5jpHT .col-xl-8,
  .cid-u7yTQ5jpHT .col-xl-9,
  .cid-u7yTQ5jpHT .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-u7yTQ5jpHT .content {
    text-align: left;
  }
  .cid-u7yTQ5jpHT .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-u7yTQ5jpHT .logo_footer_box {
    position: relative;
  }
  .cid-u7yTQ5jpHT .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-u7yTQ5jpHT .logo_footer {
    position: relative;
  }
  .cid-u7yTQ5jpHT .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-u7yTQ5jpHT .copyright > p {
  color: #f9ceb2;
}
.cid-ug8DHwPQD2 :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-ug8DHwPQD2 .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-ug8DHwPQD2 .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-ug8DHwPQD2 a {
  font-style: normal;
}
.cid-ug8DHwPQD2 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ug8DHwPQD2 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-ug8DHwPQD2 .nav-item:focus,
.cid-ug8DHwPQD2 .nav-link:focus {
  outline: none;
}
.cid-ug8DHwPQD2 .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-ug8DHwPQD2 .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-ug8DHwPQD2 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-ug8DHwPQD2 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ug8DHwPQD2 .menu-logo {
  margin-right: auto;
}
.cid-ug8DHwPQD2 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-ug8DHwPQD2 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-ug8DHwPQD2 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ug8DHwPQD2 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ug8DHwPQD2 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-ug8DHwPQD2 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ug8DHwPQD2 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-ug8DHwPQD2 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-ug8DHwPQD2 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ug8DHwPQD2 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ug8DHwPQD2 .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ug8DHwPQD2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ug8DHwPQD2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ug8DHwPQD2 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ug8DHwPQD2 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ug8DHwPQD2 .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-ug8DHwPQD2 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-ug8DHwPQD2 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-ug8DHwPQD2 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ug8DHwPQD2 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ug8DHwPQD2 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ug8DHwPQD2 .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-ug8DHwPQD2 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ug8DHwPQD2 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-ug8DHwPQD2 button.navbar-toggler:focus {
  outline: none;
}
.cid-ug8DHwPQD2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ug8DHwPQD2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ug8DHwPQD2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ug8DHwPQD2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ug8DHwPQD2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ug8DHwPQD2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ug8DHwPQD2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ug8DHwPQD2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ug8DHwPQD2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ug8DHwPQD2 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-ug8DHwPQD2 .collapsed .btn {
  display: flex;
}
.cid-ug8DHwPQD2 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ug8DHwPQD2 .collapsed .navbar-collapse.collapsing,
.cid-ug8DHwPQD2 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-ug8DHwPQD2 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ug8DHwPQD2 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ug8DHwPQD2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ug8DHwPQD2 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ug8DHwPQD2 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ug8DHwPQD2 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-ug8DHwPQD2 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ug8DHwPQD2 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-ug8DHwPQD2 .collapsed button.navbar-toggler {
  display: block;
}
.cid-ug8DHwPQD2 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ug8DHwPQD2 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ug8DHwPQD2 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-ug8DHwPQD2 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ug8DHwPQD2 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ug8DHwPQD2 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-ug8DHwPQD2 .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-ug8DHwPQD2 .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-ug8DHwPQD2 .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-ug8DHwPQD2 .navbar-expand {
    flex-direction: column;
  }
  .cid-ug8DHwPQD2 img {
    height: 3rem !important;
  }
  .cid-ug8DHwPQD2 .btn {
    display: flex;
  }
  .cid-ug8DHwPQD2 button.navbar-toggler {
    display: block;
  }
  .cid-ug8DHwPQD2 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ug8DHwPQD2 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ug8DHwPQD2 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ug8DHwPQD2 .navbar-collapse.collapsing,
  .cid-ug8DHwPQD2 .navbar-collapse.show {
    display: block !important;
  }
  .cid-ug8DHwPQD2 .navbar-collapse.collapsing .navbar-nav,
  .cid-ug8DHwPQD2 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ug8DHwPQD2 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ug8DHwPQD2 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ug8DHwPQD2 .navbar-collapse.collapsing .navbar-buttons,
  .cid-ug8DHwPQD2 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ug8DHwPQD2 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ug8DHwPQD2 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ug8DHwPQD2 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-ug8DHwPQD2 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ug8DHwPQD2 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ug8DHwPQD2 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-ug8DHwPQD2 .logo_s,
  .cid-ug8DHwPQD2 .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-ug8DHwPQD2 .menu-logo {
    flex-shrink: 3;
  }
}
.cid-ug8DHwPQD2 .navbar-collapse {
  flex-basis: auto;
}
.cid-ug8DHwPQD2 .nav-link:hover,
.cid-ug8DHwPQD2 .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-ug8DHwPQD2 .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-ug8DHwPQD2 .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-ug8DHwPQD2 .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-ug8DHwPQD2 .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-ug8DHwPQD2 .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-ug8DHwPQD2 a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ug8DHwPQD2 a:hover svg polygon,
.cid-ug8DHwPQD2 a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ug8DHwPQD2 .hidden {
  display: none !important;
}
.cid-ug8DHwPQD2 .shoow {
  display: block !important;
}
.cid-ug8DHwPQD2 .navbar-logo a,
.cid-ug8DHwPQD2 .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-ug8DHwPQD2 .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-ug8DHwPQD2 .logo_s {
    height: 2rem !important;
  }
  .cid-ug8DHwPQD2 .navbar-logo a img {
    left: 20px;
  }
  .cid-ug8DHwPQD2 .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-ug8DHwPQD2 .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-ug8DHwPQD2 .stoerer_head,
  .cid-ug8DHwPQD2 .stoerer_text {
    grid-row: 1;
  }
  .cid-ug8DHwPQD2 .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-ug8DHwPQD2 a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-ug8DHxhtu1 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-ug8DHxhtu1 {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-ug8EOEg7WI {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ug8EOEg7WI .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ug8EOEg7WI h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ug8EOEg7WI .space_down_50 {
  margin-bottom: 50px;
}
.cid-ug8EINLj75 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-ug8EINLj75 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ug8EINLj75 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ug8EINLj75 .space_down_50 {
  margin-bottom: 50px;
}
.cid-ug8EINLj75 .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-ug8DHyaGGi {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-ug8DHyaGGi .content {
    text-align: center;
  }
  .cid-ug8DHyaGGi .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ug8DHyaGGi .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-ug8DHyaGGi .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ug8DHyaGGi .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-ug8DHyaGGi .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ug8DHyaGGi .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ug8DHyaGGi .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-ug8DHyaGGi .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ug8DHyaGGi .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-ug8DHyaGGi .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ug8DHyaGGi .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-ug8DHyaGGi .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ug8DHyaGGi .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ug8DHyaGGi H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-ug8DHyaGGi P {
  color: #ffffff;
}
.cid-ug8DHyaGGi .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-ug8DHyaGGi .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-ug8DHyaGGi .logo_footer {
  position: relative;
}
.cid-ug8DHyaGGi .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-ug8DHyaGGi .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-ug8DHyaGGi .col,
  .cid-ug8DHyaGGi .col-1,
  .cid-ug8DHyaGGi .col-10,
  .cid-ug8DHyaGGi .col-11,
  .cid-ug8DHyaGGi .col-12,
  .cid-ug8DHyaGGi .col-2,
  .cid-ug8DHyaGGi .col-3,
  .cid-ug8DHyaGGi .col-4,
  .cid-ug8DHyaGGi .col-5,
  .cid-ug8DHyaGGi .col-6,
  .cid-ug8DHyaGGi .col-7,
  .cid-ug8DHyaGGi .col-8,
  .cid-ug8DHyaGGi .col-9,
  .cid-ug8DHyaGGi .col-auto,
  .cid-ug8DHyaGGi .col-lg,
  .cid-ug8DHyaGGi .col-lg-1,
  .cid-ug8DHyaGGi .col-lg-10,
  .cid-ug8DHyaGGi .col-lg-11,
  .cid-ug8DHyaGGi .col-lg-12,
  .cid-ug8DHyaGGi .col-lg-2,
  .cid-ug8DHyaGGi .col-lg-3,
  .cid-ug8DHyaGGi .col-lg-4,
  .cid-ug8DHyaGGi .col-lg-5,
  .cid-ug8DHyaGGi .col-lg-6,
  .cid-ug8DHyaGGi .col-lg-7,
  .cid-ug8DHyaGGi .col-lg-8,
  .cid-ug8DHyaGGi .col-lg-9,
  .cid-ug8DHyaGGi .col-lg-auto,
  .cid-ug8DHyaGGi .col-md,
  .cid-ug8DHyaGGi .col-md-1,
  .cid-ug8DHyaGGi .col-md-10,
  .cid-ug8DHyaGGi .col-md-11,
  .cid-ug8DHyaGGi .col-md-12,
  .cid-ug8DHyaGGi .col-md-2,
  .cid-ug8DHyaGGi .col-md-3,
  .cid-ug8DHyaGGi .col-md-4,
  .cid-ug8DHyaGGi .col-md-5,
  .cid-ug8DHyaGGi .col-md-6,
  .cid-ug8DHyaGGi .col-md-7,
  .cid-ug8DHyaGGi .col-md-8,
  .cid-ug8DHyaGGi .col-md-9,
  .cid-ug8DHyaGGi .col-md-auto,
  .cid-ug8DHyaGGi .col-sm,
  .cid-ug8DHyaGGi .col-sm-1,
  .cid-ug8DHyaGGi .col-sm-10,
  .cid-ug8DHyaGGi .col-sm-11,
  .cid-ug8DHyaGGi .col-sm-12,
  .cid-ug8DHyaGGi .col-sm-2,
  .cid-ug8DHyaGGi .col-sm-3,
  .cid-ug8DHyaGGi .col-sm-4,
  .cid-ug8DHyaGGi .col-sm-5,
  .cid-ug8DHyaGGi .col-sm-6,
  .cid-ug8DHyaGGi .col-sm-7,
  .cid-ug8DHyaGGi .col-sm-8,
  .cid-ug8DHyaGGi .col-sm-9,
  .cid-ug8DHyaGGi .col-sm-auto,
  .cid-ug8DHyaGGi .col-xl,
  .cid-ug8DHyaGGi .col-xl-1,
  .cid-ug8DHyaGGi .col-xl-10,
  .cid-ug8DHyaGGi .col-xl-11,
  .cid-ug8DHyaGGi .col-xl-12,
  .cid-ug8DHyaGGi .col-xl-2,
  .cid-ug8DHyaGGi .col-xl-3,
  .cid-ug8DHyaGGi .col-xl-4,
  .cid-ug8DHyaGGi .col-xl-5,
  .cid-ug8DHyaGGi .col-xl-6,
  .cid-ug8DHyaGGi .col-xl-7,
  .cid-ug8DHyaGGi .col-xl-8,
  .cid-ug8DHyaGGi .col-xl-9,
  .cid-ug8DHyaGGi .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-ug8DHyaGGi .content {
    text-align: left;
  }
  .cid-ug8DHyaGGi .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-ug8DHyaGGi .logo_footer_box {
    position: relative;
  }
  .cid-ug8DHyaGGi .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-ug8DHyaGGi .logo_footer {
    position: relative;
  }
  .cid-ug8DHyaGGi .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-ug8DHyaGGi .copyright > p {
  color: #f9ceb2;
}
.cid-ui801a2NDi :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-ui801a2NDi .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-ui801a2NDi .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-ui801a2NDi a {
  font-style: normal;
}
.cid-ui801a2NDi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ui801a2NDi .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-ui801a2NDi .nav-item:focus,
.cid-ui801a2NDi .nav-link:focus {
  outline: none;
}
.cid-ui801a2NDi .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-ui801a2NDi .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-ui801a2NDi .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-ui801a2NDi .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ui801a2NDi .menu-logo {
  margin-right: auto;
}
.cid-ui801a2NDi .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-ui801a2NDi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-ui801a2NDi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ui801a2NDi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-ui801a2NDi .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-ui801a2NDi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ui801a2NDi .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-ui801a2NDi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-ui801a2NDi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ui801a2NDi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ui801a2NDi .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ui801a2NDi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ui801a2NDi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ui801a2NDi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ui801a2NDi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ui801a2NDi .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-ui801a2NDi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-ui801a2NDi .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-ui801a2NDi .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-ui801a2NDi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ui801a2NDi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ui801a2NDi .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-ui801a2NDi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ui801a2NDi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-ui801a2NDi button.navbar-toggler:focus {
  outline: none;
}
.cid-ui801a2NDi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ui801a2NDi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ui801a2NDi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ui801a2NDi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ui801a2NDi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ui801a2NDi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ui801a2NDi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ui801a2NDi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ui801a2NDi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ui801a2NDi .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-ui801a2NDi .collapsed .btn {
  display: flex;
}
.cid-ui801a2NDi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ui801a2NDi .collapsed .navbar-collapse.collapsing,
.cid-ui801a2NDi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-ui801a2NDi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ui801a2NDi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ui801a2NDi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ui801a2NDi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ui801a2NDi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ui801a2NDi .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-ui801a2NDi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ui801a2NDi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-ui801a2NDi .collapsed button.navbar-toggler {
  display: block;
}
.cid-ui801a2NDi .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-ui801a2NDi .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ui801a2NDi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-ui801a2NDi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ui801a2NDi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-ui801a2NDi .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-ui801a2NDi .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-ui801a2NDi .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-ui801a2NDi .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-ui801a2NDi .navbar-expand {
    flex-direction: column;
  }
  .cid-ui801a2NDi img {
    height: 3rem !important;
  }
  .cid-ui801a2NDi .btn {
    display: flex;
  }
  .cid-ui801a2NDi button.navbar-toggler {
    display: block;
  }
  .cid-ui801a2NDi .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-ui801a2NDi .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ui801a2NDi .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ui801a2NDi .navbar-collapse.collapsing,
  .cid-ui801a2NDi .navbar-collapse.show {
    display: block !important;
  }
  .cid-ui801a2NDi .navbar-collapse.collapsing .navbar-nav,
  .cid-ui801a2NDi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ui801a2NDi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ui801a2NDi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ui801a2NDi .navbar-collapse.collapsing .navbar-buttons,
  .cid-ui801a2NDi .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ui801a2NDi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ui801a2NDi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ui801a2NDi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-ui801a2NDi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ui801a2NDi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-ui801a2NDi .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-ui801a2NDi .logo_s,
  .cid-ui801a2NDi .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-ui801a2NDi .menu-logo {
    flex-shrink: 3;
  }
}
.cid-ui801a2NDi .navbar-collapse {
  flex-basis: auto;
}
.cid-ui801a2NDi .nav-link:hover,
.cid-ui801a2NDi .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-ui801a2NDi .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-ui801a2NDi .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-ui801a2NDi .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-ui801a2NDi .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-ui801a2NDi .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-ui801a2NDi a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ui801a2NDi a:hover svg polygon,
.cid-ui801a2NDi a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ui801a2NDi .hidden {
  display: none !important;
}
.cid-ui801a2NDi .shoow {
  display: block !important;
}
.cid-ui801a2NDi .navbar-logo a,
.cid-ui801a2NDi .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-ui801a2NDi .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-ui801a2NDi .logo_s {
    height: 2rem !important;
  }
  .cid-ui801a2NDi .navbar-logo a img {
    left: 20px;
  }
  .cid-ui801a2NDi .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-ui801a2NDi .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-ui801a2NDi .stoerer_head,
  .cid-ui801a2NDi .stoerer_text {
    grid-row: 1;
  }
  .cid-ui801a2NDi .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-ui801a2NDi a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-ui801bstez {
  padding-top: 90px;
  background-image: url("../../../assets/images/header-2-1500x205.png");
}
@media (max-width: 768px) {
  .cid-ui801bstez {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-ui801fwdba {
  background: #ffffff;
}
.cid-ui801fwdba .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ui801fwdba figcaption {
  position: relative;
}
.cid-ui801fwdba figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ui801fwdba .image-block {
    width: 100% !important;
  }
}
.cid-ui801cQmOa {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ui801cQmOa .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui801cQmOa h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui801cQmOa .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui801cQmOa .testimonial-text {
  text-align: center;
}
.cid-ui801d7tu4 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-ui801d7tu4 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui801d7tu4 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui801d7tu4 .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui801d7tu4 .mbr-section-subtitle P {
  color: #ffffff;
  text-align: left;
}
.cid-ui845Yt6mL {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ui845Yt6mL .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui845Yt6mL h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui845Yt6mL .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui845Yt6mL .testimonial-text {
  color: #f9ceb2;
}
.cid-ui801kjBcp {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ui801kjBcp .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui801kjBcp h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui801kjBcp .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui801kjBcp .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ui8482HnjB {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ui8482HnjB .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui8482HnjB h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui8482HnjB .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui8482HnjB .testimonial-text {
  color: #f9ceb2;
}
.cid-ui84w8sBC6 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ui84w8sBC6 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui84w8sBC6 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84w8sBC6 .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84w8sBC6 .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ui84aPRsdJ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ui84aPRsdJ .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui84aPRsdJ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84aPRsdJ .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84aPRsdJ .testimonial-text {
  color: #f9ceb2;
}
.cid-ui84wP7pOm {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ui84wP7pOm .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui84wP7pOm h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84wP7pOm .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84wP7pOm .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ui84cSsTCp {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ui84cSsTCp .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui84cSsTCp h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84cSsTCp .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84cSsTCp .testimonial-text {
  color: #f9ceb2;
}
.cid-ui84xmXf3o {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ui84xmXf3o .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui84xmXf3o h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84xmXf3o .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84xmXf3o .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ui84dGn7Y2 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ui84dGn7Y2 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui84dGn7Y2 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84dGn7Y2 .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84dGn7Y2 .testimonial-text {
  color: #f9ceb2;
}
.cid-ui84y0LPAp {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ui84y0LPAp .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui84y0LPAp h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84y0LPAp .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84y0LPAp .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ui84etosOy {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ui84etosOy .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui84etosOy h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84etosOy .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84etosOy .testimonial-text {
  color: #f9ceb2;
}
.cid-ui84yv9U98 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ui84yv9U98 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui84yv9U98 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84yv9U98 .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84yv9U98 .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ui84c5IB3n {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ui84c5IB3n .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui84c5IB3n h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84c5IB3n .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84c5IB3n .testimonial-text {
  color: #f9ceb2;
}
.cid-ui84z4qVhx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ui84z4qVhx .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui84z4qVhx h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84z4qVhx .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84z4qVhx .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ui84f2cv2K {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ui84f2cv2K .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui84f2cv2K h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84f2cv2K .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84f2cv2K .testimonial-text {
  color: #f9ceb2;
}
.cid-ui84zGcciu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ui84zGcciu .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui84zGcciu h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84zGcciu .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84zGcciu .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ui84fINfpQ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ui84fINfpQ .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui84fINfpQ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84fINfpQ .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84fINfpQ .testimonial-text {
  color: #f9ceb2;
}
.cid-ui84AaYCNZ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ui84AaYCNZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui84AaYCNZ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84AaYCNZ .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84AaYCNZ .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ui84gmynED {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ui84gmynED .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui84gmynED h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84gmynED .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84gmynED .testimonial-text {
  color: #f9ceb2;
}
.cid-ui84AOyozJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ui84AOyozJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui84AOyozJ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84AOyozJ .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84AOyozJ .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ui84gW7mUk {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ui84gW7mUk .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui84gW7mUk h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84gW7mUk .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84gW7mUk .testimonial-text {
  color: #f9ceb2;
}
.cid-ui84Bsx7ji {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ui84Bsx7ji .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui84Bsx7ji h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84Bsx7ji .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84Bsx7ji .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ui84sf4frJ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-ui84sf4frJ .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui84sf4frJ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84sf4frJ .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84sf4frJ .testimonial-text {
  color: #f9ceb2;
}
.cid-ui84CzK7g5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-ui84CzK7g5 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ui84CzK7g5 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui84CzK7g5 .space_down_50 {
  margin-bottom: 50px;
}
.cid-ui84CzK7g5 .mbr-section-subtitle P {
  color: #ffffff;
}
.cid-ui8022hLeU {
  background: #000000;
  padding-top: 90px;
  padding-bottom: 60px;
}
.cid-ui8022hLeU .image-block {
  margin: auto;
}
.cid-ui8022hLeU figcaption {
  position: relative;
}
.cid-ui8022hLeU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ui8022hLeU .image-block {
    width: 100% !important;
  }
}
.cid-ui801pEjMJ {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-ui801pEjMJ .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-ui801pEjMJ .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-ui801pEjMJ .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-ui801pEjMJ a svg polygon {
  fill: white !important;
}
.cid-ui801pEjMJ a:hover {
  Color: #F9CEB2!important;
}
.cid-ui801pEjMJ a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ui801pEjMJ .btn-white-outline:hover,
.cid-ui801pEjMJ .btn-white-outline:focus,
.cid-ui801pEjMJ .btn-white-outline.focus,
.cid-ui801pEjMJ .btn-white-outline.active,
.cid-ui801pEjMJ .btn-black-outline:hover,
.cid-ui801pEjMJ .btn-black-outline:focus,
.cid-ui801pEjMJ .btn-black-outline.focus,
.cid-ui801pEjMJ .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ui801pEjMJ .display-5 {
    line-height: 1;
  }
  .cid-ui801pEjMJ .btn {
    font-size: 1.5rem !important;
  }
  .cid-ui801pEjMJ .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-ui801L4wDX {
  background: #ffffff;
}
.cid-ui801L4wDX .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ui801L4wDX figcaption {
  position: relative;
}
.cid-ui801L4wDX figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ui801L4wDX .image-block {
    width: 300% !important;
  }
}
.cid-ui801LBRcR {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f9ceb2;
}
.cid-ui801LBRcR .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-ui801LBRcR .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-ui801LBRcR .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-ui801LBRcR .mbr-figure,
  .cid-ui801LBRcR img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-ui801LBRcR .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-ui801LBRcR .mbr-author-desc {
  color: #000000;
}
.cid-ui801LBRcR h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-ui801LBRcR .text_block {
  margin-top: 0px;
}
.cid-ui801LBRcR .h2_block {
  margin-bottom: 20px;
}
.cid-ui801LBRcR .mbr-figure {
  align-self: flex-start;
}
.cid-ui801LBRcR .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-ui801LBRcR .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-ui801LBRcR .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-ui801LBRcR a:hover {
  Color: #a76645 !important;
}
.cid-ui801LBRcR a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-ui801LBRcR .btn-black-outline:hover,
.cid-ui801LBRcR .btn-black-outline:focus,
.cid-ui801LBRcR .btn-black-outline.focus,
.cid-ui801LBRcR .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-ui801LBRcR .display-5 {
    line-height: 1;
  }
  .cid-ui801LBRcR .btn {
    font-size: 1.5rem !important;
  }
  .cid-ui801LBRcR .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-ui801LBRcR .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-ui801Mhk8i {
  background: #ffffff;
}
.cid-ui801Mhk8i .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ui801Mhk8i figcaption {
  position: relative;
}
.cid-ui801Mhk8i figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ui801Mhk8i .image-block {
    width: 300% !important;
  }
}
.cid-ui801uXRcF {
  background: #ffffff;
}
.cid-ui801uXRcF .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-ui801uXRcF figcaption {
  position: relative;
}
.cid-ui801uXRcF figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ui801uXRcF .image-block {
    width: 100% !important;
  }
}
.cid-ui802eaEpH {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-ui802eaEpH .content {
    text-align: center;
  }
  .cid-ui802eaEpH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-ui802eaEpH .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-ui802eaEpH .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-ui802eaEpH .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-ui802eaEpH .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ui802eaEpH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-ui802eaEpH .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-ui802eaEpH .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-ui802eaEpH .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-ui802eaEpH .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ui802eaEpH .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-ui802eaEpH .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ui802eaEpH .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ui802eaEpH H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-ui802eaEpH P {
  color: #ffffff;
}
.cid-ui802eaEpH .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-ui802eaEpH .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-ui802eaEpH .logo_footer {
  position: relative;
}
.cid-ui802eaEpH .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-ui802eaEpH .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-ui802eaEpH .col,
  .cid-ui802eaEpH .col-1,
  .cid-ui802eaEpH .col-10,
  .cid-ui802eaEpH .col-11,
  .cid-ui802eaEpH .col-12,
  .cid-ui802eaEpH .col-2,
  .cid-ui802eaEpH .col-3,
  .cid-ui802eaEpH .col-4,
  .cid-ui802eaEpH .col-5,
  .cid-ui802eaEpH .col-6,
  .cid-ui802eaEpH .col-7,
  .cid-ui802eaEpH .col-8,
  .cid-ui802eaEpH .col-9,
  .cid-ui802eaEpH .col-auto,
  .cid-ui802eaEpH .col-lg,
  .cid-ui802eaEpH .col-lg-1,
  .cid-ui802eaEpH .col-lg-10,
  .cid-ui802eaEpH .col-lg-11,
  .cid-ui802eaEpH .col-lg-12,
  .cid-ui802eaEpH .col-lg-2,
  .cid-ui802eaEpH .col-lg-3,
  .cid-ui802eaEpH .col-lg-4,
  .cid-ui802eaEpH .col-lg-5,
  .cid-ui802eaEpH .col-lg-6,
  .cid-ui802eaEpH .col-lg-7,
  .cid-ui802eaEpH .col-lg-8,
  .cid-ui802eaEpH .col-lg-9,
  .cid-ui802eaEpH .col-lg-auto,
  .cid-ui802eaEpH .col-md,
  .cid-ui802eaEpH .col-md-1,
  .cid-ui802eaEpH .col-md-10,
  .cid-ui802eaEpH .col-md-11,
  .cid-ui802eaEpH .col-md-12,
  .cid-ui802eaEpH .col-md-2,
  .cid-ui802eaEpH .col-md-3,
  .cid-ui802eaEpH .col-md-4,
  .cid-ui802eaEpH .col-md-5,
  .cid-ui802eaEpH .col-md-6,
  .cid-ui802eaEpH .col-md-7,
  .cid-ui802eaEpH .col-md-8,
  .cid-ui802eaEpH .col-md-9,
  .cid-ui802eaEpH .col-md-auto,
  .cid-ui802eaEpH .col-sm,
  .cid-ui802eaEpH .col-sm-1,
  .cid-ui802eaEpH .col-sm-10,
  .cid-ui802eaEpH .col-sm-11,
  .cid-ui802eaEpH .col-sm-12,
  .cid-ui802eaEpH .col-sm-2,
  .cid-ui802eaEpH .col-sm-3,
  .cid-ui802eaEpH .col-sm-4,
  .cid-ui802eaEpH .col-sm-5,
  .cid-ui802eaEpH .col-sm-6,
  .cid-ui802eaEpH .col-sm-7,
  .cid-ui802eaEpH .col-sm-8,
  .cid-ui802eaEpH .col-sm-9,
  .cid-ui802eaEpH .col-sm-auto,
  .cid-ui802eaEpH .col-xl,
  .cid-ui802eaEpH .col-xl-1,
  .cid-ui802eaEpH .col-xl-10,
  .cid-ui802eaEpH .col-xl-11,
  .cid-ui802eaEpH .col-xl-12,
  .cid-ui802eaEpH .col-xl-2,
  .cid-ui802eaEpH .col-xl-3,
  .cid-ui802eaEpH .col-xl-4,
  .cid-ui802eaEpH .col-xl-5,
  .cid-ui802eaEpH .col-xl-6,
  .cid-ui802eaEpH .col-xl-7,
  .cid-ui802eaEpH .col-xl-8,
  .cid-ui802eaEpH .col-xl-9,
  .cid-ui802eaEpH .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-ui802eaEpH .content {
    text-align: left;
  }
  .cid-ui802eaEpH .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-ui802eaEpH .logo_footer_box {
    position: relative;
  }
  .cid-ui802eaEpH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-ui802eaEpH .logo_footer {
    position: relative;
  }
  .cid-ui802eaEpH .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-ui802eaEpH .copyright > p {
  color: #f9ceb2;
}
.cid-qTkzRZLJNu :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-qTkzRZLJNu .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-qTkzRZLJNu .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-qTkzRZLJNu a {
  font-style: normal;
}
.cid-qTkzRZLJNu .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qTkzRZLJNu .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qTkzRZLJNu .nav-item:focus,
.cid-qTkzRZLJNu .nav-link:focus {
  outline: none;
}
.cid-qTkzRZLJNu .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-qTkzRZLJNu .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qTkzRZLJNu .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qTkzRZLJNu .menu-logo {
  margin-right: auto;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qTkzRZLJNu .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qTkzRZLJNu .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qTkzRZLJNu .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-qTkzRZLJNu .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-qTkzRZLJNu .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-qTkzRZLJNu .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qTkzRZLJNu button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qTkzRZLJNu button.navbar-toggler:focus {
  outline: none;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qTkzRZLJNu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qTkzRZLJNu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qTkzRZLJNu .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .btn {
  display: flex;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-qTkzRZLJNu .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qTkzRZLJNu .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qTkzRZLJNu .collapsed button.navbar-toggler {
  display: block;
}
.cid-qTkzRZLJNu .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qTkzRZLJNu .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qTkzRZLJNu .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qTkzRZLJNu .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-qTkzRZLJNu .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-qTkzRZLJNu .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-qTkzRZLJNu .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-qTkzRZLJNu .navbar-expand {
    flex-direction: column;
  }
  .cid-qTkzRZLJNu img {
    height: 3rem !important;
  }
  .cid-qTkzRZLJNu .btn {
    display: flex;
  }
  .cid-qTkzRZLJNu button.navbar-toggler {
    display: block;
  }
  .cid-qTkzRZLJNu .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qTkzRZLJNu .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qTkzRZLJNu .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing,
  .cid-qTkzRZLJNu .navbar-collapse.show {
    display: block !important;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qTkzRZLJNu .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qTkzRZLJNu .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qTkzRZLJNu .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qTkzRZLJNu .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-qTkzRZLJNu .logo_s,
  .cid-qTkzRZLJNu .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-qTkzRZLJNu .menu-logo {
    flex-shrink: 3;
  }
}
.cid-qTkzRZLJNu .navbar-collapse {
  flex-basis: auto;
}
.cid-qTkzRZLJNu .nav-link:hover,
.cid-qTkzRZLJNu .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-qTkzRZLJNu .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-qTkzRZLJNu .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-qTkzRZLJNu .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-qTkzRZLJNu .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-qTkzRZLJNu .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-qTkzRZLJNu a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu a:hover svg polygon,
.cid-qTkzRZLJNu a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-qTkzRZLJNu .hidden {
  display: none !important;
}
.cid-qTkzRZLJNu .shoow {
  display: block !important;
}
.cid-qTkzRZLJNu .navbar-logo a,
.cid-qTkzRZLJNu .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-qTkzRZLJNu .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-qTkzRZLJNu .logo_s {
    height: 2rem !important;
  }
  .cid-qTkzRZLJNu .navbar-logo a img {
    left: 20px;
  }
  .cid-qTkzRZLJNu .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-qTkzRZLJNu .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-qTkzRZLJNu .stoerer_head,
  .cid-qTkzRZLJNu .stoerer_text {
    grid-row: 1;
  }
  .cid-qTkzRZLJNu .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-qTkzRZLJNu a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-sRM5SC916B {
  padding-top: 90px;
  background-image: url("../../../assets/images/header-2-1500x205.png");
}
@media (max-width: 768px) {
  .cid-sRM5SC916B {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-upoXtTu8Go {
  background: #ffffff;
}
.cid-upoXtTu8Go .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-upoXtTu8Go figcaption {
  position: relative;
}
.cid-upoXtTu8Go figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-upoXtTu8Go .image-block {
    width: 100% !important;
  }
}
.cid-uqIxiLWzzL {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-grau-2000-2000x1335.jpg");
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.cid-uqIxiLWzzL .testimonial-text {
  font-style: italic;
  color: #ffffff;
  font-weight: 300;
}
.cid-uqIxiLWzzL .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-uqIxiLWzzL .mbr-author-desc {
  color: #1d1d1b;
}
.cid-uqIxiLWzzL .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-uqIxiLWzzL .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-uqIxiLWzzL .mbr-figure,
  .cid-uqIxiLWzzL img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-uqIxiLWzzL h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uqIxiLWzzL .text_block {
  margin-top: 0px;
}
.cid-uqIxiLWzzL .h2_block {
  margin-bottom: 20px;
}
.cid-uqIxiLWzzL .mbr-figure {
  align-self: flex-start;
}
.cid-uqIxiLWzzL .display-7 {
  font-size: 1.5rem;
  font-weight: 400;
}
.cid-uqIxiLWzzL .display-5 {
  font-size: 2rem;
  font-weight: 700;
  fon-style: italic;
}
.cid-uqIxiLWzzL .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-uqIxiLWzzL a:hover {
  Color: #a76645 !important;
}
.cid-uqIxiLWzzL a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uqIxiLWzzL .btn-black-outline:hover,
.cid-uqIxiLWzzL .btn-black-outline:focus,
.cid-uqIxiLWzzL .btn-black-outline.focus,
.cid-uqIxiLWzzL .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-uqIxiLWzzL .display-5 {
    line-height: 1;
  }
  .cid-uqIxiLWzzL .btn {
    font-size: 1.5rem !important;
  }
  .cid-uqIxiLWzzL .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-uqIxiLWzzL .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-uqIxiLWzzL .content {
  padding-left: 3px;
}
.cid-unoEXYaiX3 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-grau-2000-2000x1335.jpg");
}
.cid-unoEXYaiX3 H2 {
  color: #e40027;
  line-height: 1.2;
}
.cid-unoEXYaiX3 H3 {
  font-weight: bold;
}
.cid-unoEXYaiX3 .mbr-section-subtitle {
  color: #000000;
}
.cid-unoEYkko1C {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/asche-grau-2000-2000x1335.jpg");
}
.cid-unoEYkko1C .mbr-section-subtitle P {
  text-align: left;
}
.cid-unoEYkko1C h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  margin-left: -0.5rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-unoEYkko1C .space_down_50 {
  margin-bottom: 50px;
}
.cid-uqIA0dqynP {
  background: #efefef;
  padding-top: 15px;
  padding-bottom: 30px;
}
.cid-uqIA0dqynP .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-uqIA0dqynP .video-block {
    width: 100% !important;
  }
}
.cid-uqIA0dqynP .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-unoEYztxdv {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-grau-2000-2000x1335.jpg");
}
.cid-unoEYztxdv H2 {
  color: #e40027;
  line-height: 1.2;
}
.cid-unoEYztxdv H3 {
  font-weight: bold;
}
.cid-unoEYztxdv .mbr-section-subtitle {
  color: #000000;
}
.cid-unoEYztxdv span {
  visibility: hidden;
}
.cid-unoEYztxdv .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-unoEYztxdv span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-unoEZeVrDv {
  padding-top: 30px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-grau-2000-2000x1335.jpg");
}
.cid-unoEZeVrDv .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-unoEZeVrDv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-unoEZeVrDv p {
  color: #767676;
  text-align: left;
}
.cid-unoEZeVrDv .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-unoEZeVrDv .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-unoEZeVrDv .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-unoEZeVrDv .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-unoEZeVrDv .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-unoEZeVrDv .notched-box:before,
.cid-unoEZeVrDv .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-unoEZeVrDv .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-unoEZeVrDv .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-unoEZeVrDv .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-unoEZeVrDv .border:before,
.cid-unoEZeVrDv .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-unoEZeVrDv .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-unoEZeVrDv .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-unoEZeVrDv .mbr-author-name {
  padding-left: 40px;
}
.cid-unoEZeVrDv P {
  color: #000000;
  line-height: 1.3;
}
.cid-unoEZeVrDv .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-unoEX7FQbH {
  background: #ffffff;
}
.cid-unoEX7FQbH .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-unoEX7FQbH figcaption {
  position: relative;
}
.cid-unoEX7FQbH figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-unoEX7FQbH .image-block {
    width: 100% !important;
  }
}
.cid-unoEZur3s9 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-unoEZur3s9 .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-unoEZur3s9 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-unoEZur3s9 .space_down_50 {
  margin-bottom: 50px;
}
.cid-unoEZur3s9 .testimonial-text {
  color: #f9ceb2;
}
.cid-unoEZKiUYl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-unoEZKiUYl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-unoEZKiUYl p {
  color: #767676;
  text-align: left;
}
.cid-unoEZKiUYl .card-box {
  padding-top: 2rem;
}
.cid-unoEZKiUYl .card-wrapper {
  height: 100%;
}
.cid-unoF0hzj8a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-unoF0hzj8a h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-unoF0hzj8a p {
  color: #767676;
  text-align: left;
}
.cid-unoF0hzj8a .card-box {
  padding-top: 2rem;
}
.cid-unoF0hzj8a .card-wrapper {
  height: 100%;
}
.cid-unoF0D2GKI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-unoF0D2GKI h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-unoF0D2GKI p {
  color: #767676;
  text-align: left;
}
.cid-unoF0D2GKI .card-box {
  padding-top: 2rem;
}
.cid-unoF0D2GKI .card-wrapper {
  height: 100%;
}
.cid-unoF0TVbSF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-unoF0TVbSF h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-unoF0TVbSF p {
  color: #767676;
  text-align: left;
}
.cid-unoF0TVbSF .card-box {
  padding-top: 2rem;
}
.cid-unoF0TVbSF .card-wrapper {
  height: 100%;
}
.cid-unoF1elDnH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-unoF1elDnH h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-unoF1elDnH p {
  color: #767676;
  text-align: left;
}
.cid-unoF1elDnH .card-box {
  padding-top: 2rem;
}
.cid-unoF1elDnH .card-wrapper {
  height: 100%;
}
.cid-unoF1rqrow {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #000000;
}
.cid-unoF1rqrow .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-unoF1rqrow .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-unoF1rqrow .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-unoF1rqrow a svg polygon {
  fill: white !important;
}
.cid-unoF1rqrow a:hover {
  Color: #F9CEB2!important;
}
.cid-unoF1rqrow a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-unoF1rqrow .btn-white-outline:hover,
.cid-unoF1rqrow .btn-white-outline:focus,
.cid-unoF1rqrow .btn-white-outline.focus,
.cid-unoF1rqrow .btn-white-outline.active,
.cid-unoF1rqrow .btn-black-outline:hover,
.cid-unoF1rqrow .btn-black-outline:focus,
.cid-unoF1rqrow .btn-black-outline.focus,
.cid-unoF1rqrow .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-unoF1rqrow .display-5 {
    line-height: 1;
  }
  .cid-unoF1rqrow .btn {
    font-size: 1.5rem !important;
  }
  .cid-unoF1rqrow .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-unoF1Qewnk {
  background: #ffffff;
}
.cid-unoF1Qewnk .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-unoF1Qewnk figcaption {
  position: relative;
}
.cid-unoF1Qewnk figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-unoF1Qewnk .image-block {
    width: 100% !important;
  }
}
.cid-unoF2jHtpb {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-unoF2jHtpb .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-unoF2jHtpb h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-unoF2jHtpb .space_down_50 {
  margin-bottom: 50px;
}
.cid-unoF2jHtpb .testimonial-text {
  color: #f9ceb2;
}
.cid-unoF2FdSnY {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 30px;
}
.cid-unoF2FdSnY .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-unoF2FdSnY .video-block {
    width: 100% !important;
  }
}
.cid-unoF2FdSnY .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-unoF2TMK1o {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #000000;
}
.cid-unoF2TMK1o .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-unoF2TMK1o .display-5 {
  font-size: 2rem;
  color: white;
}
.cid-unoF2TMK1o .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: 0px;
  margin-left: 8px;
}
.cid-unoF2TMK1o a svg polygon {
  fill: white !important;
}
.cid-unoF2TMK1o a:hover {
  Color: #F9CEB2!important;
}
.cid-unoF2TMK1o a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-unoF2TMK1o .btn-white-outline:hover,
.cid-unoF2TMK1o .btn-white-outline:focus,
.cid-unoF2TMK1o .btn-white-outline.focus,
.cid-unoF2TMK1o .btn-white-outline.active,
.cid-unoF2TMK1o .btn-black-outline:hover,
.cid-unoF2TMK1o .btn-black-outline:focus,
.cid-unoF2TMK1o .btn-black-outline.focus,
.cid-unoF2TMK1o .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-unoF2TMK1o .display-5 {
    line-height: 1;
  }
  .cid-unoF2TMK1o .btn {
    font-size: 1.5rem !important;
  }
  .cid-unoF2TMK1o .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
}
.cid-unoF3yJuvx {
  background: #ffffff;
}
.cid-unoF3yJuvx .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-unoF3yJuvx figcaption {
  position: relative;
}
.cid-unoF3yJuvx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-unoF3yJuvx .image-block {
    width: 100% !important;
  }
}
.cid-unoF42AChH {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-7-1500x302.jpg");
}
.cid-unoF42AChH H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-unoF42AChH .mbr-section-subtitle {
  color: #000000;
}
.cid-unoF42AChH section {
  background-color: none;
}
.cid-unoF42AChH .logo_footer {
  position: relative;
  right: 100px;
}
.cid-unoF4mWygM {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-10-1500x622.jpg");
}
.cid-unoF4mWygM H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-unoF4mWygM .mbr-section-subtitle {
  color: #ffffff;
}
.cid-unoF4mWygM span {
  visibility: hidden;
}
.cid-unoF4mWygM .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-unoF4mWygM span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-unoF530xAJ {
  background: #ffffff;
}
.cid-unoF530xAJ .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-unoF530xAJ figcaption {
  position: relative;
}
.cid-unoF530xAJ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-unoF530xAJ .image-block {
    width: 300% !important;
  }
}
.cid-unoF5j2wTl {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/flaeche3190s-newsletter-930x931.jpg");
}
.cid-unoF5j2wTl .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #ffffff;
  text-align: left;
}
.cid-unoF5j2wTl .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-unoF5j2wTl .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-unoF5j2wTl .mbr-figure,
  .cid-unoF5j2wTl img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-unoF5j2wTl .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-unoF5j2wTl .mbr-author-desc {
  color: #000000;
}
.cid-unoF5j2wTl h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-unoF5j2wTl .text_block {
  margin-top: 0px;
}
.cid-unoF5j2wTl .h2_block {
  margin-bottom: 20px;
}
.cid-unoF5j2wTl .mbr-figure {
  align-self: flex-start;
}
.cid-unoF5j2wTl .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-unoF5j2wTl .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-unoF5j2wTl .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-unoF5j2wTl a svg polygon {
  fill: white !important;
}
.cid-unoF5j2wTl a:hover {
  Color: #F9CEB2!important;
}
.cid-unoF5j2wTl a:hover svg polygon {
  fill: #F9CEB2 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-unoF5j2wTl .btn-white-outline:hover,
.cid-unoF5j2wTl .btn-white-outline:focus,
.cid-unoF5j2wTl .btn-white-outline.focus,
.cid-unoF5j2wTl .btn-white-outline.active,
.cid-unoF5j2wTl .btn-black-outline:hover,
.cid-unoF5j2wTl .btn-black-outline:focus,
.cid-unoF5j2wTl .btn-black-outline.focus,
.cid-unoF5j2wTl .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-unoF5j2wTl .display-5 {
    line-height: 1;
  }
  .cid-unoF5j2wTl .btn {
    font-size: 1.5rem !important;
  }
  .cid-unoF5j2wTl .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-unoF5j2wTl .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-unoF5EjRnt {
  background: #ffffff;
}
.cid-unoF5EjRnt .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-unoF5EjRnt figcaption {
  position: relative;
}
.cid-unoF5EjRnt figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-unoF5EjRnt .image-block {
    width: 300% !important;
  }
}
.cid-unoF5WGxGy {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #000000;
}
.cid-unoF5WGxGy .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-unoF5WGxGy h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-unoF5WGxGy .space_down_50 {
  margin-bottom: 50px;
}
.cid-unoF5WGxGy .testimonial-text {
  color: #f9ceb2;
}
.cid-unoF6b27Uo {
  background: #000000;
  padding-top: 0px;
  padding-bottom: 30px;
}
.cid-unoF6b27Uo .video-block {
  margin: 10px auto 10px auto;
}
@media (max-width: 768px) {
  .cid-unoF6b27Uo .video-block {
    width: 100% !important;
  }
}
.cid-unoF6b27Uo .video-block:hover {
  outline: 8px solid #F9CEB2;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-unoF6qXdrf {
  padding-top: 60px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/asche-5-1500x490.jpg");
}
.cid-unoF6qXdrf H2 {
  color: #ffffff;
  line-height: 1.2;
}
.cid-unoF6qXdrf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-unoF6qXdrf span {
  visibility: hidden;
}
.cid-unoF6qXdrf .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-unoF6qXdrf span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-unoF6V0xKe {
  background: #f9ceb2;
}
.cid-unoF6V0xKe .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-unoF6V0xKe figcaption {
  position: relative;
}
.cid-unoF6V0xKe figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-unoF6V0xKe .image-block {
    width: 300% !important;
  }
}
.cid-unoF7ayU4m {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #f9ceb2;
}
.cid-unoF7ayU4m P {
  color: #767676;
}
.cid-unoF7ayU4m .display-2 {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .cid-unoF7ayU4m .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-unoF7Dkc8H {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.cid-unoF7Dkc8H .testimonial-text {
  font-style: normal;
  color: #ffffff;
  font-weight: 300;
}
.cid-unoF7Dkc8H .mbr-author-name {
  font-weight: bold;
  color: #232;
}
.cid-unoF7Dkc8H .mbr-author-desc {
  color: #232;
}
.cid-unoF7Dkc8H .btn {
  font-weight: 700;
  border-width: 0px !important;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: left;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: left;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
  text-align: left;
  padding-left: 0px !important;
  margin-left: 0px;
}
.cid-unoF7Dkc8H .col-md-8 {
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-unoF7Dkc8H .mbr-figure,
  .cid-unoF7Dkc8H img {
    max-height: 190px;
    width: auto;
    margin: auto;
  }
}
.cid-unoF7Dkc8H h1 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-unoF7Dkc8H .text_block {
  margin-top: 0px;
}
.cid-unoF7Dkc8H .h2_block {
  margin-bottom: 20px;
}
.cid-unoF7Dkc8H .mbr-figure {
  align-self: flex-start;
}
.cid-unoF7Dkc8H .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-unoF7Dkc8H .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-unoF7Dkc8H a:hover {
  Color: #a76645 !important;
}
.cid-unoF7Dkc8H a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-unoF7Dkc8H .btn-black-outline:hover,
.cid-unoF7Dkc8H .btn-black-outline:focus,
.cid-unoF7Dkc8H .btn-black-outline.focus,
.cid-unoF7Dkc8H .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-unoF7Dkc8H .display-5 {
    line-height: 1;
  }
  .cid-unoF7Dkc8H .btn {
    font-size: 1.5rem !important;
  }
  .cid-unoF7Dkc8H .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-unoF7Dkc8H .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-unoF7Dkc8H .content {
  padding-left: 3px;
}
.cid-unoF853r2W {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-unoF853r2W h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-unoF853r2W p {
  color: #767676;
  text-align: left;
}
.cid-unoF853r2W .card-box {
  padding-top: 2rem;
}
.cid-unoF853r2W .card-wrapper {
  height: 100%;
}
.cid-unoF8rlLiK {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-14-web-2000x1330.jpg");
}
.cid-unoF8rlLiK H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-unoF8rlLiK .mbr-section-subtitle {
  color: #000000;
}
.cid-unoF8rlLiK span {
  visibility: hidden;
}
.cid-unoF8rlLiK .zitat span {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.cid-unoF8rlLiK span.blick {
  visibility: visible;
  opacity: 1;
}
.cid-unoF8Kr0D6 {
  background: #f9ceb2;
}
.cid-unoF8Kr0D6 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-unoF8Kr0D6 figcaption {
  position: relative;
}
.cid-unoF8Kr0D6 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-unoF8Kr0D6 .image-block {
    width: 300% !important;
  }
}
.cid-unoF9eJkzW {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #000000;
}
.cid-unoF9eJkzW .aktions_section {
  z-index: 99999;
}
.cid-unoF9eJkzW .item:focus,
.cid-unoF9eJkzW span:focus {
  outline: none;
}
.cid-unoF9eJkzW .item {
  padding-bottom: 3rem;
  cursor: pointer;
}
.cid-unoF9eJkzW .item-wrapper {
  position: relative;
  display: block;
  width: 20vw;
}
.cid-unoF9eJkzW .item-btn,
.cid-unoF9eJkzW h4,
.cid-unoF9eJkzW h5 {
  margin: 0;
}
.cid-unoF9eJkzW .item-content {
  padding-top: 1rem;
}
.cid-unoF9eJkzW .item-title {
  color: #ffffff;
}
.cid-unoF9eJkzW .abstand {
  margin-top: -10px;
}
.cid-unoF9eJkzW h5 {
  color: #a76645 !important;
}
.cid-unoF9eJkzW h4 a {
  color: #fff;
  line-height: 1.2;
}
.cid-unoF9eJkzW .item-wrapper:hover .card-img {
  outline: 8px solid #a76645;
  transition: outline 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-unoF9eJkzW .item-wrapper:hover h4 {
  color: #a76645;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-unoF9eJkzW .item-subtitle {
  color: #1d1d1b;
}
.cid-unoF9eJkzW .aktions_jahr {
  font-size: 1rem;
  font-style: italic;
  text-transform: uppercase ;
}
.cid-unoF9eJkzW .doppeltes_jahr {
  color: #F9CEB2 ;
}
.cid-unoF9eJkzW .item-text {
  color: #1d1d1b;
}
.cid-unoF9eJkzW h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #000 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-unoF9eJkzW .space_down_50 {
  margin-bottom: 50px;
}
.cid-unoF9eJkzW item-text {
  color: #1d1d1b;
}
.cid-unoF9eJkzW .hiddden {
  display: none !important;
}
.cid-unoF9eJkzW .shoow {
  display: block !important;
}
.cid-unoF9eJkzW a {
  font-weight: inherit;
  font-style: inherit;
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-unoF9eJkzW a:hover {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-unoF9eJkzW .img-container {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 150%;
  height: 0;
}
.cid-unoF9eJkzW .gradient {
  position: absolute;
  background-image: linear-gradient(to top, white 0%, black 100%);
  width: 100%;
  height: 50%;
  z-index: 2;
  mix-blend-mode: multiply;
}
.cid-unoF9eJkzW .img-container .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: cover;
  background-position: center;
}
.cid-unoF9eJkzW .aktions_logo {
  position: absolute;
  margin: 15px auto;
  width: 90%;
  height: auto;
  z-index: 3;
  padding: 0px 5%;
  left: 5%;
  max-height: 170px;
  min-height: 80px;
}
.cid-unoF9eJkzW .aktions_logo_no_x_margin {
  margin: 15px 0;
  padding: 0px;
  width: 100%;
  left: 0%;
}
.cid-unoF9eJkzW .embla {
  overflow: hidden;
}
.cid-unoF9eJkzW .embla__container {
  display: flex;
  will-change: transform;
}
.cid-unoF9eJkzW .embla__slide {
  position: relative;
  flex: 0 0 auto;
  margin: 10px;
  padding: 10px;
}
.cid-unoF9eJkzW .embla__slide:first-of-type .item-wrapper {
  margin-left: 30px;
}
.cid-unoF9eJkzW .embla__slide:last-of-type .item-wrapper {
  margin-right: 30px;
}
.cid-unoF9eJkzW .container {
  max-width: 100vw !important;
  padding: 0px;
}
.cid-unoF9eJkzW .h2_block {
  padding-left: 38px;
  padding-right: 38px;
}
.cid-unoF9eJkzW .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-unoF9eJkzW .embla__button {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
  width: auto;
  padding: 20px 15px 15px 15px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  bottom: 1rem;
}
.cid-unoF9eJkzW .embla__button--prev {
  left: 30px;
  padding-left: 7px;
}
.cid-unoF9eJkzW .embla__button--prev svg {
  transform: rotate(180deg);
}
.cid-unoF9eJkzW .embla__button--next {
  right: 30px;
  padding-right: 7px;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .cid-unoF9eJkzW .item-content {
    margin-top: 1rem;
  }
  .cid-unoF9eJkzW .item {
    padding-bottom: 1rem;
  }
  .cid-unoF9eJkzW .aktions_logo {
    max-height: 70px;
    min-height: 40px;
  }
  .cid-unoF9eJkzW h4 {
    font-size: 1rem;
    line-height: 1.2;
  }
  .cid-unoF9eJkzW .item-wrapper {
    width: 35vw;
  }
  .cid-unoF9eJkzW .embla__slide {
    padding: 0px;
  }
  .cid-unoF9eJkzW .embla__button--prev {
    left: 0px;
    padding-left: 7px;
  }
  .cid-unoF9eJkzW .embla__button--next {
    right: 0px;
    padding-right: 17px;
  }
  .cid-unoF9eJkzW .embla__slide:first-of-type {
    padding-left: 10px;
  }
  .cid-unoF9eJkzW .embla__button {
    bottom: -0.5rem;
  }
}
.cid-unoF9yVBmy {
  background: #ffffff;
}
.cid-unoF9yVBmy .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-unoF9yVBmy figcaption {
  position: relative;
}
.cid-unoF9yVBmy figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-unoF9yVBmy .image-block {
    width: 100% !important;
  }
}
.cid-unoF9OrfXX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/asche-14-1500x622.jpg");
}
.cid-unoF9OrfXX P {
  color: #767676;
}
.cid-unoF9OrfXX .display-2 {
  font-size: 3rem;
  font-weight: 300;
}
.cid-unoF9OrfXX h2 {
  font-size: 6vw !important;
  font-weight: bold !important;
  text-align: center;
  line-height: 0.9em;
  color: white;
}
.cid-unoF9OrfXX .animation_center {
  padding: 5vh 0px;
}
.cid-unoF9OrfXX .banner {
  width: 100%;
  height: auto;
}
.cid-unoF9OrfXX .black {
  background-color: #fff !important;
}
.cid-unoF9OrfXX .AniContainer {
  padding: 5em 0em;
}
.cid-unoF9OrfXX span {
  visibility: hidden;
}
.cid-unoF9OrfXX span.blick {
  visibility: visible;
}
@media (max-width: 768px) {
  .cid-unoF9OrfXX .display-2 {
    font-size: 1.5rem;
    line-height: 1.8rem;
  }
}
.cid-unoF9OrfXX .mbr-text,
.cid-unoF9OrfXX .mbr-section-btn {
  color: #ffffff;
}
.cid-unoFa95k4O {
  background: #f9ceb2;
}
.cid-unoFa95k4O .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-unoFa95k4O figcaption {
  position: relative;
}
.cid-unoFa95k4O figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-unoFa95k4O .image-block {
    width: 300% !important;
  }
}
.cid-unoFamKgF4 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-unoFamKgF4 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #1d1d1b;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-unoFamKgF4 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-unoFamKgF4 p {
  color: #767676;
  text-align: left;
}
.cid-unoFamKgF4 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-unoFamKgF4 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-unoFamKgF4 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-unoFamKgF4 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-unoFamKgF4 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-unoFamKgF4 .notched-box:before,
.cid-unoFamKgF4 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #F9CEB2;
  box-sizing: border-box;
}
.cid-unoFamKgF4 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-unoFamKgF4 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-unoFamKgF4 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #1D1D1B;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-unoFamKgF4 .border:before,
.cid-unoFamKgF4 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #1D1D1B;
  box-sizing: border-box;
}
.cid-unoFamKgF4 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-unoFamKgF4 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-unoFamKgF4 .mbr-author-name {
  padding-left: 40px;
}
.cid-unoFamKgF4 P {
  color: #000000;
  line-height: 1.3;
}
.cid-unoFamKgF4 .card-box_notch_black {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-unoFaCBkjF {
  background: #f9ceb2;
}
.cid-unoFaCBkjF .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-unoFaCBkjF figcaption {
  position: relative;
}
.cid-unoFaCBkjF figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-unoFaCBkjF .image-block {
    width: 300% !important;
  }
}
.cid-unoFb2qeAj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9ceb2;
}
.cid-unoFb2qeAj .mbr-section-subtitle {
  color: #1d1d1b;
  text-align: left;
}
.cid-unoFb2qeAj h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #f9ceb2 !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-unoFb2qeAj .space_down_30 {
  margin-bottom: 30px;
}
.cid-unoFb2qeAj .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-unoFb2qeAj .testimonial-text {
  color: #f9ceb2;
}
.cid-unoFbnzml5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/asche-4-1500x1695.jpg");
}
.cid-unoFbnzml5 .card-box {
  background-color: rgba(0, 0, 0, 0) !important;
  padding: 1.5rem;
  border: 8px solid #fff;
  border-bottom: 0px;
  padding-bottom: 1rem;
}
.cid-unoFbnzml5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-unoFbnzml5 p {
  color: #767676;
  text-align: left;
}
.cid-unoFbnzml5 .card-wrapper {
  position: relative;
  box-shadow: none !important;
  transition: box-shadow 0.3s;
}
.cid-unoFbnzml5 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-unoFbnzml5 .card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.cid-unoFbnzml5 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-unoFbnzml5 .notched-box {
  position: relative;
  width: 100%;
  padding: 1em 0;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-unoFbnzml5 .notched-box:before,
.cid-unoFbnzml5 .notched-box:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -1px;
  height: 0;
  width: 25%;
  border-bottom: 1.6em solid #000;
  box-sizing: border-box;
}
.cid-unoFbnzml5 .notched-box:before {
  left: 2;
  border-right: 2em solid transparent;
}
.cid-unoFbnzml5 .notched-box:after {
  right: 0;
  border-left: 2em solid transparent;
  width: 85%;
}
.cid-unoFbnzml5 .border {
  position: absolute;
  z-index: 0;
  bottom: 8px;
  left: -1px;
  width: 101%;
  height: 11px;
  background: #fff;
  box-sizing: border-box;
  border: 0px !important;
}
.cid-unoFbnzml5 .border:before,
.cid-unoFbnzml5 .border:after {
  content: '';
  position: absolute;
  bottom: 100%;
  width: calc(23%);
  border-bottom: 1.5em solid #fff;
  box-sizing: border-box;
}
.cid-unoFbnzml5 .border:after {
  width: calc(83%);
  right: 0;
  border-left: 2em solid transparent;
}
.cid-unoFbnzml5 .border:before {
  left: 0;
  border-right: 2em solid transparent;
}
.cid-unoFbnzml5 .mbr-author-name {
  padding-left: 40px;
}
.cid-unoFbnzml5 P {
  color: #ffffff;
}
.cid-unoFbnzml5 .card-box_notch_white {
  position: relative;
  left: 0px;
  width: 100%;
  height: auto;
  margin: -9px;
}
.cid-tFQ8wKqDIE {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-tFQ8wKqDIE .content {
    text-align: center;
  }
  .cid-tFQ8wKqDIE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tFQ8wKqDIE .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-tFQ8wKqDIE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tFQ8wKqDIE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tFQ8wKqDIE .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tFQ8wKqDIE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tFQ8wKqDIE .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tFQ8wKqDIE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tFQ8wKqDIE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tFQ8wKqDIE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tFQ8wKqDIE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tFQ8wKqDIE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tFQ8wKqDIE .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tFQ8wKqDIE H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-tFQ8wKqDIE P {
  color: #ffffff;
}
.cid-tFQ8wKqDIE .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-tFQ8wKqDIE .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-tFQ8wKqDIE .logo_footer {
  position: relative;
}
.cid-tFQ8wKqDIE .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-tFQ8wKqDIE .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-tFQ8wKqDIE .col,
  .cid-tFQ8wKqDIE .col-1,
  .cid-tFQ8wKqDIE .col-10,
  .cid-tFQ8wKqDIE .col-11,
  .cid-tFQ8wKqDIE .col-12,
  .cid-tFQ8wKqDIE .col-2,
  .cid-tFQ8wKqDIE .col-3,
  .cid-tFQ8wKqDIE .col-4,
  .cid-tFQ8wKqDIE .col-5,
  .cid-tFQ8wKqDIE .col-6,
  .cid-tFQ8wKqDIE .col-7,
  .cid-tFQ8wKqDIE .col-8,
  .cid-tFQ8wKqDIE .col-9,
  .cid-tFQ8wKqDIE .col-auto,
  .cid-tFQ8wKqDIE .col-lg,
  .cid-tFQ8wKqDIE .col-lg-1,
  .cid-tFQ8wKqDIE .col-lg-10,
  .cid-tFQ8wKqDIE .col-lg-11,
  .cid-tFQ8wKqDIE .col-lg-12,
  .cid-tFQ8wKqDIE .col-lg-2,
  .cid-tFQ8wKqDIE .col-lg-3,
  .cid-tFQ8wKqDIE .col-lg-4,
  .cid-tFQ8wKqDIE .col-lg-5,
  .cid-tFQ8wKqDIE .col-lg-6,
  .cid-tFQ8wKqDIE .col-lg-7,
  .cid-tFQ8wKqDIE .col-lg-8,
  .cid-tFQ8wKqDIE .col-lg-9,
  .cid-tFQ8wKqDIE .col-lg-auto,
  .cid-tFQ8wKqDIE .col-md,
  .cid-tFQ8wKqDIE .col-md-1,
  .cid-tFQ8wKqDIE .col-md-10,
  .cid-tFQ8wKqDIE .col-md-11,
  .cid-tFQ8wKqDIE .col-md-12,
  .cid-tFQ8wKqDIE .col-md-2,
  .cid-tFQ8wKqDIE .col-md-3,
  .cid-tFQ8wKqDIE .col-md-4,
  .cid-tFQ8wKqDIE .col-md-5,
  .cid-tFQ8wKqDIE .col-md-6,
  .cid-tFQ8wKqDIE .col-md-7,
  .cid-tFQ8wKqDIE .col-md-8,
  .cid-tFQ8wKqDIE .col-md-9,
  .cid-tFQ8wKqDIE .col-md-auto,
  .cid-tFQ8wKqDIE .col-sm,
  .cid-tFQ8wKqDIE .col-sm-1,
  .cid-tFQ8wKqDIE .col-sm-10,
  .cid-tFQ8wKqDIE .col-sm-11,
  .cid-tFQ8wKqDIE .col-sm-12,
  .cid-tFQ8wKqDIE .col-sm-2,
  .cid-tFQ8wKqDIE .col-sm-3,
  .cid-tFQ8wKqDIE .col-sm-4,
  .cid-tFQ8wKqDIE .col-sm-5,
  .cid-tFQ8wKqDIE .col-sm-6,
  .cid-tFQ8wKqDIE .col-sm-7,
  .cid-tFQ8wKqDIE .col-sm-8,
  .cid-tFQ8wKqDIE .col-sm-9,
  .cid-tFQ8wKqDIE .col-sm-auto,
  .cid-tFQ8wKqDIE .col-xl,
  .cid-tFQ8wKqDIE .col-xl-1,
  .cid-tFQ8wKqDIE .col-xl-10,
  .cid-tFQ8wKqDIE .col-xl-11,
  .cid-tFQ8wKqDIE .col-xl-12,
  .cid-tFQ8wKqDIE .col-xl-2,
  .cid-tFQ8wKqDIE .col-xl-3,
  .cid-tFQ8wKqDIE .col-xl-4,
  .cid-tFQ8wKqDIE .col-xl-5,
  .cid-tFQ8wKqDIE .col-xl-6,
  .cid-tFQ8wKqDIE .col-xl-7,
  .cid-tFQ8wKqDIE .col-xl-8,
  .cid-tFQ8wKqDIE .col-xl-9,
  .cid-tFQ8wKqDIE .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-tFQ8wKqDIE .content {
    text-align: left;
  }
  .cid-tFQ8wKqDIE .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-tFQ8wKqDIE .logo_footer_box {
    position: relative;
  }
  .cid-tFQ8wKqDIE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-tFQ8wKqDIE .logo_footer {
    position: relative;
  }
  .cid-tFQ8wKqDIE .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-tFQ8wKqDIE .copyright > p {
  color: #f9ceb2;
}
.cid-unoKEEUfDY :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-unoKEEUfDY .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-unoKEEUfDY .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-unoKEEUfDY a {
  font-style: normal;
}
.cid-unoKEEUfDY .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-unoKEEUfDY .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-unoKEEUfDY .nav-item:focus,
.cid-unoKEEUfDY .nav-link:focus {
  outline: none;
}
.cid-unoKEEUfDY .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-unoKEEUfDY .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-unoKEEUfDY .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-unoKEEUfDY .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-unoKEEUfDY .menu-logo {
  margin-right: auto;
}
.cid-unoKEEUfDY .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-unoKEEUfDY .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-unoKEEUfDY .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-unoKEEUfDY .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-unoKEEUfDY .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-unoKEEUfDY .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-unoKEEUfDY .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-unoKEEUfDY .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-unoKEEUfDY .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-unoKEEUfDY .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-unoKEEUfDY .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-unoKEEUfDY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-unoKEEUfDY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unoKEEUfDY .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-unoKEEUfDY .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unoKEEUfDY .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-unoKEEUfDY .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-unoKEEUfDY .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-unoKEEUfDY .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-unoKEEUfDY .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-unoKEEUfDY .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-unoKEEUfDY .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-unoKEEUfDY .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-unoKEEUfDY button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-unoKEEUfDY button.navbar-toggler:focus {
  outline: none;
}
.cid-unoKEEUfDY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-unoKEEUfDY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-unoKEEUfDY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-unoKEEUfDY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-unoKEEUfDY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-unoKEEUfDY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unoKEEUfDY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-unoKEEUfDY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-unoKEEUfDY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-unoKEEUfDY .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-unoKEEUfDY .collapsed .btn {
  display: flex;
}
.cid-unoKEEUfDY .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-unoKEEUfDY .collapsed .navbar-collapse.collapsing,
.cid-unoKEEUfDY .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-unoKEEUfDY .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-unoKEEUfDY .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-unoKEEUfDY .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-unoKEEUfDY .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-unoKEEUfDY .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-unoKEEUfDY .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-unoKEEUfDY .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-unoKEEUfDY .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-unoKEEUfDY .collapsed button.navbar-toggler {
  display: block;
}
.cid-unoKEEUfDY .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-unoKEEUfDY .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-unoKEEUfDY .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-unoKEEUfDY .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-unoKEEUfDY .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-unoKEEUfDY .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-unoKEEUfDY .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-unoKEEUfDY .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-unoKEEUfDY .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-unoKEEUfDY .navbar-expand {
    flex-direction: column;
  }
  .cid-unoKEEUfDY img {
    height: 3rem !important;
  }
  .cid-unoKEEUfDY .btn {
    display: flex;
  }
  .cid-unoKEEUfDY button.navbar-toggler {
    display: block;
  }
  .cid-unoKEEUfDY .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-unoKEEUfDY .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-unoKEEUfDY .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-unoKEEUfDY .navbar-collapse.collapsing,
  .cid-unoKEEUfDY .navbar-collapse.show {
    display: block !important;
  }
  .cid-unoKEEUfDY .navbar-collapse.collapsing .navbar-nav,
  .cid-unoKEEUfDY .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-unoKEEUfDY .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-unoKEEUfDY .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-unoKEEUfDY .navbar-collapse.collapsing .navbar-buttons,
  .cid-unoKEEUfDY .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-unoKEEUfDY .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-unoKEEUfDY .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-unoKEEUfDY .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-unoKEEUfDY .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-unoKEEUfDY .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-unoKEEUfDY .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-unoKEEUfDY .logo_s,
  .cid-unoKEEUfDY .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-unoKEEUfDY .menu-logo {
    flex-shrink: 3;
  }
}
.cid-unoKEEUfDY .navbar-collapse {
  flex-basis: auto;
}
.cid-unoKEEUfDY .nav-link:hover,
.cid-unoKEEUfDY .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-unoKEEUfDY .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-unoKEEUfDY .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-unoKEEUfDY .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-unoKEEUfDY .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-unoKEEUfDY .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-unoKEEUfDY a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-unoKEEUfDY a:hover svg polygon,
.cid-unoKEEUfDY a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-unoKEEUfDY .hidden {
  display: none !important;
}
.cid-unoKEEUfDY .shoow {
  display: block !important;
}
.cid-unoKEEUfDY .navbar-logo a,
.cid-unoKEEUfDY .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-unoKEEUfDY .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-unoKEEUfDY .logo_s {
    height: 2rem !important;
  }
  .cid-unoKEEUfDY .navbar-logo a img {
    left: 20px;
  }
  .cid-unoKEEUfDY .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-unoKEEUfDY .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-unoKEEUfDY .stoerer_head,
  .cid-unoKEEUfDY .stoerer_text {
    grid-row: 1;
  }
  .cid-unoKEEUfDY .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-unoKEEUfDY a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-unoKEFCetX {
  padding-top: 90px;
  background-image: url("../../../assets/images/header-2-1500x205.png");
}
@media (max-width: 768px) {
  .cid-unoKEFCetX {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-unoQb1SBCw {
  background-image: url("../../../assets/images/flugblttr-ausschnitt-2000x1125.jpg");
}
.cid-unoQb1SBCw P {
  color: #767676;
}
.cid-uqH5415m3A {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uqH5415m3A .btn {
  font-weight: 700;
  border-width: 0px;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0px;
  font-style: italic;
  text-transform: uppercase;
}
.cid-uqH5415m3A h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #1d1d1b;
  color: #fff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uqH5415m3A .space_down_50 {
  margin-bottom: 50px;
}
.cid-uqH7COuSnZ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uqH7COuSnZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-uqH7COuSnZ h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uqH7COuSnZ .space_down_50 {
  margin-bottom: 50px;
}
.cid-uqH7COuSnZ .mbr-section-subtitle P {
  color: #1d1d1b;
}
.cid-unoKEGrVAW {
  padding-top: 0px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-unoKEGrVAW .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-unoKEGrVAW h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #fff;
  color: #1d1d1b !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-unoKEGrVAW .space_down_50 {
  margin-bottom: 50px;
}
.cid-unoKEGrVAW .mbr-section-subtitle P {
  color: #1d1d1b;
  text-align: left;
}
.cid-unoKEMJ9Sg {
  background: #ffffff;
}
.cid-unoKEMJ9Sg .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-unoKEMJ9Sg figcaption {
  position: relative;
}
.cid-unoKEMJ9Sg figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-unoKEMJ9Sg .image-block {
    width: 300% !important;
  }
}
.cid-unoKEN07tO {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #f9ceb2;
}
.cid-unoKEN07tO .testimonial-text {
  font-style: normal;
  font-weight: 300;
  color: #000000;
  text-align: left;
}
.cid-unoKEN07tO .mbr-author-name {
  font-weight: bold;
  color: #000000;
}
.cid-unoKEN07tO .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-unoKEN07tO .mbr-figure,
  .cid-unoKEN07tO img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-unoKEN07tO .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-unoKEN07tO .mbr-author-desc {
  color: #000000;
}
.cid-unoKEN07tO h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-unoKEN07tO .text_block {
  margin-top: 0px;
}
.cid-unoKEN07tO .h2_block {
  margin-bottom: 20px;
}
.cid-unoKEN07tO .mbr-figure {
  align-self: flex-start;
}
.cid-unoKEN07tO .display-5 {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
}
.cid-unoKEN07tO .pfeil_button {
  height: 20px;
  display: inline-block;
  margin-top: -5px;
  margin-left: 8px;
}
.cid-unoKEN07tO .btn {
  text-align: left;
  border-width: 0px !important;
  padding-left: 0px !important;
  margin-left: 0px;
  display: inline-block;
  text-transform: uppercase;
  justify-content: left;
  -webkit-justify-content: left;
}
.cid-unoKEN07tO a:hover {
  Color: #a76645 !important;
}
.cid-unoKEN07tO a:hover svg polygon {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-unoKEN07tO .btn-black-outline:hover,
.cid-unoKEN07tO .btn-black-outline:focus,
.cid-unoKEN07tO .btn-black-outline.focus,
.cid-unoKEN07tO .btn-black-outline.active {
  background-color: rgba(0, 0, 0, 0) !important;
}
@media (max-width: 768px) {
  .cid-unoKEN07tO .display-5 {
    line-height: 1;
  }
  .cid-unoKEN07tO .btn {
    font-size: 1.5rem !important;
  }
  .cid-unoKEN07tO .pfeil_button {
    height: 16px;
    margin-top: -4px;
  }
  .cid-unoKEN07tO .komplize_kopf_gros img {
    max-height: none;
    height: 230px;
  }
}
.cid-unoKENpBi1 {
  background: #ffffff;
}
.cid-unoKENpBi1 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-unoKENpBi1 figcaption {
  position: relative;
}
.cid-unoKENpBi1 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-unoKENpBi1 .image-block {
    width: 300% !important;
  }
}
.cid-unoKENXmHz {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-unoKENXmHz .content {
    text-align: center;
  }
  .cid-unoKENXmHz .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-unoKENXmHz .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-unoKENXmHz .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-unoKENXmHz .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-unoKENXmHz .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-unoKENXmHz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-unoKENXmHz .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-unoKENXmHz .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-unoKENXmHz .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-unoKENXmHz .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-unoKENXmHz .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-unoKENXmHz .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-unoKENXmHz .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-unoKENXmHz H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-unoKENXmHz P {
  color: #ffffff;
}
.cid-unoKENXmHz .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-unoKENXmHz .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-unoKENXmHz .logo_footer {
  position: relative;
}
.cid-unoKENXmHz .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-unoKENXmHz .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-unoKENXmHz .col,
  .cid-unoKENXmHz .col-1,
  .cid-unoKENXmHz .col-10,
  .cid-unoKENXmHz .col-11,
  .cid-unoKENXmHz .col-12,
  .cid-unoKENXmHz .col-2,
  .cid-unoKENXmHz .col-3,
  .cid-unoKENXmHz .col-4,
  .cid-unoKENXmHz .col-5,
  .cid-unoKENXmHz .col-6,
  .cid-unoKENXmHz .col-7,
  .cid-unoKENXmHz .col-8,
  .cid-unoKENXmHz .col-9,
  .cid-unoKENXmHz .col-auto,
  .cid-unoKENXmHz .col-lg,
  .cid-unoKENXmHz .col-lg-1,
  .cid-unoKENXmHz .col-lg-10,
  .cid-unoKENXmHz .col-lg-11,
  .cid-unoKENXmHz .col-lg-12,
  .cid-unoKENXmHz .col-lg-2,
  .cid-unoKENXmHz .col-lg-3,
  .cid-unoKENXmHz .col-lg-4,
  .cid-unoKENXmHz .col-lg-5,
  .cid-unoKENXmHz .col-lg-6,
  .cid-unoKENXmHz .col-lg-7,
  .cid-unoKENXmHz .col-lg-8,
  .cid-unoKENXmHz .col-lg-9,
  .cid-unoKENXmHz .col-lg-auto,
  .cid-unoKENXmHz .col-md,
  .cid-unoKENXmHz .col-md-1,
  .cid-unoKENXmHz .col-md-10,
  .cid-unoKENXmHz .col-md-11,
  .cid-unoKENXmHz .col-md-12,
  .cid-unoKENXmHz .col-md-2,
  .cid-unoKENXmHz .col-md-3,
  .cid-unoKENXmHz .col-md-4,
  .cid-unoKENXmHz .col-md-5,
  .cid-unoKENXmHz .col-md-6,
  .cid-unoKENXmHz .col-md-7,
  .cid-unoKENXmHz .col-md-8,
  .cid-unoKENXmHz .col-md-9,
  .cid-unoKENXmHz .col-md-auto,
  .cid-unoKENXmHz .col-sm,
  .cid-unoKENXmHz .col-sm-1,
  .cid-unoKENXmHz .col-sm-10,
  .cid-unoKENXmHz .col-sm-11,
  .cid-unoKENXmHz .col-sm-12,
  .cid-unoKENXmHz .col-sm-2,
  .cid-unoKENXmHz .col-sm-3,
  .cid-unoKENXmHz .col-sm-4,
  .cid-unoKENXmHz .col-sm-5,
  .cid-unoKENXmHz .col-sm-6,
  .cid-unoKENXmHz .col-sm-7,
  .cid-unoKENXmHz .col-sm-8,
  .cid-unoKENXmHz .col-sm-9,
  .cid-unoKENXmHz .col-sm-auto,
  .cid-unoKENXmHz .col-xl,
  .cid-unoKENXmHz .col-xl-1,
  .cid-unoKENXmHz .col-xl-10,
  .cid-unoKENXmHz .col-xl-11,
  .cid-unoKENXmHz .col-xl-12,
  .cid-unoKENXmHz .col-xl-2,
  .cid-unoKENXmHz .col-xl-3,
  .cid-unoKENXmHz .col-xl-4,
  .cid-unoKENXmHz .col-xl-5,
  .cid-unoKENXmHz .col-xl-6,
  .cid-unoKENXmHz .col-xl-7,
  .cid-unoKENXmHz .col-xl-8,
  .cid-unoKENXmHz .col-xl-9,
  .cid-unoKENXmHz .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-unoKENXmHz .content {
    text-align: left;
  }
  .cid-unoKENXmHz .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-unoKENXmHz .logo_footer_box {
    position: relative;
  }
  .cid-unoKENXmHz .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-unoKENXmHz .logo_footer {
    position: relative;
  }
  .cid-unoKENXmHz .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-unoKENXmHz .copyright > p {
  color: #f9ceb2;
}
.cid-uqIOAZXPAo :root {
  --skin_6: #26120a;
  --skin_5: #3c1c11;
  --skin_4: #6e2c12;
  --skin_3: #753a11;
  --skin_2: #a96847;
  --skin_1: #fac39b;
}
.cid-uqIOAZXPAo .navbar {
  padding: .8rem 0 0.8rem 0;
  background: #000000;
  transition: none;
  min-height: 77px;
}
.cid-uqIOAZXPAo .navbar-dropdown.bg-color.transparent.opened {
  background: #000000;
}
.cid-uqIOAZXPAo a {
  font-style: normal;
}
.cid-uqIOAZXPAo .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uqIOAZXPAo .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 0.2rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-uqIOAZXPAo .nav-item:focus,
.cid-uqIOAZXPAo .nav-link:focus {
  outline: none;
}
.cid-uqIOAZXPAo .nav_buttom a {
  color: #f9ceb2 !important;
}
.cid-uqIOAZXPAo .nav_buttom a:hover {
  color: #a76645 !important;
}
.cid-uqIOAZXPAo .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-uqIOAZXPAo .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uqIOAZXPAo .menu-logo {
  margin-right: auto;
}
.cid-uqIOAZXPAo .menu-logo .navbar-brand {
  display: flex;
  margin-left: 100px;
  margin-top: 0px;
  min-width: 130px;
  padding: 0;
  transition: padding .2s;
  min-height: 3rem;
  align-items: center;
}
.cid-uqIOAZXPAo .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uqIOAZXPAo .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uqIOAZXPAo .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uqIOAZXPAo .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uqIOAZXPAo .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uqIOAZXPAo .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uqIOAZXPAo .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
  max-width: 70%;
  justify-content: right;
}
.cid-uqIOAZXPAo .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uqIOAZXPAo .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uqIOAZXPAo .dropdown .dropdown-menu {
  background: #000000;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uqIOAZXPAo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uqIOAZXPAo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqIOAZXPAo .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uqIOAZXPAo .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqIOAZXPAo .navbar-dropdown .navbar-logo img {
  height: 3rem;
  transition: none;
}
.cid-uqIOAZXPAo .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.3);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: -1;
}
.cid-uqIOAZXPAo .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uqIOAZXPAo .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uqIOAZXPAo .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uqIOAZXPAo .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uqIOAZXPAo .navbar.navbar-short .navbar-logo a img {
  height: 2rem !important;
}
.cid-uqIOAZXPAo .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uqIOAZXPAo button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uqIOAZXPAo button.navbar-toggler:focus {
  outline: none;
}
.cid-uqIOAZXPAo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uqIOAZXPAo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uqIOAZXPAo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uqIOAZXPAo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uqIOAZXPAo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uqIOAZXPAo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uqIOAZXPAo nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uqIOAZXPAo nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uqIOAZXPAo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uqIOAZXPAo .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-uqIOAZXPAo .collapsed .btn {
  display: flex;
}
.cid-uqIOAZXPAo .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uqIOAZXPAo .collapsed .navbar-collapse.collapsing,
.cid-uqIOAZXPAo .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uqIOAZXPAo .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uqIOAZXPAo .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uqIOAZXPAo .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uqIOAZXPAo .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uqIOAZXPAo .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uqIOAZXPAo .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: reight;
}
.cid-uqIOAZXPAo .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uqIOAZXPAo .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-uqIOAZXPAo .collapsed button.navbar-toggler {
  display: block;
}
.cid-uqIOAZXPAo .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uqIOAZXPAo .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uqIOAZXPAo .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-uqIOAZXPAo .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uqIOAZXPAo .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uqIOAZXPAo .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-uqIOAZXPAo .logo_s {
  height: 3rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
.cid-uqIOAZXPAo .logo_w {
  height: 2rem !important;
  position: absolute;
  top: 20px;
  left: 100px;
}
@media (max-width: 991px) {
  .cid-uqIOAZXPAo .nav-item {
    width: 100vw;
    overflow: hidden;
  }
  .cid-uqIOAZXPAo .navbar-expand {
    flex-direction: column;
  }
  .cid-uqIOAZXPAo img {
    height: 3rem !important;
  }
  .cid-uqIOAZXPAo .btn {
    display: flex;
  }
  .cid-uqIOAZXPAo button.navbar-toggler {
    display: block;
  }
  .cid-uqIOAZXPAo .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uqIOAZXPAo .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uqIOAZXPAo .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uqIOAZXPAo .navbar-collapse.collapsing,
  .cid-uqIOAZXPAo .navbar-collapse.show {
    display: block !important;
  }
  .cid-uqIOAZXPAo .navbar-collapse.collapsing .navbar-nav,
  .cid-uqIOAZXPAo .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uqIOAZXPAo .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uqIOAZXPAo .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uqIOAZXPAo .navbar-collapse.collapsing .navbar-buttons,
  .cid-uqIOAZXPAo .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uqIOAZXPAo .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uqIOAZXPAo .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uqIOAZXPAo .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-uqIOAZXPAo .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uqIOAZXPAo .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uqIOAZXPAo .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
  .cid-uqIOAZXPAo .logo_s,
  .cid-uqIOAZXPAo .logo_w {
    left: 20px;
  }
}
@media (min-width: 767px) {
  .cid-uqIOAZXPAo .menu-logo {
    flex-shrink: 3;
  }
}
.cid-uqIOAZXPAo .navbar-collapse {
  flex-basis: auto;
}
.cid-uqIOAZXPAo .nav-link:hover,
.cid-uqIOAZXPAo .dropdown-item:hover {
  color: #f9ceb2 !important;
}
.cid-uqIOAZXPAo .stoerer-pos {
  background: #fff;
  position: fixed;
  right: 0px;
  top: 40vh;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.3);
}
.cid-uqIOAZXPAo .stoerer {
  border-radius: 0px !important;
  margin: 0px;
  display: grid;
  padding-left: 0.4rem;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(30px, auto));
}
.cid-uqIOAZXPAo .stoerer_head {
  grid-row: 1;
  width: 7vw;
  height: auto;
  max-width: 250px;
  float: left;
  margin: 15px 10px 0px 10px;
  padding-left: 13px;
}
.cid-uqIOAZXPAo .stoerer_text {
  grid-row: 2;
  color: #1d1d1b;
  text-transform: uppercase !important;
  text-align: left;
  padding: 15px !important;
  line-height: 1.15;
}
.cid-uqIOAZXPAo .pfeil_menu {
  height: 11px;
  display: inline-block;
  margin-top: -2px;
  margin-left: -1px;
}
.cid-uqIOAZXPAo a:hover p {
  Color: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uqIOAZXPAo a:hover svg polygon,
.cid-uqIOAZXPAo a:hover svg path {
  fill: #a76645 !important;
  transition: fill 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.cid-uqIOAZXPAo .hidden {
  display: none !important;
}
.cid-uqIOAZXPAo .shoow {
  display: block !important;
}
.cid-uqIOAZXPAo .navbar-logo a,
.cid-uqIOAZXPAo .nav-item a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
.cid-uqIOAZXPAo .display-4 {
  font-family: 'Chivo', sans-serif;
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cid-uqIOAZXPAo .logo_s {
    height: 2rem !important;
  }
  .cid-uqIOAZXPAo .navbar-logo a img {
    left: 20px;
  }
  .cid-uqIOAZXPAo .stoerer-pos {
    top: inherit;
    width: 100%;
    z-index: 99999;
    margin-top: 8px;
  }
  .cid-uqIOAZXPAo .stoerer {
    padding: 0.4rem;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
  .cid-uqIOAZXPAo .stoerer_head,
  .cid-uqIOAZXPAo .stoerer_text {
    grid-row: 1;
  }
  .cid-uqIOAZXPAo .stoerer_head {
    width: 19vw;
    margin-bottom: 15px;
  }
  .cid-uqIOAZXPAo a p {
    margin-bottom: 0rem;
    font-size: 1rem !important;
  }
}
.cid-uqIOB0qLCo {
  padding-top: 90px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/header-3-1500x205.png");
}
@media (max-width: 768px) {
  .cid-uqIOB0qLCo {
    background-image: url("../../../assets/images/header-2-750x268.png");
  }
}
.cid-uqIOB0KHY8 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #f4c8af;
}
.cid-uqIOB0KHY8 .testimonial-text {
  font-weight: 300;
  color: #1d1d1b;
}
.cid-uqIOB0KHY8 .mbr-author-name {
  font-weight: bold;
  color: #1d1d1b;
}
.cid-uqIOB0KHY8 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 991px) {
  .cid-uqIOB0KHY8 .mbr-figure,
  .cid-uqIOB0KHY8 img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
  .cid-uqIOB0KHY8 .media-content {
    padding-top: 1.5rem !important;
  }
}
.cid-uqIOB0KHY8 h2 {
  font-weight: 700 !important;
  padding-left: 0.5rem;
  padding-right: 1rem;
  background: #000;
  color: #ffffff !important;
  letter-spacing: 1px;
  line-height: 3.9rem;
  -webkit-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline;
  font-size: 3rem;
}
.cid-uqIOB0KHY8 .h2_block {
  margin-bottom: 20px;
}
.cid-uqIOB0KHY8 .mbr-text {
  line-heigt: 1.2 !important;
}
#custom-html-4m2 iframe {
  margin-bottom: -20px;
}
.cid-uqIOB17bV0 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/asche-5-1500x302.jpg");
}
.cid-uqIOB17bV0 H2 {
  color: #000000;
  line-height: 1.2;
}
.cid-uqIOB17bV0 .mbr-section-subtitle {
  color: #000000;
}
.cid-uqIOB17bV0 section {
  background-color: none;
}
.cid-uqIOB17bV0 .logo_footer {
  position: relative;
  right: 100px;
}
.cid-uqIOB1kMFa {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/footer-web-1024x768.jpg");
}
@media (max-width: 767px) {
  .cid-uqIOB1kMFa .content {
    text-align: center;
  }
  .cid-uqIOB1kMFa .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uqIOB1kMFa .media-wrap {
  margin-bottom: 0rem;
}
@media (max-width: 767px) {
  .cid-uqIOB1kMFa .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-uqIOB1kMFa .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-uqIOB1kMFa .media-wrap img {
  width: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uqIOB1kMFa .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uqIOB1kMFa .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-uqIOB1kMFa .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uqIOB1kMFa .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uqIOB1kMFa .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uqIOB1kMFa .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-uqIOB1kMFa .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uqIOB1kMFa .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uqIOB1kMFa H5 {
  color: #ffffff;
  text-transform: uppercase;
}
.cid-uqIOB1kMFa P {
  color: #ffffff;
}
.cid-uqIOB1kMFa .media-container-row {
  -webkit-justify-content: start !important;
  -ms-flex-pack: start !important;
  justify-content: start !important;
}
.cid-uqIOB1kMFa .logo_footer_box {
  width: 100vw;
  max-width: 100%;
  position: relative;
}
.cid-uqIOB1kMFa .logo_footer {
  position: relative;
}
.cid-uqIOB1kMFa .soc-item {
  display: inline;
  margin: 4px 8px 0px 0px;
  float: left;
}
.cid-uqIOB1kMFa .logo_footer a {
  -webkit-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  -moz-box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
  box-shadow: inset 0 0px 0 white, inset 0 0px 0 #A76645 !important;
}
@media (max-width: 991px) {
  .cid-uqIOB1kMFa .col,
  .cid-uqIOB1kMFa .col-1,
  .cid-uqIOB1kMFa .col-10,
  .cid-uqIOB1kMFa .col-11,
  .cid-uqIOB1kMFa .col-12,
  .cid-uqIOB1kMFa .col-2,
  .cid-uqIOB1kMFa .col-3,
  .cid-uqIOB1kMFa .col-4,
  .cid-uqIOB1kMFa .col-5,
  .cid-uqIOB1kMFa .col-6,
  .cid-uqIOB1kMFa .col-7,
  .cid-uqIOB1kMFa .col-8,
  .cid-uqIOB1kMFa .col-9,
  .cid-uqIOB1kMFa .col-auto,
  .cid-uqIOB1kMFa .col-lg,
  .cid-uqIOB1kMFa .col-lg-1,
  .cid-uqIOB1kMFa .col-lg-10,
  .cid-uqIOB1kMFa .col-lg-11,
  .cid-uqIOB1kMFa .col-lg-12,
  .cid-uqIOB1kMFa .col-lg-2,
  .cid-uqIOB1kMFa .col-lg-3,
  .cid-uqIOB1kMFa .col-lg-4,
  .cid-uqIOB1kMFa .col-lg-5,
  .cid-uqIOB1kMFa .col-lg-6,
  .cid-uqIOB1kMFa .col-lg-7,
  .cid-uqIOB1kMFa .col-lg-8,
  .cid-uqIOB1kMFa .col-lg-9,
  .cid-uqIOB1kMFa .col-lg-auto,
  .cid-uqIOB1kMFa .col-md,
  .cid-uqIOB1kMFa .col-md-1,
  .cid-uqIOB1kMFa .col-md-10,
  .cid-uqIOB1kMFa .col-md-11,
  .cid-uqIOB1kMFa .col-md-12,
  .cid-uqIOB1kMFa .col-md-2,
  .cid-uqIOB1kMFa .col-md-3,
  .cid-uqIOB1kMFa .col-md-4,
  .cid-uqIOB1kMFa .col-md-5,
  .cid-uqIOB1kMFa .col-md-6,
  .cid-uqIOB1kMFa .col-md-7,
  .cid-uqIOB1kMFa .col-md-8,
  .cid-uqIOB1kMFa .col-md-9,
  .cid-uqIOB1kMFa .col-md-auto,
  .cid-uqIOB1kMFa .col-sm,
  .cid-uqIOB1kMFa .col-sm-1,
  .cid-uqIOB1kMFa .col-sm-10,
  .cid-uqIOB1kMFa .col-sm-11,
  .cid-uqIOB1kMFa .col-sm-12,
  .cid-uqIOB1kMFa .col-sm-2,
  .cid-uqIOB1kMFa .col-sm-3,
  .cid-uqIOB1kMFa .col-sm-4,
  .cid-uqIOB1kMFa .col-sm-5,
  .cid-uqIOB1kMFa .col-sm-6,
  .cid-uqIOB1kMFa .col-sm-7,
  .cid-uqIOB1kMFa .col-sm-8,
  .cid-uqIOB1kMFa .col-sm-9,
  .cid-uqIOB1kMFa .col-sm-auto,
  .cid-uqIOB1kMFa .col-xl,
  .cid-uqIOB1kMFa .col-xl-1,
  .cid-uqIOB1kMFa .col-xl-10,
  .cid-uqIOB1kMFa .col-xl-11,
  .cid-uqIOB1kMFa .col-xl-12,
  .cid-uqIOB1kMFa .col-xl-2,
  .cid-uqIOB1kMFa .col-xl-3,
  .cid-uqIOB1kMFa .col-xl-4,
  .cid-uqIOB1kMFa .col-xl-5,
  .cid-uqIOB1kMFa .col-xl-6,
  .cid-uqIOB1kMFa .col-xl-7,
  .cid-uqIOB1kMFa .col-xl-8,
  .cid-uqIOB1kMFa .col-xl-9,
  .cid-uqIOB1kMFa .col-xl-auto {
    padding-right: 0px;
    padding-left: 0px;
  }
  .cid-uqIOB1kMFa .content {
    text-align: left;
  }
  .cid-uqIOB1kMFa .container {
    max-width: inherit;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cid-uqIOB1kMFa .logo_footer_box {
    position: relative;
  }
  .cid-uqIOB1kMFa .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: left;
  }
  .cid-uqIOB1kMFa .logo_footer {
    position: relative;
  }
  .cid-uqIOB1kMFa .media-wrap {
    margin-bottom: 0rem;
  }
}
.cid-uqIOB1kMFa .copyright > p {
  color: #f9ceb2;
}
