.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'arial';
  font-size: 3.5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4.375rem;
}
.display-2 {
  font-family: 'arial';
  font-size: 2.5rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-4 {
  font-family: 'arial';
  font-size: 0.75rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 0.9375rem;
}
.display-5 {
  font-family: 'arial';
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'arial';
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.125rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.45rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.6rem;
    font-size: calc( 0.9125rem + (0.75 - 0.9125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9125rem + (0.75 - 0.9125) * ((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))));
  }
  .display-7 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #042d1b !important;
  border-color: #042d1b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #042d1b;
  color: #042d1b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #042d1b !important;
  border-color: #042d1b !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #47b5ed;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: #148cca !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #40b0bf;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: #2a747e !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #ffe161;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: #ffd10a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ff9966;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: #ff5f0f !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #042d1b !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.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: 'arial';
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 0.9375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'arial';
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 0.9375rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #000000 !important;
  background-color: #ffffff !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: #042d1b !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%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  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='%23ffffff' %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.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svLtkxwKuB {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-color: #96be11;
}
.cid-svLtkxwKuB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-svLtkxwKuB .mbr-text {
  color: #ffffff;
  text-align: left;
}
.cid-svLu4xKGKC {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/1-titel-web-voglsam-2.jpg");
}
@media (max-width: 991px) {
  .cid-svLu4xKGKC .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-svLu4xKGKC .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-svLu4xKGKC .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-svLu4xKGKC .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-svLyTeqMZL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fff0b0;
}
.cid-svLyTeqMZL .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-svLyTeqMZL .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-svLyTeqMZL .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-svLyTeqMZL .card-title {
  color: #0087ab;
  margin: 0;
  text-align: left;
}
.cid-svLyTeqMZL .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-svLyTeqMZL .card-box {
  padding: 1rem;
}
.cid-svLyTeqMZL .mbr-section-title,
.cid-svLyTeqMZL .line-wrap {
  text-align: center;
}
.cid-svLyTeqMZL .card-box > p,
.cid-svLyTeqMZL .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-svLzTVXNTf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fff0b0;
}
.cid-svLzTVXNTf .card-wrapper {
  overflow: hidden;
  height: 100%;
  color: #444444;
  padding: 0;
}
.cid-svLzTVXNTf .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-svLzTVXNTf .line {
  display: inline-block;
  width: 100px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-svLzTVXNTf .card-title {
  color: #0087ab;
  margin: 0;
  text-align: left;
}
.cid-svLzTVXNTf .card-img {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.cid-svLzTVXNTf .card-box {
  padding: 1rem;
}
.cid-svLzTVXNTf .mbr-section-title,
.cid-svLzTVXNTf .line-wrap {
  text-align: center;
}
.cid-svLzTVXNTf .card-box > p,
.cid-svLzTVXNTf .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-uP7q4L60Kw {
  background-image: url("../../../assets/images/7-titel-tipidorf-voglsam-1.jpg");
}
.cid-uP7q4L60Kw .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uP7q4L60Kw .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uP7q4L60Kw .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uP7q4L60Kw .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uP7q4L60Kw .mbr-text,
.cid-uP7q4L60Kw .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-svLBcXmdkg .modal-body .close {
  background: #1b1b1b;
}
.cid-svLBcXmdkg .modal-body .close span {
  font-style: normal;
}
.cid-svLBcXmdkg .carousel-inner > .active,
.cid-svLBcXmdkg .carousel-inner > .next,
.cid-svLBcXmdkg .carousel-inner > .prev {
  display: flex;
}
.cid-svLBcXmdkg .carousel-control .icon-next,
.cid-svLBcXmdkg .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-svLBcXmdkg .carousel-control:hover {
  background: #ffffff;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svLBcXmdkg .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-svLBcXmdkg .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-svLBcXmdkg .boxed-slider > div {
  position: relative;
}
.cid-svLBcXmdkg .container img {
  width: 100%;
}
.cid-svLBcXmdkg .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-svLBcXmdkg .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-svLBcXmdkg .mbr-table-cell {
  padding: 0;
}
.cid-svLBcXmdkg .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-svLBcXmdkg .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-svLBcXmdkg .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-svLBcXmdkg .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-svLBcXmdkg .carousel-item.active.right,
.cid-svLBcXmdkg .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-svLBcXmdkg .carousel-item.active.left,
.cid-svLBcXmdkg .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-svLBcXmdkg .carousel-item.active,
.cid-svLBcXmdkg .carousel-item.next.left,
.cid-svLBcXmdkg .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-svLBcXmdkg .mbr-slider .carousel-control {
  top: 50%;
  margin-top: -1.9rem;
  width: 60px;
  height: 60px;
  font-size: 25px;
  border: 2px solid #fff;
  border-radius: 0 !important;
  transition: all 0.3s;
  z-index: 11;
}
.cid-svLBcXmdkg .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
}
.cid-svLBcXmdkg .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
}
@media (max-width: 767px) {
  .cid-svLBcXmdkg .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-svLBcXmdkg .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-svLBcXmdkg .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: #ffffff;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-svLBcXmdkg .mbr-slider .carousel-indicators li.active,
.cid-svLBcXmdkg .mbr-slider .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-svLBcXmdkg .mbr-slider .carousel-indicators li::after,
.cid-svLBcXmdkg .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-svLBcXmdkg .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-svLBcXmdkg .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-svLBcXmdkg .mbr-slider > .container img {
  width: 100%;
}
.cid-svLBcXmdkg .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-svLBcXmdkg .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-svLBcXmdkg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-svLBcXmdkg .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-svLBcXmdkg .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-svLBcXmdkg .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-svLBcXmdkg .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-svLBcXmdkg .full-screen .slider-fullscreen-image.active {
  display: flex;
}
.cid-svLBcXmdkg .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-svLBcXmdkg .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-svLBcXmdkg .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-svLBcXmdkg .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-svLBcXmdkg .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-svLBcXmdkg P {
  text-align: left;
}
.cid-svLBcXmdkg H2 {
  text-align: left;
}
.cid-svLIjilD95 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #021a0f;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svLIjilD95 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svLIjilD95 .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svLIjilD95 .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svLIjilD95 .btn-primary-outline:active {
  color: gray;
}
.cid-svLIjilD95 .btn-primary-outline:hover {
  color: white;
}
.cid-svLIjilD95 div {
  overflow: hidden;
}
.cid-svLIjilD95 li.active .btn-primary-outline {
  color: white;
}
.cid-svLIjilD95 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svLIjilD95 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svLIjilD95 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svLIjilD95 .mbr-gallery-item {
  overflow: hidden;
}
.cid-svLIjilD95 .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svLIjilD95 .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svLIjilD95 .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svLIjilD95 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svLIjilD95 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svLIjilD95 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svLIjilD95 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svLIjilD95 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svLK612p2N {
  background-image: url("../../../assets/images/minigolf-voglsam.jpg");
}
.cid-svLK612p2N .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-svLK612p2N .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-svLK612p2N .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-svLK612p2N .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-svLK612p2N .mbr-text,
.cid-svLK612p2N .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-svLM0aZfiD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #2a310a;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svLM0aZfiD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svLM0aZfiD .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svLM0aZfiD .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svLM0aZfiD .btn-primary-outline:active {
  color: gray;
}
.cid-svLM0aZfiD .btn-primary-outline:hover {
  color: white;
}
.cid-svLM0aZfiD div {
  overflow: hidden;
}
.cid-svLM0aZfiD li.active .btn-primary-outline {
  color: white;
}
.cid-svLM0aZfiD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svLM0aZfiD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svLM0aZfiD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svLM0aZfiD .mbr-gallery-item {
  overflow: hidden;
}
.cid-svLM0aZfiD .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svLM0aZfiD .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svLM0aZfiD .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svLM0aZfiD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svLM0aZfiD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svLM0aZfiD .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svLM0aZfiD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svLM0aZfiD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svLMVNduci {
  background-image: url("../../../assets/images/fussballgolf-voglsam.jpg");
}
.cid-svLMVNduci .row {
  flex-direction: row-reverse;
}
.cid-svLMVNduci .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-svLMVNduci .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-svLMVNduci .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-svLMVNduci .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-svLMVNduci .mbr-text,
.cid-svLMVNduci .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-svLSXBG9Y7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svLSXBG9Y7 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svLSXBG9Y7 .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svLSXBG9Y7 .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svLSXBG9Y7 .btn-primary-outline:active {
  color: gray;
}
.cid-svLSXBG9Y7 .btn-primary-outline:hover {
  color: white;
}
.cid-svLSXBG9Y7 div {
  overflow: hidden;
}
.cid-svLSXBG9Y7 li.active .btn-primary-outline {
  color: white;
}
.cid-svLSXBG9Y7 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svLSXBG9Y7 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svLSXBG9Y7 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svLSXBG9Y7 .mbr-gallery-item {
  overflow: hidden;
}
.cid-svLSXBG9Y7 .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svLSXBG9Y7 .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svLSXBG9Y7 .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svLSXBG9Y7 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svLSXBG9Y7 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svLSXBG9Y7 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svLSXBG9Y7 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svLSXBG9Y7 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svLTVVVDWd {
  background-image: url("../../../assets/images/2-gelaendeplan-voglsam.jpg");
}
.cid-svLUzn2YHN {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svLUzn2YHN .content {
    text-align: center;
  }
  .cid-svLUzn2YHN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svLUzn2YHN .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svLUzn2YHN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svLUzn2YHN .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svLUzn2YHN .google-map {
  height: 25rem;
  position: relative;
}
.cid-svLUzn2YHN .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svLUzn2YHN .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svLUzn2YHN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svLUzn2YHN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svLUzn2YHN .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svLUzn2YHN .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svLUzn2YHN .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svLUzn2YHN .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svLUzn2YHN .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svLUzn2YHN .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svLUzn2YHN .list {
  list-style-type: none;
  padding: 0;
}
.cid-svLUzn2YHN .mbr-text {
  text-align: left;
}
.cid-svLUzn2YHN H5 {
  text-align: left;
}
.cid-uw4tv7o2XQ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a1d0c;
}
.cid-uw4tv7o2XQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw4tv7o2XQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw4tv7o2XQ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uw4tv7o2XQ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uw4tv7o2XQ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uw4tv7o2XQ .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uw4tv7o2XQ .mbr-text,
.cid-uw4tv7o2XQ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uw4wUgdizm {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #96be11;
}
.cid-uw4wUgdizm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw4wUgdizm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw4wUgdizm .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uw4wUgdizm .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uw4wUgdizm .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uw4wUgdizm .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uw4wUgdizm .mbr-text,
.cid-uw4wUgdizm .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-svMBK4u7ap {
  background-image: url("../../../assets/images/4-titel-ballonfahrt-voglsam.jpg");
}
.cid-svMBK4u7ap .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-svMBK4u7ap .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-svMBK4u7ap .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-svMBK4u7ap .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-svMBK4u7ap .mbr-text,
.cid-svMBK4u7ap .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-svMBK5ouTQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #021a0f;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svMBK5ouTQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svMBK5ouTQ .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svMBK5ouTQ .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svMBK5ouTQ .btn-primary-outline:active {
  color: gray;
}
.cid-svMBK5ouTQ .btn-primary-outline:hover {
  color: white;
}
.cid-svMBK5ouTQ div {
  overflow: hidden;
}
.cid-svMBK5ouTQ li.active .btn-primary-outline {
  color: white;
}
.cid-svMBK5ouTQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svMBK5ouTQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svMBK5ouTQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svMBK5ouTQ .mbr-gallery-item {
  overflow: hidden;
}
.cid-svMBK5ouTQ .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svMBK5ouTQ .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svMBK5ouTQ .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svMBK5ouTQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svMBK5ouTQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svMBK5ouTQ .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svMBK5ouTQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svMBK5ouTQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svMBK6peGj {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svMBK6peGj .content {
    text-align: center;
  }
  .cid-svMBK6peGj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svMBK6peGj .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svMBK6peGj .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svMBK6peGj .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svMBK6peGj .google-map {
  height: 25rem;
  position: relative;
}
.cid-svMBK6peGj .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svMBK6peGj .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svMBK6peGj .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svMBK6peGj .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svMBK6peGj .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svMBK6peGj .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svMBK6peGj .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svMBK6peGj .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svMBK6peGj .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svMBK6peGj .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svMBK6peGj .list {
  list-style-type: none;
  padding: 0;
}
.cid-svMBK6peGj .mbr-text {
  text-align: left;
}
.cid-svMBK6peGj H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svMzy1WRW7 {
  background-image: url("../../../assets/images/3-titel-kartbahn-voglsam.jpg");
}
.cid-svMzy1WRW7 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-svMzy1WRW7 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-svMzy1WRW7 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-svMzy1WRW7 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-svMzy1WRW7 .mbr-text,
.cid-svMzy1WRW7 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-svMB2NyyZl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #021a0f;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svMB2NyyZl .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svMB2NyyZl .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svMB2NyyZl .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svMB2NyyZl .btn-primary-outline:active {
  color: gray;
}
.cid-svMB2NyyZl .btn-primary-outline:hover {
  color: white;
}
.cid-svMB2NyyZl div {
  overflow: hidden;
}
.cid-svMB2NyyZl li.active .btn-primary-outline {
  color: white;
}
.cid-svMB2NyyZl .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svMB2NyyZl .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svMB2NyyZl .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svMB2NyyZl .mbr-gallery-item {
  overflow: hidden;
}
.cid-svMB2NyyZl .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svMB2NyyZl .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svMB2NyyZl .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svMB2NyyZl .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svMB2NyyZl .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svMB2NyyZl .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svMB2NyyZl .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svMB2NyyZl .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svLUzn2YHN {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svLUzn2YHN .content {
    text-align: center;
  }
  .cid-svLUzn2YHN .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svLUzn2YHN .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svLUzn2YHN .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svLUzn2YHN .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svLUzn2YHN .google-map {
  height: 25rem;
  position: relative;
}
.cid-svLUzn2YHN .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svLUzn2YHN .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svLUzn2YHN .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svLUzn2YHN .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svLUzn2YHN .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svLUzn2YHN .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svLUzn2YHN .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svLUzn2YHN .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svLUzn2YHN .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svLUzn2YHN .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svLUzn2YHN .list {
  list-style-type: none;
  padding: 0;
}
.cid-svLUzn2YHN .mbr-text {
  text-align: left;
}
.cid-svLUzn2YHN H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svMDfoxnLP {
  background-image: url("../../../assets/images/5-titel-kletterpark-voglsam.jpg");
}
.cid-svMDfoxnLP .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-svMDfoxnLP .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-svMDfoxnLP .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-svMDfoxnLP .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-svMDfoxnLP .mbr-text,
.cid-svMDfoxnLP .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-svMDfpqlHR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #021a0f;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svMDfpqlHR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svMDfpqlHR .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svMDfpqlHR .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svMDfpqlHR .btn-primary-outline:active {
  color: gray;
}
.cid-svMDfpqlHR .btn-primary-outline:hover {
  color: white;
}
.cid-svMDfpqlHR div {
  overflow: hidden;
}
.cid-svMDfpqlHR li.active .btn-primary-outline {
  color: white;
}
.cid-svMDfpqlHR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svMDfpqlHR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svMDfpqlHR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svMDfpqlHR .mbr-gallery-item {
  overflow: hidden;
}
.cid-svMDfpqlHR .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svMDfpqlHR .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svMDfpqlHR .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svMDfpqlHR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svMDfpqlHR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svMDfpqlHR .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svMDfpqlHR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svMDfpqlHR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svMDfqqFey {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svMDfqqFey .content {
    text-align: center;
  }
  .cid-svMDfqqFey .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svMDfqqFey .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svMDfqqFey .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svMDfqqFey .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svMDfqqFey .google-map {
  height: 25rem;
  position: relative;
}
.cid-svMDfqqFey .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svMDfqqFey .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svMDfqqFey .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svMDfqqFey .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svMDfqqFey .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svMDfqqFey .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svMDfqqFey .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svMDfqqFey .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svMDfqqFey .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svMDfqqFey .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svMDfqqFey .list {
  list-style-type: none;
  padding: 0;
}
.cid-svMDfqqFey .mbr-text {
  text-align: left;
}
.cid-svMDfqqFey H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svMFW2fwF6 {
  background-image: url("../../../assets/images/6-titel-baumhauspark-voglsam.jpg");
}
.cid-svMFW2fwF6 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-svMFW2fwF6 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-svMFW2fwF6 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-svMFW2fwF6 .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-svMFW2fwF6 .mbr-text,
.cid-svMFW2fwF6 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-svMHz9CP5I {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #2a310a;
}
.cid-svMHz9CP5I img,
.cid-svMHz9CP5I .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-svMHz9CP5I .item:focus,
.cid-svMHz9CP5I span:focus {
  outline: none;
}
.cid-svMHz9CP5I .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-svMHz9CP5I .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fff0b0;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-svMHz9CP5I .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-svMHz9CP5I .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-svMHz9CP5I .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-svMHz9CP5I .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-svMHz9CP5I .mbr-section-btn {
  margin-top: auto !important;
}
.cid-svMHz9CP5I .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-svMHz9CP5I .mbr-text,
.cid-svMHz9CP5I .mbr-section-btn {
  text-align: left;
  color: #2a310a;
}
.cid-svMHz9CP5I .item-title {
  text-align: left;
  color: #1a1d0c;
}
.cid-svMHz9CP5I .item-subtitle {
  text-align: left;
  color: #2a310a;
}
.cid-svMKo6Zzwa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2a310a;
}
.cid-svMKo6Zzwa img,
.cid-svMKo6Zzwa .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-svMKo6Zzwa .item:focus,
.cid-svMKo6Zzwa span:focus {
  outline: none;
}
.cid-svMKo6Zzwa .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-svMKo6Zzwa .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fff0b0;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-svMKo6Zzwa .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-svMKo6Zzwa .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-svMKo6Zzwa .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-svMKo6Zzwa .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-svMKo6Zzwa .mbr-section-btn {
  margin-top: auto !important;
}
.cid-svMKo6Zzwa .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-svMKo6Zzwa .mbr-text,
.cid-svMKo6Zzwa .mbr-section-btn {
  text-align: left;
  color: #2a310a;
}
.cid-svMKo6Zzwa .item-title {
  text-align: left;
  color: #1a1d0c;
}
.cid-svMKo6Zzwa .item-subtitle {
  text-align: left;
  color: #2a310a;
}
.cid-svMOsGR1UG {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #2a310a;
}
.cid-svMOsGR1UG img,
.cid-svMOsGR1UG .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-svMOsGR1UG .item:focus,
.cid-svMOsGR1UG span:focus {
  outline: none;
}
.cid-svMOsGR1UG .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-svMOsGR1UG .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fff0b0;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-svMOsGR1UG .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-svMOsGR1UG .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-svMOsGR1UG .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-svMOsGR1UG .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-svMOsGR1UG .mbr-section-btn {
  margin-top: auto !important;
}
.cid-svMOsGR1UG .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-svMOsGR1UG .mbr-text,
.cid-svMOsGR1UG .mbr-section-btn {
  text-align: left;
  color: #2a310a;
}
.cid-svMOsGR1UG .item-title {
  text-align: left;
  color: #1a1d0c;
}
.cid-svMOsGR1UG .item-subtitle {
  text-align: left;
  color: #e43f3f;
}
.cid-svMM0nl4CU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #2a310a;
}
.cid-svMM0nl4CU img,
.cid-svMM0nl4CU .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-svMM0nl4CU .item:focus,
.cid-svMM0nl4CU span:focus {
  outline: none;
}
.cid-svMM0nl4CU .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-svMM0nl4CU .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fff0b0;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-svMM0nl4CU .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-svMM0nl4CU .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-svMM0nl4CU .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-svMM0nl4CU .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-svMM0nl4CU .mbr-section-btn {
  margin-top: auto !important;
}
.cid-svMM0nl4CU .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-svMM0nl4CU .mbr-text,
.cid-svMM0nl4CU .mbr-section-btn {
  text-align: left;
  color: #2a310a;
}
.cid-svMM0nl4CU .item-title {
  text-align: left;
  color: #1a1d0c;
}
.cid-svMM0nl4CU .item-subtitle {
  text-align: left;
  color: #e43f3f;
}
.cid-svMFW4rcn7 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svMFW4rcn7 .content {
    text-align: center;
  }
  .cid-svMFW4rcn7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svMFW4rcn7 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svMFW4rcn7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svMFW4rcn7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svMFW4rcn7 .google-map {
  height: 25rem;
  position: relative;
}
.cid-svMFW4rcn7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svMFW4rcn7 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svMFW4rcn7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svMFW4rcn7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svMFW4rcn7 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svMFW4rcn7 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svMFW4rcn7 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svMFW4rcn7 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svMFW4rcn7 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svMFW4rcn7 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svMFW4rcn7 .list {
  list-style-type: none;
  padding: 0;
}
.cid-svMFW4rcn7 .mbr-text {
  text-align: left;
}
.cid-svMFW4rcn7 H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uw4xFR9xQT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a1d0c;
}
.cid-uw4xFR9xQT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uw4xFR9xQT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uw4xFR9xQT .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uw4xFR9xQT .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uw4xFR9xQT .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uw4xFR9xQT .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uw4xFR9xQT .mbr-text,
.cid-uw4xFR9xQT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-svMXrFWkFT {
  background-image: url("../../../assets/images/indien-b.jpg");
}
.cid-svMXrFWkFT .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-svMXrFWkFT .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-svMXrFWkFT .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-svMXrFWkFT .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-svMXrFWkFT .mbr-text,
.cid-svMXrFWkFT .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-svMXrGP4mD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #021a0f;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svMXrGP4mD .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svMXrGP4mD .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svMXrGP4mD .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svMXrGP4mD .btn-primary-outline:active {
  color: gray;
}
.cid-svMXrGP4mD .btn-primary-outline:hover {
  color: white;
}
.cid-svMXrGP4mD div {
  overflow: hidden;
}
.cid-svMXrGP4mD li.active .btn-primary-outline {
  color: white;
}
.cid-svMXrGP4mD .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svMXrGP4mD .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svMXrGP4mD .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svMXrGP4mD .mbr-gallery-item {
  overflow: hidden;
}
.cid-svMXrGP4mD .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svMXrGP4mD .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svMXrGP4mD .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svMXrGP4mD .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svMXrGP4mD .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svMXrGP4mD .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svMXrGP4mD .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svMXrGP4mD .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svMXrHO3Rq {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svMXrHO3Rq .content {
    text-align: center;
  }
  .cid-svMXrHO3Rq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svMXrHO3Rq .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svMXrHO3Rq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svMXrHO3Rq .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svMXrHO3Rq .google-map {
  height: 25rem;
  position: relative;
}
.cid-svMXrHO3Rq .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svMXrHO3Rq .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svMXrHO3Rq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svMXrHO3Rq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svMXrHO3Rq .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svMXrHO3Rq .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svMXrHO3Rq .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svMXrHO3Rq .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svMXrHO3Rq .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svMXrHO3Rq .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svMXrHO3Rq .list {
  list-style-type: none;
  padding: 0;
}
.cid-svMXrHO3Rq .mbr-text {
  text-align: left;
}
.cid-svMXrHO3Rq H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svRvPHH2ay {
  flex-direction: column !important;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/baumhaus-hexenhaus-1.jpg");
}
.cid-svRvPHH2ay .row.heading {
  margin-bottom: 72px;
}
.cid-svRvPHH2ay .card {
  flex-direction: row;
  justify-content: center;
}
.cid-svRvPHH2ay .card-box {
  display: flex;
  flex-direction: column;
}
.cid-svRvPHH2ay .card-box .card-title {
  color: #ffffff;
}
.cid-svRvPHH2ay .card-box .mbr-text {
  color: #ffffff;
}
.cid-svRvPHH2ay .card-box .link .btn {
  margin: 0;
}
.cid-svRvPHH2ay .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-svRvPHH2ay .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-svRvPHH2ay .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-svRvPHH2ay .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-svRvPHH2ay .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-svRvPHH2ay .card .card-box .card-title,
  .cid-svRvPHH2ay .card .card-box .mbr-text,
  .cid-svRvPHH2ay .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-svRvPHH2ay .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-svRvPHH2ay .mbr-section-title {
  text-align: left;
}
.cid-svRvPHH2ay .mbr-text,
.cid-svRvPHH2ay .mbr-section-btn,
.cid-svRvPHH2ay .buttons-wrap {
  text-align: left;
}
.cid-svRvPHH2ay .card .card-box .mbr-text,
.cid-svRvPHH2ay .card .card-box .mbr-section-btn {
  text-align: left;
}
.cid-svRvPHH2ay .card .card-box .card-title,
.cid-svRvPHH2ay .card-img {
  text-align: left;
}
.cid-svMZGJWzlQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #021a0f;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svMZGJWzlQ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svMZGJWzlQ .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svMZGJWzlQ .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svMZGJWzlQ .btn-primary-outline:active {
  color: gray;
}
.cid-svMZGJWzlQ .btn-primary-outline:hover {
  color: white;
}
.cid-svMZGJWzlQ div {
  overflow: hidden;
}
.cid-svMZGJWzlQ li.active .btn-primary-outline {
  color: white;
}
.cid-svMZGJWzlQ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svMZGJWzlQ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svMZGJWzlQ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svMZGJWzlQ .mbr-gallery-item {
  overflow: hidden;
}
.cid-svMZGJWzlQ .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svMZGJWzlQ .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svMZGJWzlQ .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svMZGJWzlQ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svMZGJWzlQ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svMZGJWzlQ .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svMZGJWzlQ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svMZGJWzlQ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svMZGLaS8U {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svMZGLaS8U .content {
    text-align: center;
  }
  .cid-svMZGLaS8U .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svMZGLaS8U .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svMZGLaS8U .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svMZGLaS8U .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svMZGLaS8U .google-map {
  height: 25rem;
  position: relative;
}
.cid-svMZGLaS8U .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svMZGLaS8U .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svMZGLaS8U .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svMZGLaS8U .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svMZGLaS8U .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svMZGLaS8U .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svMZGLaS8U .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svMZGLaS8U .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svMZGLaS8U .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svMZGLaS8U .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svMZGLaS8U .list {
  list-style-type: none;
  padding: 0;
}
.cid-svMZGLaS8U .mbr-text {
  text-align: left;
}
.cid-svMZGLaS8U H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svN9skj2vf {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #1a1d0c;
}
.cid-svN9skj2vf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-svN9skj2vf .mbr-text {
  color: #ffffff;
}
.cid-svN9hoQFKs {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svN9hoQFKs .content {
    text-align: center;
  }
  .cid-svN9hoQFKs .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svN9hoQFKs .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svN9hoQFKs .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svN9hoQFKs .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svN9hoQFKs .google-map {
  height: 25rem;
  position: relative;
}
.cid-svN9hoQFKs .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svN9hoQFKs .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svN9hoQFKs .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svN9hoQFKs .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svN9hoQFKs .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svN9hoQFKs .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svN9hoQFKs .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svN9hoQFKs .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svN9hoQFKs .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svN9hoQFKs .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svN9hoQFKs .list {
  list-style-type: none;
  padding: 0;
}
.cid-svN9hoQFKs .mbr-text {
  text-align: left;
}
.cid-svN9hoQFKs H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svNm90eYMk {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/6-titel-baumhauspark-voglsam.jpg");
}
.cid-svNm90eYMk .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-svNm90eYMk .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-svNe4L7e5d {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #2a310a;
}
.cid-svNe4L7e5d .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-svNe4L7e5d .form-control,
.cid-svNe4L7e5d .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-svNe4L7e5d .form-control::-webkit-input-placeholder,
.cid-svNe4L7e5d .field-input::-webkit-input-placeholder,
.cid-svNe4L7e5d .form-control::-webkit-input-placeholder,
.cid-svNe4L7e5d .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-svNe4L7e5d .form-control:-moz-placeholder,
.cid-svNe4L7e5d .field-input:-moz-placeholder,
.cid-svNe4L7e5d .form-control:-moz-placeholder,
.cid-svNe4L7e5d .field-input:-moz-placeholder {
  color: #000000;
}
.cid-svNe4L7e5d .form-control:hover,
.cid-svNe4L7e5d .field-input:hover,
.cid-svNe4L7e5d .form-control:focus,
.cid-svNe4L7e5d .field-input:focus {
  background-color: #96be11;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-svNe4L7e5d .form-control:hover::-webkit-input-placeholder,
.cid-svNe4L7e5d .field-input:hover::-webkit-input-placeholder,
.cid-svNe4L7e5d .form-control:focus::-webkit-input-placeholder,
.cid-svNe4L7e5d .field-input:focus::-webkit-input-placeholder,
.cid-svNe4L7e5d .form-control:hover::-webkit-input-placeholder,
.cid-svNe4L7e5d .field-input:hover::-webkit-input-placeholder,
.cid-svNe4L7e5d .form-control:focus::-webkit-input-placeholder,
.cid-svNe4L7e5d .field-input:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-svNe4L7e5d .form-control:hover:-moz-placeholder,
.cid-svNe4L7e5d .field-input:hover:-moz-placeholder,
.cid-svNe4L7e5d .form-control:focus:-moz-placeholder,
.cid-svNe4L7e5d .field-input:focus:-moz-placeholder,
.cid-svNe4L7e5d .form-control:hover:-moz-placeholder,
.cid-svNe4L7e5d .field-input:hover:-moz-placeholder,
.cid-svNe4L7e5d .form-control:focus:-moz-placeholder,
.cid-svNe4L7e5d .field-input:focus:-moz-placeholder {
  color: #ffffff;
}
.cid-svNe4L7e5d .jq-number__spin:hover,
.cid-svNe4L7e5d .jq-number__spin:focus {
  background-color: #96be11;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-svNe4L7e5d .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-svNe4L7e5d .jq-selectbox li,
.cid-svNe4L7e5d .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-svNe4L7e5d .jq-selectbox li:hover,
.cid-svNe4L7e5d .jq-selectbox li.selected {
  background-color: #96be11;
  color: #000000;
}
.cid-svNe4L7e5d .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-svNe4L7e5d .jq-number__spin.minus:hover:after,
.cid-svNe4L7e5d .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-svNe4L7e5d .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-svNe4L7e5d .jq-number__spin.minus:after,
.cid-svNe4L7e5d .jq-number__spin.plus:after {
  border-top-color: #96be11;
  border-bottom-color: #96be11;
}
.cid-svNe4L7e5d input::-webkit-clear-button {
  display: none;
}
.cid-svNe4L7e5d input::-webkit-inner-spin-button {
  display: none;
}
.cid-svNe4L7e5d input::-webkit-outer-spin-button {
  display: none;
}
.cid-svNe4L7e5d input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-svNe4L7e5d LABEL {
  color: #ffffff;
}
.cid-svMFW4rcn7 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svMFW4rcn7 .content {
    text-align: center;
  }
  .cid-svMFW4rcn7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svMFW4rcn7 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svMFW4rcn7 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svMFW4rcn7 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svMFW4rcn7 .google-map {
  height: 25rem;
  position: relative;
}
.cid-svMFW4rcn7 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svMFW4rcn7 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svMFW4rcn7 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svMFW4rcn7 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svMFW4rcn7 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svMFW4rcn7 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svMFW4rcn7 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svMFW4rcn7 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svMFW4rcn7 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svMFW4rcn7 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svMFW4rcn7 .list {
  list-style-type: none;
  padding: 0;
}
.cid-svMFW4rcn7 .mbr-text {
  text-align: left;
}
.cid-svMFW4rcn7 H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svRDA2W6iD {
  flex-direction: column !important;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/baumhaus-auszeit.jpg");
}
.cid-svRDA2W6iD .row.heading {
  margin-bottom: 72px;
}
.cid-svRDA2W6iD .card {
  flex-direction: row;
  justify-content: center;
}
.cid-svRDA2W6iD .card-box {
  display: flex;
  flex-direction: column;
}
.cid-svRDA2W6iD .card-box .card-title {
  color: #ffffff;
}
.cid-svRDA2W6iD .card-box .mbr-text {
  color: #ffffff;
}
.cid-svRDA2W6iD .card-box .link .btn {
  margin: 0;
}
.cid-svRDA2W6iD .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-svRDA2W6iD .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-svRDA2W6iD .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-svRDA2W6iD .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-svRDA2W6iD .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-svRDA2W6iD .card .card-box .card-title,
  .cid-svRDA2W6iD .card .card-box .mbr-text,
  .cid-svRDA2W6iD .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-svRDA2W6iD .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-svRDA2W6iD .mbr-section-title {
  text-align: left;
}
.cid-svRDA2W6iD .mbr-text,
.cid-svRDA2W6iD .mbr-section-btn,
.cid-svRDA2W6iD .buttons-wrap {
  text-align: left;
}
.cid-svRDA2W6iD .card .card-box .mbr-text,
.cid-svRDA2W6iD .card .card-box .mbr-section-btn {
  text-align: left;
}
.cid-svRDA2W6iD .card .card-box .card-title,
.cid-svRDA2W6iD .card-img {
  text-align: left;
}
.cid-svRDA4UmLJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #021a0f;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svRDA4UmLJ .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svRDA4UmLJ .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svRDA4UmLJ .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svRDA4UmLJ .btn-primary-outline:active {
  color: gray;
}
.cid-svRDA4UmLJ .btn-primary-outline:hover {
  color: white;
}
.cid-svRDA4UmLJ div {
  overflow: hidden;
}
.cid-svRDA4UmLJ li.active .btn-primary-outline {
  color: white;
}
.cid-svRDA4UmLJ .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svRDA4UmLJ .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svRDA4UmLJ .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svRDA4UmLJ .mbr-gallery-item {
  overflow: hidden;
}
.cid-svRDA4UmLJ .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svRDA4UmLJ .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svRDA4UmLJ .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svRDA4UmLJ .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svRDA4UmLJ .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svRDA4UmLJ .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svRDA4UmLJ .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svRDA4UmLJ .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svRDA5PVsx {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svRDA5PVsx .content {
    text-align: center;
  }
  .cid-svRDA5PVsx .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svRDA5PVsx .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svRDA5PVsx .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svRDA5PVsx .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svRDA5PVsx .google-map {
  height: 25rem;
  position: relative;
}
.cid-svRDA5PVsx .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svRDA5PVsx .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svRDA5PVsx .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svRDA5PVsx .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svRDA5PVsx .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svRDA5PVsx .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svRDA5PVsx .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svRDA5PVsx .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svRDA5PVsx .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svRDA5PVsx .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svRDA5PVsx .list {
  list-style-type: none;
  padding: 0;
}
.cid-svRDA5PVsx .mbr-text {
  text-align: left;
}
.cid-svRDA5PVsx H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svRGu8odEA {
  flex-direction: column !important;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/baumhaus-kunterbunt.jpg");
}
.cid-svRGu8odEA .row.heading {
  margin-bottom: 72px;
}
.cid-svRGu8odEA .card {
  flex-direction: row;
  justify-content: center;
}
.cid-svRGu8odEA .card-box {
  display: flex;
  flex-direction: column;
}
.cid-svRGu8odEA .card-box .card-title {
  color: #ffffff;
}
.cid-svRGu8odEA .card-box .mbr-text {
  color: #ffffff;
}
.cid-svRGu8odEA .card-box .link .btn {
  margin: 0;
}
.cid-svRGu8odEA .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-svRGu8odEA .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-svRGu8odEA .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-svRGu8odEA .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-svRGu8odEA .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-svRGu8odEA .card .card-box .card-title,
  .cid-svRGu8odEA .card .card-box .mbr-text,
  .cid-svRGu8odEA .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-svRGu8odEA .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-svRGu8odEA .mbr-section-title {
  text-align: left;
}
.cid-svRGu8odEA .mbr-text,
.cid-svRGu8odEA .mbr-section-btn,
.cid-svRGu8odEA .buttons-wrap {
  text-align: left;
}
.cid-svRGu8odEA .card .card-box .mbr-text,
.cid-svRGu8odEA .card .card-box .mbr-section-btn {
  text-align: left;
}
.cid-svRGu8odEA .card .card-box .card-title,
.cid-svRGu8odEA .card-img {
  text-align: left;
}
.cid-svRGuaJYUM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #021a0f;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svRGuaJYUM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svRGuaJYUM .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svRGuaJYUM .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svRGuaJYUM .btn-primary-outline:active {
  color: gray;
}
.cid-svRGuaJYUM .btn-primary-outline:hover {
  color: white;
}
.cid-svRGuaJYUM div {
  overflow: hidden;
}
.cid-svRGuaJYUM li.active .btn-primary-outline {
  color: white;
}
.cid-svRGuaJYUM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svRGuaJYUM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svRGuaJYUM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svRGuaJYUM .mbr-gallery-item {
  overflow: hidden;
}
.cid-svRGuaJYUM .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svRGuaJYUM .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svRGuaJYUM .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svRGuaJYUM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svRGuaJYUM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svRGuaJYUM .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svRGuaJYUM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svRGuaJYUM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svRGubFAVG {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svRGubFAVG .content {
    text-align: center;
  }
  .cid-svRGubFAVG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svRGubFAVG .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svRGubFAVG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svRGubFAVG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svRGubFAVG .google-map {
  height: 25rem;
  position: relative;
}
.cid-svRGubFAVG .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svRGubFAVG .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svRGubFAVG .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svRGubFAVG .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svRGubFAVG .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svRGubFAVG .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svRGubFAVG .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svRGubFAVG .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svRGubFAVG .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svRGubFAVG .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svRGubFAVG .list {
  list-style-type: none;
  padding: 0;
}
.cid-svRGubFAVG .mbr-text {
  text-align: left;
}
.cid-svRGubFAVG H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svRI1i73Ve {
  flex-direction: column !important;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/baumhaus-loenneberga.jpg");
}
.cid-svRI1i73Ve .row.heading {
  margin-bottom: 72px;
}
.cid-svRI1i73Ve .card {
  flex-direction: row;
  justify-content: center;
}
.cid-svRI1i73Ve .card-box {
  display: flex;
  flex-direction: column;
}
.cid-svRI1i73Ve .card-box .card-title {
  color: #ffffff;
}
.cid-svRI1i73Ve .card-box .mbr-text {
  color: #ffffff;
}
.cid-svRI1i73Ve .card-box .link .btn {
  margin: 0;
}
.cid-svRI1i73Ve .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-svRI1i73Ve .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-svRI1i73Ve .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-svRI1i73Ve .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-svRI1i73Ve .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-svRI1i73Ve .card .card-box .card-title,
  .cid-svRI1i73Ve .card .card-box .mbr-text,
  .cid-svRI1i73Ve .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-svRI1i73Ve .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-svRI1i73Ve .mbr-section-title {
  text-align: left;
}
.cid-svRI1i73Ve .mbr-text,
.cid-svRI1i73Ve .mbr-section-btn,
.cid-svRI1i73Ve .buttons-wrap {
  text-align: left;
}
.cid-svRI1i73Ve .card .card-box .mbr-text,
.cid-svRI1i73Ve .card .card-box .mbr-section-btn {
  text-align: left;
}
.cid-svRI1i73Ve .card .card-box .card-title,
.cid-svRI1i73Ve .card-img {
  text-align: left;
}
.cid-svRI1k6h3g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #021a0f;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svRI1k6h3g .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svRI1k6h3g .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svRI1k6h3g .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svRI1k6h3g .btn-primary-outline:active {
  color: gray;
}
.cid-svRI1k6h3g .btn-primary-outline:hover {
  color: white;
}
.cid-svRI1k6h3g div {
  overflow: hidden;
}
.cid-svRI1k6h3g li.active .btn-primary-outline {
  color: white;
}
.cid-svRI1k6h3g .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svRI1k6h3g .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svRI1k6h3g .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svRI1k6h3g .mbr-gallery-item {
  overflow: hidden;
}
.cid-svRI1k6h3g .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svRI1k6h3g .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svRI1k6h3g .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svRI1k6h3g .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svRI1k6h3g .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svRI1k6h3g .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svRI1k6h3g .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svRI1k6h3g .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svRI1l9Lqv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svRI1l9Lqv .content {
    text-align: center;
  }
  .cid-svRI1l9Lqv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svRI1l9Lqv .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svRI1l9Lqv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svRI1l9Lqv .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svRI1l9Lqv .google-map {
  height: 25rem;
  position: relative;
}
.cid-svRI1l9Lqv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svRI1l9Lqv .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svRI1l9Lqv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svRI1l9Lqv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svRI1l9Lqv .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svRI1l9Lqv .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svRI1l9Lqv .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svRI1l9Lqv .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svRI1l9Lqv .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svRI1l9Lqv .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svRI1l9Lqv .list {
  list-style-type: none;
  padding: 0;
}
.cid-svRI1l9Lqv .mbr-text {
  text-align: left;
}
.cid-svRI1l9Lqv H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svRJ8VghlZ {
  flex-direction: column !important;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/baumhaus-sterntaler.jpg");
}
.cid-svRJ8VghlZ .row.heading {
  margin-bottom: 72px;
}
.cid-svRJ8VghlZ .card {
  flex-direction: row;
  justify-content: center;
}
.cid-svRJ8VghlZ .card-box {
  display: flex;
  flex-direction: column;
}
.cid-svRJ8VghlZ .card-box .card-title {
  color: #ffffff;
}
.cid-svRJ8VghlZ .card-box .mbr-text {
  color: #ffffff;
}
.cid-svRJ8VghlZ .card-box .link .btn {
  margin: 0;
}
.cid-svRJ8VghlZ .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-svRJ8VghlZ .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-svRJ8VghlZ .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-svRJ8VghlZ .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-svRJ8VghlZ .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-svRJ8VghlZ .card .card-box .card-title,
  .cid-svRJ8VghlZ .card .card-box .mbr-text,
  .cid-svRJ8VghlZ .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-svRJ8VghlZ .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-svRJ8VghlZ .mbr-section-title {
  text-align: left;
}
.cid-svRJ8VghlZ .mbr-text,
.cid-svRJ8VghlZ .mbr-section-btn,
.cid-svRJ8VghlZ .buttons-wrap {
  text-align: left;
}
.cid-svRJ8VghlZ .card .card-box .mbr-text,
.cid-svRJ8VghlZ .card .card-box .mbr-section-btn {
  text-align: left;
}
.cid-svRJ8VghlZ .card .card-box .card-title,
.cid-svRJ8VghlZ .card-img {
  text-align: left;
}
.cid-svRJ8X5Gh4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #021a0f;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svRJ8X5Gh4 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svRJ8X5Gh4 .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svRJ8X5Gh4 .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svRJ8X5Gh4 .btn-primary-outline:active {
  color: gray;
}
.cid-svRJ8X5Gh4 .btn-primary-outline:hover {
  color: white;
}
.cid-svRJ8X5Gh4 div {
  overflow: hidden;
}
.cid-svRJ8X5Gh4 li.active .btn-primary-outline {
  color: white;
}
.cid-svRJ8X5Gh4 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svRJ8X5Gh4 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svRJ8X5Gh4 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svRJ8X5Gh4 .mbr-gallery-item {
  overflow: hidden;
}
.cid-svRJ8X5Gh4 .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svRJ8X5Gh4 .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svRJ8X5Gh4 .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svRJ8X5Gh4 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svRJ8X5Gh4 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svRJ8X5Gh4 .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svRJ8X5Gh4 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svRJ8X5Gh4 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svRJ8Y0KDH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svRJ8Y0KDH .content {
    text-align: center;
  }
  .cid-svRJ8Y0KDH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svRJ8Y0KDH .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svRJ8Y0KDH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svRJ8Y0KDH .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svRJ8Y0KDH .google-map {
  height: 25rem;
  position: relative;
}
.cid-svRJ8Y0KDH .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svRJ8Y0KDH .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svRJ8Y0KDH .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svRJ8Y0KDH .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svRJ8Y0KDH .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svRJ8Y0KDH .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svRJ8Y0KDH .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svRJ8Y0KDH .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svRJ8Y0KDH .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svRJ8Y0KDH .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svRJ8Y0KDH .list {
  list-style-type: none;
  padding: 0;
}
.cid-svRJ8Y0KDH .mbr-text {
  text-align: left;
}
.cid-svRJ8Y0KDH H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svRKuO1okF {
  flex-direction: column !important;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/baumhaus-heidi.jpg");
}
.cid-svRKuO1okF .row.heading {
  margin-bottom: 72px;
}
.cid-svRKuO1okF .card {
  flex-direction: row;
  justify-content: center;
}
.cid-svRKuO1okF .card-box {
  display: flex;
  flex-direction: column;
}
.cid-svRKuO1okF .card-box .card-title {
  color: #ffffff;
}
.cid-svRKuO1okF .card-box .mbr-text {
  color: #ffffff;
}
.cid-svRKuO1okF .card-box .link .btn {
  margin: 0;
}
.cid-svRKuO1okF .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-svRKuO1okF .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-svRKuO1okF .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-svRKuO1okF .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-svRKuO1okF .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-svRKuO1okF .card .card-box .card-title,
  .cid-svRKuO1okF .card .card-box .mbr-text,
  .cid-svRKuO1okF .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-svRKuO1okF .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-svRKuO1okF .mbr-section-title {
  text-align: left;
}
.cid-svRKuO1okF .mbr-text,
.cid-svRKuO1okF .mbr-section-btn,
.cid-svRKuO1okF .buttons-wrap {
  text-align: left;
}
.cid-svRKuO1okF .card .card-box .mbr-text,
.cid-svRKuO1okF .card .card-box .mbr-section-btn {
  text-align: left;
}
.cid-svRKuO1okF .card .card-box .card-title,
.cid-svRKuO1okF .card-img {
  text-align: left;
}
.cid-svRKuQbR2Q {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #021a0f;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svRKuQbR2Q .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svRKuQbR2Q .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svRKuQbR2Q .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svRKuQbR2Q .btn-primary-outline:active {
  color: gray;
}
.cid-svRKuQbR2Q .btn-primary-outline:hover {
  color: white;
}
.cid-svRKuQbR2Q div {
  overflow: hidden;
}
.cid-svRKuQbR2Q li.active .btn-primary-outline {
  color: white;
}
.cid-svRKuQbR2Q .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svRKuQbR2Q .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svRKuQbR2Q .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svRKuQbR2Q .mbr-gallery-item {
  overflow: hidden;
}
.cid-svRKuQbR2Q .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svRKuQbR2Q .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svRKuQbR2Q .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svRKuQbR2Q .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svRKuQbR2Q .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svRKuQbR2Q .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svRKuQbR2Q .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svRKuQbR2Q .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svRKuRdVXP {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svRKuRdVXP .content {
    text-align: center;
  }
  .cid-svRKuRdVXP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svRKuRdVXP .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svRKuRdVXP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svRKuRdVXP .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svRKuRdVXP .google-map {
  height: 25rem;
  position: relative;
}
.cid-svRKuRdVXP .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svRKuRdVXP .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svRKuRdVXP .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svRKuRdVXP .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svRKuRdVXP .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svRKuRdVXP .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svRKuRdVXP .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svRKuRdVXP .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svRKuRdVXP .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svRKuRdVXP .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svRKuRdVXP .list {
  list-style-type: none;
  padding: 0;
}
.cid-svRKuRdVXP .mbr-text {
  text-align: left;
}
.cid-svRKuRdVXP H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svRMU11JPa {
  flex-direction: column !important;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/baumhaus-bienemaja-gross.jpg");
}
.cid-svRMU11JPa .row.heading {
  margin-bottom: 72px;
}
.cid-svRMU11JPa .card {
  flex-direction: row;
  justify-content: center;
}
.cid-svRMU11JPa .card-box {
  display: flex;
  flex-direction: column;
}
.cid-svRMU11JPa .card-box .card-title {
  color: #ffffff;
}
.cid-svRMU11JPa .card-box .mbr-text {
  color: #ffffff;
}
.cid-svRMU11JPa .card-box .link .btn {
  margin: 0;
}
.cid-svRMU11JPa .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-svRMU11JPa .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-svRMU11JPa .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-svRMU11JPa .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-svRMU11JPa .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-svRMU11JPa .card .card-box .card-title,
  .cid-svRMU11JPa .card .card-box .mbr-text,
  .cid-svRMU11JPa .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-svRMU11JPa .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-svRMU11JPa .mbr-section-title {
  text-align: left;
}
.cid-svRMU11JPa .mbr-text,
.cid-svRMU11JPa .mbr-section-btn,
.cid-svRMU11JPa .buttons-wrap {
  text-align: left;
  color: #ffffff;
}
.cid-svRMU11JPa .card .card-box .mbr-text,
.cid-svRMU11JPa .card .card-box .mbr-section-btn {
  text-align: left;
}
.cid-svRMU11JPa .card .card-box .card-title,
.cid-svRMU11JPa .card-img {
  text-align: left;
}
.cid-sExCZ7jrkC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1a1d0c;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sExCZ7jrkC .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sExCZ7jrkC .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-sExCZ7jrkC .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-sExCZ7jrkC .btn-primary-outline:active {
  color: gray;
}
.cid-sExCZ7jrkC .btn-primary-outline:hover {
  color: white;
}
.cid-sExCZ7jrkC div {
  overflow: hidden;
}
.cid-sExCZ7jrkC li.active .btn-primary-outline {
  color: white;
}
.cid-sExCZ7jrkC .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sExCZ7jrkC .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sExCZ7jrkC .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sExCZ7jrkC .mbr-gallery-item {
  overflow: hidden;
}
.cid-sExCZ7jrkC .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-sExCZ7jrkC .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-sExCZ7jrkC .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-sExCZ7jrkC .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sExCZ7jrkC .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sExCZ7jrkC .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-sExCZ7jrkC .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sExCZ7jrkC .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svRMU3Z0dw {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svRMU3Z0dw .content {
    text-align: center;
  }
  .cid-svRMU3Z0dw .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svRMU3Z0dw .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svRMU3Z0dw .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svRMU3Z0dw .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svRMU3Z0dw .google-map {
  height: 25rem;
  position: relative;
}
.cid-svRMU3Z0dw .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svRMU3Z0dw .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svRMU3Z0dw .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svRMU3Z0dw .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svRMU3Z0dw .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svRMU3Z0dw .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svRMU3Z0dw .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svRMU3Z0dw .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svRMU3Z0dw .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svRMU3Z0dw .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svRMU3Z0dw .list {
  list-style-type: none;
  padding: 0;
}
.cid-svRMU3Z0dw .mbr-text {
  text-align: left;
}
.cid-svRMU3Z0dw H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svROg6m9Zi {
  flex-direction: column !important;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/baumhaus-frauholle-gross.jpg");
}
.cid-svROg6m9Zi .row.heading {
  margin-bottom: 72px;
}
.cid-svROg6m9Zi .card {
  flex-direction: row;
  justify-content: center;
}
.cid-svROg6m9Zi .card-box {
  display: flex;
  flex-direction: column;
}
.cid-svROg6m9Zi .card-box .card-title {
  color: #ffffff;
}
.cid-svROg6m9Zi .card-box .mbr-text {
  color: #ffffff;
}
.cid-svROg6m9Zi .card-box .link .btn {
  margin: 0;
}
.cid-svROg6m9Zi .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-svROg6m9Zi .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-svROg6m9Zi .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-svROg6m9Zi .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-svROg6m9Zi .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-svROg6m9Zi .card .card-box .card-title,
  .cid-svROg6m9Zi .card .card-box .mbr-text,
  .cid-svROg6m9Zi .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-svROg6m9Zi .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-svROg6m9Zi .mbr-section-title {
  text-align: left;
}
.cid-svROg6m9Zi .mbr-text,
.cid-svROg6m9Zi .mbr-section-btn,
.cid-svROg6m9Zi .buttons-wrap {
  text-align: left;
}
.cid-svROg6m9Zi .card .card-box .mbr-text,
.cid-svROg6m9Zi .card .card-box .mbr-section-btn {
  text-align: left;
}
.cid-svROg6m9Zi .card .card-box .card-title,
.cid-svROg6m9Zi .card-img {
  text-align: left;
}
.cid-sExNltlZ7r {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1a1d0c;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sExNltlZ7r .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sExNltlZ7r .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-sExNltlZ7r .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-sExNltlZ7r .btn-primary-outline:active {
  color: gray;
}
.cid-sExNltlZ7r .btn-primary-outline:hover {
  color: white;
}
.cid-sExNltlZ7r div {
  overflow: hidden;
}
.cid-sExNltlZ7r li.active .btn-primary-outline {
  color: white;
}
.cid-sExNltlZ7r .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sExNltlZ7r .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sExNltlZ7r .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sExNltlZ7r .mbr-gallery-item {
  overflow: hidden;
}
.cid-sExNltlZ7r .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-sExNltlZ7r .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-sExNltlZ7r .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-sExNltlZ7r .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sExNltlZ7r .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sExNltlZ7r .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-sExNltlZ7r .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sExNltlZ7r .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svROg8r7lv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svROg8r7lv .content {
    text-align: center;
  }
  .cid-svROg8r7lv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svROg8r7lv .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svROg8r7lv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svROg8r7lv .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svROg8r7lv .google-map {
  height: 25rem;
  position: relative;
}
.cid-svROg8r7lv .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svROg8r7lv .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svROg8r7lv .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svROg8r7lv .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svROg8r7lv .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svROg8r7lv .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svROg8r7lv .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svROg8r7lv .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svROg8r7lv .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svROg8r7lv .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svROg8r7lv .list {
  list-style-type: none;
  padding: 0;
}
.cid-svROg8r7lv .mbr-text {
  text-align: left;
}
.cid-svROg8r7lv H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svRPrGBshQ {
  flex-direction: column !important;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/baumhaus-kuckucksnest-gross.jpg");
}
.cid-svRPrGBshQ .row.heading {
  margin-bottom: 72px;
}
.cid-svRPrGBshQ .card {
  flex-direction: row;
  justify-content: center;
}
.cid-svRPrGBshQ .card-box {
  display: flex;
  flex-direction: column;
}
.cid-svRPrGBshQ .card-box .card-title {
  color: #ffffff;
}
.cid-svRPrGBshQ .card-box .mbr-text {
  color: #ffffff;
}
.cid-svRPrGBshQ .card-box .link .btn {
  margin: 0;
}
.cid-svRPrGBshQ .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-svRPrGBshQ .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-svRPrGBshQ .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-svRPrGBshQ .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-svRPrGBshQ .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-svRPrGBshQ .card .card-box .card-title,
  .cid-svRPrGBshQ .card .card-box .mbr-text,
  .cid-svRPrGBshQ .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-svRPrGBshQ .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-svRPrGBshQ .mbr-section-title {
  text-align: left;
}
.cid-svRPrGBshQ .mbr-text,
.cid-svRPrGBshQ .mbr-section-btn,
.cid-svRPrGBshQ .buttons-wrap {
  text-align: left;
}
.cid-svRPrGBshQ .card .card-box .mbr-text,
.cid-svRPrGBshQ .card .card-box .mbr-section-btn {
  text-align: left;
}
.cid-svRPrGBshQ .card .card-box .card-title,
.cid-svRPrGBshQ .card-img {
  text-align: left;
}
.cid-sExNQD0U1o {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #1a1d0c;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sExNQD0U1o .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sExNQD0U1o .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-sExNQD0U1o .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-sExNQD0U1o .btn-primary-outline:active {
  color: gray;
}
.cid-sExNQD0U1o .btn-primary-outline:hover {
  color: white;
}
.cid-sExNQD0U1o div {
  overflow: hidden;
}
.cid-sExNQD0U1o li.active .btn-primary-outline {
  color: white;
}
.cid-sExNQD0U1o .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sExNQD0U1o .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sExNQD0U1o .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sExNQD0U1o .mbr-gallery-item {
  overflow: hidden;
}
.cid-sExNQD0U1o .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-sExNQD0U1o .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-sExNQD0U1o .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-sExNQD0U1o .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sExNQD0U1o .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sExNQD0U1o .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-sExNQD0U1o .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sExNQD0U1o .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svRPrIfpYu {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svRPrIfpYu .content {
    text-align: center;
  }
  .cid-svRPrIfpYu .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svRPrIfpYu .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svRPrIfpYu .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svRPrIfpYu .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svRPrIfpYu .google-map {
  height: 25rem;
  position: relative;
}
.cid-svRPrIfpYu .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svRPrIfpYu .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svRPrIfpYu .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svRPrIfpYu .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svRPrIfpYu .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svRPrIfpYu .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svRPrIfpYu .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svRPrIfpYu .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svRPrIfpYu .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svRPrIfpYu .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svRPrIfpYu .list {
  list-style-type: none;
  padding: 0;
}
.cid-svRPrIfpYu .mbr-text {
  text-align: left;
}
.cid-svRPrIfpYu H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svRQ3Ymfig {
  flex-direction: column !important;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/baumhaus-waldburg-unten-gross.jpg");
}
.cid-svRQ3Ymfig .row.heading {
  margin-bottom: 72px;
}
.cid-svRQ3Ymfig .card {
  flex-direction: row;
  justify-content: center;
}
.cid-svRQ3Ymfig .card-box {
  display: flex;
  flex-direction: column;
}
.cid-svRQ3Ymfig .card-box .card-title {
  color: #ffffff;
}
.cid-svRQ3Ymfig .card-box .mbr-text {
  color: #ffffff;
}
.cid-svRQ3Ymfig .card-box .link .btn {
  margin: 0;
}
.cid-svRQ3Ymfig .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-svRQ3Ymfig .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-svRQ3Ymfig .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-svRQ3Ymfig .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-svRQ3Ymfig .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-svRQ3Ymfig .card .card-box .card-title,
  .cid-svRQ3Ymfig .card .card-box .mbr-text,
  .cid-svRQ3Ymfig .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-svRQ3Ymfig .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-svRQ3Ymfig .mbr-section-title {
  text-align: left;
}
.cid-svRQ3Ymfig .mbr-text,
.cid-svRQ3Ymfig .mbr-section-btn,
.cid-svRQ3Ymfig .buttons-wrap {
  text-align: left;
}
.cid-svRQ3Ymfig .card .card-box .mbr-text,
.cid-svRQ3Ymfig .card .card-box .mbr-section-btn {
  text-align: left;
}
.cid-svRQ3Ymfig .card .card-box .card-title,
.cid-svRQ3Ymfig .card-img {
  text-align: left;
}
.cid-sExOdrpcYL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #2a310a;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sExOdrpcYL .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sExOdrpcYL .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-sExOdrpcYL .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-sExOdrpcYL .btn-primary-outline:active {
  color: gray;
}
.cid-sExOdrpcYL .btn-primary-outline:hover {
  color: white;
}
.cid-sExOdrpcYL div {
  overflow: hidden;
}
.cid-sExOdrpcYL li.active .btn-primary-outline {
  color: white;
}
.cid-sExOdrpcYL .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sExOdrpcYL .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sExOdrpcYL .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sExOdrpcYL .mbr-gallery-item {
  overflow: hidden;
}
.cid-sExOdrpcYL .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-sExOdrpcYL .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-sExOdrpcYL .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-sExOdrpcYL .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sExOdrpcYL .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sExOdrpcYL .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-sExOdrpcYL .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sExOdrpcYL .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svRQ40BKoZ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svRQ40BKoZ .content {
    text-align: center;
  }
  .cid-svRQ40BKoZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svRQ40BKoZ .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svRQ40BKoZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svRQ40BKoZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svRQ40BKoZ .google-map {
  height: 25rem;
  position: relative;
}
.cid-svRQ40BKoZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svRQ40BKoZ .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svRQ40BKoZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svRQ40BKoZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svRQ40BKoZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svRQ40BKoZ .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svRQ40BKoZ .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svRQ40BKoZ .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svRQ40BKoZ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svRQ40BKoZ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svRQ40BKoZ .list {
  list-style-type: none;
  padding: 0;
}
.cid-svRQ40BKoZ .mbr-text {
  text-align: left;
}
.cid-svRQ40BKoZ H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svRQVvXJYw {
  flex-direction: column !important;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/baumhaus-waldburg-oben-gross.jpg");
}
.cid-svRQVvXJYw .row.heading {
  margin-bottom: 72px;
}
.cid-svRQVvXJYw .card {
  flex-direction: row;
  justify-content: center;
}
.cid-svRQVvXJYw .card-box {
  display: flex;
  flex-direction: column;
}
.cid-svRQVvXJYw .card-box .card-title {
  color: #ffffff;
}
.cid-svRQVvXJYw .card-box .mbr-text {
  color: #ffffff;
}
.cid-svRQVvXJYw .card-box .link .btn {
  margin: 0;
}
.cid-svRQVvXJYw .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-svRQVvXJYw .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-svRQVvXJYw .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-svRQVvXJYw .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-svRQVvXJYw .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-svRQVvXJYw .card .card-box .card-title,
  .cid-svRQVvXJYw .card .card-box .mbr-text,
  .cid-svRQVvXJYw .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-svRQVvXJYw .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-svRQVvXJYw .mbr-section-title {
  text-align: left;
}
.cid-svRQVvXJYw .mbr-text,
.cid-svRQVvXJYw .mbr-section-btn,
.cid-svRQVvXJYw .buttons-wrap {
  text-align: left;
}
.cid-svRQVvXJYw .card .card-box .mbr-text,
.cid-svRQVvXJYw .card .card-box .mbr-section-btn {
  text-align: left;
}
.cid-svRQVvXJYw .card .card-box .card-title,
.cid-svRQVvXJYw .card-img {
  text-align: left;
}
.cid-sExOMZd3MN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #2a310a;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sExOMZd3MN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sExOMZd3MN .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-sExOMZd3MN .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-sExOMZd3MN .btn-primary-outline:active {
  color: gray;
}
.cid-sExOMZd3MN .btn-primary-outline:hover {
  color: white;
}
.cid-sExOMZd3MN div {
  overflow: hidden;
}
.cid-sExOMZd3MN li.active .btn-primary-outline {
  color: white;
}
.cid-sExOMZd3MN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sExOMZd3MN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sExOMZd3MN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sExOMZd3MN .mbr-gallery-item {
  overflow: hidden;
}
.cid-sExOMZd3MN .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-sExOMZd3MN .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-sExOMZd3MN .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-sExOMZd3MN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sExOMZd3MN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sExOMZd3MN .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-sExOMZd3MN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sExOMZd3MN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svRQVxTXCg {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svRQVxTXCg .content {
    text-align: center;
  }
  .cid-svRQVxTXCg .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svRQVxTXCg .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svRQVxTXCg .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svRQVxTXCg .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svRQVxTXCg .google-map {
  height: 25rem;
  position: relative;
}
.cid-svRQVxTXCg .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svRQVxTXCg .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svRQVxTXCg .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svRQVxTXCg .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svRQVxTXCg .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svRQVxTXCg .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svRQVxTXCg .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svRQVxTXCg .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svRQVxTXCg .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svRQVxTXCg .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svRQVxTXCg .list {
  list-style-type: none;
  padding: 0;
}
.cid-svRQVxTXCg .mbr-text {
  text-align: left;
}
.cid-svRQVxTXCg H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svN9KiZrvA {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #1a1d0c;
}
.cid-svN9KiZrvA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-svN9KiZrvA .mbr-text {
  color: #ffffff;
}
.cid-svN9KjEwQV {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svN9KjEwQV .content {
    text-align: center;
  }
  .cid-svN9KjEwQV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svN9KjEwQV .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svN9KjEwQV .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svN9KjEwQV .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svN9KjEwQV .google-map {
  height: 25rem;
  position: relative;
}
.cid-svN9KjEwQV .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svN9KjEwQV .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svN9KjEwQV .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svN9KjEwQV .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svN9KjEwQV .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svN9KjEwQV .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svN9KjEwQV .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svN9KjEwQV .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svN9KjEwQV .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svN9KjEwQV .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svN9KjEwQV .list {
  list-style-type: none;
  padding: 0;
}
.cid-svN9KjEwQV .mbr-text {
  text-align: left;
}
.cid-svN9KjEwQV H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-svShSCdxCu {
  flex-direction: column !important;
  justify-content: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/baumhaus-grillhaus-gross-1.jpg");
}
.cid-svShSCdxCu .row.heading {
  margin-bottom: 72px;
}
.cid-svShSCdxCu .card {
  flex-direction: row;
  justify-content: center;
}
.cid-svShSCdxCu .card-box {
  display: flex;
  flex-direction: column;
}
.cid-svShSCdxCu .card-box .card-title {
  color: #ffffff;
}
.cid-svShSCdxCu .card-box .mbr-text {
  color: #ffffff;
}
.cid-svShSCdxCu .card-box .link .btn {
  margin: 0;
}
.cid-svShSCdxCu .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-svShSCdxCu .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-svShSCdxCu .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-svShSCdxCu .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-svShSCdxCu .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-svShSCdxCu .card .card-box .card-title,
  .cid-svShSCdxCu .card .card-box .mbr-text,
  .cid-svShSCdxCu .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-svShSCdxCu .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-svShSCdxCu .mbr-section-title {
  text-align: left;
}
.cid-svShSCdxCu .mbr-text,
.cid-svShSCdxCu .mbr-section-btn,
.cid-svShSCdxCu .buttons-wrap {
  text-align: left;
}
.cid-svShSCdxCu .card .card-box .mbr-text,
.cid-svShSCdxCu .card .card-box .mbr-section-btn {
  text-align: left;
}
.cid-svShSCdxCu .card .card-box .card-title,
.cid-svShSCdxCu .card-img {
  text-align: left;
}
.cid-svShSDzrpM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #021a0f;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-svShSDzrpM .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-svShSDzrpM .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-svShSDzrpM .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-svShSDzrpM .btn-primary-outline:active {
  color: gray;
}
.cid-svShSDzrpM .btn-primary-outline:hover {
  color: white;
}
.cid-svShSDzrpM div {
  overflow: hidden;
}
.cid-svShSDzrpM li.active .btn-primary-outline {
  color: white;
}
.cid-svShSDzrpM .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-svShSDzrpM .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-svShSDzrpM .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-svShSDzrpM .mbr-gallery-item {
  overflow: hidden;
}
.cid-svShSDzrpM .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-svShSDzrpM .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-svShSDzrpM .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-svShSDzrpM .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-svShSDzrpM .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-svShSDzrpM .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-svShSDzrpM .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-svShSDzrpM .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-svShSEnkyZ {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-svShSEnkyZ .content {
    text-align: center;
  }
  .cid-svShSEnkyZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-svShSEnkyZ .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-svShSEnkyZ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-svShSEnkyZ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-svShSEnkyZ .google-map {
  height: 25rem;
  position: relative;
}
.cid-svShSEnkyZ .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-svShSEnkyZ .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svShSEnkyZ .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svShSEnkyZ .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svShSEnkyZ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-svShSEnkyZ .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-svShSEnkyZ .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-svShSEnkyZ .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svShSEnkyZ .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-svShSEnkyZ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-svShSEnkyZ .list {
  list-style-type: none;
  padding: 0;
}
.cid-svShSEnkyZ .mbr-text {
  text-align: left;
}
.cid-svShSEnkyZ H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sww1K9VA7l {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/6-titel-baumhauspark-voglsam.jpg");
}
.cid-sww1K9VA7l .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sww1K9VA7l .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-sww1Kaqv2P {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #2a310a;
}
.cid-sww1Kaqv2P .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sww1Kaqv2P .form-control,
.cid-sww1Kaqv2P .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sww1Kaqv2P .form-control::-webkit-input-placeholder,
.cid-sww1Kaqv2P .field-input::-webkit-input-placeholder,
.cid-sww1Kaqv2P .form-control::-webkit-input-placeholder,
.cid-sww1Kaqv2P .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-sww1Kaqv2P .form-control:-moz-placeholder,
.cid-sww1Kaqv2P .field-input:-moz-placeholder,
.cid-sww1Kaqv2P .form-control:-moz-placeholder,
.cid-sww1Kaqv2P .field-input:-moz-placeholder {
  color: #000000;
}
.cid-sww1Kaqv2P .form-control:hover,
.cid-sww1Kaqv2P .field-input:hover,
.cid-sww1Kaqv2P .form-control:focus,
.cid-sww1Kaqv2P .field-input:focus {
  background-color: #96be11;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sww1Kaqv2P .form-control:hover::-webkit-input-placeholder,
.cid-sww1Kaqv2P .field-input:hover::-webkit-input-placeholder,
.cid-sww1Kaqv2P .form-control:focus::-webkit-input-placeholder,
.cid-sww1Kaqv2P .field-input:focus::-webkit-input-placeholder,
.cid-sww1Kaqv2P .form-control:hover::-webkit-input-placeholder,
.cid-sww1Kaqv2P .field-input:hover::-webkit-input-placeholder,
.cid-sww1Kaqv2P .form-control:focus::-webkit-input-placeholder,
.cid-sww1Kaqv2P .field-input:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-sww1Kaqv2P .form-control:hover:-moz-placeholder,
.cid-sww1Kaqv2P .field-input:hover:-moz-placeholder,
.cid-sww1Kaqv2P .form-control:focus:-moz-placeholder,
.cid-sww1Kaqv2P .field-input:focus:-moz-placeholder,
.cid-sww1Kaqv2P .form-control:hover:-moz-placeholder,
.cid-sww1Kaqv2P .field-input:hover:-moz-placeholder,
.cid-sww1Kaqv2P .form-control:focus:-moz-placeholder,
.cid-sww1Kaqv2P .field-input:focus:-moz-placeholder {
  color: #ffffff;
}
.cid-sww1Kaqv2P .jq-number__spin:hover,
.cid-sww1Kaqv2P .jq-number__spin:focus {
  background-color: #96be11;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sww1Kaqv2P .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sww1Kaqv2P .jq-selectbox li,
.cid-sww1Kaqv2P .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sww1Kaqv2P .jq-selectbox li:hover,
.cid-sww1Kaqv2P .jq-selectbox li.selected {
  background-color: #96be11;
  color: #000000;
}
.cid-sww1Kaqv2P .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sww1Kaqv2P .jq-number__spin.minus:hover:after,
.cid-sww1Kaqv2P .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sww1Kaqv2P .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sww1Kaqv2P .jq-number__spin.minus:after,
.cid-sww1Kaqv2P .jq-number__spin.plus:after {
  border-top-color: #96be11;
  border-bottom-color: #96be11;
}
.cid-sww1Kaqv2P input::-webkit-clear-button {
  display: none;
}
.cid-sww1Kaqv2P input::-webkit-inner-spin-button {
  display: none;
}
.cid-sww1Kaqv2P input::-webkit-outer-spin-button {
  display: none;
}
.cid-sww1Kaqv2P input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sww1Kaqv2P LABEL {
  color: #ffffff;
}
.cid-sww1KbAqZC {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-sww1KbAqZC .content {
    text-align: center;
  }
  .cid-sww1KbAqZC .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sww1KbAqZC .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-sww1KbAqZC .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sww1KbAqZC .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-sww1KbAqZC .google-map {
  height: 25rem;
  position: relative;
}
.cid-sww1KbAqZC .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-sww1KbAqZC .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sww1KbAqZC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sww1KbAqZC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sww1KbAqZC .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sww1KbAqZC .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-sww1KbAqZC .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-sww1KbAqZC .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sww1KbAqZC .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sww1KbAqZC .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sww1KbAqZC .list {
  list-style-type: none;
  padding: 0;
}
.cid-sww1KbAqZC .mbr-text {
  text-align: left;
}
.cid-sww1KbAqZC H5 {
  text-align: left;
}
.cid-sGZxuZK30g .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .nav-item,
.cid-sGZxuZK30g .nav-link,
.cid-sGZxuZK30g .navbar-caption {
  font-weight: normal;
}
.cid-sGZxuZK30g .nav-item:focus,
.cid-sGZxuZK30g .nav-link:focus {
  outline: none;
}
.cid-sGZxuZK30g .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-sGZxuZK30g .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGZxuZK30g .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGZxuZK30g .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGZxuZK30g .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGZxuZK30g .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-sGZxuZK30g .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-sGZxuZK30g .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sGZxuZK30g .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGZxuZK30g .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGZxuZK30g .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGZxuZK30g .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sGZxuZK30g .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sGZxuZK30g .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGZxuZK30g .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-sGZxuZK30g .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGZxuZK30g .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-sGZxuZK30g .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-sGZxuZK30g .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-sGZxuZK30g .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sGZxuZK30g .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-sGZxuZK30g .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGZxuZK30g .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGZxuZK30g .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGZxuZK30g .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-sGZxuZK30g .dropdown-item.active,
.cid-sGZxuZK30g .dropdown-item:active {
  background-color: transparent;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGZxuZK30g .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-sGZxuZK30g .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGZxuZK30g .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGZxuZK30g ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sGZxuZK30g .navbar-buttons {
  text-align: center;
}
.cid-sGZxuZK30g button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sGZxuZK30g button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sGZxuZK30g nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sGZxuZK30g .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-sGZxuZK30g a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGZxuZK30g .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-sGZxuZK30g .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-sGZxuZK30g .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-sGZxuZK30g .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGZxuZK30g .navbar {
    height: 77px;
  }
  .cid-sGZxuZK30g .navbar.opened {
    height: auto;
  }
  .cid-sGZxuZK30g .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP7j6F1gSh {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/7-titel-tipidorf-voglsam-1.jpg");
}
.cid-uP7j6F1gSh .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uP7j6F1gSh .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uP7j6Fpmya {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #2a310a;
}
.cid-uP7j6Fpmya .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uP7j6Fpmya .form-control,
.cid-uP7j6Fpmya .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uP7j6Fpmya .form-control::-webkit-input-placeholder,
.cid-uP7j6Fpmya .field-input::-webkit-input-placeholder,
.cid-uP7j6Fpmya .form-control::-webkit-input-placeholder,
.cid-uP7j6Fpmya .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-uP7j6Fpmya .form-control:-moz-placeholder,
.cid-uP7j6Fpmya .field-input:-moz-placeholder,
.cid-uP7j6Fpmya .form-control:-moz-placeholder,
.cid-uP7j6Fpmya .field-input:-moz-placeholder {
  color: #000000;
}
.cid-uP7j6Fpmya .form-control:hover,
.cid-uP7j6Fpmya .field-input:hover,
.cid-uP7j6Fpmya .form-control:focus,
.cid-uP7j6Fpmya .field-input:focus {
  background-color: #96be11;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uP7j6Fpmya .form-control:hover::-webkit-input-placeholder,
.cid-uP7j6Fpmya .field-input:hover::-webkit-input-placeholder,
.cid-uP7j6Fpmya .form-control:focus::-webkit-input-placeholder,
.cid-uP7j6Fpmya .field-input:focus::-webkit-input-placeholder,
.cid-uP7j6Fpmya .form-control:hover::-webkit-input-placeholder,
.cid-uP7j6Fpmya .field-input:hover::-webkit-input-placeholder,
.cid-uP7j6Fpmya .form-control:focus::-webkit-input-placeholder,
.cid-uP7j6Fpmya .field-input:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-uP7j6Fpmya .form-control:hover:-moz-placeholder,
.cid-uP7j6Fpmya .field-input:hover:-moz-placeholder,
.cid-uP7j6Fpmya .form-control:focus:-moz-placeholder,
.cid-uP7j6Fpmya .field-input:focus:-moz-placeholder,
.cid-uP7j6Fpmya .form-control:hover:-moz-placeholder,
.cid-uP7j6Fpmya .field-input:hover:-moz-placeholder,
.cid-uP7j6Fpmya .form-control:focus:-moz-placeholder,
.cid-uP7j6Fpmya .field-input:focus:-moz-placeholder {
  color: #ffffff;
}
.cid-uP7j6Fpmya .jq-number__spin:hover,
.cid-uP7j6Fpmya .jq-number__spin:focus {
  background-color: #96be11;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uP7j6Fpmya .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uP7j6Fpmya .jq-selectbox li,
.cid-uP7j6Fpmya .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uP7j6Fpmya .jq-selectbox li:hover,
.cid-uP7j6Fpmya .jq-selectbox li.selected {
  background-color: #96be11;
  color: #000000;
}
.cid-uP7j6Fpmya .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uP7j6Fpmya .jq-number__spin.minus:hover:after,
.cid-uP7j6Fpmya .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uP7j6Fpmya .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uP7j6Fpmya .jq-number__spin.minus:after,
.cid-uP7j6Fpmya .jq-number__spin.plus:after {
  border-top-color: #96be11;
  border-bottom-color: #96be11;
}
.cid-uP7j6Fpmya input::-webkit-clear-button {
  display: none;
}
.cid-uP7j6Fpmya input::-webkit-inner-spin-button {
  display: none;
}
.cid-uP7j6Fpmya input::-webkit-outer-spin-button {
  display: none;
}
.cid-uP7j6Fpmya input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uP7j6Fpmya LABEL {
  color: #ffffff;
}
.cid-uP7j6FQeXU {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-uP7j6FQeXU .content {
    text-align: center;
  }
  .cid-uP7j6FQeXU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uP7j6FQeXU .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uP7j6FQeXU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uP7j6FQeXU .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uP7j6FQeXU .google-map {
  height: 25rem;
  position: relative;
}
.cid-uP7j6FQeXU .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uP7j6FQeXU .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uP7j6FQeXU .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uP7j6FQeXU .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uP7j6FQeXU .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uP7j6FQeXU .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uP7j6FQeXU .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uP7j6FQeXU .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uP7j6FQeXU .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uP7j6FQeXU .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uP7j6FQeXU .list {
  list-style-type: none;
  padding: 0;
}
.cid-uP7j6FQeXU .mbr-text {
  text-align: left;
}
.cid-uP7j6FQeXU H5 {
  text-align: left;
}
.cid-uP7j6GxJhf .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uP7j6GxJhf .nav-item,
.cid-uP7j6GxJhf .nav-link,
.cid-uP7j6GxJhf .navbar-caption {
  font-weight: normal;
}
.cid-uP7j6GxJhf .nav-item:focus,
.cid-uP7j6GxJhf .nav-link:focus {
  outline: none;
}
.cid-uP7j6GxJhf .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uP7j6GxJhf .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-uP7j6GxJhf .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uP7j6GxJhf .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uP7j6GxJhf .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uP7j6GxJhf .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uP7j6GxJhf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uP7j6GxJhf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uP7j6GxJhf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP7j6GxJhf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP7j6GxJhf .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-uP7j6GxJhf .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-uP7j6GxJhf .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-uP7j6GxJhf .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uP7j6GxJhf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP7j6GxJhf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uP7j6GxJhf .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uP7j6GxJhf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP7j6GxJhf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uP7j6GxJhf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP7j6GxJhf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uP7j6GxJhf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uP7j6GxJhf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP7j6GxJhf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP7j6GxJhf .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uP7j6GxJhf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP7j6GxJhf .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uP7j6GxJhf .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-uP7j6GxJhf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uP7j6GxJhf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uP7j6GxJhf .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uP7j6GxJhf .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uP7j6GxJhf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uP7j6GxJhf .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-uP7j6GxJhf .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-uP7j6GxJhf .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uP7j6GxJhf .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uP7j6GxJhf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uP7j6GxJhf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP7j6GxJhf .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-uP7j6GxJhf .dropdown-item.active,
.cid-uP7j6GxJhf .dropdown-item:active {
  background-color: transparent;
}
.cid-uP7j6GxJhf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP7j6GxJhf .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP7j6GxJhf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-uP7j6GxJhf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP7j6GxJhf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP7j6GxJhf ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uP7j6GxJhf .navbar-buttons {
  text-align: center;
}
.cid-uP7j6GxJhf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uP7j6GxJhf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uP7j6GxJhf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP7j6GxJhf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP7j6GxJhf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP7j6GxJhf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP7j6GxJhf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP7j6GxJhf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP7j6GxJhf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP7j6GxJhf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP7j6GxJhf .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uP7j6GxJhf a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uP7j6GxJhf .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uP7j6GxJhf .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-uP7j6GxJhf .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-uP7j6GxJhf .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP7j6GxJhf .navbar {
    height: 77px;
  }
  .cid-uP7j6GxJhf .navbar.opened {
    height: auto;
  }
  .cid-uP7j6GxJhf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP7o8zrirv {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/8-titel-baumhauspark-voglsam-1.jpg");
}
.cid-uP7o8zrirv .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uP7o8zrirv .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-uP7o8zUbLV {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #2a310a;
}
.cid-uP7o8zUbLV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uP7o8zUbLV .form-control,
.cid-uP7o8zUbLV .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uP7o8zUbLV .form-control::-webkit-input-placeholder,
.cid-uP7o8zUbLV .field-input::-webkit-input-placeholder,
.cid-uP7o8zUbLV .form-control::-webkit-input-placeholder,
.cid-uP7o8zUbLV .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-uP7o8zUbLV .form-control:-moz-placeholder,
.cid-uP7o8zUbLV .field-input:-moz-placeholder,
.cid-uP7o8zUbLV .form-control:-moz-placeholder,
.cid-uP7o8zUbLV .field-input:-moz-placeholder {
  color: #000000;
}
.cid-uP7o8zUbLV .form-control:hover,
.cid-uP7o8zUbLV .field-input:hover,
.cid-uP7o8zUbLV .form-control:focus,
.cid-uP7o8zUbLV .field-input:focus {
  background-color: #96be11;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uP7o8zUbLV .form-control:hover::-webkit-input-placeholder,
.cid-uP7o8zUbLV .field-input:hover::-webkit-input-placeholder,
.cid-uP7o8zUbLV .form-control:focus::-webkit-input-placeholder,
.cid-uP7o8zUbLV .field-input:focus::-webkit-input-placeholder,
.cid-uP7o8zUbLV .form-control:hover::-webkit-input-placeholder,
.cid-uP7o8zUbLV .field-input:hover::-webkit-input-placeholder,
.cid-uP7o8zUbLV .form-control:focus::-webkit-input-placeholder,
.cid-uP7o8zUbLV .field-input:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-uP7o8zUbLV .form-control:hover:-moz-placeholder,
.cid-uP7o8zUbLV .field-input:hover:-moz-placeholder,
.cid-uP7o8zUbLV .form-control:focus:-moz-placeholder,
.cid-uP7o8zUbLV .field-input:focus:-moz-placeholder,
.cid-uP7o8zUbLV .form-control:hover:-moz-placeholder,
.cid-uP7o8zUbLV .field-input:hover:-moz-placeholder,
.cid-uP7o8zUbLV .form-control:focus:-moz-placeholder,
.cid-uP7o8zUbLV .field-input:focus:-moz-placeholder {
  color: #ffffff;
}
.cid-uP7o8zUbLV .jq-number__spin:hover,
.cid-uP7o8zUbLV .jq-number__spin:focus {
  background-color: #96be11;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uP7o8zUbLV .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uP7o8zUbLV .jq-selectbox li,
.cid-uP7o8zUbLV .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uP7o8zUbLV .jq-selectbox li:hover,
.cid-uP7o8zUbLV .jq-selectbox li.selected {
  background-color: #96be11;
  color: #000000;
}
.cid-uP7o8zUbLV .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uP7o8zUbLV .jq-number__spin.minus:hover:after,
.cid-uP7o8zUbLV .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uP7o8zUbLV .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uP7o8zUbLV .jq-number__spin.minus:after,
.cid-uP7o8zUbLV .jq-number__spin.plus:after {
  border-top-color: #96be11;
  border-bottom-color: #96be11;
}
.cid-uP7o8zUbLV input::-webkit-clear-button {
  display: none;
}
.cid-uP7o8zUbLV input::-webkit-inner-spin-button {
  display: none;
}
.cid-uP7o8zUbLV input::-webkit-outer-spin-button {
  display: none;
}
.cid-uP7o8zUbLV input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uP7o8zUbLV LABEL {
  color: #ffffff;
}
.cid-uP7o8AtD53 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-uP7o8AtD53 .content {
    text-align: center;
  }
  .cid-uP7o8AtD53 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uP7o8AtD53 .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uP7o8AtD53 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uP7o8AtD53 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uP7o8AtD53 .google-map {
  height: 25rem;
  position: relative;
}
.cid-uP7o8AtD53 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uP7o8AtD53 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uP7o8AtD53 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uP7o8AtD53 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uP7o8AtD53 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uP7o8AtD53 .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uP7o8AtD53 .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uP7o8AtD53 .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uP7o8AtD53 .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uP7o8AtD53 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uP7o8AtD53 .list {
  list-style-type: none;
  padding: 0;
}
.cid-uP7o8AtD53 .mbr-text {
  text-align: left;
}
.cid-uP7o8AtD53 H5 {
  text-align: left;
}
.cid-uP7o8Bk5Hl .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uP7o8Bk5Hl .nav-item,
.cid-uP7o8Bk5Hl .nav-link,
.cid-uP7o8Bk5Hl .navbar-caption {
  font-weight: normal;
}
.cid-uP7o8Bk5Hl .nav-item:focus,
.cid-uP7o8Bk5Hl .nav-link:focus {
  outline: none;
}
.cid-uP7o8Bk5Hl .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uP7o8Bk5Hl .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-uP7o8Bk5Hl .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uP7o8Bk5Hl .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uP7o8Bk5Hl .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uP7o8Bk5Hl .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uP7o8Bk5Hl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uP7o8Bk5Hl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uP7o8Bk5Hl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP7o8Bk5Hl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP7o8Bk5Hl .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-uP7o8Bk5Hl .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-uP7o8Bk5Hl .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-uP7o8Bk5Hl .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uP7o8Bk5Hl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP7o8Bk5Hl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uP7o8Bk5Hl .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uP7o8Bk5Hl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP7o8Bk5Hl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uP7o8Bk5Hl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP7o8Bk5Hl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uP7o8Bk5Hl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uP7o8Bk5Hl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP7o8Bk5Hl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP7o8Bk5Hl .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uP7o8Bk5Hl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP7o8Bk5Hl .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uP7o8Bk5Hl .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-uP7o8Bk5Hl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uP7o8Bk5Hl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uP7o8Bk5Hl .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uP7o8Bk5Hl .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uP7o8Bk5Hl .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uP7o8Bk5Hl .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-uP7o8Bk5Hl .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-uP7o8Bk5Hl .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uP7o8Bk5Hl .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uP7o8Bk5Hl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uP7o8Bk5Hl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP7o8Bk5Hl .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-uP7o8Bk5Hl .dropdown-item.active,
.cid-uP7o8Bk5Hl .dropdown-item:active {
  background-color: transparent;
}
.cid-uP7o8Bk5Hl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP7o8Bk5Hl .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP7o8Bk5Hl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-uP7o8Bk5Hl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP7o8Bk5Hl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP7o8Bk5Hl ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uP7o8Bk5Hl .navbar-buttons {
  text-align: center;
}
.cid-uP7o8Bk5Hl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uP7o8Bk5Hl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uP7o8Bk5Hl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP7o8Bk5Hl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP7o8Bk5Hl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP7o8Bk5Hl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP7o8Bk5Hl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP7o8Bk5Hl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP7o8Bk5Hl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP7o8Bk5Hl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP7o8Bk5Hl .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uP7o8Bk5Hl a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uP7o8Bk5Hl .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uP7o8Bk5Hl .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-uP7o8Bk5Hl .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-uP7o8Bk5Hl .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP7o8Bk5Hl .navbar {
    height: 77px;
  }
  .cid-uP7o8Bk5Hl .navbar.opened {
    height: auto;
  }
  .cid-uP7o8Bk5Hl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP75te50lw {
  background-image: url("../../../assets/images/7-titel-tipidorf-voglsam-1.jpg");
}
.cid-uP75te50lw .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uP75te50lw .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uP75te50lw .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uP75te50lw .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uP75te50lw .mbr-text,
.cid-uP75te50lw .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-uP7ggybLkm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #021a0f;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uP7ggybLkm .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uP7ggybLkm .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-uP7ggybLkm .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-uP7ggybLkm .btn-primary-outline:active {
  color: gray;
}
.cid-uP7ggybLkm .btn-primary-outline:hover {
  color: white;
}
.cid-uP7ggybLkm div {
  overflow: hidden;
}
.cid-uP7ggybLkm li.active .btn-primary-outline {
  color: white;
}
.cid-uP7ggybLkm .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uP7ggybLkm .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uP7ggybLkm .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uP7ggybLkm .mbr-gallery-item {
  overflow: hidden;
}
.cid-uP7ggybLkm .mbr-gallery-item:hover img {
  transform: scale(1.1);
}
.cid-uP7ggybLkm .mbr-gallery-item img {
  transition: all 0.3s;
}
.cid-uP7ggybLkm .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-uP7ggybLkm .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uP7ggybLkm .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uP7ggybLkm .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-uP7ggybLkm .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uP7ggybLkm .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uP7bd1aPu4 {
  flex-direction: column !important;
  justify-content: center;
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/8-titel-baumhauspark-voglsam-1.jpg");
}
.cid-uP7bd1aPu4 .row.heading {
  margin-bottom: 72px;
}
.cid-uP7bd1aPu4 .card {
  flex-direction: row;
  justify-content: center;
}
.cid-uP7bd1aPu4 .card-box {
  display: flex;
  flex-direction: column;
}
.cid-uP7bd1aPu4 .card-box .card-title {
  color: #ffffff;
}
.cid-uP7bd1aPu4 .card-box .mbr-text {
  color: #ffffff;
}
.cid-uP7bd1aPu4 .card-box .link .btn {
  margin: 0;
}
.cid-uP7bd1aPu4 .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-uP7bd1aPu4 .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
@media (max-width: 767px) {
  .cid-uP7bd1aPu4 .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-uP7bd1aPu4 .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-uP7bd1aPu4 .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-uP7bd1aPu4 .card .card-box .card-title,
  .cid-uP7bd1aPu4 .card .card-box .mbr-text,
  .cid-uP7bd1aPu4 .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-uP7bd1aPu4 .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-uP7bd1aPu4 .mbr-section-title {
  text-align: left;
}
.cid-uP7bd1aPu4 .mbr-text,
.cid-uP7bd1aPu4 .mbr-section-btn,
.cid-uP7bd1aPu4 .buttons-wrap {
  text-align: left;
}
.cid-uP7bd1aPu4 .card .card-box .mbr-text,
.cid-uP7bd1aPu4 .card .card-box .mbr-section-btn {
  text-align: left;
}
.cid-uP7bd1aPu4 .card .card-box .card-title,
.cid-uP7bd1aPu4 .card-img {
  text-align: left;
}
.cid-uP75tgFZol {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #1a1d0c;
}
@media (max-width: 767px) {
  .cid-uP75tgFZol .content {
    text-align: center;
  }
  .cid-uP75tgFZol .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-uP75tgFZol .map {
  height: 18.75rem;
}
@media (max-width: 767px) {
  .cid-uP75tgFZol .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-uP75tgFZol .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: 0.05;
}
.cid-uP75tgFZol .google-map {
  height: 25rem;
  position: relative;
}
.cid-uP75tgFZol .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-uP75tgFZol .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uP75tgFZol .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uP75tgFZol .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uP75tgFZol .social-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -7px;
  list-style: none;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uP75tgFZol .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-uP75tgFZol .social-list .soc-item {
  margin: 0 0.5rem;
}
.cid-uP75tgFZol .social-list a {
  margin: 0;
  opacity: 0.5;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-uP75tgFZol .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uP75tgFZol .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uP75tgFZol .list {
  list-style-type: none;
  padding: 0;
}
.cid-uP75tgFZol .mbr-text {
  text-align: left;
}
.cid-uP75tgFZol H5 {
  text-align: left;
}
.cid-uP75thpBD1 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uP75thpBD1 .nav-item,
.cid-uP75thpBD1 .nav-link,
.cid-uP75thpBD1 .navbar-caption {
  font-weight: normal;
}
.cid-uP75thpBD1 .nav-item:focus,
.cid-uP75thpBD1 .nav-link:focus {
  outline: none;
}
.cid-uP75thpBD1 .navbar-buttons {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uP75thpBD1 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-uP75thpBD1 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uP75thpBD1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-uP75thpBD1 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-uP75thpBD1 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-uP75thpBD1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uP75thpBD1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uP75thpBD1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uP75thpBD1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uP75thpBD1 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #2a310a;
}
.cid-uP75thpBD1 .navbar.opened {
  transition: all 0.3s;
  background: #2a310a !important;
}
.cid-uP75thpBD1 .navbar .dropdown-item {
  padding: 0.235rem 2.5rem 0.235rem 1.5rem;
}
.cid-uP75thpBD1 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uP75thpBD1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uP75thpBD1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uP75thpBD1 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uP75thpBD1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uP75thpBD1 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uP75thpBD1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uP75thpBD1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uP75thpBD1 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uP75thpBD1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uP75thpBD1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uP75thpBD1 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uP75thpBD1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uP75thpBD1 .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uP75thpBD1 .navbar .navbar-logo img {
    height: 3.8rem !important;
    width: auto;
  }
  .cid-uP75thpBD1 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uP75thpBD1 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uP75thpBD1 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uP75thpBD1 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uP75thpBD1 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uP75thpBD1 .navbar.navbar-short {
  background: #2a310a !important;
  min-height: 60px;
}
.cid-uP75thpBD1 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
  width: auto;
}
.cid-uP75thpBD1 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uP75thpBD1 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uP75thpBD1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uP75thpBD1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uP75thpBD1 .navbar-brand .navbar-logo a img {
  width: auto;
}
.cid-uP75thpBD1 .dropdown-item.active,
.cid-uP75thpBD1 .dropdown-item:active {
  background-color: transparent;
}
.cid-uP75thpBD1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uP75thpBD1 .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uP75thpBD1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #2a310a;
}
.cid-uP75thpBD1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uP75thpBD1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uP75thpBD1 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uP75thpBD1 .navbar-buttons {
  text-align: center;
}
.cid-uP75thpBD1 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uP75thpBD1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uP75thpBD1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uP75thpBD1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP75thpBD1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uP75thpBD1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uP75thpBD1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP75thpBD1 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uP75thpBD1 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uP75thpBD1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uP75thpBD1 .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-uP75thpBD1 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uP75thpBD1 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-uP75thpBD1 .mbr-iconfont:before {
  padding: 0.5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-uP75thpBD1 .soc-item {
  margin: 0.5rem 0.3rem;
}
.cid-uP75thpBD1 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uP75thpBD1 .navbar {
    height: 77px;
  }
  .cid-uP75thpBD1 .navbar.opened {
    height: auto;
  }
  .cid-uP75thpBD1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uP75ti6INZ {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #1a1d0c;
}
.cid-uP75ti6INZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP75ti6INZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP75ti6INZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-uP75ti6INZ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-uP75ti6INZ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uP75ti6INZ .mbr-section-title {
  text-align: left;
  color: #ffffff;
}
.cid-uP75ti6INZ .mbr-text,
.cid-uP75ti6INZ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
