body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 1.8rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-2 {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 1.4rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-4 {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.9rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Didact Gothic', 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: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: #0082c3 !important;
}
.bg-success {
  background-color: #5f788e !important;
}
.bg-info {
  background-color: #1c1c1c !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #c4bc3b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0082c3 !important;
  border-color: #0082c3 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #004f76 !important;
  border-color: #004f76 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #004f76 !important;
  border-color: #004f76 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a53a00 !important;
  border-color: #a53a00 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #591f00 !important;
  border-color: #591f00 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #591f00 !important;
  border-color: #591f00 !important;
}
.btn-info,
.btn-info:active {
  background-color: #1c1c1c !important;
  border-color: #1c1c1c !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-success,
.btn-success:active {
  background-color: #5f788e !important;
  border-color: #5f788e !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #405160 !important;
  border-color: #405160 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #405160 !important;
  border-color: #405160 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #c4bc3b !important;
  border-color: #c4bc3b !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #898429 !important;
  border-color: #898429 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #898429 !important;
  border-color: #898429 !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: #003e5d;
  color: #003e5d;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #0082c3;
  border-color: #0082c3;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0082c3 !important;
  border-color: #0082c3 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #3f1600;
  color: #3f1600;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #a53a00;
  border-color: #a53a00;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #a53a00 !important;
  border-color: #a53a00 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #1c1c1c;
  border-color: #1c1c1c;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1c1c1c !important;
  border-color: #1c1c1c !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #364451;
  color: #364451;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #5f788e;
  border-color: #5f788e;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #5f788e !important;
  border-color: #5f788e !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #8e8e8e;
  color: #8e8e8e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #767123;
  color: #767123;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #c4bc3b;
  border-color: #c4bc3b;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #c4bc3b !important;
  border-color: #c4bc3b !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: #0082c3 !important;
}
.text-secondary {
  color: #a53a00 !important;
}
.text-success {
  color: #5f788e !important;
}
.text-info {
  color: #1c1c1c !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #c4bc3b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #003e5d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #3f1600 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #364451 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #000000 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #767123 !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: #1c1c1c;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #c4bc3b;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0082c3;
  border-color: #0082c3;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0082c3;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #43c0ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a8b7c5;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #cfcfcf;
}
.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: #e2dd9d;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Didact Gothic', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #0082c3;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #0082c3;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #0082c3;
}
/* Headers*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0082c3;
  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: #0082c3;
  border-bottom-color: #0082c3;
}
.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: #0082c3 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #a53a00 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%230082c3' %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-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-rJSJQYARc1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hd6-2000x1333.jpg");
}
.cid-rJSJQYARc1 .mbr-iconfont {
  color: #8d97ad;
}
.cid-rJSJQYARc1 .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-rJSJQYARc1 .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-rJSJQYARc1 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rJSJQYARc1 .card-title {
  margin-bottom: 0.3rem;
  text-align: center;
  color: #767676;
}
.cid-rJSJQYARc1 .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-rJSJQYARc1 .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-rJSJQYARc1 .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-rJNSNrutDv {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rJNSNrutDv .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rJNSNrutDv .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rJNSNrutDv .mbr-text {
    text-align: center;
  }
}
.cid-rJNSNrutDv H1 {
  color: #232323;
}
.cid-rJNSNrutDv .mbr-text,
.cid-rJNSNrutDv .mbr-section-btn {
  color: #3e4f5d;
}
.cid-rJNSNrutDv text {
  color: #333333;
  font-size: 18px;
  line-height: 16px;
}
.cid-rJNSNrutDv H3 {
  color: #0082c3;
}
.cid-rKgBVZUFdl {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rKgBVZUFdl .mbr-text {
  color: #767676;
}
.cid-rKgBVZUFdl tel {
  font-size: 28px;
  color: #9B7400;
  line-height: 22px;
}
.cid-rKgBVZUFdl orange2 {
  color: #e15a00;
  font-size: 22px;
  font-family: Oxygen;
  line-height: 22px;
}
.cid-rKgBVZUFdl H2 {
  color: #0082c3;
}
.cid-rKQ4cge2eE {
  padding-top: 0px;
  padding-bottom: 60px;
  background: linear-gradient(90deg, #ffffff, #ffffff);
}
.cid-rKQ4cge2eE .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-rKQ4cge2eE .mbr-text {
  color: #8d97ad;
}
.cid-rKQ4cge2eE .card-wrap {
  background-color: #f9f9f9;
  padding: 1rem;
  width: 1110px;
  height: 200px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 0px rgba(115, 128, 157, 0.1);
}
.cid-rKQ4cge2eE .mbr-text,
.cid-rKQ4cge2eE .mbr-section-btn {
  color: #232323;
}
.cid-rKQ4cge2eE rot {
  color: #912700;
  font-size: 20px;
  font-family: Fira Sans Condensed;
}
.cid-rJTrNWNUqb {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-rJTrNWNUqb section {
  position: relative;
}
.cid-rJTrNWNUqb h4 {
  margin: 0;
}
.cid-rJTrNWNUqb img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-rJTrNWNUqb a {
  font-weight: 300;
}
.cid-rJTrNWNUqb .img1 {
  color: #efefef;
}
.cid-rJTrNWNUqb .img2 {
  color: #0082c3;
}
.cid-rJTrNWNUqb .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-rJTrNWNUqb .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-rJTrNWNUqb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rJTrNWNUqb .item,
.cid-rJTrNWNUqb .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-rJTrNWNUqb .item h4,
.cid-rJTrNWNUqb .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-rJTrNWNUqb .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-rJTrNWNUqb .item {
    justify-content: center;
  }
}
.cid-rJTrNWNUqb .item-title {
  color: #c1c1c1;
}
.cid-rJTrNWNUqb foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-rJTrNWNUqb foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-rJTrNWNUqb foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-rJTrNWNUqb copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-rJTrNWNUqb .text1 {
  text-align: left;
  color: #787324;
}
.cid-rJTrNWNUqb H4 {
  text-align: left;
}
.cid-rJTrNWNUqb .items-title,
.cid-rJTrNWNUqb .line-wrap {
  color: #cccccc;
}
.cid-ssRukYbmui {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3e4f5d;
}
.cid-ssRukYbmui .card-box {
  padding: 0rem;
}
.cid-ssRukYbmui .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-ssRukYbmui .card {
  padding: 0;
  margin: auto;
}
.cid-ssRukYbmui .card-img {
  height: 400px;
}
.cid-ssRukYbmui .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ssRukYbmui .card-wrapper {
  padding: 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-ssRukYbmui .card-wrapper {
    padding: 4rem;
  }
}
.cid-ssRukYbmui .card-title {
  color: #ffffff;
}
.cid-soTNDQCPUh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soTNDQCPUh .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-soTNDQCPUh .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #ff3366;
}
.cid-soTNDQCPUh .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-soTNDQCPUh .inner-container {
    width: 100% !important;
  }
}
.cid-soTNDQCPUh blau {
  color: #0082c3;
  font-size: 24px;
}
.cid-soTNDQCPUh .section-text BLAU {
  color: #c30027;
}
.cid-soTNFcjaST {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soTNFcjaST .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-soTNFcjaST .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #009e89;
}
.cid-soTNFcjaST .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-soTNFcjaST .inner-container {
    width: 100% !important;
  }
}
.cid-soTNFcjaST blau {
  color: #0082c3;
  font-size: 24px;
}
.cid-soTNFcjaST .section-text BLAU {
  color: #c30027;
}
.cid-ssWOAqXAU6 {
  padding-top: 60px;
  padding-bottom: 0px;
  position: relative;
  background-color: #ffffff;
}
.cid-ssWOAqXAU6 .card-header {
  background: transparent;
}
.cid-ssWOAqXAU6 .mbr-iconfont {
  font-size: 1.4rem!important;
  font-family: 'Moririse2' !important;
  color: #0082c3;
  margin-left: 1rem;
}
.cid-ssWOAqXAU6 .panel-body {
  padding: 1rem 0;
}
.cid-ssWOAqXAU6 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-ssWOAqXAU6 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-ssWOAqXAU6 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-ssWOAqXAU6 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ssWOAqXAU6 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-ssWOAqXAU6 .card .panel-body {
  color: #767676;
}
.cid-ssWOAqXAU6 h4 {
  flex-direction: row-reverse;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border-bottom: 1px solid lightgray;
  padding: 0.8rem 0rem;
}
.cid-ssWOAqXAU6 H4 {
  color: #000000;
  text-align: left;
}
.cid-ssWOAqXAU6 H2 {
  color: #000000;
}
.cid-ssWOAqXAU6 .panel-text {
  color: #073b4c;
}
.cid-ssWOAqXAU6 orange {
  color: #e15a00;
}
.cid-ssWOAqXAU6 blau {
  color: #0082c3;
}
.cid-ssWP8GIuPL {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-ssWP8GIuPL .image-block {
  margin: auto;
}
.cid-ssWP8GIuPL figcaption {
  position: relative;
}
.cid-ssWP8GIuPL figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ssWP8GIuPL .image-block {
    width: 100% !important;
  }
}
.cid-soTNNwRNd8 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-soTNNwRNd8 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-soTNNwRNd8 .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #f51c11;
}
.cid-soTNNwRNd8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-soTNNwRNd8 .inner-container {
    width: 100% !important;
  }
}
.cid-soTNNwRNd8 black {
  color: #333333;
  font-size: 34px;
  line-height: 22px;
}
.cid-sunGEJlLtu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sunGEJlLtu .mbr-section-subtitle {
  color: #767676;
}
.cid-sunGEJlLtu .btn {
  margin: 0 0 .5rem 0;
}
.cid-sunGCnzxQ5 {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sunGCnzxQ5 .media-content .btn-bgr {
  z-index: 0;
}
.cid-sunGCnzxQ5 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-sunGCnzxQ5 h3 {
  color: #000000;
  font-weight: 300;
}
.cid-sunGCnzxQ5 p {
  color: #464646;
}
.cid-sunGCnzxQ5 h2 {
  color: #000000;
}
.cid-sunGCnzxQ5 .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-sunGCnzxQ5 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-sunGCnzxQ5 .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-sunGCnzxQ5 .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-sunGCnzxQ5 .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sunGCnzxQ5 .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-sunGCnzxQ5 .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-sunGCnzxQ5 .mbr-text {
    text-align: center;
  }
}
.cid-sunGCnzxQ5 .mbr-section-subtitle {
  color: #951d19;
}
.cid-sunGCnzxQ5 .mbr-section-title,
.cid-sunGCnzxQ5 .mbr-section-btn {
  color: #b99808;
}
.cid-sunGCnzxQ5 P {
  color: #232323;
}
.cid-sunGDc4rjK {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-sunGDc4rjK .image-block {
  margin: auto;
}
.cid-sunGDc4rjK figcaption {
  position: relative;
}
.cid-sunGDc4rjK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sunGDc4rjK .image-block {
    width: 100% !important;
  }
}
.cid-soTOqiTkup {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soTOqiTkup .media-content .btn-bgr {
  z-index: 0;
}
.cid-soTOqiTkup .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-soTOqiTkup h3 {
  color: #000000;
  font-weight: 300;
}
.cid-soTOqiTkup p {
  color: #464646;
}
.cid-soTOqiTkup h2 {
  color: #000000;
}
.cid-soTOqiTkup .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-soTOqiTkup .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-soTOqiTkup .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-soTOqiTkup .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-soTOqiTkup .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-soTOqiTkup .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-soTOqiTkup .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-soTOqiTkup .mbr-text {
    text-align: center;
  }
}
.cid-soTOqiTkup .mbr-section-subtitle {
  color: #951d19;
}
.cid-soTOqiTkup .mbr-section-title,
.cid-soTOqiTkup .mbr-section-btn {
  color: #b99808;
}
.cid-soTOqiTkup P {
  color: #232323;
}
.cid-ssWPaXdbUY {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-ssWPaXdbUY .image-block {
  margin: auto;
}
.cid-ssWPaXdbUY figcaption {
  position: relative;
}
.cid-ssWPaXdbUY figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ssWPaXdbUY .image-block {
    width: 100% !important;
  }
}
.cid-soUbGCgg1b {
  background: #ffffff;
}
.cid-soUbGCgg1b .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-soUbGCgg1b figcaption {
  position: relative;
}
.cid-soUbGCgg1b figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-soUbGCgg1b .image-block {
    width: 100% !important;
  }
}
.cid-soTOqXIXt9 {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soTOqXIXt9 .media-content .btn-bgr {
  z-index: 0;
}
.cid-soTOqXIXt9 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-soTOqXIXt9 h3 {
  color: #000000;
  font-weight: 300;
}
.cid-soTOqXIXt9 p {
  color: #464646;
}
.cid-soTOqXIXt9 h2 {
  color: #000000;
}
.cid-soTOqXIXt9 .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-soTOqXIXt9 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-soTOqXIXt9 .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-soTOqXIXt9 .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-soTOqXIXt9 .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-soTOqXIXt9 .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-soTOqXIXt9 .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-soTOqXIXt9 .mbr-text {
    text-align: center;
  }
}
.cid-soTOqXIXt9 .mbr-section-subtitle {
  color: #951d19;
}
.cid-soTOqXIXt9 .mbr-section-title,
.cid-soTOqXIXt9 .mbr-section-btn {
  color: #b99808;
}
.cid-soTOqXIXt9 P {
  color: #232323;
}
.cid-ssWPbNbBs1 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-ssWPbNbBs1 .image-block {
  margin: auto;
}
.cid-ssWPbNbBs1 figcaption {
  position: relative;
}
.cid-ssWPbNbBs1 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ssWPbNbBs1 .image-block {
    width: 100% !important;
  }
}
.cid-soUbHg5dTX {
  background: #ffffff;
}
.cid-soUbHg5dTX .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-soUbHg5dTX figcaption {
  position: relative;
}
.cid-soUbHg5dTX figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-soUbHg5dTX .image-block {
    width: 100% !important;
  }
}
.cid-soTOrNg7NL {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soTOrNg7NL .media-content .btn-bgr {
  z-index: 0;
}
.cid-soTOrNg7NL .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-soTOrNg7NL h3 {
  color: #000000;
  font-weight: 300;
}
.cid-soTOrNg7NL p {
  color: #464646;
}
.cid-soTOrNg7NL h2 {
  color: #000000;
}
.cid-soTOrNg7NL .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-soTOrNg7NL .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-soTOrNg7NL .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-soTOrNg7NL .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-soTOrNg7NL .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-soTOrNg7NL .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-soTOrNg7NL .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-soTOrNg7NL .mbr-text {
    text-align: center;
  }
}
.cid-soTOrNg7NL .mbr-section-subtitle {
  color: #951d19;
}
.cid-soTOrNg7NL .mbr-section-title,
.cid-soTOrNg7NL .mbr-section-btn {
  color: #b99808;
}
.cid-soTOrNg7NL P {
  color: #232323;
}
.cid-soUbHRttcH {
  background: #ffffff;
}
.cid-soUbHRttcH .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-soUbHRttcH figcaption {
  position: relative;
}
.cid-soUbHRttcH figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-soUbHRttcH .image-block {
    width: 100% !important;
  }
}
.cid-ssWPcAne3h {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-ssWPcAne3h .image-block {
  margin: auto;
}
.cid-ssWPcAne3h figcaption {
  position: relative;
}
.cid-ssWPcAne3h figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ssWPcAne3h .image-block {
    width: 100% !important;
  }
}
.cid-soTNYoX6OK {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soTNYoX6OK .media-content .btn-bgr {
  z-index: 0;
}
.cid-soTNYoX6OK .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-soTNYoX6OK h3 {
  color: #000000;
  font-weight: 300;
}
.cid-soTNYoX6OK p {
  color: #464646;
}
.cid-soTNYoX6OK h2 {
  color: #000000;
}
.cid-soTNYoX6OK .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-soTNYoX6OK .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-soTNYoX6OK .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-soTNYoX6OK .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-soTNYoX6OK .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-soTNYoX6OK .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-soTNYoX6OK .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-soTNYoX6OK .mbr-text {
    text-align: center;
  }
}
.cid-soTNYoX6OK .mbr-section-subtitle {
  color: #951d19;
}
.cid-soTNYoX6OK .mbr-section-title,
.cid-soTNYoX6OK .mbr-section-btn {
  color: #b99808;
}
.cid-soTNYoX6OK P {
  color: #232323;
}
.cid-soUbIs4uPE {
  background: #ffffff;
}
.cid-soUbIs4uPE .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-soUbIs4uPE figcaption {
  position: relative;
}
.cid-soUbIs4uPE figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-soUbIs4uPE .image-block {
    width: 100% !important;
  }
}
.cid-ssWPdfMSgs {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-ssWPdfMSgs .image-block {
  margin: auto;
}
.cid-ssWPdfMSgs figcaption {
  position: relative;
}
.cid-ssWPdfMSgs figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ssWPdfMSgs .image-block {
    width: 100% !important;
  }
}
.cid-soTOsyfDxe {
  padding-top: 40px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-soTOsyfDxe .media-content .btn-bgr {
  z-index: 0;
}
.cid-soTOsyfDxe .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-soTOsyfDxe h3 {
  color: #000000;
  font-weight: 300;
}
.cid-soTOsyfDxe p {
  color: #464646;
}
.cid-soTOsyfDxe h2 {
  color: #000000;
}
.cid-soTOsyfDxe .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-soTOsyfDxe .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-soTOsyfDxe .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-soTOsyfDxe .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-soTOsyfDxe .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-soTOsyfDxe .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-soTOsyfDxe .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-soTOsyfDxe .mbr-text {
    text-align: center;
  }
}
.cid-soTOsyfDxe .mbr-section-subtitle {
  color: #951d19;
}
.cid-soTOsyfDxe .mbr-section-title,
.cid-soTOsyfDxe .mbr-section-btn {
  color: #b99808;
}
.cid-soTOsyfDxe P {
  color: #232323;
}
.cid-ssWPdVaawl {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-ssWPdVaawl .image-block {
  margin: auto;
}
.cid-ssWPdVaawl figcaption {
  position: relative;
}
.cid-ssWPdVaawl figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ssWPdVaawl .image-block {
    width: 100% !important;
  }
}
.cid-ssWOSE8bHs {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ssWOSE8bHs .media-content .btn-bgr {
  z-index: 0;
}
.cid-ssWOSE8bHs .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-ssWOSE8bHs h3 {
  color: #000000;
  font-weight: 300;
}
.cid-ssWOSE8bHs p {
  color: #464646;
}
.cid-ssWOSE8bHs h2 {
  color: #000000;
}
.cid-ssWOSE8bHs .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
  padding-right: 0;
  padding-left: 1.5rem;
}
.cid-ssWOSE8bHs .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-ssWOSE8bHs .mbr-figure {
  padding-right: 1rem;
  padding-left: 4rem;
}
@media (min-width: 500px) {
  .cid-ssWOSE8bHs .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-ssWOSE8bHs .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ssWOSE8bHs .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
.cid-ssWOSE8bHs .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .cid-ssWOSE8bHs .mbr-text {
    text-align: center;
  }
}
.cid-ssWOSE8bHs .mbr-section-subtitle {
  color: #951d19;
}
.cid-ssWOSE8bHs .mbr-section-title,
.cid-ssWOSE8bHs .mbr-section-btn {
  color: #b99808;
}
.cid-ssWOSE8bHs P {
  color: #232323;
}
.cid-ssWPevtl6v {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 15px;
}
.cid-ssWPevtl6v .image-block {
  margin: auto;
}
.cid-ssWPevtl6v figcaption {
  position: relative;
}
.cid-ssWPevtl6v figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ssWPevtl6v .image-block {
    width: 100% !important;
  }
}
.cid-soUbJiwjQn {
  background: #ffffff;
}
.cid-soUbJiwjQn .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-soUbJiwjQn figcaption {
  position: relative;
}
.cid-soUbJiwjQn figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-soUbJiwjQn .image-block {
    width: 100% !important;
  }
}
.cid-soTN9gEHhI {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soTN9gEHhI section {
  position: relative;
}
.cid-soTN9gEHhI h4 {
  margin: 0;
}
.cid-soTN9gEHhI img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soTN9gEHhI a {
  font-weight: 300;
}
.cid-soTN9gEHhI .img1 {
  color: #efefef;
}
.cid-soTN9gEHhI .img2 {
  color: #0082c3;
}
.cid-soTN9gEHhI .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soTN9gEHhI .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soTN9gEHhI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soTN9gEHhI .item,
.cid-soTN9gEHhI .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soTN9gEHhI .item h4,
.cid-soTN9gEHhI .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soTN9gEHhI .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soTN9gEHhI .item {
    justify-content: center;
  }
}
.cid-soTN9gEHhI .item-title {
  color: #c1c1c1;
}
.cid-soTN9gEHhI foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soTN9gEHhI foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soTN9gEHhI foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soTN9gEHhI copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soTN9gEHhI .text1 {
  text-align: left;
  color: #787324;
}
.cid-soTN9gEHhI H4 {
  text-align: left;
}
.cid-soTN9gEHhI .items-title,
.cid-soTN9gEHhI .line-wrap {
  color: #cccccc;
}
.cid-soTN9h9ST4 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soTN9h9ST4 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soTN9h9ST4 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soTN9h9ST4 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soTN9h9ST4 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soTN9h9ST4 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soTN9h9ST4 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soTN9h9ST4 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soTN9h9ST4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soTN9h9ST4 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soTN9h9ST4 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soTN9h9ST4 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soTN9h9ST4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soTN9h9ST4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soTN9h9ST4 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soTN9h9ST4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soTN9h9ST4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soTN9h9ST4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soTN9h9ST4 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soTN9h9ST4 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soTN9h9ST4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soTN9h9ST4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soTN9h9ST4 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soTN9h9ST4 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soTN9h9ST4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soTN9h9ST4 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soTN9h9ST4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soTN9h9ST4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soTN9h9ST4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soTN9h9ST4 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soTN9h9ST4 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soTN9h9ST4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soTN9h9ST4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soTN9h9ST4 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soTN9h9ST4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soTN9h9ST4 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soTN9h9ST4 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soTN9h9ST4 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soTN9h9ST4 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soTN9h9ST4 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soTN9h9ST4 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soTN9h9ST4 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soTN9h9ST4 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soTN9h9ST4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soTN9h9ST4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soTN9h9ST4 .dropdown-item.active,
.cid-soTN9h9ST4 .dropdown-item:active {
  background-color: transparent;
}
.cid-soTN9h9ST4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soTN9h9ST4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soTN9h9ST4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soTN9h9ST4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soTN9h9ST4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soTN9h9ST4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soTN9h9ST4 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soTN9h9ST4 .navbar-buttons {
  text-align: center;
}
.cid-soTN9h9ST4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soTN9h9ST4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soTN9h9ST4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soTN9h9ST4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soTN9h9ST4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soTN9h9ST4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soTN9h9ST4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soTN9h9ST4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soTN9h9ST4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soTN9h9ST4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soTN9h9ST4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soTN9h9ST4 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soTN9h9ST4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soTN9h9ST4 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soTN9h9ST4 .nav-link:hover,
.cid-soTN9h9ST4 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soTN9h9ST4 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soTN9h9ST4 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soTN9h9ST4 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-rKgG74HUfl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-rKgG74HUfl .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rKgG74HUfl .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-rKgG74HUfl .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKh2kpPoy0 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKh2kpPoy0 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKh2kpPoy0 .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKh2kpPoy0 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKh2kpPoy0 .inner-container {
    width: 100% !important;
  }
}
.cid-rKh2kpPoy0 gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKh2kpPoy0 vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKh2kpPoy0 nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKh2kpPoy0 blind {
  color: #f2f2f2;
}
.cid-rKh2kpPoy0 blau {
  color: #A53A00;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rJSWWhRmLY {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rJSWWhRmLY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rJSWWhRmLY .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rJSWWhRmLY .mbr-text {
    text-align: center;
  }
}
.cid-rJSWWhRmLY H1 {
  color: #232323;
}
.cid-rJSWWhRmLY .mbr-text,
.cid-rJSWWhRmLY .mbr-section-btn {
  color: #000000;
}
.cid-rJSWWhRmLY text {
  color: #333333;
  font-size: 18px;
  line-height: 16px;
}
.cid-rJSWWhRmLY H3 {
  color: #ab1509;
}
.cid-rJSWWhRmLY blau {
  color: #A53A00;
  font-size: 20px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rKh0W2djNt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKh0W2djNt .mbr-text {
  color: #767676;
}
.cid-rKh0W2djNt H2 {
  color: #a53a00;
}
.cid-rKh0W2djNt blau {
  color: #A53A00;
  font-size: 20px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rKh0W2djNt .mbr-text,
.cid-rKh0W2djNt .mbr-section-btn {
  color: #465052;
}
.cid-rKJx59hr8U {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rKJx59hr8U .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rKJx59hr8U .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-rKJx59hr8U H2 {
  margin: 0;
  width: 100%;
  color: #767676;
}
.cid-rKJx59hr8U h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-rKJx59hr8U .title {
    margin-bottom: 2rem;
  }
  .cid-rKJx59hr8U .align-left,
  .cid-rKJx59hr8U .align-right {
    text-align: center;
  }
}
.cid-rKJx59hr8U .btn {
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: 1.4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 3px;
}
.cid-rKJx59hr8U blau {
  color: #A53A00;
  font-size: 20px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rZP5Y2YwDD {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-rZP5Y2YwDD section {
  position: relative;
}
.cid-rZP5Y2YwDD h4 {
  margin: 0;
}
.cid-rZP5Y2YwDD img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-rZP5Y2YwDD a {
  font-weight: 300;
}
.cid-rZP5Y2YwDD .img1 {
  color: #efefef;
}
.cid-rZP5Y2YwDD .img2 {
  color: #0082c3;
}
.cid-rZP5Y2YwDD .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-rZP5Y2YwDD .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-rZP5Y2YwDD .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rZP5Y2YwDD .item,
.cid-rZP5Y2YwDD .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-rZP5Y2YwDD .item h4,
.cid-rZP5Y2YwDD .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-rZP5Y2YwDD .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-rZP5Y2YwDD .item {
    justify-content: center;
  }
}
.cid-rZP5Y2YwDD .item-title {
  color: #c1c1c1;
}
.cid-rZP5Y2YwDD foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-rZP5Y2YwDD foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-rZP5Y2YwDD foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-rZP5Y2YwDD copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-rZP5Y2YwDD .text1 {
  text-align: left;
  color: #787324;
}
.cid-rZP5Y2YwDD H4 {
  text-align: left;
}
.cid-rZP5Y2YwDD .items-title,
.cid-rZP5Y2YwDD .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-rKh7vkNolm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-rKh7vkNolm .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rKh7vkNolm .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-rKh7vkNolm .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKh7EGfFDd {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKh7EGfFDd .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKh7EGfFDd .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKh7EGfFDd .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKh7EGfFDd .inner-container {
    width: 100% !important;
  }
}
.cid-rKh7EGfFDd gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKh7EGfFDd vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKh7EGfFDd nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKh7EGfFDd blind {
  color: #f2f2f2;
}
.cid-rKh7EGfFDd blau {
  color: #0082c3;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rKh7yqvMvj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rKh7yqvMvj .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rKh7yqvMvj .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rKh7yqvMvj .mbr-text {
    text-align: center;
  }
}
.cid-rKh7yqvMvj H1 {
  color: #232323;
}
.cid-rKh7yqvMvj .mbr-text,
.cid-rKh7yqvMvj .mbr-section-btn {
  color: #000000;
}
.cid-rKh7yqvMvj text {
  color: #333333;
  font-size: 18px;
  line-height: 16px;
}
.cid-rKh7yqvMvj H3 {
  color: #ab1509;
}
.cid-rKh7yqvMvj blau {
  color: #0082c3;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rKJj8Yb3jU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKJj8Yb3jU .mbr-text {
  color: #767676;
}
.cid-rKJj8Yb3jU H2 {
  color: #0082c3;
}
.cid-rKJj8Yb3jU .mbr-text,
.cid-rKJj8Yb3jU .mbr-section-btn {
  color: #465052;
}
.cid-rKNIMXpvIg {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rKNIMXpvIg .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rKNIMXpvIg .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-rKNIMXpvIg H2 {
  margin: 0;
  width: 100%;
  color: #767676;
}
.cid-rKNIMXpvIg h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-rKNIMXpvIg .title {
    margin-bottom: 2rem;
  }
  .cid-rKNIMXpvIg .align-left,
  .cid-rKNIMXpvIg .align-right {
    text-align: center;
  }
}
.cid-rKNIMXpvIg .btn {
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: 1.4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 3px;
}
.cid-rKNIMXpvIg blau {
  color: #A53A00;
  font-size: 20px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-soUc2ns3OX {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soUc2ns3OX section {
  position: relative;
}
.cid-soUc2ns3OX h4 {
  margin: 0;
}
.cid-soUc2ns3OX img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soUc2ns3OX a {
  font-weight: 300;
}
.cid-soUc2ns3OX .img1 {
  color: #efefef;
}
.cid-soUc2ns3OX .img2 {
  color: #0082c3;
}
.cid-soUc2ns3OX .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soUc2ns3OX .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soUc2ns3OX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soUc2ns3OX .item,
.cid-soUc2ns3OX .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soUc2ns3OX .item h4,
.cid-soUc2ns3OX .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soUc2ns3OX .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soUc2ns3OX .item {
    justify-content: center;
  }
}
.cid-soUc2ns3OX .item-title {
  color: #c1c1c1;
}
.cid-soUc2ns3OX foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUc2ns3OX foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUc2ns3OX foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUc2ns3OX copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUc2ns3OX .text1 {
  text-align: left;
  color: #787324;
}
.cid-soUc2ns3OX H4 {
  text-align: left;
}
.cid-soUc2ns3OX .items-title,
.cid-soUc2ns3OX .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-soU638gGtw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-soU638gGtw .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-soU638gGtw .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-soU638gGtw .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKh9gR2TeZ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKh9gR2TeZ .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKh9gR2TeZ .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKh9gR2TeZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKh9gR2TeZ .inner-container {
    width: 100% !important;
  }
}
.cid-rKh9gR2TeZ gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKh9gR2TeZ vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKh9gR2TeZ nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKh9gR2TeZ blind {
  color: #f2f2f2;
}
.cid-rKh9gR2TeZ blau {
  color: #0082c3;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rKh9hCHT8v {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rKh9hCHT8v .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rKh9hCHT8v .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rKh9hCHT8v .mbr-text {
    text-align: center;
  }
}
.cid-rKh9hCHT8v H1 {
  color: #232323;
}
.cid-rKh9hCHT8v .mbr-text,
.cid-rKh9hCHT8v .mbr-section-btn {
  color: #000000;
}
.cid-rKh9hCHT8v text {
  color: #333333;
  font-size: 18px;
  line-height: 16px;
}
.cid-rKh9hCHT8v H3 {
  color: #ab1509;
}
.cid-rKNIPJEan5 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rKNIPJEan5 .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rKNIPJEan5 .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-rKNIPJEan5 H2 {
  margin: 0;
  width: 100%;
  color: #767676;
}
.cid-rKNIPJEan5 h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-rKNIPJEan5 .title {
    margin-bottom: 2rem;
  }
  .cid-rKNIPJEan5 .align-left,
  .cid-rKNIPJEan5 .align-right {
    text-align: center;
  }
}
.cid-rKNIPJEan5 .btn {
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: 1.4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 3px;
}
.cid-rKNIPJEan5 blau {
  color: #A53A00;
  font-size: 20px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-soUc8yZJ5r {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soUc8yZJ5r section {
  position: relative;
}
.cid-soUc8yZJ5r h4 {
  margin: 0;
}
.cid-soUc8yZJ5r img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soUc8yZJ5r a {
  font-weight: 300;
}
.cid-soUc8yZJ5r .img1 {
  color: #efefef;
}
.cid-soUc8yZJ5r .img2 {
  color: #0082c3;
}
.cid-soUc8yZJ5r .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soUc8yZJ5r .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soUc8yZJ5r .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soUc8yZJ5r .item,
.cid-soUc8yZJ5r .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soUc8yZJ5r .item h4,
.cid-soUc8yZJ5r .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soUc8yZJ5r .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soUc8yZJ5r .item {
    justify-content: center;
  }
}
.cid-soUc8yZJ5r .item-title {
  color: #c1c1c1;
}
.cid-soUc8yZJ5r foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUc8yZJ5r foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUc8yZJ5r foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUc8yZJ5r copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUc8yZJ5r .text1 {
  text-align: left;
  color: #787324;
}
.cid-soUc8yZJ5r H4 {
  text-align: left;
}
.cid-soUc8yZJ5r .items-title,
.cid-soUc8yZJ5r .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-soU6rg5AcE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-soU6rg5AcE .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-soU6rg5AcE .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-soU6rg5AcE .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKvYbGktIZ {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKvYbGktIZ .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKvYbGktIZ .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKvYbGktIZ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKvYbGktIZ .inner-container {
    width: 100% !important;
  }
}
.cid-rKvYbGktIZ gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKvYbGktIZ vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKvYbGktIZ nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKvYbGktIZ blind {
  color: #f2f2f2;
}
.cid-rKvYbGktIZ blau {
  color: #0082c3;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rJSX7ZMz3n {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rJSX7ZMz3n .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rJSX7ZMz3n .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rJSX7ZMz3n .mbr-text {
    text-align: center;
  }
}
.cid-rJSX7ZMz3n H1 {
  color: #232323;
}
.cid-rJSX7ZMz3n .mbr-text,
.cid-rJSX7ZMz3n .mbr-section-btn {
  color: #000000;
}
.cid-rJSX7ZMz3n text {
  color: #333333;
  font-size: 18px;
  line-height: 16px;
}
.cid-rJSX7ZMz3n H3 {
  color: #ab1509;
}
.cid-rKNISvKkhQ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rKNISvKkhQ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rKNISvKkhQ .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-rKNISvKkhQ H2 {
  margin: 0;
  width: 100%;
  color: #767676;
}
.cid-rKNISvKkhQ h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-rKNISvKkhQ .title {
    margin-bottom: 2rem;
  }
  .cid-rKNISvKkhQ .align-left,
  .cid-rKNISvKkhQ .align-right {
    text-align: center;
  }
}
.cid-rKNISvKkhQ .btn {
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: 1.4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 3px;
}
.cid-rKNISvKkhQ blau {
  color: #A53A00;
  font-size: 20px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-soUccL5lHM {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soUccL5lHM section {
  position: relative;
}
.cid-soUccL5lHM h4 {
  margin: 0;
}
.cid-soUccL5lHM img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soUccL5lHM a {
  font-weight: 300;
}
.cid-soUccL5lHM .img1 {
  color: #efefef;
}
.cid-soUccL5lHM .img2 {
  color: #0082c3;
}
.cid-soUccL5lHM .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soUccL5lHM .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soUccL5lHM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soUccL5lHM .item,
.cid-soUccL5lHM .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soUccL5lHM .item h4,
.cid-soUccL5lHM .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soUccL5lHM .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soUccL5lHM .item {
    justify-content: center;
  }
}
.cid-soUccL5lHM .item-title {
  color: #c1c1c1;
}
.cid-soUccL5lHM foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUccL5lHM foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUccL5lHM foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUccL5lHM copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUccL5lHM .text1 {
  text-align: left;
  color: #787324;
}
.cid-soUccL5lHM H4 {
  text-align: left;
}
.cid-soUccL5lHM .items-title,
.cid-soUccL5lHM .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-soU762oyiL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-soU762oyiL .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-soU762oyiL .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-soU762oyiL .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKqLJAZxEe {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKqLJAZxEe .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKqLJAZxEe .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKqLJAZxEe .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKqLJAZxEe .inner-container {
    width: 100% !important;
  }
}
.cid-rKqLJAZxEe gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKqLJAZxEe vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKqLJAZxEe nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKqLJAZxEe blind {
  color: #f2f2f2;
}
.cid-rKqLJAZxEe blau {
  color: #0082c3;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rKgER5mb3C {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rKgER5mb3C .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rKgER5mb3C .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rKgER5mb3C .mbr-text {
    text-align: center;
  }
}
.cid-rKgER5mb3C H1 {
  color: #0082c3;
}
.cid-rKgER5mb3C .mbr-text,
.cid-rKgER5mb3C .mbr-section-btn {
  color: #073b4c;
}
.cid-rKgER5mb3C text {
  color: #333333;
  font-size: 18px;
  line-height: 16px;
}
.cid-rKgER5mb3C H3 {
  color: #ab1509;
}
.cid-rKqSXKASIa {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKqSXKASIa H1 {
  color: #57468b;
}
.cid-rKqSXKASIa .mbr-text,
.cid-rKqSXKASIa .mbr-section-btn {
  color: #716c80;
}
.cid-rKqSXKASIa H3 {
  color: #716c80;
}
.cid-rKqSXKASIa .row {
  justify-content: space-between;
}
.cid-rKqSXKASIa .col-lg-6 {
  max-width: 500px;
}
.cid-rKqSXKASIa .title2 {
  text-align: left;
  color: #0082c3;
}
.cid-rKqSXKASIa .text2,
.cid-rKqSXKASIa .btn2 {
  text-align: left;
}
.cid-rKqSXKASIa .title1 {
  color: #0082c3;
}
.cid-rKqSXKASIa tel {
  font-size: 28px;
  color: #9B7400;
  line-height: 22px;
}
.cid-rKqNABhacx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKqNABhacx .media-container-row {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-rKqNABhacx .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rKqNABhacx .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rKqNABhacx .mbr-text {
    text-align: center;
  }
}
.cid-rKqNABhacx H1 {
  color: #232323;
}
.cid-rKqNABhacx .mbr-text,
.cid-rKqNABhacx .mbr-section-btn {
  color: #ff3366;
}
.cid-rKqNABhacx text {
  color: #333333;
  font-size: 18px;
  line-height: 16px;
}
.cid-rKqNABhacx H3 {
  color: #ab1509;
}
.cid-rKNIVApnGF {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rKNIVApnGF .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rKNIVApnGF .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-rKNIVApnGF H2 {
  margin: 0;
  width: 100%;
  color: #767676;
}
.cid-rKNIVApnGF h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-rKNIVApnGF .title {
    margin-bottom: 2rem;
  }
  .cid-rKNIVApnGF .align-left,
  .cid-rKNIVApnGF .align-right {
    text-align: center;
  }
}
.cid-rKNIVApnGF .btn {
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: 1.4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 3px;
}
.cid-rKNIVApnGF blau {
  color: #A53A00;
  font-size: 20px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-soUcp2eQXm {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soUcp2eQXm section {
  position: relative;
}
.cid-soUcp2eQXm h4 {
  margin: 0;
}
.cid-soUcp2eQXm img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soUcp2eQXm a {
  font-weight: 300;
}
.cid-soUcp2eQXm .img1 {
  color: #efefef;
}
.cid-soUcp2eQXm .img2 {
  color: #0082c3;
}
.cid-soUcp2eQXm .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soUcp2eQXm .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soUcp2eQXm .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soUcp2eQXm .item,
.cid-soUcp2eQXm .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soUcp2eQXm .item h4,
.cid-soUcp2eQXm .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soUcp2eQXm .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soUcp2eQXm .item {
    justify-content: center;
  }
}
.cid-soUcp2eQXm .item-title {
  color: #c1c1c1;
}
.cid-soUcp2eQXm foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcp2eQXm foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcp2eQXm foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcp2eQXm copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcp2eQXm .text1 {
  text-align: left;
  color: #787324;
}
.cid-soUcp2eQXm H4 {
  text-align: left;
}
.cid-soUcp2eQXm .items-title,
.cid-soUcp2eQXm .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-soU7xT5bAj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-soU7xT5bAj .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-soU7xT5bAj .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-soU7xT5bAj .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKvYGODzXj {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKvYGODzXj .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKvYGODzXj .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKvYGODzXj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKvYGODzXj .inner-container {
    width: 100% !important;
  }
}
.cid-rKvYGODzXj gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKvYGODzXj vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKvYGODzXj nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKvYGODzXj blind {
  color: #f2f2f2;
}
.cid-rKvYGODzXj blau {
  color: #0082c3;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rKJ2vkf2aF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rKJ2vkf2aF .line {
  background-color: #149dcc;
  color: #149dcc;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rKJ2vkf2aF .section-text {
  padding: 2rem 0;
}
.cid-rKJ2vkf2aF .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKJ2vkf2aF .inner-container {
    width: 100% !important;
  }
}
.cid-rKJ22oNgun {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKJ22oNgun h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rKJ22oNgun p {
  color: #767676;
  text-align: left;
}
.cid-rKJ22oNgun .card-box {
  padding-top: 2rem;
}
.cid-rKJ22oNgun .card-wrapper {
  height: 100%;
}
.cid-soUcvuYeab {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soUcvuYeab section {
  position: relative;
}
.cid-soUcvuYeab h4 {
  margin: 0;
}
.cid-soUcvuYeab img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soUcvuYeab a {
  font-weight: 300;
}
.cid-soUcvuYeab .img1 {
  color: #efefef;
}
.cid-soUcvuYeab .img2 {
  color: #0082c3;
}
.cid-soUcvuYeab .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soUcvuYeab .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soUcvuYeab .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soUcvuYeab .item,
.cid-soUcvuYeab .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soUcvuYeab .item h4,
.cid-soUcvuYeab .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soUcvuYeab .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soUcvuYeab .item {
    justify-content: center;
  }
}
.cid-soUcvuYeab .item-title {
  color: #c1c1c1;
}
.cid-soUcvuYeab foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcvuYeab foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcvuYeab foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcvuYeab copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcvuYeab .text1 {
  text-align: left;
  color: #787324;
}
.cid-soUcvuYeab H4 {
  text-align: left;
}
.cid-soUcvuYeab .items-title,
.cid-soUcvuYeab .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-soU83K5hGT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-soU83K5hGT .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-soU83K5hGT .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-soU83K5hGT .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKvZBN4tAG {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKvZBN4tAG .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKvZBN4tAG .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKvZBN4tAG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKvZBN4tAG .inner-container {
    width: 100% !important;
  }
}
.cid-rKvZBN4tAG gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKvZBN4tAG vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKvZBN4tAG nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKvZBN4tAG blind {
  color: #f2f2f2;
}
.cid-rKvZBN4tAG blau {
  color: #0082c3;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rKJ2RiEKTs {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKJ2RiEKTs .carousel-control {
  background: #000;
}
.cid-rKJ2RiEKTs .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-rKJ2RiEKTs .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKJ2RiEKTs .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-rKJ2RiEKTs .carousel-item .wrap-img {
  text-align: center;
}
.cid-rKJ2RiEKTs .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-rKJ2RiEKTs .carousel-controls {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rKJ2RiEKTs .carousel-controls .carousel-control {
  background: #000;
  border-radius: 50%;
  position: static;
  width: 40px;
  height: 40px;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-rKJ2RiEKTs .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-rKJ2RiEKTs .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-rKJ2RiEKTs .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-rKJ2RiEKTs .cloneditem-1,
.cid-rKJ2RiEKTs .cloneditem-2,
.cid-rKJ2RiEKTs .cloneditem-3,
.cid-rKJ2RiEKTs .cloneditem-4,
.cid-rKJ2RiEKTs .cloneditem-5 {
  display: none;
}
.cid-rKJ2RiEKTs .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-rKJ2RiEKTs .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-rKJ2RiEKTs .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-rKJ2RiEKTs .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-rKJ2RiEKTs .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rKJ2RiEKTs .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides2 .cloneditem-1,
  .cid-rKJ2RiEKTs .carousel-inner.slides2 .cloneditem-2,
  .cid-rKJ2RiEKTs .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-rKJ2RiEKTs .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-rKJ2RiEKTs .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-rKJ2RiEKTs .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rKJ2RiEKTs .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides3 .cloneditem-1,
  .cid-rKJ2RiEKTs .carousel-inner.slides3 .cloneditem-2,
  .cid-rKJ2RiEKTs .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-rKJ2RiEKTs .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-rKJ2RiEKTs .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-rKJ2RiEKTs .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rKJ2RiEKTs .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides4 .cloneditem-1,
  .cid-rKJ2RiEKTs .carousel-inner.slides4 .cloneditem-2,
  .cid-rKJ2RiEKTs .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-rKJ2RiEKTs .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-rKJ2RiEKTs .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-rKJ2RiEKTs .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rKJ2RiEKTs .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides5 .cloneditem-1,
  .cid-rKJ2RiEKTs .carousel-inner.slides5 .cloneditem-2,
  .cid-rKJ2RiEKTs .carousel-inner.slides5 .cloneditem-3,
  .cid-rKJ2RiEKTs .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-rKJ2RiEKTs .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-rKJ2RiEKTs .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-rKJ2RiEKTs .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-rKJ2RiEKTs .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-rKJ2RiEKTs .carousel-inner.slides6 .cloneditem-1,
  .cid-rKJ2RiEKTs .carousel-inner.slides6 .cloneditem-2,
  .cid-rKJ2RiEKTs .carousel-inner.slides6 .cloneditem-3,
  .cid-rKJ2RiEKTs .carousel-inner.slides6 .cloneditem-4,
  .cid-rKJ2RiEKTs .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-rKJ2RiEKTs H2 {
  color: #ff3366;
  text-align: left;
}
.cid-soUcD8QOzd {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soUcD8QOzd section {
  position: relative;
}
.cid-soUcD8QOzd h4 {
  margin: 0;
}
.cid-soUcD8QOzd img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soUcD8QOzd a {
  font-weight: 300;
}
.cid-soUcD8QOzd .img1 {
  color: #efefef;
}
.cid-soUcD8QOzd .img2 {
  color: #0082c3;
}
.cid-soUcD8QOzd .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soUcD8QOzd .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soUcD8QOzd .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soUcD8QOzd .item,
.cid-soUcD8QOzd .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soUcD8QOzd .item h4,
.cid-soUcD8QOzd .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soUcD8QOzd .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soUcD8QOzd .item {
    justify-content: center;
  }
}
.cid-soUcD8QOzd .item-title {
  color: #c1c1c1;
}
.cid-soUcD8QOzd foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcD8QOzd foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcD8QOzd foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcD8QOzd copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcD8QOzd .text1 {
  text-align: left;
  color: #787324;
}
.cid-soUcD8QOzd H4 {
  text-align: left;
}
.cid-soUcD8QOzd .items-title,
.cid-soUcD8QOzd .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-soU8gGIK5G {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-soU8gGIK5G .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-soU8gGIK5G .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-soU8gGIK5G .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKvZKRxpEG {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKvZKRxpEG .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKvZKRxpEG .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKvZKRxpEG .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKvZKRxpEG .inner-container {
    width: 100% !important;
  }
}
.cid-rKvZKRxpEG gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKvZKRxpEG vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKvZKRxpEG nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKvZKRxpEG blind {
  color: #f2f2f2;
}
.cid-rKvZKRxpEG blau {
  color: #0082c3;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rKJ8DEUC2I {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-rKJ8DEUC2I .mbr-iconfont {
  font-size: 1.2rem!important;
}
.cid-rKJ8DEUC2I p {
  margin-bottom: 0!important;
}
.cid-rKJ8DEUC2I .card {
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
.cid-rKJ8DEUC2I .card .card-header {
  padding: 0;
  border-bottom: 1px solid #cccccc;
}
.cid-rKJ8DEUC2I .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-rKJ8DEUC2I .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-rKJ8DEUC2I .card .card-header a.panel-title h4 {
  padding: 0.8rem 0.2rem;
  margin-bottom: 0;
}
.cid-rKJ8DEUC2I .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-rKJ8DEUC2I .card .panel-body {
  color: #767676;
}
.cid-rKJ8DEUC2I .card-header {
  transition: all 0.3s;
  background-color: #ffffff;
}
.cid-rKJ8DEUC2I .card-header:hover {
  background-color: #ffffff;
}
.cid-rKJ8DEUC2I .card-header:hover h4 {
  color: #3d626c !important;
}
.cid-rKJ8DEUC2I H4 {
  color: #3d626c;
}
.cid-rKJ8DEUC2I .panel-text {
  color: #9c969b;
}
.cid-rKJ8DEUC2I H2 {
  text-align: left;
}
.cid-rKNJ0gJXiY {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rKNJ0gJXiY .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-rKNJ0gJXiY .title {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-rKNJ0gJXiY H2 {
  margin: 0;
  width: 100%;
  color: #767676;
}
.cid-rKNJ0gJXiY h3 {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-rKNJ0gJXiY .title {
    margin-bottom: 2rem;
  }
  .cid-rKNJ0gJXiY .align-left,
  .cid-rKNJ0gJXiY .align-right {
    text-align: center;
  }
}
.cid-rKNJ0gJXiY .btn {
  font-weight: 500;
  border-width: 1px;
  font-style: normal;
  letter-spacing: 1px;
  margin: 1.4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
  -webkit-align-items: center;
  -webkit-justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 3px;
}
.cid-rKNJ0gJXiY blau {
  color: #A53A00;
  font-size: 20px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-soUcIdRjri {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soUcIdRjri section {
  position: relative;
}
.cid-soUcIdRjri h4 {
  margin: 0;
}
.cid-soUcIdRjri img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soUcIdRjri a {
  font-weight: 300;
}
.cid-soUcIdRjri .img1 {
  color: #efefef;
}
.cid-soUcIdRjri .img2 {
  color: #0082c3;
}
.cid-soUcIdRjri .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soUcIdRjri .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soUcIdRjri .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soUcIdRjri .item,
.cid-soUcIdRjri .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soUcIdRjri .item h4,
.cid-soUcIdRjri .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soUcIdRjri .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soUcIdRjri .item {
    justify-content: center;
  }
}
.cid-soUcIdRjri .item-title {
  color: #c1c1c1;
}
.cid-soUcIdRjri foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcIdRjri foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcIdRjri foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcIdRjri copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcIdRjri .text1 {
  text-align: left;
  color: #787324;
}
.cid-soUcIdRjri H4 {
  text-align: left;
}
.cid-soUcIdRjri .items-title,
.cid-soUcIdRjri .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-rKw0xIsndk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-rKw0xIsndk .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-rKw0xIsndk .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-rKw0xIsndk .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKvZTXrca3 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKvZTXrca3 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKvZTXrca3 .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKvZTXrca3 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKvZTXrca3 .inner-container {
    width: 100% !important;
  }
}
.cid-rKvZTXrca3 gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKvZTXrca3 vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKvZTXrca3 nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKvZTXrca3 blind {
  color: #f2f2f2;
}
.cid-rKvZTXrca3 blau {
  color: #0082c3;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rKNJ8zocSq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKNJ8zocSq .mbr-text {
  color: #767676;
}
.cid-rKNJ8zocSq H2 {
  color: #0082c3;
}
.cid-rKNKB0tQU1 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rKNKB0tQU1 .card {
  padding: 1rem 1rem 3rem 1rem;
}
.cid-rKNKB0tQU1 .card-img {
  padding-bottom: 2rem;
}
.cid-rKNKB0tQU1 .mbr-text {
  color: #767676;
}
.cid-rKNKB0tQU1 span {
  font-size: 14px;
  color: #ffffff;
}
.cid-rKNKB0tQU1 .mbr-section-btn {
  margin-left: 0;
}
.cid-rKNKB0tQU1 .date span {
  display: inline-block;
  background-color: #a53a00;
  padding: 0.2rem 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 90%;
  overflow: hidden;
  font-size: 16px;
  font-family: Fira Sans Condensed;
}
@media (max-width: 767px) {
  .cid-rKNKB0tQU1 .card-title {
    text-align: center;
  }
  .cid-rKNKB0tQU1 p.mbr-text,
  .cid-rKNKB0tQU1 p.date {
    text-align: center;
    font-size: 16px;
    font-family: Fira Sans Condensed;
  }
}
.cid-soUcP3qLxh {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soUcP3qLxh section {
  position: relative;
}
.cid-soUcP3qLxh h4 {
  margin: 0;
}
.cid-soUcP3qLxh img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soUcP3qLxh a {
  font-weight: 300;
}
.cid-soUcP3qLxh .img1 {
  color: #efefef;
}
.cid-soUcP3qLxh .img2 {
  color: #0082c3;
}
.cid-soUcP3qLxh .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soUcP3qLxh .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soUcP3qLxh .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soUcP3qLxh .item,
.cid-soUcP3qLxh .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soUcP3qLxh .item h4,
.cid-soUcP3qLxh .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soUcP3qLxh .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soUcP3qLxh .item {
    justify-content: center;
  }
}
.cid-soUcP3qLxh .item-title {
  color: #c1c1c1;
}
.cid-soUcP3qLxh foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcP3qLxh foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcP3qLxh foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcP3qLxh copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcP3qLxh .text1 {
  text-align: left;
  color: #787324;
}
.cid-soUcP3qLxh H4 {
  text-align: left;
}
.cid-soUcP3qLxh .items-title,
.cid-soUcP3qLxh .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-soU9Hjlr6t {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-soU9Hjlr6t .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-soU9Hjlr6t .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-soU9Hjlr6t .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKvZZ8QyDz {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKvZZ8QyDz .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKvZZ8QyDz .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKvZZ8QyDz .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKvZZ8QyDz .inner-container {
    width: 100% !important;
  }
}
.cid-rKvZZ8QyDz gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKvZZ8QyDz vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKvZZ8QyDz nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKvZZ8QyDz blind {
  color: #f2f2f2;
}
.cid-rKvZZ8QyDz blau {
  color: #0082c3;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rKvJSwsNtO {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rKvJSwsNtO .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rKvJSwsNtO .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-rKvJSwsNtO .mbr-text {
    text-align: center;
  }
}
.cid-rKvJSwsNtO H1 {
  color: #232323;
}
.cid-rKvJSwsNtO .mbr-text,
.cid-rKvJSwsNtO .mbr-section-btn {
  color: #000000;
}
.cid-rKvJSwsNtO text {
  color: #333333;
  font-size: 18px;
  line-height: 16px;
}
.cid-rKvJSwsNtO H3 {
  color: #ab1509;
}
.cid-soUcV0oiex {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soUcV0oiex section {
  position: relative;
}
.cid-soUcV0oiex h4 {
  margin: 0;
}
.cid-soUcV0oiex img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soUcV0oiex a {
  font-weight: 300;
}
.cid-soUcV0oiex .img1 {
  color: #efefef;
}
.cid-soUcV0oiex .img2 {
  color: #0082c3;
}
.cid-soUcV0oiex .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soUcV0oiex .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soUcV0oiex .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soUcV0oiex .item,
.cid-soUcV0oiex .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soUcV0oiex .item h4,
.cid-soUcV0oiex .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soUcV0oiex .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soUcV0oiex .item {
    justify-content: center;
  }
}
.cid-soUcV0oiex .item-title {
  color: #c1c1c1;
}
.cid-soUcV0oiex foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcV0oiex foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcV0oiex foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcV0oiex copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUcV0oiex .text1 {
  text-align: left;
  color: #787324;
}
.cid-soUcV0oiex H4 {
  text-align: left;
}
.cid-soUcV0oiex .items-title,
.cid-soUcV0oiex .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-soUajuSxMv {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-soUajuSxMv .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-soUajuSxMv .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-soUajuSxMv .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKvPoq4N1l {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKvPoq4N1l .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKvPoq4N1l .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKvPoq4N1l .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKvPoq4N1l .inner-container {
    width: 100% !important;
  }
}
.cid-rKvPoq4N1l gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKvPoq4N1l vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKvPoq4N1l nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKvPoq4N1l blind {
  color: #f2f2f2;
}
.cid-rKvPoq4N1l blau {
  color: #0082c3;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rZOR9MlhUt {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rZOR9MlhUt .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-rZOR9MlhUt .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-rZOR9MlhUt .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-rZOR9MlhUt .form-group {
  padding-right: 0;
}
.cid-rZOR9MlhUt .card {
  padding: 3rem 8rem;
}
.cid-rZOR9MlhUt .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-rZOR9MlhUt .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-rZOR9MlhUt .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-rZOR9MlhUt .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rZOR9MlhUt .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-rZOR9MlhUt .map-placeholder {
  display: none;
}
.cid-rZOR9MlhUt .btn-primary {
  border: 1px solid #0082c3 !important;
}
.cid-rZOR9MlhUt .btn-primary:hover {
  border: 1px solid #0082c3 !important;
}
.cid-rZOR9MlhUt .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-rZOR9MlhUt .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-rZOR9MlhUt .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-rZOR9MlhUt .mbr-text {
  color: #444;
}
.cid-rZOR9MlhUt h5 {
  margin-bottom: 0;
}
.cid-rZOR9MlhUt .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-rZOR9MlhUt .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rZOR9MlhUt .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-rZOR9MlhUt .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rZOR9MlhUt .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rZOR9MlhUt .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-rZOR9MlhUt .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-rZOR9MlhUt .social-list a:hover {
  opacity: 0.4;
}
.cid-rZOR9MlhUt .media-container-row > div {
  padding: 0px;
}
.cid-rZOR9MlhUt .text2 {
  color: #000000;
  text-align: left;
}
.cid-rZOR9MlhUt .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-rZOR9MlhUt .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 1200px) {
  .cid-rZOR9MlhUt .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-rZOR9MlhUt .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-rZOR9MlhUt h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-rZOR9MlhUt .form-group {
    max-width: 180px;
  }
  .cid-rZOR9MlhUt .card {
    padding: 2rem 1rem;
  }
}
.cid-rZOR9MlhUt .links span {
  color: #9e9e9e;
}
.cid-rZOR9MlhUt .logo-title,
.cid-rZOR9MlhUt .logo-sub-title {
  text-align: center;
}
.cid-rZOR9MlhUt .logo-sub-title i {
  color: #9e9e9e;
}
.cid-soUd03XHmZ {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soUd03XHmZ section {
  position: relative;
}
.cid-soUd03XHmZ h4 {
  margin: 0;
}
.cid-soUd03XHmZ img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soUd03XHmZ a {
  font-weight: 300;
}
.cid-soUd03XHmZ .img1 {
  color: #efefef;
}
.cid-soUd03XHmZ .img2 {
  color: #0082c3;
}
.cid-soUd03XHmZ .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soUd03XHmZ .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soUd03XHmZ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soUd03XHmZ .item,
.cid-soUd03XHmZ .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soUd03XHmZ .item h4,
.cid-soUd03XHmZ .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soUd03XHmZ .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soUd03XHmZ .item {
    justify-content: center;
  }
}
.cid-soUd03XHmZ .item-title {
  color: #c1c1c1;
}
.cid-soUd03XHmZ foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUd03XHmZ foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUd03XHmZ foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUd03XHmZ copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUd03XHmZ .text1 {
  text-align: left;
  color: #787324;
}
.cid-soUd03XHmZ H4 {
  text-align: left;
}
.cid-soUd03XHmZ .items-title,
.cid-soUd03XHmZ .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-soUauhFlhj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-soUauhFlhj .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-soUauhFlhj .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-soUauhFlhj .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKvPg1Pxi8 {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKvPg1Pxi8 .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKvPg1Pxi8 .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKvPg1Pxi8 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKvPg1Pxi8 .inner-container {
    width: 100% !important;
  }
}
.cid-rKvPg1Pxi8 gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKvPg1Pxi8 vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKvPg1Pxi8 nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKvPg1Pxi8 blind {
  color: #f2f2f2;
}
.cid-rKvPg1Pxi8 blau {
  color: #0082c3;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rKvQexQ81W {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rKvQexQ81W div.b {
  padding-top: 2rem;
}
.cid-rKvQexQ81W .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 1.5rem;
}
.cid-rKvQexQ81W a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-rKvQexQ81W .google-map {
  height: 25rem;
  position: relative;
}
.cid-rKvQexQ81W .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-rKvQexQ81W .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-rKvQexQ81W .google-map[data-state] {
  background: #e9e5dc;
}
.cid-rKvQexQ81W .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-rKvQexQ81W div.left-block.wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .cid-rKvQexQ81W div.left-block.wrapper {
    padding-bottom: 3rem;
  }
}
.cid-rKvQSdoivp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rKvQSdoivp .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-rKvQSdoivp .section-text {
  padding: 2rem 0;
  text-align: left;
  color: #ff3366;
}
.cid-rKvQSdoivp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKvQSdoivp .inner-container {
    width: 100% !important;
  }
}
.cid-soUd7ejyhc {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soUd7ejyhc section {
  position: relative;
}
.cid-soUd7ejyhc h4 {
  margin: 0;
}
.cid-soUd7ejyhc img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soUd7ejyhc a {
  font-weight: 300;
}
.cid-soUd7ejyhc .img1 {
  color: #efefef;
}
.cid-soUd7ejyhc .img2 {
  color: #0082c3;
}
.cid-soUd7ejyhc .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soUd7ejyhc .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soUd7ejyhc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soUd7ejyhc .item,
.cid-soUd7ejyhc .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soUd7ejyhc .item h4,
.cid-soUd7ejyhc .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soUd7ejyhc .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soUd7ejyhc .item {
    justify-content: center;
  }
}
.cid-soUd7ejyhc .item-title {
  color: #c1c1c1;
}
.cid-soUd7ejyhc foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUd7ejyhc foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUd7ejyhc foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUd7ejyhc copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUd7ejyhc .text1 {
  text-align: left;
  color: #787324;
}
.cid-soUd7ejyhc H4 {
  text-align: left;
}
.cid-soUd7ejyhc .items-title,
.cid-soUd7ejyhc .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-rKvPabnvgq {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKvPabnvgq .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKvPabnvgq .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKvPabnvgq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKvPabnvgq .inner-container {
    width: 100% !important;
  }
}
.cid-rKvPabnvgq gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKvPabnvgq vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKvPabnvgq nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKvPabnvgq blind {
  color: #f2f2f2;
}
.cid-rKvPabnvgq blau {
  color: #0082c3;
  font-size: 32px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-soUaymtURd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-soUaymtURd .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-soUaymtURd .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-soUaymtURd .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKvRnDQzLf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-rKvRnDQzLf H1 {
  color: #57468b;
}
.cid-rKvRnDQzLf .mbr-text,
.cid-rKvRnDQzLf .mbr-section-btn {
  color: #716c80;
}
.cid-rKvRnDQzLf H3 {
  color: #716c80;
}
.cid-rKvRnDQzLf .row {
  justify-content: space-between;
}
.cid-rKvRnDQzLf .col-lg-6 {
  max-width: 500px;
}
.cid-rKvRnDQzLf .title2 {
  text-align: left;
  color: #073b4c;
}
.cid-rKvRnDQzLf .text2,
.cid-rKvRnDQzLf .btn2 {
  text-align: left;
}
.cid-rKvRnDQzLf .title1 {
  color: #073b4c;
}
.cid-rKvUnSb3zc {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rKvUnSb3zc H1 {
  color: #57468b;
}
.cid-rKvUnSb3zc .mbr-text,
.cid-rKvUnSb3zc .mbr-section-btn {
  color: #716c80;
}
.cid-rKvUnSb3zc H3 {
  color: #716c80;
}
.cid-rKvUnSb3zc .row {
  justify-content: space-between;
}
.cid-rKvUnSb3zc .col-lg-6 {
  max-width: 500px;
}
.cid-rKvUnSb3zc .title2 {
  text-align: left;
  color: #073b4c;
}
.cid-rKvUnSb3zc .text2,
.cid-rKvUnSb3zc .btn2 {
  text-align: left;
}
.cid-rKvUnSb3zc .title1 {
  color: #073b4c;
}
.cid-rKvUSo6Ivx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rKvUSo6Ivx H1 {
  color: #57468b;
}
.cid-rKvUSo6Ivx .mbr-text,
.cid-rKvUSo6Ivx .mbr-section-btn {
  color: #716c80;
}
.cid-rKvUSo6Ivx H3 {
  color: #716c80;
}
.cid-rKvUSo6Ivx .row {
  justify-content: space-between;
}
.cid-rKvUSo6Ivx .col-lg-6 {
  max-width: 500px;
}
.cid-rKvUSo6Ivx .title2 {
  text-align: left;
  color: #073b4c;
}
.cid-rKvUSo6Ivx .text2,
.cid-rKvUSo6Ivx .btn2 {
  text-align: left;
}
.cid-rKvUSo6Ivx .title1 {
  color: #073b4c;
}
.cid-soUaE2vEUU {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soUaE2vEUU .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-soUaE2vEUU .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #ff3366;
}
.cid-soUaE2vEUU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-soUaE2vEUU .inner-container {
    width: 100% !important;
  }
}
.cid-soUaE2vEUU blau {
  color: #0082c3;
  font-size: 24px;
}
.cid-soUaE2vEUU .section-text BLAU {
  color: #c30027;
}
.cid-soUaFh8pMU {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-soUaFh8pMU .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-soUaFh8pMU .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #009e89;
}
.cid-soUaFh8pMU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-soUaFh8pMU .inner-container {
    width: 100% !important;
  }
}
.cid-soUaFh8pMU blau {
  color: #0082c3;
  font-size: 24px;
}
.cid-soUaFh8pMU .section-text BLAU {
  color: #c30027;
}
.cid-soUdezjYXV {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soUdezjYXV section {
  position: relative;
}
.cid-soUdezjYXV h4 {
  margin: 0;
}
.cid-soUdezjYXV img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soUdezjYXV a {
  font-weight: 300;
}
.cid-soUdezjYXV .img1 {
  color: #efefef;
}
.cid-soUdezjYXV .img2 {
  color: #0082c3;
}
.cid-soUdezjYXV .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soUdezjYXV .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soUdezjYXV .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soUdezjYXV .item,
.cid-soUdezjYXV .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soUdezjYXV .item h4,
.cid-soUdezjYXV .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soUdezjYXV .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soUdezjYXV .item {
    justify-content: center;
  }
}
.cid-soUdezjYXV .item-title {
  color: #c1c1c1;
}
.cid-soUdezjYXV foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUdezjYXV foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUdezjYXV foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUdezjYXV copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUdezjYXV .text1 {
  text-align: left;
  color: #787324;
}
.cid-soUdezjYXV H4 {
  text-align: left;
}
.cid-soUdezjYXV .items-title,
.cid-soUdezjYXV .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
.cid-soUaHePfza {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/hg1rot-2000x750.jpg");
}
.cid-soUaHePfza .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-soUaHePfza .mbr-figure img {
  height: 100%;
  margin: 0 auto;
  margin-top: -40px;
}
@media (max-width: 991px) {
  .cid-soUaHePfza .mbr-figure img {
    width: 100% !important;
  }
}
.cid-rKvP2eK3Zj {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rKvP2eK3Zj .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 0.2px;
  margin: 0 auto;
}
.cid-rKvP2eK3Zj .section-text {
  padding: 0.2rem 0;
  text-align: left;
  color: #232323;
}
.cid-rKvP2eK3Zj .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-rKvP2eK3Zj .inner-container {
    width: 100% !important;
  }
}
.cid-rKvP2eK3Zj gruen {
  color: #009e89;
  font-size: 22px;
  line-height: 22px;
}
.cid-rKvP2eK3Zj vor {
  color: #009e89;
  font-size: 18px;
}
.cid-rKvP2eK3Zj nach {
  color: #e15a00;
  font-size: 18px;
}
.cid-rKvP2eK3Zj blind {
  color: #f2f2f2;
}
.cid-rKvP2eK3Zj blau {
  color: #0082c3;
  font-size: 28px;
  font-family: Fira Sans Condensed;
  line-height: 28px;
}
.cid-rKvRsvKysN {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rKvRsvKysN H1 {
  color: #57468b;
}
.cid-rKvRsvKysN .mbr-text,
.cid-rKvRsvKysN .mbr-section-btn {
  color: #716c80;
}
.cid-rKvRsvKysN H3 {
  color: #716c80;
}
.cid-rKvRsvKysN .row {
  justify-content: space-between;
}
.cid-rKvRsvKysN .col-lg-6 {
  max-width: 500px;
}
.cid-rKvRsvKysN .title2 {
  text-align: left;
  color: #073b4c;
}
.cid-rKvRsvKysN .text2,
.cid-rKvRsvKysN .btn2 {
  text-align: left;
}
.cid-rKvRsvKysN .title1 {
  color: #073b4c;
}
.cid-soUdlKXXwo {
  padding-top: 30px;
  padding-bottom: 105px;
  background-color: #36404c;
}
.cid-soUdlKXXwo section {
  position: relative;
}
.cid-soUdlKXXwo h4 {
  margin: 0;
}
.cid-soUdlKXXwo img {
  height: 100px;
  padding-rigth: 8px;
}
.cid-soUdlKXXwo a {
  font-weight: 300;
}
.cid-soUdlKXXwo .img1 {
  color: #efefef;
}
.cid-soUdlKXXwo .img2 {
  color: #0082c3;
}
.cid-soUdlKXXwo .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #879a9f;
  transition: background 0.3s;
  margin-bottom: 2rem;
}
.cid-soUdlKXXwo .media-wrap {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-soUdlKXXwo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-soUdlKXXwo .item,
.cid-soUdlKXXwo .link {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  margin-bottom: 0.6rem;
}
.cid-soUdlKXXwo .item h4,
.cid-soUdlKXXwo .link h4 {
  padding-left: 10px;
  margin: 0;
  font-size: 16px;
  font-family: Didact Gothic;
}
.cid-soUdlKXXwo .link {
  border-bottom: 1px solid #4a535e;
}
@media (max-width: 767px) {
  .cid-soUdlKXXwo .item {
    justify-content: center;
  }
}
.cid-soUdlKXXwo .item-title {
  color: #c1c1c1;
}
.cid-soUdlKXXwo foot1 {
  color: #c1c1c1;
  font-size: 18px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUdlKXXwo foot3 {
  color: #c1c1c1;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUdlKXXwo foot2 {
  color: #0082c3;
  font-size: 22px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUdlKXXwo copy {
  color: #5F788E;
  font-size: 12px;
  font-family: Didact Gothic;
  line-height: 22px;
}
.cid-soUdlKXXwo .text1 {
  text-align: left;
  color: #787324;
}
.cid-soUdlKXXwo H4 {
  text-align: left;
}
.cid-soUdlKXXwo .items-title,
.cid-soUdlKXXwo .line-wrap {
  color: #cccccc;
}
.cid-soPABy0PH7 {
  position: sticky;
  top: 0;
  z-index: 11;
  opacity: 0.93;
}
.cid-soPABy0PH7 .navbar-dropdown {
  position: relative !important;
  top: 0;
  left: 0;
  padding: 0.5rem 1rem;
  position: fixed;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-soPABy0PH7 .navbar {
  position: static !important;
  min-height: 77px;
  transition: 0.2s;
  background: #eeeae9;
  display: flex;
  flex-direction: column;
}
.cid-soPABy0PH7 .navbar.opened {
  transition: all 0.2s;
  background: #eeeae9 !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item {
  transition: all 0.2s;
  padding: 0.3rem 1.5rem;
  border-bottom: 1px solid #d6d6d6;
  color: #132c70;
  background: #efefef !important;
}
.cid-soPABy0PH7 .navbar .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-soPABy0PH7 .navbar .dropdown-item:focus border {
  outline: none;
}
.cid-soPABy0PH7 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-soPABy0PH7 .navbar .dropdown-menu {
  min-width: 300px;
  padding: 3px 0 0 0;
  box-shadow: 5px 5px 18px 0px rgba(217, 220, 242, 0.98);
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar .dropdown-menu > .dropdown-item:first-child {
  border-top: 2px solid #a53a00;
}
.cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
  padding-top: 0px;
}
.cid-soPABy0PH7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-soPABy0PH7 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: 85.14285714vh;
  }
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu {
  width: auto;
  padding: 1rem 0 1rem 0;
  border-top: none !important;
  background: transparent !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.collapsed .nav-dropdown .link {
  margin: 0.667em 1.2em;
}
.cid-soPABy0PH7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
  border-bottom: none !important;
  background: transparent !important;
  color: inherit !important;
}
.cid-soPABy0PH7 .navbar.collapsed .dropdown-menu .dropdown-item:first-child {
  border-top: none;
}
@media (max-width: 991px) {
  .cid-soPABy0PH7 .navbar {
    flex-direction: row;
    justify-content: space-between;
  }
  .cid-soPABy0PH7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu {
    width: auto;
    padding: 1rem 0 1rem 0;
    background: transparent !important;
    border-top: none !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    padding: 0.667em 1.667em;
  }
  .cid-soPABy0PH7 .navbar .nav-dropdown .link {
    margin: 0.667em 1.2em;
  }
  .cid-soPABy0PH7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem;
    text-align: center;
    border-bottom: none !important;
    background: transparent !important;
  }
  .cid-soPABy0PH7 .navbar .dropdown-menu .dropdown-item:first-child {
    border-top: none;
  }
  .cid-soPABy0PH7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
  }
  .cid-soPABy0PH7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-soPABy0PH7 .navbar .social-block {
    display: none;
  }
}
@media (max-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
@media (min-width: 1200px) {
  .cid-soPABy0PH7 .navbar.navbar-short {
    min-height: 60px;
  }
}
.cid-soPABy0PH7 .navbar.navbar-short .social-block {
  top: 1rem;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-soPABy0PH7 .navbar.navbar-short .navbar-brand {
  padding: 0;
  margin-bottom: 0;
  height: 0px;
  opacity: 0;
  min-height: 0px;
}
.cid-soPABy0PH7 .navbar-brand {
  height: 8rem;
  min-height: 1.4rem;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.2s;
  word-break: break-word;
  z-index: 1;
  display: flex;
  margin-bottom: 1rem;
  opacity: 1;
}
.cid-soPABy0PH7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-soPABy0PH7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-soPABy0PH7 .dropdown-item.active,
.cid-soPABy0PH7 .dropdown-item:active {
  background-color: transparent;
}
.cid-soPABy0PH7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  line-height: 1;
  letter-spacing: 1px;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #eeeae9;
}
.cid-soPABy0PH7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: -2px 0 0 0;
  left: 100%;
}
.cid-soPABy0PH7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-soPABy0PH7 ul.navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.cid-soPABy0PH7 .navbar-buttons {
  text-align: center;
}
.cid-soPABy0PH7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.2s;
}
.cid-soPABy0PH7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-soPABy0PH7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}
.cid-soPABy0PH7 .mbr-iconfont {
  font-size: 1.3rem;
  padding-right: 0.5rem;
  color: #132c70;
}
.cid-soPABy0PH7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  padding: 1.667em 1.667em;
}
.cid-soPABy0PH7 .nav-dropdown .link {
  margin: 1.667em 1.2em;
  font-weight: 400;
}
.cid-soPABy0PH7 .nav-link:hover,
.cid-soPABy0PH7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-soPABy0PH7 .social-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 2.5rem;
  max-width: 1300px;
  transition: 0.2s;
}
.cid-soPABy0PH7 .social {
  display: flex;
  flex-direction: row;
  margin-left: 2rem;
}
.cid-soPABy0PH7 .social-2 {
  display: flex;
  flex-direction: row;
  margin-right: 1.5rem;
}
