body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 4.25rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #2d7f10 !important;
}
.bg-success {
  background-color: #073b4c !important;
}
.bg-info {
  background-color: #979696 !important;
}
.bg-warning {
  background-color: #e3c671 !important;
}
.bg-danger {
  background-color: #92ccf5 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #2d7f10 !important;
  border-color: #2d7f10 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #153b07 !important;
  border-color: #153b07 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #153b07 !important;
  border-color: #153b07 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-info,
.btn-info:active {
  background-color: #979696 !important;
  border-color: #979696 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #717070 !important;
  border-color: #717070 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #717070 !important;
  border-color: #717070 !important;
}
.btn-success,
.btn-success:active {
  background-color: #073b4c !important;
  border-color: #073b4c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #010506 !important;
  border-color: #010506 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #010506 !important;
  border-color: #010506 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e3c671 !important;
  border-color: #e3c671 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #d6ac31 !important;
  border-color: #d6ac31 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #d6ac31 !important;
  border-color: #d6ac31 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #92ccf5 !important;
  border-color: #92ccf5 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #4cabef !important;
  border-color: #4cabef !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #4cabef !important;
  border-color: #4cabef !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0d2405;
  color: #0d2405;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #2d7f10;
  border-color: #2d7f10;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #2d7f10 !important;
  border-color: #2d7f10 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #646363;
  color: #646363;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #979696;
  border-color: #979696;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #979696 !important;
  border-color: #979696 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #073b4c;
  border-color: #073b4c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #073b4c !important;
  border-color: #073b4c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #c79e27;
  color: #c79e27;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #e3c671;
  border-color: #e3c671;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e3c671 !important;
  border-color: #e3c671 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #35a0ec;
  color: #35a0ec;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #92ccf5;
  border-color: #92ccf5;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #92ccf5 !important;
  border-color: #92ccf5 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #2d7f10 !important;
}
.text-secondary {
  color: #c1c1c1 !important;
}
.text-success {
  color: #073b4c !important;
}
.text-info {
  color: #979696 !important;
}
.text-warning {
  color: #e3c671 !important;
}
.text-danger {
  color: #92ccf5 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0d2405 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8e8e8e !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #000000 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #646363 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #c79e27 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #35a0ec !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #979696;
}
.alert-warning {
  background-color: #e3c671;
}
.alert-danger {
  background-color: #92ccf5;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #2d7f10;
  border-color: #2d7f10;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #2d7f10;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #5be42a;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #4ac6ee;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d6d6d6;
}
.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: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #2d7f10;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #2d7f10;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #2d7f10;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2d7f10;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #2d7f10;
  border-bottom-color: #2d7f10;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #2d7f10 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #c1c1c1 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='/assets/ruegenmagic-reproxy/proxy.php?dst=http://www.w3.org/2000/svg' stroke='%232d7f10' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.3;
}
.cid-sAjhIQOPv5 .navbar {
  padding: .5rem 0;
  background: #2d7f10;
  transition: none;
  min-height: 77px;
}
.cid-sAjhIQOPv5 .navbar-dropdown.bg-color.transparent.opened {
  background: #2d7f10;
}
.cid-sAjhIQOPv5 a {
  font-style: normal;
}
.cid-sAjhIQOPv5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sAjhIQOPv5 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sAjhIQOPv5 .nav-item:focus,
.cid-sAjhIQOPv5 .nav-link:focus {
  outline: none;
}
.cid-sAjhIQOPv5 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sAjhIQOPv5 .menu-logo {
  margin-right: auto;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu {
  background: #2d7f10;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sAjhIQOPv5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler:focus {
  outline: none;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sAjhIQOPv5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sAjhIQOPv5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sAjhIQOPv5 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 img {
    height: 3.8rem !important;
  }
  .cid-sAjhIQOPv5 .btn {
    display: -webkit-flex;
  }
  .cid-sAjhIQOPv5 button.navbar-toggler {
    display: block;
  }
  .cid-sAjhIQOPv5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sAjhIQOPv5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing,
  .cid-sAjhIQOPv5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sAjhIQOPv5 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sAjhIQOPv5 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sAjhIQOPv5 .nav-link:hover,
.cid-sAjhIQOPv5 .dropdown-item:hover {
  color: #f5d611 !important;
}
.cid-rQ79QMqJ2k {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rQ79QMqJ2k .mbr-text,
.cid-rQ79QMqJ2k blockquote {
  color: #767676;
}
.cid-rQ7bwwHgF4 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/bauernhof-ruegen-1-1600x380.jpg");
}
.cid-szDk3ulkA8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-szDk3ulkA8 .mbr-section-subtitle {
  color: #767676;
}
.cid-szDk3ulkA8 H2 {
  color: #2d7f10;
}
.cid-szDjVaUPqA {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-szDjVaUPqA .mbr-text,
.cid-szDjVaUPqA blockquote {
  color: #767676;
}
.cid-rQia1GuVj1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rQia1GuVj1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rQia1GuVj1 p {
  color: #767676;
  text-align: left;
}
.cid-rQia1GuVj1 .card-box {
  padding-top: 2rem;
}
.cid-rQia1GuVj1 .card-wrapper {
  height: 100%;
}
.cid-rQia1GuVj1 .card-title {
  color: #2d7f10;
}
.cid-szE6JzvdmB {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-szalxIalPy {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #2d7f10;
}
@media (max-width: 767px) {
  .cid-szalxIalPy .content {
    text-align: center;
  }
  .cid-szalxIalPy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-szalxIalPy .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-szalxIalPy .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-szalxIalPy .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-szalxIalPy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-szalxIalPy .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-szalxIalPy .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-szalxIalPy .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-szalxIalPy .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-szalxIalPy .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-szalxIalPy .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-szalxIalPy .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-szalxIalPy H5 {
  color: #ffffff;
}
.cid-szalxIalPy P {
  color: #ffffff;
}
.cid-sAjhIQOPv5 .navbar {
  padding: .5rem 0;
  background: #2d7f10;
  transition: none;
  min-height: 77px;
}
.cid-sAjhIQOPv5 .navbar-dropdown.bg-color.transparent.opened {
  background: #2d7f10;
}
.cid-sAjhIQOPv5 a {
  font-style: normal;
}
.cid-sAjhIQOPv5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sAjhIQOPv5 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sAjhIQOPv5 .nav-item:focus,
.cid-sAjhIQOPv5 .nav-link:focus {
  outline: none;
}
.cid-sAjhIQOPv5 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sAjhIQOPv5 .menu-logo {
  margin-right: auto;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu {
  background: #2d7f10;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sAjhIQOPv5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler:focus {
  outline: none;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sAjhIQOPv5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sAjhIQOPv5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sAjhIQOPv5 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 img {
    height: 3.8rem !important;
  }
  .cid-sAjhIQOPv5 .btn {
    display: -webkit-flex;
  }
  .cid-sAjhIQOPv5 button.navbar-toggler {
    display: block;
  }
  .cid-sAjhIQOPv5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sAjhIQOPv5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing,
  .cid-sAjhIQOPv5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sAjhIQOPv5 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sAjhIQOPv5 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sAjhIQOPv5 .nav-link:hover,
.cid-sAjhIQOPv5 .dropdown-item:hover {
  color: #f5d611 !important;
}
.cid-rRBlI10Ahb {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRBlI10Ahb .mbr-section-subtitle {
  color: #767676;
}
.cid-rRBlI10Ahb H2 {
  color: #2d7f10;
}
.cid-rfSxRQ1fMq {
  padding-top: 15px;
  padding-bottom: 60px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-rfSxRQ1fMq .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-rfSxRQ1fMq P {
  color: #767676;
}
.cid-rfSxRQ1fMq H3 {
  color: #ffffff;
}
.cid-turZXKGNXj {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #2d7f10;
}
@media (max-width: 767px) {
  .cid-turZXKGNXj .content {
    text-align: center;
  }
  .cid-turZXKGNXj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turZXKGNXj .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-turZXKGNXj .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-turZXKGNXj .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-turZXKGNXj .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-turZXKGNXj .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-turZXKGNXj .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-turZXKGNXj .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-turZXKGNXj .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-turZXKGNXj .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-turZXKGNXj .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-turZXKGNXj .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-turZXKGNXj H5 {
  color: #ffffff;
}
.cid-turZXKGNXj P {
  color: #ffffff;
}
.cid-sAjhIQOPv5 .navbar {
  padding: .5rem 0;
  background: #2d7f10;
  transition: none;
  min-height: 77px;
}
.cid-sAjhIQOPv5 .navbar-dropdown.bg-color.transparent.opened {
  background: #2d7f10;
}
.cid-sAjhIQOPv5 a {
  font-style: normal;
}
.cid-sAjhIQOPv5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sAjhIQOPv5 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sAjhIQOPv5 .nav-item:focus,
.cid-sAjhIQOPv5 .nav-link:focus {
  outline: none;
}
.cid-sAjhIQOPv5 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sAjhIQOPv5 .menu-logo {
  margin-right: auto;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu {
  background: #2d7f10;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sAjhIQOPv5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler:focus {
  outline: none;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sAjhIQOPv5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sAjhIQOPv5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sAjhIQOPv5 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 img {
    height: 3.8rem !important;
  }
  .cid-sAjhIQOPv5 .btn {
    display: -webkit-flex;
  }
  .cid-sAjhIQOPv5 button.navbar-toggler {
    display: block;
  }
  .cid-sAjhIQOPv5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sAjhIQOPv5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing,
  .cid-sAjhIQOPv5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sAjhIQOPv5 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sAjhIQOPv5 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sAjhIQOPv5 .nav-link:hover,
.cid-sAjhIQOPv5 .dropdown-item:hover {
  color: #f5d611 !important;
}
#ruegenmagic-contact-block-9b .mbr-title {
  color: #2d7f10;
}
#ruegenmagic-contact-block-9b .rm-contact-info {
  color: #4f4943;
}
.cid-turZTyGhtJ {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #2d7f10;
}
@media (max-width: 767px) {
  .cid-turZTyGhtJ .content {
    text-align: center;
  }
  .cid-turZTyGhtJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turZTyGhtJ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-turZTyGhtJ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-turZTyGhtJ .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-turZTyGhtJ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-turZTyGhtJ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-turZTyGhtJ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-turZTyGhtJ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-turZTyGhtJ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-turZTyGhtJ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-turZTyGhtJ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-turZTyGhtJ .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-turZTyGhtJ H5 {
  color: #ffffff;
}
.cid-turZTyGhtJ P {
  color: #ffffff;
}
.cid-sAjhIQOPv5 .navbar {
  padding: .5rem 0;
  background: #2d7f10;
  transition: none;
  min-height: 77px;
}
.cid-sAjhIQOPv5 .navbar-dropdown.bg-color.transparent.opened {
  background: #2d7f10;
}
.cid-sAjhIQOPv5 a {
  font-style: normal;
}
.cid-sAjhIQOPv5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sAjhIQOPv5 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sAjhIQOPv5 .nav-item:focus,
.cid-sAjhIQOPv5 .nav-link:focus {
  outline: none;
}
.cid-sAjhIQOPv5 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sAjhIQOPv5 .menu-logo {
  margin-right: auto;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu {
  background: #2d7f10;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sAjhIQOPv5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler:focus {
  outline: none;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sAjhIQOPv5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sAjhIQOPv5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sAjhIQOPv5 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 img {
    height: 3.8rem !important;
  }
  .cid-sAjhIQOPv5 .btn {
    display: -webkit-flex;
  }
  .cid-sAjhIQOPv5 button.navbar-toggler {
    display: block;
  }
  .cid-sAjhIQOPv5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sAjhIQOPv5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing,
  .cid-sAjhIQOPv5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sAjhIQOPv5 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sAjhIQOPv5 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sAjhIQOPv5 .nav-link:hover,
.cid-sAjhIQOPv5 .dropdown-item:hover {
  color: #f5d611 !important;
}
.cid-rfSAbvk0bn {
  padding-top: 120px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rfSAbvk0bn .mbr-section-subtitle {
  color: #767676;
}
.cid-rfSAbvk0bn H2 {
  color: #2d7f10;
}
.cid-rfSAbvLbeH {
  padding-top: 15px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-rfSAbvLbeH .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-rfSAbvLbeH P {
  color: #767676;
}
.cid-rfSAbvLbeH H3 {
  color: #ffffff;
}
.cid-tus014RPq2 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #2d7f10;
}
@media (max-width: 767px) {
  .cid-tus014RPq2 .content {
    text-align: center;
  }
  .cid-tus014RPq2 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tus014RPq2 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tus014RPq2 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tus014RPq2 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tus014RPq2 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tus014RPq2 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tus014RPq2 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tus014RPq2 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tus014RPq2 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tus014RPq2 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tus014RPq2 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tus014RPq2 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tus014RPq2 H5 {
  color: #ffffff;
}
.cid-tus014RPq2 P {
  color: #ffffff;
}
.cid-sAjhIQOPv5 .navbar {
  padding: .5rem 0;
  background: #2d7f10;
  transition: none;
  min-height: 77px;
}
.cid-sAjhIQOPv5 .navbar-dropdown.bg-color.transparent.opened {
  background: #2d7f10;
}
.cid-sAjhIQOPv5 a {
  font-style: normal;
}
.cid-sAjhIQOPv5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sAjhIQOPv5 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sAjhIQOPv5 .nav-item:focus,
.cid-sAjhIQOPv5 .nav-link:focus {
  outline: none;
}
.cid-sAjhIQOPv5 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sAjhIQOPv5 .menu-logo {
  margin-right: auto;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu {
  background: #2d7f10;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sAjhIQOPv5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler:focus {
  outline: none;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sAjhIQOPv5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sAjhIQOPv5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sAjhIQOPv5 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 img {
    height: 3.8rem !important;
  }
  .cid-sAjhIQOPv5 .btn {
    display: -webkit-flex;
  }
  .cid-sAjhIQOPv5 button.navbar-toggler {
    display: block;
  }
  .cid-sAjhIQOPv5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sAjhIQOPv5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing,
  .cid-sAjhIQOPv5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sAjhIQOPv5 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sAjhIQOPv5 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sAjhIQOPv5 .nav-link:hover,
.cid-sAjhIQOPv5 .dropdown-item:hover {
  color: #f5d611 !important;
}
.cid-rRCBQvXjMP {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/bauernhof-kremerskothen-1024x683.jpg");
}
.cid-rRCBQvXjMP .mbr-section-subtitle {
  letter-spacing: .2rem;
}
.cid-rRCBQvXjMP .media-container-column {
  background-color: #cde6f9;
}
@media (max-width: 767px) {
  .cid-rRCBQvXjMP .media-container-column {
    padding: 1rem !important;
  }
}
.cid-rRCBQvXjMP H1 {
  color: #232323;
}
.cid-rRCBQvXjMP .mbr-text,
.cid-rRCBQvXjMP .mbr-section-btn {
  color: #767676;
}
.cid-rRC3Ek4Jto {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRC3Ek4Jto .mbr-section-subtitle {
  color: #767676;
}
.cid-rRC3Ek4Jto .container-table {
  margin: 0 auto;
}
.cid-rRC3Ek4Jto .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rRC3Ek4Jto .dataTables_wrapper {
  display: block;
}
.cid-rRC3Ek4Jto .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rRC3Ek4Jto .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rRC3Ek4Jto table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #767676;
  margin-bottom: 0;
}
.cid-rRC3Ek4Jto table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-rRC3Ek4Jto table th:hover {
  background: #767676;
  color: #ffffff;
}
.cid-rRC3Ek4Jto table td {
  border-top: 1px solid #767676;
}
.cid-rRC3Ek4Jto .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rRC3Ek4Jto .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rRC3Ek4Jto .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rRC3Ek4Jto .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-rRC3Ek4Jto .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-rRC3Ek4Jto .dataTables_filter {
    text-align: center;
  }
  .cid-rRC3Ek4Jto .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-rRC3Ek4Jto .mbr-section-title {
  text-align: left;
}
.cid-rRCu3oK7e8 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rRCu3oK7e8 .mbr-text,
.cid-rRCu3oK7e8 blockquote {
  color: #767676;
}
.cid-rRCpfkugZN {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rRCpfkugZN .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-rRCpfkugZN .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rRCpfkugZN .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rRCpfkugZN .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-rRCpfkugZN .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rRCpfkugZN .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-rRCpfkugZN .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-rRCpfkugZN .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-rRCpfkugZN .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rRCeTDXYam {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rRCeTDXYam .mbr-section-subtitle {
  color: #767676;
}
.cid-rRCeTDXYam .container-table {
  margin: 0 auto;
}
.cid-rRCeTDXYam .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-rRCeTDXYam .dataTables_wrapper {
  display: block;
}
.cid-rRCeTDXYam .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-rRCeTDXYam .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-rRCeTDXYam table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #767676;
  margin-bottom: 0;
}
.cid-rRCeTDXYam table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-rRCeTDXYam table th:hover {
  background: #767676;
  color: #ffffff;
}
.cid-rRCeTDXYam table td {
  border-top: 1px solid #767676;
}
.cid-rRCeTDXYam .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-rRCeTDXYam .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-rRCeTDXYam .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-rRCeTDXYam .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-rRCeTDXYam .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-rRCeTDXYam .dataTables_filter {
    text-align: center;
  }
  .cid-rRCeTDXYam .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-rRCeTDXYam .mbr-section-title {
  text-align: left;
}
.cid-rRCkVJav8t {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rRCkVJav8t .mbr-text,
.cid-rRCkVJav8t blockquote {
  color: #767676;
}
.cid-rRCkVJav8t .mbr-text P {
  text-align: center;
}
.cid-rRCujl6nNv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rRCujl6nNv .mbr-text,
.cid-rRCujl6nNv blockquote {
  color: #767676;
}
.cid-rRCujl6nNv .mbr-text {
  color: #232323;
}
.cid-rRCujl6nNv .mbr-text P {
  text-align: left;
}
.cid-rS3WYrsM4b {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-turYIi9ZpF {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #2d7f10;
}
@media (max-width: 767px) {
  .cid-turYIi9ZpF .content {
    text-align: center;
  }
  .cid-turYIi9ZpF .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turYIi9ZpF .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-turYIi9ZpF .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-turYIi9ZpF .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-turYIi9ZpF .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-turYIi9ZpF .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-turYIi9ZpF .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-turYIi9ZpF .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-turYIi9ZpF .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-turYIi9ZpF .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-turYIi9ZpF .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-turYIi9ZpF .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-turYIi9ZpF H5 {
  color: #ffffff;
}
.cid-turYIi9ZpF P {
  color: #ffffff;
}
.cid-sAjhIQOPv5 .navbar {
  padding: .5rem 0;
  background: #2d7f10;
  transition: none;
  min-height: 77px;
}
.cid-sAjhIQOPv5 .navbar-dropdown.bg-color.transparent.opened {
  background: #2d7f10;
}
.cid-sAjhIQOPv5 a {
  font-style: normal;
}
.cid-sAjhIQOPv5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sAjhIQOPv5 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sAjhIQOPv5 .nav-item:focus,
.cid-sAjhIQOPv5 .nav-link:focus {
  outline: none;
}
.cid-sAjhIQOPv5 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sAjhIQOPv5 .menu-logo {
  margin-right: auto;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu {
  background: #2d7f10;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sAjhIQOPv5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler:focus {
  outline: none;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sAjhIQOPv5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sAjhIQOPv5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sAjhIQOPv5 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 img {
    height: 3.8rem !important;
  }
  .cid-sAjhIQOPv5 .btn {
    display: -webkit-flex;
  }
  .cid-sAjhIQOPv5 button.navbar-toggler {
    display: block;
  }
  .cid-sAjhIQOPv5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sAjhIQOPv5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing,
  .cid-sAjhIQOPv5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sAjhIQOPv5 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sAjhIQOPv5 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sAjhIQOPv5 .nav-link:hover,
.cid-sAjhIQOPv5 .dropdown-item:hover {
  color: #f5d611 !important;
}
.cid-rS4fu2Il4n {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rS4fu2Il4n .mbr-section-subtitle {
  color: #767676;
}
.cid-rS4fu2Il4n H2 {
  color: #2d7f10;
}
.cid-sAB9NA29p3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-sAB9NA29p3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sAB9NA29p3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sAB9NA29p3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sAB9NA29p3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sAB9NA29p3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sAB9NA29p3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-sAB9NA29p3 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-sAB9NA29p3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-sAB9NA29p3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-rRB8MZAyff {
  padding-top: 0px;
  padding-bottom: 30px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-rRB8MZAyff .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-rRB8MZAyff P {
  color: #767676;
}
.cid-rRB8MZAyff H3 {
  color: #ffffff;
}
.cid-rS4PKVKVgM {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-turZKtrF8H {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #2d7f10;
}
@media (max-width: 767px) {
  .cid-turZKtrF8H .content {
    text-align: center;
  }
  .cid-turZKtrF8H .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turZKtrF8H .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-turZKtrF8H .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-turZKtrF8H .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-turZKtrF8H .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-turZKtrF8H .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-turZKtrF8H .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-turZKtrF8H .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-turZKtrF8H .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-turZKtrF8H .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-turZKtrF8H .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-turZKtrF8H .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-turZKtrF8H H5 {
  color: #ffffff;
}
.cid-turZKtrF8H P {
  color: #ffffff;
}
.cid-sAjhIQOPv5 .navbar {
  padding: .5rem 0;
  background: #2d7f10;
  transition: none;
  min-height: 77px;
}
.cid-sAjhIQOPv5 .navbar-dropdown.bg-color.transparent.opened {
  background: #2d7f10;
}
.cid-sAjhIQOPv5 a {
  font-style: normal;
}
.cid-sAjhIQOPv5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sAjhIQOPv5 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sAjhIQOPv5 .nav-item:focus,
.cid-sAjhIQOPv5 .nav-link:focus {
  outline: none;
}
.cid-sAjhIQOPv5 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sAjhIQOPv5 .menu-logo {
  margin-right: auto;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu {
  background: #2d7f10;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sAjhIQOPv5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler:focus {
  outline: none;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sAjhIQOPv5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sAjhIQOPv5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sAjhIQOPv5 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 img {
    height: 3.8rem !important;
  }
  .cid-sAjhIQOPv5 .btn {
    display: -webkit-flex;
  }
  .cid-sAjhIQOPv5 button.navbar-toggler {
    display: block;
  }
  .cid-sAjhIQOPv5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sAjhIQOPv5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing,
  .cid-sAjhIQOPv5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sAjhIQOPv5 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sAjhIQOPv5 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sAjhIQOPv5 .nav-link:hover,
.cid-sAjhIQOPv5 .dropdown-item:hover {
  color: #f5d611 !important;
}
.cid-sza5IDnTE8 {
  padding-top: 135px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/hg1-halbinsel-zudar-1200x566.jpg");
}
.cid-sza5IDnTE8 .mbr-section-subtitle {
  letter-spacing: .2rem;
}
.cid-sza5IDnTE8 .media-container-column {
  background-color: #cde6f9;
}
@media (max-width: 767px) {
  .cid-sza5IDnTE8 .media-container-column {
    padding: 1rem !important;
  }
}
.cid-sza5IDnTE8 H1 {
  color: #232323;
}
.cid-sza5IDnTE8 .mbr-text,
.cid-sza5IDnTE8 .mbr-section-btn {
  color: #767676;
}
.cid-sAjal8INcY {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sAjal8INcY .mbr-section-subtitle {
  color: #767676;
}
.cid-sAjal8INcY H2 {
  color: #2d7f10;
}
.cid-sAjc9P7I9Z {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sAjc9P7I9Z h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-sAjc9P7I9Z p {
  color: #767676;
  text-align: left;
}
.cid-sAjc9P7I9Z .card-box {
  padding-top: 2rem;
}
.cid-sAjc9P7I9Z .card-wrapper {
  height: 100%;
}
.cid-sza5IH7cvW {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-turYMjyT8Q {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #2d7f10;
}
@media (max-width: 767px) {
  .cid-turYMjyT8Q .content {
    text-align: center;
  }
  .cid-turYMjyT8Q .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turYMjyT8Q .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-turYMjyT8Q .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-turYMjyT8Q .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-turYMjyT8Q .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-turYMjyT8Q .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-turYMjyT8Q .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-turYMjyT8Q .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-turYMjyT8Q .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-turYMjyT8Q .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-turYMjyT8Q .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-turYMjyT8Q .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-turYMjyT8Q H5 {
  color: #ffffff;
}
.cid-turYMjyT8Q P {
  color: #ffffff;
}
.cid-sAjhIQOPv5 .navbar {
  padding: .5rem 0;
  background: #2d7f10;
  transition: none;
  min-height: 77px;
}
.cid-sAjhIQOPv5 .navbar-dropdown.bg-color.transparent.opened {
  background: #2d7f10;
}
.cid-sAjhIQOPv5 a {
  font-style: normal;
}
.cid-sAjhIQOPv5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-sAjhIQOPv5 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sAjhIQOPv5 .nav-item:focus,
.cid-sAjhIQOPv5 .nav-link:focus {
  outline: none;
}
.cid-sAjhIQOPv5 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-sAjhIQOPv5 .menu-logo {
  margin-right: auto;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu {
  background: #2d7f10;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sAjhIQOPv5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sAjhIQOPv5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sAjhIQOPv5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sAjhIQOPv5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-sAjhIQOPv5 button.navbar-toggler:focus {
  outline: none;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sAjhIQOPv5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-sAjhIQOPv5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sAjhIQOPv5 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sAjhIQOPv5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sAjhIQOPv5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sAjhIQOPv5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-sAjhIQOPv5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-sAjhIQOPv5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sAjhIQOPv5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-sAjhIQOPv5 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 img {
    height: 3.8rem !important;
  }
  .cid-sAjhIQOPv5 .btn {
    display: -webkit-flex;
  }
  .cid-sAjhIQOPv5 button.navbar-toggler {
    display: block;
  }
  .cid-sAjhIQOPv5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-sAjhIQOPv5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sAjhIQOPv5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing,
  .cid-sAjhIQOPv5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-sAjhIQOPv5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sAjhIQOPv5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-sAjhIQOPv5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sAjhIQOPv5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-sAjhIQOPv5 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-sAjhIQOPv5 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sAjhIQOPv5 .nav-link:hover,
.cid-sAjhIQOPv5 .dropdown-item:hover {
  color: #f5d611 !important;
}
.cid-szDILt3m0y {
  padding-top: 120px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-szDILt3m0y .mbr-section-subtitle {
  color: #767676;
}
.cid-szDILt3m0y H2 {
  color: #2d7f10;
  text-align: center;
}
.cid-szDILtAEXP {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-szDILtAEXP .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-szDILtAEXP .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-szDILtAEXP .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-szDILtAEXP .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-szDILtAEXP .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-szDILtAEXP .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-szDILtAEXP .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-szDILtAEXP .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-szDILtAEXP .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sApvMbx2Qw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sApvMbx2Qw h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sApvMbx2Qw p {
  color: #767676;
  text-align: left;
}
.cid-sApvMbx2Qw .card-img {
  text-align: left;
  padding-right: 30px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: auto;
}
.cid-sApvMbx2Qw .card-img span {
  font-size: 72px;
  color: #707070;
}
.cid-sApvMbx2Qw .card-title {
  margin-bottom: 0;
}
.cid-sApvMbx2Qw .mbr-crt-title {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sApvMbx2Qw .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
@media (max-width: 300px) {
  .cid-sApvMbx2Qw .card-img span {
    font-size: 40px !important;
  }
}
.cid-sApwCDEc1O {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sApwCDEc1O h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sApwCDEc1O p {
  color: #767676;
  text-align: left;
}
.cid-sApwCDEc1O .card-img {
  text-align: left;
  padding-right: 30px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: auto;
}
.cid-sApwCDEc1O .card-img span {
  font-size: 72px;
  color: #707070;
}
.cid-sApwCDEc1O .card-title {
  margin-bottom: 0;
}
.cid-sApwCDEc1O .mbr-crt-title {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sApwCDEc1O .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
@media (max-width: 300px) {
  .cid-sApwCDEc1O .card-img span {
    font-size: 40px !important;
  }
}
.cid-szDILudgdi {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-szDILudgdi .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-szDILudgdi .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-szDILudgdi .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-szDILudgdi .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-szDILudgdi .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-szDILudgdi .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-szDILudgdi .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-szDILudgdi .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-szDILudgdi .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-sApxhisXZh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sApxhisXZh h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sApxhisXZh p {
  color: #767676;
  text-align: left;
}
.cid-sApxhisXZh .card-img {
  text-align: left;
  padding-right: 30px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: auto;
}
.cid-sApxhisXZh .card-img span {
  font-size: 72px;
  color: #707070;
}
.cid-sApxhisXZh .card-title {
  margin-bottom: 0;
}
.cid-sApxhisXZh .mbr-crt-title {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sApxhisXZh .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
@media (max-width: 300px) {
  .cid-sApxhisXZh .card-img span {
    font-size: 40px !important;
  }
}
.cid-sApxSrTbDs {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sApxSrTbDs h4 {
  text-align: left;
  font-weight: 500;
}
.cid-sApxSrTbDs p {
  color: #767676;
  text-align: left;
}
.cid-sApxSrTbDs .card-img {
  text-align: left;
  padding-right: 30px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: auto;
}
.cid-sApxSrTbDs .card-img span {
  font-size: 72px;
  color: #707070;
}
.cid-sApxSrTbDs .card-title {
  margin-bottom: 0;
}
.cid-sApxSrTbDs .mbr-crt-title {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sApxSrTbDs .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
@media (max-width: 300px) {
  .cid-sApxSrTbDs .card-img span {
    font-size: 40px !important;
  }
}
.cid-szDILuRLoP {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-turZPK8B0M {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #2d7f10;
}
@media (max-width: 767px) {
  .cid-turZPK8B0M .content {
    text-align: center;
  }
  .cid-turZPK8B0M .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-turZPK8B0M .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-turZPK8B0M .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-turZPK8B0M .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-turZPK8B0M .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-turZPK8B0M .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-turZPK8B0M .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-turZPK8B0M .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-turZPK8B0M .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-turZPK8B0M .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-turZPK8B0M .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-turZPK8B0M .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-turZPK8B0M H5 {
  color: #ffffff;
}
.cid-turZPK8B0M P {
  color: #ffffff;
}
