body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'BarlowSemiCondensed-Regular';
  font-size: 4rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.4rem;
}
.display-2 {
  font-family: 'BarlowSemiCondensed-Regular';
  font-size: 2.8rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-4 {
  font-family: 'barlow-v12-latin-500';
  font-size: 1.1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.76rem;
}
.display-5 {
  font-family: 'BarlowSemiCondensed-Regular';
  font-size: 1.6rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'barlow-v12-latin-regular';
  font-size: 1.2rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.2rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((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: #81aa0e !important;
}
.bg-success {
  background-color: #f9bf15 !important;
}
.bg-info {
  background-color: #af9103 !important;
}
.bg-warning {
  background-color: #f7ed4a !important;
}
.bg-danger {
  background-color: #008f8b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #81aa0e !important;
  border-color: #81aa0e !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #4b6308 !important;
  border-color: #4b6308 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #4b6308 !important;
  border-color: #4b6308 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info,
.btn-info:active {
  background-color: #af9103 !important;
  border-color: #af9103 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #645302 !important;
  border-color: #645302 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #645302 !important;
  border-color: #645302 !important;
}
.btn-success,
.btn-success:active {
  background-color: #f9bf15 !important;
  border-color: #f9bf15 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #bd8e05 !important;
  border-color: #bd8e05 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #bd8e05 !important;
  border-color: #bd8e05 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #008f8b !important;
  border-color: #008f8b !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #004341 !important;
  border-color: #004341 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #004341 !important;
  border-color: #004341 !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: #394c06;
  color: #394c06;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #81aa0e;
  border-color: #81aa0e;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #81aa0e !important;
  border-color: #81aa0e !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b3e01;
  color: #4b3e01;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #af9103;
  border-color: #af9103;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #af9103 !important;
  border-color: #af9103 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #a47b04;
  color: #a47b04;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #f9bf15;
  border-color: #f9bf15;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #f9bf15 !important;
  border-color: #f9bf15 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #002928;
  color: #002928;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #008f8b;
  border-color: #008f8b;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #008f8b !important;
  border-color: #008f8b !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: #81aa0e !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #f9bf15 !important;
}
.text-info {
  color: #af9103 !important;
}
.text-warning {
  color: #f7ed4a !important;
}
.text-danger {
  color: #008f8b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #394c06 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #a47b04 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b3e01 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #d2c609 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #002928 !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: #af9103;
}
.alert-warning {
  background-color: #f7ed4a;
}
.alert-danger {
  background-color: #008f8b;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #81aa0e;
  border-color: #81aa0e;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #81aa0e;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #c4f048;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fef5dc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fcd936;
}
.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: #10fff8;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'barlow-v12-latin-regular';
  font-size: 1.2rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #81aa0e;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #81aa0e;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #81aa0e;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #81aa0e;
  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: #81aa0e;
  border-bottom-color: #81aa0e;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #81aa0e !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !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='%2381aa0e' %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-rOPG7qF4O2 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rOPG7qF4O2 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rOPG7qF4O2 a {
  font-style: normal;
}
.cid-rOPG7qF4O2 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rOPG7qF4O2 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rOPG7qF4O2 .nav-item:focus,
.cid-rOPG7qF4O2 .nav-link:focus {
  outline: none;
}
.cid-rOPG7qF4O2 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rOPG7qF4O2 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rOPG7qF4O2 .menu-logo {
  margin-right: auto;
}
.cid-rOPG7qF4O2 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rOPG7qF4O2 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rOPG7qF4O2 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rOPG7qF4O2 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rOPG7qF4O2 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rOPG7qF4O2 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rOPG7qF4O2 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rOPG7qF4O2 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rOPG7qF4O2 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rOPG7qF4O2 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rOPG7qF4O2 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rOPG7qF4O2 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rOPG7qF4O2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rOPG7qF4O2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rOPG7qF4O2 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rOPG7qF4O2 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rOPG7qF4O2 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rOPG7qF4O2 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rOPG7qF4O2 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rOPG7qF4O2 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rOPG7qF4O2 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rOPG7qF4O2 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rOPG7qF4O2 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rOPG7qF4O2 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rOPG7qF4O2 button.navbar-toggler:focus {
  outline: none;
}
.cid-rOPG7qF4O2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829400;
}
.cid-rOPG7qF4O2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rOPG7qF4O2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rOPG7qF4O2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rOPG7qF4O2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rOPG7qF4O2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rOPG7qF4O2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rOPG7qF4O2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rOPG7qF4O2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rOPG7qF4O2 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rOPG7qF4O2 .collapsed .btn {
  display: -webkit-flex;
}
.cid-rOPG7qF4O2 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rOPG7qF4O2 .collapsed .navbar-collapse.collapsing,
.cid-rOPG7qF4O2 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rOPG7qF4O2 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rOPG7qF4O2 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rOPG7qF4O2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rOPG7qF4O2 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rOPG7qF4O2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rOPG7qF4O2 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rOPG7qF4O2 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rOPG7qF4O2 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rOPG7qF4O2 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rOPG7qF4O2 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rOPG7qF4O2 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rOPG7qF4O2 .collapsed button.navbar-toggler {
  display: block;
}
.cid-rOPG7qF4O2 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rOPG7qF4O2 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rOPG7qF4O2 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rOPG7qF4O2 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rOPG7qF4O2 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rOPG7qF4O2 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rOPG7qF4O2.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rOPG7qF4O2 img {
    height: 3.8rem !important;
  }
  .cid-rOPG7qF4O2 .btn {
    display: -webkit-flex;
  }
  .cid-rOPG7qF4O2 button.navbar-toggler {
    display: block;
  }
  .cid-rOPG7qF4O2 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rOPG7qF4O2 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rOPG7qF4O2 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rOPG7qF4O2 .navbar-collapse.collapsing,
  .cid-rOPG7qF4O2 .navbar-collapse.show {
    display: block !important;
  }
  .cid-rOPG7qF4O2 .navbar-collapse.collapsing .navbar-nav,
  .cid-rOPG7qF4O2 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rOPG7qF4O2 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rOPG7qF4O2 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rOPG7qF4O2 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rOPG7qF4O2 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rOPG7qF4O2 .navbar-collapse.collapsing .navbar-buttons,
  .cid-rOPG7qF4O2 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rOPG7qF4O2 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rOPG7qF4O2 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rOPG7qF4O2 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rOPG7qF4O2 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rOPG7qF4O2 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rOPG7qF4O2 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rOPG7qF4O2 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rOPG7qF4O2 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rOPG7qF4O2 .nav-link:hover,
.cid-rOPG7qF4O2 .dropdown-item:hover {
  color: #009f99 !important;
}
.cid-rPbPBpLSKp {
  padding-top: 120px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/neue-ansicht-2-1931x945.jpg");
}
.cid-rPbPBpLSKp .testimonials5 .mbr-text.mbr-fonts-style[mbr-theme-style="display-1"] {
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -moz-hyphens: none !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  line-height: 1.3 !important;
}
@media (max-width: 768px) and (min-width: 481px) {
  .cid-rPbPBpLSKp .testimonials5 .mbr-text.mbr-fonts-style[mbr-theme-style="display-1"] {
    font-size: 2.8rem !important;
    line-height: 1.2 !important;
  }
}
@media (max-width: 480px) {
  .cid-rPbPBpLSKp .testimonials5 .mbr-text.mbr-fonts-style[mbr-theme-style="display-1"] {
    font-size: 2rem !important;
    line-height: 1.4 !important;
    padding: 0 1rem !important;
    word-spacing: 0.1em !important;
    letter-spacing: -0.02em !important;
  }
  .cid-rPbPBpLSKp .testimonials5 .card-block {
    padding: 1.5rem 1rem 2rem 1rem !important;
  }
  .cid-rPbPBpLSKp .testimonials5 .testimonial-photo {
    width: 90px !important;
    height: 90px !important;
    margin-top: -3rem !important;
  }
  .cid-rPbPBpLSKp .testimonials5 .mbr-text[mbr-theme-style="display-1"] {
    font-size: 1.6rem !important;
  }
}
@media (max-width: 414px) {
  .cid-rPbPBpLSKp .testimonials5 .mbr-text.mbr-fonts-style[mbr-theme-style="display-1"] {
    font-size: 1.7rem !important;
    line-height: 1.5 !important;
    padding: 0 0.8rem !important;
    white-space: nowrap !important;
    overflow: visible !important;
  }
}
@media (max-width: 380px) {
  .cid-rPbPBpLSKp .testimonials5 .mbr-text.mbr-fonts-style[mbr-theme-style="display-1"] {
    font-size: 1.5rem !important;
    white-space: normal !important;
    hyphens: none !important;
    word-break: keep-all !important;
  }
}
.cid-rPbPBpLSKp .testimonials5 .mbr-text[mbr-theme-style="display-1"] {
  hyphens: none !important;
  word-break: keep-all !important;
}
.cid-rPbPBpLSKp .media-container-column {
  align-items: center;
  -webkit-align-items: center;
}
.cid-rPbPBpLSKp .mbr-author-desc {
  display: block;
}
.cid-rPbPBpLSKp .mbr-testimonial {
  flex-basis: auto;
  margin-top: 5rem;
  -webkit-flex-basis: auto;
}
.cid-rPbPBpLSKp .mbr-testimonial .panel-item {
  background-color: #5e7113;
  background: linear-gradient(#5e7113, transparent);
}
.cid-rPbPBpLSKp .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2rem;
}
.cid-rPbPBpLSKp .mbr-testimonial .card-block .testimonial-photo {
  margin-top: -5rem;
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-rPbPBpLSKp .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-rPbPBpLSKp .mbr-testimonial .card-block p {
  margin: 0;
}
.cid-rPbPBpLSKp .mbr-testimonial .card-footer {
  padding: 0 2rem 2rem 2rem;
  border-top: 0;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 260px) {
  .cid-rPbPBpLSKp .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-rPbPBpLSKp .mbr-text {
  color: #ffffff;
}
.cid-rPbPBpLSKp .mbr-author-name {
  color: #ffffff;
}
.cid-tDHhG4QQPX {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #5e7113, #94a731);
}
.cid-tDHhG4QQPX .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tDHhG4QQPX .main .mbr-section-btn {
  text-align: right;
}
.cid-tDHhG4QQPX .btn {
  margin: 0 0 .5rem 0;
}
.cid-tDHhG4QQPX H3 {
  text-align: left;
}
.cid-tDHhG4QQPX P {
  text-align: left;
}
.cid-tlpi2Tijmt {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #bc8d1b, #aea512);
}
.cid-rOYDzdrdDY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8f9f3;
}
.cid-rOYDzdrdDY .mbr-text {
  color: #f19000;
}
.cid-rOYDzdrdDY .mbr-text p {
  background: #f8f9f3;
}
.cid-rOXUmDqfPe {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/293-1-2000x1334.jpeg");
}
.cid-rOXUmDqfPe .media-container-column {
  align-items: center;
  -webkit-align-items: center;
}
.cid-rOXUmDqfPe .mbr-author-desc {
  display: block;
}
.cid-rOXUmDqfPe .mbr-testimonial {
  flex-basis: auto;
  margin-top: 5rem;
  -webkit-flex-basis: auto;
  margin-top: 3rem;
}
.cid-rOXUmDqfPe .mbr-testimonial .panel-item {
  background-color: #819b19;
  background: linear-gradient(#819b19, transparent);
}
.cid-rOXUmDqfPe .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2rem;
}
.cid-rOXUmDqfPe .mbr-testimonial .card-block .testimonial-photo {
  margin-top: -5rem;
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-rOXUmDqfPe .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-rOXUmDqfPe .mbr-testimonial .card-block p {
  margin: 0;
}
.cid-rOXUmDqfPe .mbr-testimonial .card-footer {
  padding: 0 2rem 2rem 2rem;
  border-top: 0;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 260px) {
  .cid-rOXUmDqfPe .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-rOXUmDqfPe .mbr-text {
  color: #ffffff;
}
.cid-rPmYSyPd7H {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #7b9124;
}
.cid-rPmYSyPd7H .mbr-text {
  color: #ffffff;
}
.cid-rPmYSyPd7H .mbr-text p {
  background: #7b9124;
}
.cid-rOXUFodD9i {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #94a731;
}
.cid-rOXUFodD9i .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-rOXUFodD9i .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-rOXUFodD9i .item-wrapper {
  height: 100%;
}
.cid-rOXUFodD9i .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-rOXUFodD9i .carousel-control,
.cid-rOXUFodD9i .close {
  background: #1b1b1b;
}
.cid-rOXUFodD9i .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-rOXUFodD9i .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-rOXUFodD9i .close {
  position: fixed;
  opacity: .5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  font-family: 'MobiriseIcons';
}
.cid-rOXUFodD9i .close::before {
  content: '\e91a';
}
.cid-rOXUFodD9i .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-rOXUFodD9i .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: .5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-rOXUFodD9i .carousel-inner > .active {
  display: block;
}
.cid-rOXUFodD9i .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rOXUFodD9i .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rOXUFodD9i .carousel-control .icon-next,
.cid-rOXUFodD9i .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rOXUFodD9i .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-rOXUFodD9i .carousel-control,
  .cid-rOXUFodD9i .carousel-indicators,
  .cid-rOXUFodD9i .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-rOXUFodD9i .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-rOXUFodD9i .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rOXUFodD9i .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-rOXUFodD9i .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-rOXUFodD9i .carousel-indicators {
    display: none;
  }
}
.cid-rOXUFodD9i .carousel-indicators .active,
.cid-rOXUFodD9i .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: .5;
  border: 4px solid #1b1b1b;
}
.cid-rOXUFodD9i .carousel-indicators .active {
  background: #fff;
}
.cid-rOXUFodD9i .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-rOXUFodD9i .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-rOXUFodD9i .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rOXUFodD9i .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-rOXUFodD9i .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-rOXUFodD9i .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(98.25vh);
  height: fit-content;
}
.cid-rOXUFodD9i .carousel {
  width: 100%;
}
.cid-rOXUFodD9i .modal-backdrop.in {
  opacity: .8;
}
.cid-rOXUFodD9i .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-rOXUFodD9i .modal.fade .modal-dialog,
.cid-rOXUFodD9i .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-rOV8vUJvdU {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/senior-women-giving-each-other-high-five-40955-2000x1335.jpeg");
}
.cid-rOV8vUJvdU .media-container-column {
  align-items: center;
  -webkit-align-items: center;
}
.cid-rOV8vUJvdU .mbr-author-desc {
  display: block;
}
.cid-rOV8vUJvdU .mbr-testimonial {
  flex-basis: auto;
  margin-top: 5rem;
  -webkit-flex-basis: auto;
  margin-top: 3rem;
}
.cid-rOV8vUJvdU .mbr-testimonial .panel-item {
  background-color: #b79104;
  background: linear-gradient(#b79104, transparent);
}
.cid-rOV8vUJvdU .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2rem;
}
.cid-rOV8vUJvdU .mbr-testimonial .card-block .testimonial-photo {
  margin-top: -5rem;
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-rOV8vUJvdU .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-rOV8vUJvdU .mbr-testimonial .card-block p {
  margin: 0;
}
.cid-rOV8vUJvdU .mbr-testimonial .card-footer {
  padding: 0 2rem 2rem 2rem;
  border-top: 0;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 260px) {
  .cid-rOV8vUJvdU .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-rOV8vUJvdU .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-rOSkzHRNBM {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #a17f03;
}
.cid-rOSkzHRNBM .mbr-text {
  color: #ffffff;
}
.cid-rOSkzHRNBM .mbr-text p {
  background: #a17f03;
}
.cid-rOVev4P4MX {
  padding-top: 45px;
  padding-bottom: 105px;
  background-color: #c09705;
}
.cid-rOVev4P4MX .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-rOVev4P4MX .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-rOVev4P4MX .item-wrapper {
  height: 100%;
}
.cid-rOVev4P4MX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-rOVev4P4MX .carousel-control,
.cid-rOVev4P4MX .close {
  background: #1b1b1b;
}
.cid-rOVev4P4MX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-rOVev4P4MX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-rOVev4P4MX .close {
  position: fixed;
  opacity: .5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  font-family: 'MobiriseIcons';
}
.cid-rOVev4P4MX .close::before {
  content: '\e91a';
}
.cid-rOVev4P4MX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-rOVev4P4MX .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: .5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-rOVev4P4MX .carousel-inner > .active {
  display: block;
}
.cid-rOVev4P4MX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rOVev4P4MX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rOVev4P4MX .carousel-control .icon-next,
.cid-rOVev4P4MX .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rOVev4P4MX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-rOVev4P4MX .carousel-control,
  .cid-rOVev4P4MX .carousel-indicators,
  .cid-rOVev4P4MX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-rOVev4P4MX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-rOVev4P4MX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rOVev4P4MX .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-rOVev4P4MX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-rOVev4P4MX .carousel-indicators {
    display: none;
  }
}
.cid-rOVev4P4MX .carousel-indicators .active,
.cid-rOVev4P4MX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: .5;
  border: 4px solid #1b1b1b;
}
.cid-rOVev4P4MX .carousel-indicators .active {
  background: #fff;
}
.cid-rOVev4P4MX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-rOVev4P4MX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-rOVev4P4MX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rOVev4P4MX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-rOVev4P4MX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-rOVev4P4MX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(98.25vh);
  height: fit-content;
}
.cid-rOVev4P4MX .carousel {
  width: 100%;
}
.cid-rOVev4P4MX .modal-backdrop.in {
  opacity: .8;
}
.cid-rOVev4P4MX .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-rOVev4P4MX .modal.fade .modal-dialog,
.cid-rOVev4P4MX .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-s1YTjM9Eqy {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/642-2000x1333.jpg");
}
.cid-s1YTjM9Eqy .media-container-column {
  align-items: center;
  -webkit-align-items: center;
}
.cid-s1YTjM9Eqy .mbr-author-desc {
  display: block;
}
.cid-s1YTjM9Eqy .mbr-testimonial {
  flex-basis: auto;
  margin-top: 5rem;
  -webkit-flex-basis: auto;
  margin-top: 3rem;
}
.cid-s1YTjM9Eqy .mbr-testimonial .panel-item {
  background-color: #7c9b19;
  background: linear-gradient(#7c9b19, transparent);
}
.cid-s1YTjM9Eqy .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2rem;
}
.cid-s1YTjM9Eqy .mbr-testimonial .card-block .testimonial-photo {
  margin-top: -5rem;
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-s1YTjM9Eqy .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-s1YTjM9Eqy .mbr-testimonial .card-block p {
  margin: 0;
}
.cid-s1YTjM9Eqy .mbr-testimonial .card-footer {
  padding: 0 2rem 2rem 2rem;
  border-top: 0;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 260px) {
  .cid-s1YTjM9Eqy .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-s1YTjM9Eqy .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tDmAN9OWVN {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #6c7f1c;
}
@media (max-width: 991px) {
  .cid-tDmAN9OWVN .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tDmAN9OWVN .row {
  flex-direction: row-reverse;
}
.cid-tDmAN9OWVN img {
  width: 100%;
}
.cid-tDmAN9OWVN .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-tDmAN9OWVN .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #81aa0e;
}
.cid-tDmAN9OWVN .svg-top .st0 {
  fill: #6c7f1c;
}
@media (max-width: 992px) {
  .cid-tDmAN9OWVN .svg-top {
    width: 1000px;
  }
}
.cid-tDmAN9OWVN .mbr-description {
  color: #e4d295;
}
.cid-s1Z4qs5OBs {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #596c11;
}
.cid-s1Z4qs5OBs .mbr-text {
  color: #ffffff;
}
.cid-s1Z4qs5OBs .mbr-text p {
  background: #596c11;
}
.cid-s1gT1po8wi {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #596c11;
}
.cid-s1gT1po8wi .mbr-text {
  color: #ffffff;
}
.cid-s1gT1po8wi .mbr-text p {
  background: #596c11;
}
.cid-s1Z6XH4dqH {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ae8800;
}
.cid-s1Z6XH4dqH .mbr-text {
  color: #ffffff;
}
.cid-s1Z6XH4dqH .mbr-text p {
  background: #ae8800;
}
.cid-s1Z3QykzpC {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ae8800;
}
.cid-s1Z3QykzpC .mbr-text {
  color: #ffffff;
}
.cid-s1Z3QykzpC .mbr-text p {
  background: #ae8800;
}
.cid-rPoHZYmlaG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #0096a9;
}
.cid-rPoHZYmlaG .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPoHZYmlaG .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPoHZYmlaG .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPoHZYmlaG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-rPoHZYmlaG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-rPoHZYmlaG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-rPoHZYmlaG .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rPoHZYmlaG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-rPoHZYmlaG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rPoHZYmlaG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rPoHZYmlaG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rPoHZYmlaG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPoHZYmlaG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-rPoHZYmlaG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-rPoHZYmlaG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-rOYL1fmork .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rOYL1fmork .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rOYL1fmork a {
  font-style: normal;
}
.cid-rOYL1fmork .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rOYL1fmork .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rOYL1fmork .nav-item:focus,
.cid-rOYL1fmork .nav-link:focus {
  outline: none;
}
.cid-rOYL1fmork .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rOYL1fmork .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rOYL1fmork .menu-logo {
  margin-right: auto;
}
.cid-rOYL1fmork .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rOYL1fmork .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rOYL1fmork .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rOYL1fmork .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rOYL1fmork .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rOYL1fmork .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rOYL1fmork .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rOYL1fmork .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rOYL1fmork .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rOYL1fmork .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rOYL1fmork .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rOYL1fmork .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rOYL1fmork .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rOYL1fmork .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rOYL1fmork .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rOYL1fmork .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rOYL1fmork .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rOYL1fmork .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rOYL1fmork .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rOYL1fmork .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rOYL1fmork .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rOYL1fmork .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rOYL1fmork .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rOYL1fmork button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rOYL1fmork button.navbar-toggler:focus {
  outline: none;
}
.cid-rOYL1fmork button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829400;
}
.cid-rOYL1fmork button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rOYL1fmork button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rOYL1fmork button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rOYL1fmork button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rOYL1fmork nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rOYL1fmork nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rOYL1fmork nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rOYL1fmork nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rOYL1fmork .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rOYL1fmork .collapsed .btn {
  display: -webkit-flex;
}
.cid-rOYL1fmork .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rOYL1fmork .collapsed .navbar-collapse.collapsing,
.cid-rOYL1fmork .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rOYL1fmork .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rOYL1fmork .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rOYL1fmork .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rOYL1fmork .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rOYL1fmork .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rOYL1fmork .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rOYL1fmork .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rOYL1fmork .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rOYL1fmork .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rOYL1fmork .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rOYL1fmork .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rOYL1fmork .collapsed button.navbar-toggler {
  display: block;
}
.cid-rOYL1fmork .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rOYL1fmork .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rOYL1fmork .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rOYL1fmork .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rOYL1fmork .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rOYL1fmork .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rOYL1fmork.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rOYL1fmork img {
    height: 3.8rem !important;
  }
  .cid-rOYL1fmork .btn {
    display: -webkit-flex;
  }
  .cid-rOYL1fmork button.navbar-toggler {
    display: block;
  }
  .cid-rOYL1fmork .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rOYL1fmork .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rOYL1fmork .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rOYL1fmork .navbar-collapse.collapsing,
  .cid-rOYL1fmork .navbar-collapse.show {
    display: block !important;
  }
  .cid-rOYL1fmork .navbar-collapse.collapsing .navbar-nav,
  .cid-rOYL1fmork .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rOYL1fmork .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rOYL1fmork .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rOYL1fmork .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rOYL1fmork .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rOYL1fmork .navbar-collapse.collapsing .navbar-buttons,
  .cid-rOYL1fmork .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rOYL1fmork .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rOYL1fmork .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rOYL1fmork .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rOYL1fmork .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rOYL1fmork .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rOYL1fmork .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rOYL1fmork .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rOYL1fmork .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rOYL1fmork .nav-link:hover,
.cid-rOYL1fmork .dropdown-item:hover {
  color: #009f99 !important;
}
.cid-tV2yBR47Dc {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ste-88402-2000x1125.jpeg");
}
.cid-tV2yBR47Dc .media-container-column {
  align-items: center;
  -webkit-align-items: center;
}
.cid-tV2yBR47Dc .mbr-author-desc {
  display: block;
}
.cid-tV2yBR47Dc .mbr-testimonial {
  flex-basis: auto;
  margin-top: 5rem;
  -webkit-flex-basis: auto;
  margin-top: 3rem;
}
.cid-tV2yBR47Dc .mbr-testimonial .panel-item {
  background-color: #b69840;
  background: linear-gradient(#b69840, transparent);
}
.cid-tV2yBR47Dc .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2rem;
}
.cid-tV2yBR47Dc .mbr-testimonial .card-block .testimonial-photo {
  margin-top: -5rem;
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tV2yBR47Dc .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tV2yBR47Dc .mbr-testimonial .card-block p {
  margin: 0;
}
.cid-tV2yBR47Dc .mbr-testimonial .card-footer {
  padding: 0 2rem 2rem 2rem;
  border-top: 0;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 260px) {
  .cid-tV2yBR47Dc .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tV2yBR47Dc .mbr-text {
  color: #ffffff;
}
.cid-tDHmvdCMal {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #5e7113, #94a731);
}
.cid-tDHmvdCMal .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tDHmvdCMal .main .mbr-section-btn {
  text-align: right;
}
.cid-tDHmvdCMal .btn {
  margin: 0 0 .5rem 0;
}
.cid-tDHmvdCMal H3 {
  text-align: left;
}
.cid-tDHmvdCMal P {
  text-align: left;
}
.cid-tDGbUInlkE {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #bc8d1b, #aea512);
}
.cid-tsyFCfA41r {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tsyFCfA41r .title {
  margin-bottom: 2rem;
}
.cid-tsyFCfA41r .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-tsyFCfA41r a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tsyFCfA41r a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tsyFCfA41r textarea.form-control {
  min-height: 188px;
}
.cid-tsyFCfA41r H2 {
  color: #aea739;
  text-align: left;
}
.cid-tsyFCfA41r .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tszbjqm4Zd {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9bf15, #dbd4b8);
}
.cid-tszbjqm4Zd .btn {
  margin: 0 0 .5rem 0;
}
.cid-tszbjqm4Zd H3 {
  text-align: left;
}
.cid-tDB5OYWgSs {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tDB5OYWgSs .mbr-section-subtitle {
  color: #f9bf15;
  text-align: left;
}
.cid-tDB5OYWgSs H2 {
  text-align: left;
  color: #aea739;
}
.cid-tDB5OYWgSs .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tDB6QxOpkU {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tDB6QxOpkU .mbr-section-subtitle {
  color: #82786e;
  text-align: left;
}
.cid-tDB6QxOpkU H2 {
  text-align: left;
  color: #aea739;
}
.cid-tDB6QxOpkU .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tDB5FOuqnP {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #f9bf15, #dbd4b8);
}
.cid-tDB5FOuqnP .btn {
  margin: 0 0 .5rem 0;
}
.cid-tDB5FOuqnP H3 {
  text-align: left;
}
.cid-tsyGpzofj6 {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tsyGpzofj6 .mbr-section-subtitle {
  color: #82786e;
  text-align: left;
}
.cid-tsyGpzofj6 H2 {
  text-align: left;
  color: #aea739;
}
.cid-tsyGpzofj6 .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tmNI7WvJRI {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f3f4f6;
}
.cid-tmNI7WvJRI .testimonial-text {
  font-style: italic;
  color: #aea739;
  font-weight: 300;
}
.cid-tmNI7WvJRI .mbr-author-name {
  font-weight: bold;
  color: #767676;
}
.cid-tmNI7WvJRI .mbr-author-desc {
  color: #0f7699;
}
@media (max-width: 991px) {
  .cid-tmNI7WvJRI .mbr-figure,
  .cid-tmNI7WvJRI img {
    max-height: 300px;
    width: auto;
    margin: auto;
  }
}
.cid-tmNIaXsKkI {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f3f4f6;
}
.cid-tmNIaXsKkI .counter-container {
  color: #767676;
}
.cid-tmNIaXsKkI .counter-container ul {
  margin-bottom: 0;
}
.cid-tmNIaXsKkI .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tmNIaXsKkI .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff8500;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: none;
  border: 1px solid #ff8500;
  color: #ff8500;
}
.cid-tmNIaXsKkI .mbr-text {
  color: #ff7b00;
}
.cid-tmNIaXsKkI .mbr-text UL {
  text-align: left;
}
.cid-tmNIaXsKkI .mbr-text DIV {
  text-align: center;
}
.cid-tmNIaiApHH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tmNIaiApHH .line {
  background-color: #f3f4f6;
  color: #f3f4f6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tmNIaiApHH .section-text {
  padding: 2rem 0;
  text-align: left;
  color: #0f7699;
}
.cid-tmNIaiApHH .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tmNIaiApHH .inner-container {
    width: 100% !important;
  }
}
.cid-tmNIaiApHH .section-text DIV {
  text-align: left;
}
.cid-rOYL1hg3Ew {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #8e7603;
}
.cid-rOYL1hg3Ew .mbr-text {
  color: #ffffff;
}
.cid-rOYL1hg3Ew .mbr-text p {
  background: #8e7603;
}
.cid-rOYL1hg3Ew .mbr-text P {
  text-align: left;
}
.cid-rOYL1hynqt {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #599372;
}
.cid-rOYL1hynqt .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-rOYL1hynqt .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-rOYL1hynqt .item-wrapper {
  height: 100%;
}
.cid-rOYL1hynqt .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-rOYL1hynqt .carousel-control,
.cid-rOYL1hynqt .close {
  background: #1b1b1b;
}
.cid-rOYL1hynqt .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-rOYL1hynqt .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-rOYL1hynqt .close {
  position: fixed;
  opacity: .5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  font-family: 'MobiriseIcons';
}
.cid-rOYL1hynqt .close::before {
  content: '\e91a';
}
.cid-rOYL1hynqt .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-rOYL1hynqt .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: .5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-rOYL1hynqt .carousel-inner > .active {
  display: block;
}
.cid-rOYL1hynqt .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-rOYL1hynqt .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-rOYL1hynqt .carousel-control .icon-next,
.cid-rOYL1hynqt .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-rOYL1hynqt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-rOYL1hynqt .carousel-control,
  .cid-rOYL1hynqt .carousel-indicators,
  .cid-rOYL1hynqt .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-rOYL1hynqt .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-rOYL1hynqt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-rOYL1hynqt .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-rOYL1hynqt .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-rOYL1hynqt .carousel-indicators {
    display: none;
  }
}
.cid-rOYL1hynqt .carousel-indicators .active,
.cid-rOYL1hynqt .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: .5;
  border: 4px solid #1b1b1b;
}
.cid-rOYL1hynqt .carousel-indicators .active {
  background: #fff;
}
.cid-rOYL1hynqt .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-rOYL1hynqt .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-rOYL1hynqt .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-rOYL1hynqt .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-rOYL1hynqt .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-rOYL1hynqt .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(98.25vh);
  height: fit-content;
}
.cid-rOYL1hynqt .carousel {
  width: 100%;
}
.cid-rOYL1hynqt .modal-backdrop.in {
  opacity: .8;
}
.cid-rOYL1hynqt .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-rOYL1hynqt .modal.fade .modal-dialog,
.cid-rOYL1hynqt .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-rOYL1nZ54H {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-rOYL1nZ54H .btn {
  margin: 0 0 .5rem 0;
}
.cid-rOYL1nZ54H H3 {
  text-align: left;
}
.cid-rPoHZYmlaG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #0096a9;
}
.cid-rPoHZYmlaG .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPoHZYmlaG .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPoHZYmlaG .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPoHZYmlaG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-rPoHZYmlaG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-rPoHZYmlaG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-rPoHZYmlaG .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rPoHZYmlaG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-rPoHZYmlaG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rPoHZYmlaG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rPoHZYmlaG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rPoHZYmlaG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPoHZYmlaG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-rPoHZYmlaG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-rPoHZYmlaG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-rP19UPPH1Y .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rP19UPPH1Y .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rP19UPPH1Y a {
  font-style: normal;
}
.cid-rP19UPPH1Y .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rP19UPPH1Y .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rP19UPPH1Y .nav-item:focus,
.cid-rP19UPPH1Y .nav-link:focus {
  outline: none;
}
.cid-rP19UPPH1Y .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rP19UPPH1Y .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rP19UPPH1Y .menu-logo {
  margin-right: auto;
}
.cid-rP19UPPH1Y .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rP19UPPH1Y .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rP19UPPH1Y .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rP19UPPH1Y .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rP19UPPH1Y .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rP19UPPH1Y .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rP19UPPH1Y .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rP19UPPH1Y .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rP19UPPH1Y .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rP19UPPH1Y .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rP19UPPH1Y .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rP19UPPH1Y .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rP19UPPH1Y .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rP19UPPH1Y .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rP19UPPH1Y .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rP19UPPH1Y .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rP19UPPH1Y .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rP19UPPH1Y .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rP19UPPH1Y .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rP19UPPH1Y .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rP19UPPH1Y .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rP19UPPH1Y .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rP19UPPH1Y .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rP19UPPH1Y button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rP19UPPH1Y button.navbar-toggler:focus {
  outline: none;
}
.cid-rP19UPPH1Y button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829400;
}
.cid-rP19UPPH1Y button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rP19UPPH1Y button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rP19UPPH1Y button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rP19UPPH1Y button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rP19UPPH1Y nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rP19UPPH1Y nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rP19UPPH1Y nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rP19UPPH1Y nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rP19UPPH1Y .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rP19UPPH1Y .collapsed .btn {
  display: -webkit-flex;
}
.cid-rP19UPPH1Y .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rP19UPPH1Y .collapsed .navbar-collapse.collapsing,
.cid-rP19UPPH1Y .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rP19UPPH1Y .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rP19UPPH1Y .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rP19UPPH1Y .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rP19UPPH1Y .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rP19UPPH1Y .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rP19UPPH1Y .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rP19UPPH1Y .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rP19UPPH1Y .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rP19UPPH1Y .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rP19UPPH1Y .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rP19UPPH1Y .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rP19UPPH1Y .collapsed button.navbar-toggler {
  display: block;
}
.cid-rP19UPPH1Y .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rP19UPPH1Y .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rP19UPPH1Y .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rP19UPPH1Y .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rP19UPPH1Y .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rP19UPPH1Y .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rP19UPPH1Y.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rP19UPPH1Y img {
    height: 3.8rem !important;
  }
  .cid-rP19UPPH1Y .btn {
    display: -webkit-flex;
  }
  .cid-rP19UPPH1Y button.navbar-toggler {
    display: block;
  }
  .cid-rP19UPPH1Y .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rP19UPPH1Y .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rP19UPPH1Y .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rP19UPPH1Y .navbar-collapse.collapsing,
  .cid-rP19UPPH1Y .navbar-collapse.show {
    display: block !important;
  }
  .cid-rP19UPPH1Y .navbar-collapse.collapsing .navbar-nav,
  .cid-rP19UPPH1Y .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rP19UPPH1Y .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rP19UPPH1Y .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rP19UPPH1Y .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rP19UPPH1Y .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rP19UPPH1Y .navbar-collapse.collapsing .navbar-buttons,
  .cid-rP19UPPH1Y .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rP19UPPH1Y .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rP19UPPH1Y .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rP19UPPH1Y .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rP19UPPH1Y .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rP19UPPH1Y .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rP19UPPH1Y .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rP19UPPH1Y .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rP19UPPH1Y .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rP19UPPH1Y .nav-link:hover,
.cid-rP19UPPH1Y .dropdown-item:hover {
  color: #009f99 !important;
}
.cid-tV2zuu0dmL {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/ste-impressum2-2000x920.jpg");
}
.cid-tV2zuu0dmL .media-container-column {
  align-items: center;
  -webkit-align-items: center;
}
.cid-tV2zuu0dmL .mbr-author-desc {
  display: block;
}
.cid-tV2zuu0dmL .mbr-testimonial {
  flex-basis: auto;
  margin-top: 5rem;
  -webkit-flex-basis: auto;
  margin-top: 3rem;
}
.cid-tV2zuu0dmL .mbr-testimonial .panel-item {
  background-color: #b4ad94;
  background: linear-gradient(#b4ad94, transparent);
}
.cid-tV2zuu0dmL .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2rem;
}
.cid-tV2zuu0dmL .mbr-testimonial .card-block .testimonial-photo {
  margin-top: -5rem;
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tV2zuu0dmL .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tV2zuu0dmL .mbr-testimonial .card-block p {
  margin: 0;
}
.cid-tV2zuu0dmL .mbr-testimonial .card-footer {
  padding: 0 2rem 2rem 2rem;
  border-top: 0;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 260px) {
  .cid-tV2zuu0dmL .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tV2zuu0dmL .mbr-text {
  color: #ffffff;
}
.cid-tDHmHx8iWV {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #5e7113, #94a731);
}
.cid-tDHmHx8iWV .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tDHmHx8iWV .main .mbr-section-btn {
  text-align: right;
}
.cid-tDHmHx8iWV .btn {
  margin: 0 0 .5rem 0;
}
.cid-tDHmHx8iWV H3 {
  text-align: left;
}
.cid-tDHmHx8iWV P {
  text-align: left;
}
.cid-tDGdkNo5cw {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #bc8d1b, #aea512);
}
.cid-rP7vEAwIIT {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rP1ikFk18R {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rP1ikFk18R h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rP1ikFk18R p {
  color: #767676;
  text-align: left;
  margin-bottom: 0;
}
.cid-rP1ikFk18R .card-img {
  text-align: left;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  width: auto;
}
.cid-rP1ikFk18R .card-img span {
  font-size: 72px;
  color: #ff3366;
}
.cid-rP1ikFk18R .card-box {
  padding-left: 1rem;
  word-break: break-word;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-rP1ikFk18R .card-img {
    text-align: left;
    padding-bottom: 0.75rem;
  }
  .cid-rP1ikFk18R .card-box {
    padding-left: 0;
  }
}
.cid-rP1ikFk18R .card-title,
.cid-rP1ikFk18R .card-img {
  color: #767676;
}
.cid-rP1ikFk18R P {
  color: #767676;
}
.cid-rP1IhWg8WV {
  padding-top: 30px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #028088, #13b7dc);
}
.cid-rP1IhWg8WV .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rP1IhWg8WV .main .mbr-section-btn {
  text-align: right;
}
.cid-rP1IhWg8WV .btn {
  margin: 0 0 .5rem 0;
}
.cid-rP1IhWg8WV H3 {
  text-align: right;
  color: #f9bf15;
}
.cid-rP1IhWg8WV H2 {
  text-align: left;
  color: #f9bf15;
}
.cid-rP1I8I4dEZ {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rP1I8I4dEZ h4 {
  text-align: left;
  font-weight: 500;
}
.cid-rP1I8I4dEZ p {
  color: #767676;
  text-align: left;
  margin-bottom: 0;
}
.cid-rP1I8I4dEZ .card-img {
  text-align: left;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  width: auto;
}
.cid-rP1I8I4dEZ .card-img span {
  font-size: 72px;
  color: #ff3366;
}
.cid-rP1I8I4dEZ .card-box {
  padding-left: 1rem;
  word-break: break-word;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-rP1I8I4dEZ .card-img {
    text-align: left;
    padding-bottom: 0.75rem;
  }
  .cid-rP1I8I4dEZ .card-box {
    padding-left: 0;
  }
}
.cid-rP1I8I4dEZ P {
  color: #767676;
}
.cid-rP1I8I4dEZ .card-title,
.cid-rP1I8I4dEZ .card-img {
  color: #767676;
}
.cid-rP19UZZwdW {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-rP19UZZwdW .btn {
  margin: 0 0 .5rem 0;
}
.cid-rP19UZZwdW H3 {
  text-align: left;
}
.cid-rPoHZYmlaG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #0096a9;
}
.cid-rPoHZYmlaG .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPoHZYmlaG .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPoHZYmlaG .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPoHZYmlaG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-rPoHZYmlaG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-rPoHZYmlaG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-rPoHZYmlaG .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rPoHZYmlaG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-rPoHZYmlaG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rPoHZYmlaG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rPoHZYmlaG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rPoHZYmlaG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPoHZYmlaG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-rPoHZYmlaG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-rPoHZYmlaG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-rOVixiN67z .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-rOVixiN67z .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-rOVixiN67z a {
  font-style: normal;
}
.cid-rOVixiN67z .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-rOVixiN67z .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-rOVixiN67z .nav-item:focus,
.cid-rOVixiN67z .nav-link:focus {
  outline: none;
}
.cid-rOVixiN67z .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-rOVixiN67z .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-rOVixiN67z .menu-logo {
  margin-right: auto;
}
.cid-rOVixiN67z .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rOVixiN67z .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-rOVixiN67z .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-rOVixiN67z .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-rOVixiN67z .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-rOVixiN67z .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-rOVixiN67z .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-rOVixiN67z .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-rOVixiN67z .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-rOVixiN67z .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-rOVixiN67z .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-rOVixiN67z .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-rOVixiN67z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-rOVixiN67z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-rOVixiN67z .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-rOVixiN67z .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rOVixiN67z .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-rOVixiN67z .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-rOVixiN67z .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-rOVixiN67z .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-rOVixiN67z .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-rOVixiN67z .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-rOVixiN67z .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-rOVixiN67z button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-rOVixiN67z button.navbar-toggler:focus {
  outline: none;
}
.cid-rOVixiN67z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829400;
}
.cid-rOVixiN67z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rOVixiN67z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rOVixiN67z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rOVixiN67z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rOVixiN67z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rOVixiN67z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rOVixiN67z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rOVixiN67z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rOVixiN67z .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rOVixiN67z .collapsed .btn {
  display: -webkit-flex;
}
.cid-rOVixiN67z .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-rOVixiN67z .collapsed .navbar-collapse.collapsing,
.cid-rOVixiN67z .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-rOVixiN67z .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-rOVixiN67z .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-rOVixiN67z .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-rOVixiN67z .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-rOVixiN67z .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-rOVixiN67z .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-rOVixiN67z .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-rOVixiN67z .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-rOVixiN67z .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-rOVixiN67z .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-rOVixiN67z .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-rOVixiN67z .collapsed button.navbar-toggler {
  display: block;
}
.cid-rOVixiN67z .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-rOVixiN67z .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-rOVixiN67z .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-rOVixiN67z .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-rOVixiN67z .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-rOVixiN67z .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-rOVixiN67z.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rOVixiN67z img {
    height: 3.8rem !important;
  }
  .cid-rOVixiN67z .btn {
    display: -webkit-flex;
  }
  .cid-rOVixiN67z button.navbar-toggler {
    display: block;
  }
  .cid-rOVixiN67z .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-rOVixiN67z .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-rOVixiN67z .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-rOVixiN67z .navbar-collapse.collapsing,
  .cid-rOVixiN67z .navbar-collapse.show {
    display: block !important;
  }
  .cid-rOVixiN67z .navbar-collapse.collapsing .navbar-nav,
  .cid-rOVixiN67z .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-rOVixiN67z .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-rOVixiN67z .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-rOVixiN67z .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-rOVixiN67z .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-rOVixiN67z .navbar-collapse.collapsing .navbar-buttons,
  .cid-rOVixiN67z .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-rOVixiN67z .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-rOVixiN67z .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-rOVixiN67z .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-rOVixiN67z .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-rOVixiN67z .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-rOVixiN67z .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-rOVixiN67z .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-rOVixiN67z .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-rOVixiN67z .nav-link:hover,
.cid-rOVixiN67z .dropdown-item:hover {
  color: #009f99 !important;
}
.cid-tV2rxPemIz {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/frauen-mit-kaffee-laecheln-kl-2-1772x1181.jpeg");
}
.cid-tV2rxPemIz .media-container-column {
  align-items: center;
  -webkit-align-items: center;
}
.cid-tV2rxPemIz .mbr-author-desc {
  display: block;
}
.cid-tV2rxPemIz .mbr-testimonial {
  flex-basis: auto;
  margin-top: 5rem;
  -webkit-flex-basis: auto;
  margin-top: 3rem;
}
.cid-tV2rxPemIz .mbr-testimonial .panel-item {
  background-color: #637d26;
  background: linear-gradient(#637d26, transparent);
}
.cid-tV2rxPemIz .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2rem;
}
.cid-tV2rxPemIz .mbr-testimonial .card-block .testimonial-photo {
  margin-top: -5rem;
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tV2rxPemIz .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tV2rxPemIz .mbr-testimonial .card-block p {
  margin: 0;
}
.cid-tV2rxPemIz .mbr-testimonial .card-footer {
  padding: 0 2rem 2rem 2rem;
  border-top: 0;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 260px) {
  .cid-tV2rxPemIz .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tV2rxPemIz .mbr-text {
  color: #ffffff;
}
.cid-tDHmfX96Jo {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #5e7113, #94a731);
}
.cid-tDHmfX96Jo .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tDHmfX96Jo .main .mbr-section-btn {
  text-align: right;
}
.cid-tDHmfX96Jo .btn {
  margin: 0 0 .5rem 0;
}
.cid-tDHmfX96Jo H3 {
  text-align: left;
}
.cid-tDHmfX96Jo P {
  text-align: left;
}
.cid-tDGfazGpdL {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #bc8d1b, #aea512);
}
.cid-s24V0ljBqg {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #5e7113;
}
.cid-s24V0ljBqg .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-s24V0ljBqg .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-s24V0ljBqg .item-wrapper {
  height: 100%;
}
.cid-s24V0ljBqg .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s24V0ljBqg .carousel-control,
.cid-s24V0ljBqg .close {
  background: #1b1b1b;
}
.cid-s24V0ljBqg .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s24V0ljBqg .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s24V0ljBqg .close {
  position: fixed;
  opacity: .5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s24V0ljBqg .close::before {
  content: '\e91a';
}
.cid-s24V0ljBqg .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s24V0ljBqg .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: .5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s24V0ljBqg .carousel-inner > .active {
  display: block;
}
.cid-s24V0ljBqg .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s24V0ljBqg .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s24V0ljBqg .carousel-control .icon-next,
.cid-s24V0ljBqg .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s24V0ljBqg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s24V0ljBqg .carousel-control,
  .cid-s24V0ljBqg .carousel-indicators,
  .cid-s24V0ljBqg .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s24V0ljBqg .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s24V0ljBqg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s24V0ljBqg .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s24V0ljBqg .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s24V0ljBqg .carousel-indicators {
    display: none;
  }
}
.cid-s24V0ljBqg .carousel-indicators .active,
.cid-s24V0ljBqg .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: .5;
  border: 4px solid #1b1b1b;
}
.cid-s24V0ljBqg .carousel-indicators .active {
  background: #fff;
}
.cid-s24V0ljBqg .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s24V0ljBqg .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s24V0ljBqg .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s24V0ljBqg .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s24V0ljBqg .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s24V0ljBqg .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(98.25vh);
  height: fit-content;
}
.cid-s24V0ljBqg .carousel {
  width: 100%;
}
.cid-s24V0ljBqg .modal-backdrop.in {
  opacity: .8;
}
.cid-s24V0ljBqg .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s24V0ljBqg .modal.fade .modal-dialog,
.cid-s24V0ljBqg .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-tDIiekD4Xd {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #596c11;
}
.cid-tDIiekD4Xd .mbr-text {
  color: #ffffff;
}
.cid-tDIiekD4Xd .mbr-text p {
  background: #596c11;
}
.cid-tDIif2KJiF {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #596c11;
}
.cid-tDIif2KJiF .mbr-text {
  color: #ffffff;
}
.cid-tDIif2KJiF .mbr-text p {
  background: #596c11;
}
.cid-s24V58asSP {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #91334c;
}
.cid-s24V58asSP .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-s24V58asSP .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-s24V58asSP .item-wrapper {
  height: 100%;
}
.cid-s24V58asSP .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s24V58asSP .carousel-control,
.cid-s24V58asSP .close {
  background: #1b1b1b;
}
.cid-s24V58asSP .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s24V58asSP .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s24V58asSP .close {
  position: fixed;
  opacity: .5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s24V58asSP .close::before {
  content: '\e91a';
}
.cid-s24V58asSP .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s24V58asSP .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: .5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s24V58asSP .carousel-inner > .active {
  display: block;
}
.cid-s24V58asSP .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s24V58asSP .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s24V58asSP .carousel-control .icon-next,
.cid-s24V58asSP .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s24V58asSP .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s24V58asSP .carousel-control,
  .cid-s24V58asSP .carousel-indicators,
  .cid-s24V58asSP .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s24V58asSP .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s24V58asSP .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s24V58asSP .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s24V58asSP .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s24V58asSP .carousel-indicators {
    display: none;
  }
}
.cid-s24V58asSP .carousel-indicators .active,
.cid-s24V58asSP .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: .5;
  border: 4px solid #1b1b1b;
}
.cid-s24V58asSP .carousel-indicators .active {
  background: #fff;
}
.cid-s24V58asSP .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s24V58asSP .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s24V58asSP .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s24V58asSP .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s24V58asSP .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s24V58asSP .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(98.25vh);
  height: fit-content;
}
.cid-s24V58asSP .carousel {
  width: 100%;
}
.cid-s24V58asSP .modal-backdrop.in {
  opacity: .8;
}
.cid-s24V58asSP .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s24V58asSP .modal.fade .modal-dialog,
.cid-s24V58asSP .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-tDIjdHIAcQ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #7e2c42;
}
.cid-tDIjdHIAcQ .mbr-text {
  color: #ffffff;
}
.cid-tDIjdHIAcQ .mbr-text p {
  background: #7e2c42;
}
.cid-tDIjekR6GY {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #7e2c42;
}
.cid-tDIjekR6GY .mbr-text {
  color: #ffffff;
}
.cid-tDIjekR6GY .mbr-text p {
  background: #7e2c42;
}
.cid-s24VZQvnl2 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ac7300;
}
.cid-s24VZQvnl2 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-s24VZQvnl2 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-s24VZQvnl2 .item-wrapper {
  height: 100%;
}
.cid-s24VZQvnl2 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s24VZQvnl2 .carousel-control,
.cid-s24VZQvnl2 .close {
  background: #1b1b1b;
}
.cid-s24VZQvnl2 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s24VZQvnl2 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s24VZQvnl2 .close {
  position: fixed;
  opacity: .5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s24VZQvnl2 .close::before {
  content: '\e91a';
}
.cid-s24VZQvnl2 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s24VZQvnl2 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: .5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s24VZQvnl2 .carousel-inner > .active {
  display: block;
}
.cid-s24VZQvnl2 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s24VZQvnl2 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s24VZQvnl2 .carousel-control .icon-next,
.cid-s24VZQvnl2 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s24VZQvnl2 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s24VZQvnl2 .carousel-control,
  .cid-s24VZQvnl2 .carousel-indicators,
  .cid-s24VZQvnl2 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s24VZQvnl2 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s24VZQvnl2 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s24VZQvnl2 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s24VZQvnl2 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s24VZQvnl2 .carousel-indicators {
    display: none;
  }
}
.cid-s24VZQvnl2 .carousel-indicators .active,
.cid-s24VZQvnl2 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: .5;
  border: 4px solid #1b1b1b;
}
.cid-s24VZQvnl2 .carousel-indicators .active {
  background: #fff;
}
.cid-s24VZQvnl2 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s24VZQvnl2 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s24VZQvnl2 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s24VZQvnl2 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s24VZQvnl2 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s24VZQvnl2 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(98.25vh);
  height: fit-content;
}
.cid-s24VZQvnl2 .carousel {
  width: 100%;
}
.cid-s24VZQvnl2 .modal-backdrop.in {
  opacity: .8;
}
.cid-s24VZQvnl2 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s24VZQvnl2 .modal.fade .modal-dialog,
.cid-s24VZQvnl2 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-tDIkiColfu {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #9f6b00;
}
.cid-tDIkiColfu .mbr-text {
  color: #ffffff;
}
.cid-tDIkiColfu .mbr-text p {
  background: #9f6b00;
}
.cid-tDIkjzKtPX {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #9f6b00;
}
.cid-tDIkjzKtPX .mbr-text {
  color: #ffffff;
}
.cid-tDIkjzKtPX .mbr-text p {
  background: #9f6b00;
}
.cid-s24WcFbbrk {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/26312-2000x1333.jpg");
}
.cid-s24WcFbbrk .media-container-column {
  align-items: center;
  -webkit-align-items: center;
}
.cid-s24WcFbbrk .mbr-author-desc {
  display: block;
}
.cid-s24WcFbbrk .mbr-testimonial {
  flex-basis: auto;
  margin-top: 5rem;
  -webkit-flex-basis: auto;
  margin-top: 3rem;
}
.cid-s24WcFbbrk .mbr-testimonial .panel-item {
  background-color: #829400;
  background: linear-gradient(#829400, transparent);
}
.cid-s24WcFbbrk .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2rem;
}
.cid-s24WcFbbrk .mbr-testimonial .card-block .testimonial-photo {
  margin-top: -5rem;
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-s24WcFbbrk .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-s24WcFbbrk .mbr-testimonial .card-block p {
  margin: 0;
}
.cid-s24WcFbbrk .mbr-testimonial .card-footer {
  padding: 0 2rem 2rem 2rem;
  border-top: 0;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 260px) {
  .cid-s24WcFbbrk .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-s24WcFbbrk .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tDIkomsIZ4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #829400;
}
.cid-tDIkomsIZ4 .mbr-text {
  color: #ffffff;
}
.cid-tDIkomsIZ4 .mbr-text p {
  background: #829400;
}
.cid-s24WieaGHX {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #006774;
}
.cid-s24WieaGHX .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-s24WieaGHX .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-s24WieaGHX .item-wrapper {
  height: 100%;
}
.cid-s24WieaGHX .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-s24WieaGHX .carousel-control,
.cid-s24WieaGHX .close {
  background: #1b1b1b;
}
.cid-s24WieaGHX .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-s24WieaGHX .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-s24WieaGHX .close {
  position: fixed;
  opacity: .5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  font-family: 'MobiriseIcons';
}
.cid-s24WieaGHX .close::before {
  content: '\e91a';
}
.cid-s24WieaGHX .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-s24WieaGHX .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: .5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-s24WieaGHX .carousel-inner > .active {
  display: block;
}
.cid-s24WieaGHX .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-s24WieaGHX .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-s24WieaGHX .carousel-control .icon-next,
.cid-s24WieaGHX .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-s24WieaGHX .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-s24WieaGHX .carousel-control,
  .cid-s24WieaGHX .carousel-indicators,
  .cid-s24WieaGHX .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-s24WieaGHX .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-s24WieaGHX .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-s24WieaGHX .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-s24WieaGHX .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-s24WieaGHX .carousel-indicators {
    display: none;
  }
}
.cid-s24WieaGHX .carousel-indicators .active,
.cid-s24WieaGHX .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: .5;
  border: 4px solid #1b1b1b;
}
.cid-s24WieaGHX .carousel-indicators .active {
  background: #fff;
}
.cid-s24WieaGHX .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-s24WieaGHX .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-s24WieaGHX .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-s24WieaGHX .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-s24WieaGHX .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-s24WieaGHX .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(98.25vh);
  height: fit-content;
}
.cid-s24WieaGHX .carousel {
  width: 100%;
}
.cid-s24WieaGHX .modal-backdrop.in {
  opacity: .8;
}
.cid-s24WieaGHX .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-s24WieaGHX .modal.fade .modal-dialog,
.cid-s24WieaGHX .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-tDIkkZGWLr {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #0a6a86;
}
.cid-tDIkkZGWLr .mbr-text {
  color: #ffffff;
}
.cid-tDIkkZGWLr .mbr-text p {
  background: #0a6a86;
}
.cid-tDIklxVc0g {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #0a6a86;
}
.cid-tDIklxVc0g .mbr-text {
  color: #ffffff;
}
.cid-tDIklxVc0g .mbr-text p {
  background: #0a6a86;
}
.cid-tDIliJu78s {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #0a6a86;
}
.cid-tDIliJu78s .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tDIliJu78s .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tDIliJu78s .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #55b4d4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tDIliJu78s .mbr-section-title {
  text-align: left;
  color: #449397;
}
.cid-tDIliJu78s .mbr-text {
  color: #ffffff;
}
.cid-rOVzeeg47M {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-rOVzeeg47M .btn {
  margin: 0 0 .5rem 0;
}
.cid-rOVzeeg47M H3 {
  text-align: left;
}
.cid-rPoHZYmlaG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #0096a9;
}
.cid-rPoHZYmlaG .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPoHZYmlaG .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rPoHZYmlaG .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rPoHZYmlaG .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-rPoHZYmlaG .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-rPoHZYmlaG .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-rPoHZYmlaG .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rPoHZYmlaG .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-rPoHZYmlaG .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rPoHZYmlaG .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rPoHZYmlaG .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rPoHZYmlaG .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rPoHZYmlaG .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-rPoHZYmlaG .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-rPoHZYmlaG .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-t8m0NjT7OB .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-t8m0NjT7OB .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-t8m0NjT7OB a {
  font-style: normal;
}
.cid-t8m0NjT7OB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-t8m0NjT7OB .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-t8m0NjT7OB .nav-item:focus,
.cid-t8m0NjT7OB .nav-link:focus {
  outline: none;
}
.cid-t8m0NjT7OB .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-t8m0NjT7OB .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-t8m0NjT7OB .menu-logo {
  margin-right: auto;
}
.cid-t8m0NjT7OB .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t8m0NjT7OB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-t8m0NjT7OB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-t8m0NjT7OB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-t8m0NjT7OB .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-t8m0NjT7OB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-t8m0NjT7OB .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-t8m0NjT7OB .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-t8m0NjT7OB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-t8m0NjT7OB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-t8m0NjT7OB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-t8m0NjT7OB .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-t8m0NjT7OB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-t8m0NjT7OB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t8m0NjT7OB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-t8m0NjT7OB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t8m0NjT7OB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-t8m0NjT7OB .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-t8m0NjT7OB .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-t8m0NjT7OB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-t8m0NjT7OB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-t8m0NjT7OB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-t8m0NjT7OB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-t8m0NjT7OB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-t8m0NjT7OB button.navbar-toggler:focus {
  outline: none;
}
.cid-t8m0NjT7OB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829400;
}
.cid-t8m0NjT7OB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-t8m0NjT7OB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-t8m0NjT7OB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-t8m0NjT7OB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-t8m0NjT7OB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8m0NjT7OB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-t8m0NjT7OB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-t8m0NjT7OB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-t8m0NjT7OB .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t8m0NjT7OB .collapsed .btn {
  display: -webkit-flex;
}
.cid-t8m0NjT7OB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-t8m0NjT7OB .collapsed .navbar-collapse.collapsing,
.cid-t8m0NjT7OB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-t8m0NjT7OB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-t8m0NjT7OB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-t8m0NjT7OB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-t8m0NjT7OB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-t8m0NjT7OB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-t8m0NjT7OB .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-t8m0NjT7OB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-t8m0NjT7OB .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-t8m0NjT7OB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-t8m0NjT7OB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-t8m0NjT7OB .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-t8m0NjT7OB .collapsed button.navbar-toggler {
  display: block;
}
.cid-t8m0NjT7OB .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-t8m0NjT7OB .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-t8m0NjT7OB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-t8m0NjT7OB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-t8m0NjT7OB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-t8m0NjT7OB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-t8m0NjT7OB.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t8m0NjT7OB img {
    height: 3.8rem !important;
  }
  .cid-t8m0NjT7OB .btn {
    display: -webkit-flex;
  }
  .cid-t8m0NjT7OB button.navbar-toggler {
    display: block;
  }
  .cid-t8m0NjT7OB .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-t8m0NjT7OB .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-t8m0NjT7OB .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-t8m0NjT7OB .navbar-collapse.collapsing,
  .cid-t8m0NjT7OB .navbar-collapse.show {
    display: block !important;
  }
  .cid-t8m0NjT7OB .navbar-collapse.collapsing .navbar-nav,
  .cid-t8m0NjT7OB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-t8m0NjT7OB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-t8m0NjT7OB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-t8m0NjT7OB .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-t8m0NjT7OB .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-t8m0NjT7OB .navbar-collapse.collapsing .navbar-buttons,
  .cid-t8m0NjT7OB .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-t8m0NjT7OB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-t8m0NjT7OB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-t8m0NjT7OB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-t8m0NjT7OB .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-t8m0NjT7OB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-t8m0NjT7OB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-t8m0NjT7OB .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-t8m0NjT7OB .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-t8m0NjT7OB .nav-link:hover,
.cid-t8m0NjT7OB .dropdown-item:hover {
  color: #009f99 !important;
}
.cid-tV2xByq3S2 {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/pflege-jobs3-2000x835.jpeg");
}
.cid-tV2xByq3S2 .media-container-column {
  align-items: center;
  -webkit-align-items: center;
}
.cid-tV2xByq3S2 .mbr-author-desc {
  display: block;
}
.cid-tV2xByq3S2 .mbr-testimonial {
  flex-basis: auto;
  margin-top: 5rem;
  -webkit-flex-basis: auto;
  margin-top: 3rem;
}
.cid-tV2xByq3S2 .mbr-testimonial .panel-item {
  background-color: #938761;
  background: linear-gradient(#938761, transparent);
}
.cid-tV2xByq3S2 .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2rem;
}
.cid-tV2xByq3S2 .mbr-testimonial .card-block .testimonial-photo {
  margin-top: -5rem;
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tV2xByq3S2 .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tV2xByq3S2 .mbr-testimonial .card-block p {
  margin: 0;
}
.cid-tV2xByq3S2 .mbr-testimonial .card-footer {
  padding: 0 2rem 2rem 2rem;
  border-top: 0;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 260px) {
  .cid-tV2xByq3S2 .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tV2xByq3S2 .mbr-text {
  color: #ffffff;
}
.cid-tDHmkLFuZ3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #5e7113, #94a731);
}
.cid-tDHmkLFuZ3 .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tDHmkLFuZ3 .main .mbr-section-btn {
  text-align: right;
}
.cid-tDHmkLFuZ3 .btn {
  margin: 0 0 .5rem 0;
}
.cid-tDHmkLFuZ3 H3 {
  text-align: left;
}
.cid-tDHmkLFuZ3 P {
  text-align: left;
}
.cid-tDG7SDGIsa {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #bc8d1b, #aea512);
}
.cid-uH76AGdGiX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uH76AGdGiX .line {
  background-color: #f9bf15;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tj1kHa5A8i {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tj1kHa5A8i .mbr-section-subtitle {
  color: #028088;
  text-align: center;
  font-weight: 300;
}
.cid-tj1kHa5A8i .step {
  width: 72px;
  height: 72px;
  font-size: 36px;
  border-radius: 50%;
  border: 2px solid #efefef;
  padding-bottom: 0;
  color: #b2ccd2;
}
@media (min-width: 768px) {
  .cid-tj1kHa5A8i .separline .step-wrapper {
    position: relative;
  }
  .cid-tj1kHa5A8i .separline .step-wrapper:before,
  .cid-tj1kHa5A8i .separline .step-wrapper:after {
    top: 38px;
    position: absolute;
    content: "";
    height: 2px;
    width: calc(50% + 15px - 36px - 8px);
    background-color: #efefef;
  }
  .cid-tj1kHa5A8i .separline .step-wrapper:before {
    left: -15px;
  }
  .cid-tj1kHa5A8i .separline .step-wrapper:after {
    left: calc(50% + 8px + 36px);
  }
  .cid-tj1kHa5A8i .separline.last-child .step-wrapper:after,
  .cid-tj1kHa5A8i .separline:nth-child(3n) .step-wrapper:after,
  .cid-tj1kHa5A8i .separline:nth-child(3n+1) .step-wrapper:before {
    background: none;
  }
}
@media (max-width: 767px) {
  .cid-tj1kHa5A8i .card:not(.last-child) {
    padding-bottom: 1.5rem;
  }
}
.cid-tj1kHa5A8i .mbr-step-title {
  color: #028088;
}
.cid-tqM8uvPzR1 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tqM8uvPzR1 .mbr-section-subtitle {
  color: #028088;
  text-align: center;
  font-weight: 300;
}
.cid-tqM8uvPzR1 .step {
  width: 72px;
  height: 72px;
  font-size: 36px;
  border-radius: 50%;
  border: 2px solid #efefef;
  padding-bottom: 0;
  color: #b2ccd2;
}
@media (min-width: 768px) {
  .cid-tqM8uvPzR1 .separline .step-wrapper {
    position: relative;
  }
  .cid-tqM8uvPzR1 .separline .step-wrapper:before,
  .cid-tqM8uvPzR1 .separline .step-wrapper:after {
    top: 38px;
    position: absolute;
    content: "";
    height: 2px;
    width: calc(50% + 15px - 36px - 8px);
    background-color: #efefef;
  }
  .cid-tqM8uvPzR1 .separline .step-wrapper:before {
    left: -15px;
  }
  .cid-tqM8uvPzR1 .separline .step-wrapper:after {
    left: calc(50% + 8px + 36px);
  }
  .cid-tqM8uvPzR1 .separline.last-child .step-wrapper:after,
  .cid-tqM8uvPzR1 .separline:nth-child(3n) .step-wrapper:after,
  .cid-tqM8uvPzR1 .separline:nth-child(3n+1) .step-wrapper:before {
    background: none;
  }
}
@media (max-width: 767px) {
  .cid-tqM8uvPzR1 .card:not(.last-child) {
    padding-bottom: 1.5rem;
  }
}
.cid-tqM8uvPzR1 .mbr-step-title {
  color: #232323;
}
.cid-t8m0Nl1rUz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #eebd00;
}
.cid-t8m0Nl1rUz .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-t8m0Nl1rUz .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-t8m0Nl1rUz .item-wrapper {
  height: 100%;
}
.cid-t8m0Nl1rUz .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-t8m0Nl1rUz .carousel-control,
.cid-t8m0Nl1rUz .close {
  background: #1b1b1b;
}
.cid-t8m0Nl1rUz .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-t8m0Nl1rUz .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-t8m0Nl1rUz .close {
  position: fixed;
  opacity: .5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  font-family: 'MobiriseIcons';
}
.cid-t8m0Nl1rUz .close::before {
  content: '\e91a';
}
.cid-t8m0Nl1rUz .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-t8m0Nl1rUz .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: .5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-t8m0Nl1rUz .carousel-inner > .active {
  display: block;
}
.cid-t8m0Nl1rUz .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-t8m0Nl1rUz .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-t8m0Nl1rUz .carousel-control .icon-next,
.cid-t8m0Nl1rUz .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-t8m0Nl1rUz .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-t8m0Nl1rUz .carousel-control,
  .cid-t8m0Nl1rUz .carousel-indicators,
  .cid-t8m0Nl1rUz .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-t8m0Nl1rUz .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-t8m0Nl1rUz .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-t8m0Nl1rUz .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-t8m0Nl1rUz .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-t8m0Nl1rUz .carousel-indicators {
    display: none;
  }
}
.cid-t8m0Nl1rUz .carousel-indicators .active,
.cid-t8m0Nl1rUz .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: .5;
  border: 4px solid #1b1b1b;
}
.cid-t8m0Nl1rUz .carousel-indicators .active {
  background: #fff;
}
.cid-t8m0Nl1rUz .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-t8m0Nl1rUz .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-t8m0Nl1rUz .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-t8m0Nl1rUz .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-t8m0Nl1rUz .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-t8m0Nl1rUz .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(98.25vh);
  height: fit-content;
}
.cid-t8m0Nl1rUz .carousel {
  width: 100%;
}
.cid-t8m0Nl1rUz .modal-backdrop.in {
  opacity: .8;
}
.cid-t8m0Nl1rUz .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-t8m0Nl1rUz .modal.fade .modal-dialog,
.cid-t8m0Nl1rUz .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-tDG8ifH1ac {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #028088;
}
.cid-tDG8ifH1ac .mbr-text {
  color: #ffffff;
}
.cid-tDG8ifH1ac .mbr-text p {
  background: #028088;
}
.cid-tDG8l7f3sr {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #028088;
}
.cid-tDG8l7f3sr .mbr-text {
  color: #ffffff;
}
.cid-tDG8l7f3sr .mbr-text p {
  background: #028088;
}
.cid-tj2xWJfz2i {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tj2xWJfz2i .mbr-text {
  color: #028088;
}
.cid-tj2xWJfz2i .mbr-text p {
  background: #ffffff;
}
.cid-tj2xWJfz2i .mbr-text P {
  text-align: center;
}
.cid-tj2GBBC4f2 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #4d98a9;
}
.cid-tj2GBBC4f2 .mbr-text {
  color: #ffffff;
}
.cid-tj2GBBC4f2 .mbr-text p {
  background: #4d98a9;
}
.cid-tj2GBBC4f2 .mbr-text P {
  text-align: center;
}
.cid-tj2xOJbsti {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tj2xOJbsti h2 {
  text-align: center;
}
.cid-tj2xOJbsti h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tj2xOJbsti p {
  color: #767676;
}
.cid-tj2xOJbsti img {
  object-fit: cover;
}
.cid-tj2xOJbsti .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tj2xOJbsti .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tj2xOJbsti .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tj2xOJbsti .mbr-section-subtitle {
  color: #0f7699;
}
.cid-tj2xOJbsti .card-title {
  font-weight: 500;
}
.cid-tj2xOJbsti .card-img {
  text-align: inherit;
}
.cid-tj2xOJbsti .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tj2xOJbsti .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tj2xOJbsti .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tj2xOJbsti .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tj2xOJbsti .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-tj2xOJbsti .card:nth-child(1) {
    padding-bottom: 0!important;
  }
}
.cid-tj2xOJbsti .mbr-section-title {
  color: #028088;
}
.cid-tj2xOJbsti .mbr-section-text {
  color: #0f7699;
}
.cid-tj2xOJbsti .mbr-crt-title {
  color: #0f7699;
}
.cid-tj2DVdwICV {
  padding-top: 0px;
  padding-bottom: 45px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-tj2DVdwICV .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-tj2DVdwICV .mbr-section-title {
  color: #ff8500;
  text-align: left;
}
.cid-tj2TJHtDLp {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #e37300;
}
.cid-tj2TJHtDLp .mbr-text {
  color: #ffffff;
}
.cid-tj2TJHtDLp .mbr-text p {
  background: #e37300;
}
.cid-tj2TJHtDLp .mbr-text P {
  text-align: center;
}
.cid-tj2TN1BTgH {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tj2TN1BTgH h2 {
  text-align: center;
}
.cid-tj2TN1BTgH h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tj2TN1BTgH p {
  color: #767676;
}
.cid-tj2TN1BTgH img {
  object-fit: cover;
}
.cid-tj2TN1BTgH .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tj2TN1BTgH .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tj2TN1BTgH .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tj2TN1BTgH .mbr-section-subtitle {
  color: #028088;
}
.cid-tj2TN1BTgH .card-title {
  font-weight: 500;
}
.cid-tj2TN1BTgH .card-img {
  text-align: inherit;
}
.cid-tj2TN1BTgH .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tj2TN1BTgH .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tj2TN1BTgH .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tj2TN1BTgH .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tj2TN1BTgH .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-tj2TN1BTgH .card:nth-child(1) {
    padding-bottom: 0!important;
  }
}
.cid-tj2TN1BTgH .mbr-section-title {
  color: #028088;
}
.cid-tj2TN1BTgH .mbr-section-text {
  color: #028088;
}
.cid-tj2TN1BTgH .mbr-crt-title {
  color: #028088;
}
.cid-tj2TQuTcjJ {
  padding-top: 0px;
  padding-bottom: 45px;
  background: linear-gradient(45deg, #ffffff, #ffffff);
}
.cid-tj2TQuTcjJ .mbr-section-subtitle {
  font-style: italic;
  letter-spacing: 1rem;
}
.cid-tj2TQuTcjJ .mbr-section-title {
  color: #ff8500;
  text-align: left;
}
.cid-tj2FepCLgv {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #008f8b;
}
.cid-tj2FepCLgv .mbr-text {
  color: #ffffff;
}
.cid-tj2FepCLgv .mbr-text p {
  background: #008f8b;
}
.cid-tj2FepCLgv .mbr-text P {
  text-align: center;
}
.cid-tj2DrAk7y3 {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tj2DrAk7y3 h2 {
  text-align: center;
}
.cid-tj2DrAk7y3 h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tj2DrAk7y3 p {
  color: #767676;
}
.cid-tj2DrAk7y3 img {
  object-fit: cover;
}
.cid-tj2DrAk7y3 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tj2DrAk7y3 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tj2DrAk7y3 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tj2DrAk7y3 .mbr-section-subtitle {
  color: #028088;
}
.cid-tj2DrAk7y3 .card-title {
  font-weight: 500;
}
.cid-tj2DrAk7y3 .card-img {
  text-align: inherit;
}
.cid-tj2DrAk7y3 .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tj2DrAk7y3 .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tj2DrAk7y3 .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tj2DrAk7y3 .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tj2DrAk7y3 .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-tj2DrAk7y3 .card:nth-child(1) {
    padding-bottom: 0!important;
  }
}
.cid-tj2DrAk7y3 .mbr-section-title {
  color: #028088;
}
.cid-tj2DrAk7y3 .mbr-section-text {
  color: #028088;
}
.cid-tj2DrAk7y3 .mbr-crt-title {
  color: #028088;
}
.cid-tqM8OB3Yqm {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #7f1933;
}
.cid-tqM8OB3Yqm .mbr-text {
  color: #ffffff;
}
.cid-tqM8OB3Yqm .mbr-text p {
  background: #7f1933;
}
.cid-tqM8OB3Yqm .mbr-text P {
  text-align: center;
}
.cid-tqM8PooiDd {
  padding-top: 45px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-tqM8PooiDd h2 {
  text-align: center;
}
.cid-tqM8PooiDd h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tqM8PooiDd p {
  color: #767676;
}
.cid-tqM8PooiDd img {
  object-fit: cover;
}
.cid-tqM8PooiDd .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tqM8PooiDd .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tqM8PooiDd .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tqM8PooiDd .mbr-section-subtitle {
  color: #028088;
}
.cid-tqM8PooiDd .card-title {
  font-weight: 500;
}
.cid-tqM8PooiDd .card-img {
  text-align: inherit;
}
.cid-tqM8PooiDd .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tqM8PooiDd .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-tqM8PooiDd .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tqM8PooiDd .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-tqM8PooiDd .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-tqM8PooiDd .card:nth-child(1) {
    padding-bottom: 0!important;
  }
}
.cid-tqM8PooiDd .mbr-section-title {
  color: #028088;
}
.cid-tqM8PooiDd .mbr-section-text {
  color: #028088;
}
.cid-tqM8PooiDd .mbr-crt-title {
  color: #028088;
}
.cid-tj2Tvdw8C0 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #eebd00;
}
.cid-tj2Tvdw8C0 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tj2Tvdw8C0 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tj2Tvdw8C0 .item-wrapper {
  height: 100%;
}
.cid-tj2Tvdw8C0 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tj2Tvdw8C0 .carousel-control,
.cid-tj2Tvdw8C0 .close {
  background: #1b1b1b;
}
.cid-tj2Tvdw8C0 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tj2Tvdw8C0 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tj2Tvdw8C0 .close {
  position: fixed;
  opacity: .5;
  font-size: 35px;
  font-weight: 300;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  line-height: 70px;
  border: none;
  text-align: center;
  text-shadow: none;
  z-index: 5;
  -webkit-transition: opacity .3s ease;
  -moz-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
  font-family: 'MobiriseIcons';
}
.cid-tj2Tvdw8C0 .close::before {
  content: '\e91a';
}
.cid-tj2Tvdw8C0 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tj2Tvdw8C0 .carousel-control {
  position: fixed;
  width: 70px;
  height: 70px;
  top: 50%;
  margin-top: -35px;
  line-height: 70px;
  border-radius: 50%;
  font-size: 35px;
  border: 0;
  opacity: .5;
  text-shadow: none;
  z-index: 5;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.cid-tj2Tvdw8C0 .carousel-inner > .active {
  display: block;
}
.cid-tj2Tvdw8C0 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tj2Tvdw8C0 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tj2Tvdw8C0 .carousel-control .icon-next,
.cid-tj2Tvdw8C0 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tj2Tvdw8C0 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tj2Tvdw8C0 .carousel-control,
  .cid-tj2Tvdw8C0 .carousel-indicators,
  .cid-tj2Tvdw8C0 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tj2Tvdw8C0 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tj2Tvdw8C0 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tj2Tvdw8C0 .carousel-indicators {
  bottom: 0;
  margin-bottom: 3px;
}
@media (max-width: 991px) {
  .cid-tj2Tvdw8C0 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tj2Tvdw8C0 .carousel-indicators {
    display: none;
  }
}
.cid-tj2Tvdw8C0 .carousel-indicators .active,
.cid-tj2Tvdw8C0 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #1b1b1b;
  opacity: .5;
  border: 4px solid #1b1b1b;
}
.cid-tj2Tvdw8C0 .carousel-indicators .active {
  background: #fff;
}
.cid-tj2Tvdw8C0 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tj2Tvdw8C0 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tj2Tvdw8C0 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tj2Tvdw8C0 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tj2Tvdw8C0 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tj2Tvdw8C0 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(98.25vh);
  height: fit-content;
}
.cid-tj2Tvdw8C0 .carousel {
  width: 100%;
}
.cid-tj2Tvdw8C0 .modal-backdrop.in {
  opacity: .8;
}
.cid-tj2Tvdw8C0 .modal.fade .modal-dialog {
  -webkit-transition: margin-top 0.3s ease-out;
  -moz-transition: margin-top 0.3s ease-out;
  -o-transition: margin-top 0.3s ease-out;
  transition: margin-top 0.3s ease-out;
}
.cid-tj2Tvdw8C0 .modal.fade .modal-dialog,
.cid-tj2Tvdw8C0 .modal.in .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
.cid-t8m0NoL5u5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-t8m0NoL5u5 .btn {
  margin: 0 0 .5rem 0;
}
.cid-t8m0NoL5u5 H3 {
  text-align: left;
}
.cid-t8m0NoZgqs {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #0096a9;
}
.cid-t8m0NoZgqs .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t8m0NoZgqs .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-t8m0NoZgqs .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-t8m0NoZgqs .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-t8m0NoZgqs .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-t8m0NoZgqs .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-t8m0NoZgqs .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-t8m0NoZgqs .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-t8m0NoZgqs .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-t8m0NoZgqs .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-t8m0NoZgqs .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-t8m0NoZgqs .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-t8m0NoZgqs .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-t8m0NoZgqs .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-t8m0NoZgqs .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tlozoCq5YW .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-tlozoCq5YW .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tlozoCq5YW a {
  font-style: normal;
}
.cid-tlozoCq5YW .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tlozoCq5YW .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tlozoCq5YW .nav-item:focus,
.cid-tlozoCq5YW .nav-link:focus {
  outline: none;
}
.cid-tlozoCq5YW .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tlozoCq5YW .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tlozoCq5YW .menu-logo {
  margin-right: auto;
}
.cid-tlozoCq5YW .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tlozoCq5YW .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tlozoCq5YW .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tlozoCq5YW .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tlozoCq5YW .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tlozoCq5YW .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tlozoCq5YW .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tlozoCq5YW .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tlozoCq5YW .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tlozoCq5YW .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tlozoCq5YW .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tlozoCq5YW .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tlozoCq5YW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tlozoCq5YW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tlozoCq5YW .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tlozoCq5YW .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tlozoCq5YW .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tlozoCq5YW .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tlozoCq5YW .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tlozoCq5YW .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tlozoCq5YW .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tlozoCq5YW .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tlozoCq5YW .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tlozoCq5YW button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tlozoCq5YW button.navbar-toggler:focus {
  outline: none;
}
.cid-tlozoCq5YW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829400;
}
.cid-tlozoCq5YW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tlozoCq5YW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tlozoCq5YW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tlozoCq5YW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tlozoCq5YW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tlozoCq5YW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tlozoCq5YW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tlozoCq5YW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tlozoCq5YW .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tlozoCq5YW .collapsed .btn {
  display: -webkit-flex;
}
.cid-tlozoCq5YW .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tlozoCq5YW .collapsed .navbar-collapse.collapsing,
.cid-tlozoCq5YW .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tlozoCq5YW .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tlozoCq5YW .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tlozoCq5YW .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tlozoCq5YW .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tlozoCq5YW .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tlozoCq5YW .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tlozoCq5YW .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tlozoCq5YW .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tlozoCq5YW .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tlozoCq5YW .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-tlozoCq5YW .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tlozoCq5YW .collapsed button.navbar-toggler {
  display: block;
}
.cid-tlozoCq5YW .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tlozoCq5YW .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tlozoCq5YW .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tlozoCq5YW .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tlozoCq5YW .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tlozoCq5YW .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-tlozoCq5YW.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tlozoCq5YW img {
    height: 3.8rem !important;
  }
  .cid-tlozoCq5YW .btn {
    display: -webkit-flex;
  }
  .cid-tlozoCq5YW button.navbar-toggler {
    display: block;
  }
  .cid-tlozoCq5YW .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tlozoCq5YW .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tlozoCq5YW .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tlozoCq5YW .navbar-collapse.collapsing,
  .cid-tlozoCq5YW .navbar-collapse.show {
    display: block !important;
  }
  .cid-tlozoCq5YW .navbar-collapse.collapsing .navbar-nav,
  .cid-tlozoCq5YW .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tlozoCq5YW .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tlozoCq5YW .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tlozoCq5YW .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tlozoCq5YW .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tlozoCq5YW .navbar-collapse.collapsing .navbar-buttons,
  .cid-tlozoCq5YW .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tlozoCq5YW .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tlozoCq5YW .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tlozoCq5YW .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tlozoCq5YW .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tlozoCq5YW .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tlozoCq5YW .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tlozoCq5YW .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tlozoCq5YW .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tlozoCq5YW .nav-link:hover,
.cid-tlozoCq5YW .dropdown-item:hover {
  color: #009f99 !important;
}
.cid-tlozoCGslQ {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/visualisierung-bodelschwingst-1181x579.jpg");
}
.cid-tlozoCGslQ .media-container-column {
  align-items: center;
  -webkit-align-items: center;
}
.cid-tlozoCGslQ .mbr-author-desc {
  display: block;
}
.cid-tlozoCGslQ .mbr-testimonial {
  flex-basis: auto;
  margin-top: 5rem;
  -webkit-flex-basis: auto;
  margin-top: 3rem;
}
.cid-tlozoCGslQ .mbr-testimonial .panel-item {
  background-color: #14aacc;
  background: linear-gradient(#14aacc, transparent);
}
.cid-tlozoCGslQ .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2rem;
}
.cid-tlozoCGslQ .mbr-testimonial .card-block .testimonial-photo {
  margin-top: -5rem;
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tlozoCGslQ .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tlozoCGslQ .mbr-testimonial .card-block p {
  margin: 0;
}
.cid-tlozoCGslQ .mbr-testimonial .card-footer {
  padding: 0 2rem 2rem 2rem;
  border-top: 0;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 260px) {
  .cid-tlozoCGslQ .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tlozoCGslQ .mbr-text {
  color: #ffffff;
}
.cid-tDHla2avlJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #5e7113, #94a731);
}
.cid-tDHla2avlJ .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tDHla2avlJ .main .mbr-section-btn {
  text-align: right;
}
.cid-tDHla2avlJ .btn {
  margin: 0 0 .5rem 0;
}
.cid-tDHla2avlJ H3 {
  text-align: left;
}
.cid-tDHla2avlJ P {
  text-align: left;
}
.cid-tDEGoz4rJc {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #bc8d1b, #aea512);
}
.cid-tDEJJSzrFe {
  background: #008f8b;
  padding-top: 90px;
  padding-bottom: 0px;
}
.cid-tDEJJSzrFe .image-block {
  margin: auto;
}
.cid-tDEJJSzrFe figcaption {
  position: relative;
}
.cid-tDEJJSzrFe figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tDEJJSzrFe .image-block {
    width: 100% !important;
  }
}
.cid-tDEHzMXzlA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #028088;
}
.cid-tDEHzMXzlA .mbr-text {
  color: #ffffff;
}
.cid-tDEHzMXzlA .mbr-text p {
  background: #028088;
}
.cid-tDEKcw1yEF {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #028088;
}
.cid-tDEKcw1yEF .mbr-text {
  color: #ffffff;
}
.cid-tDEKcw1yEF .mbr-text p {
  background: #028088;
}
.cid-tDEKUUYuLT {
  background: #f09436;
  padding-top: 90px;
  padding-bottom: 0px;
}
.cid-tDEKUUYuLT .image-block {
  margin: auto;
}
.cid-tDEKUUYuLT figcaption {
  position: relative;
}
.cid-tDEKUUYuLT figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tDEKUUYuLT .image-block {
    width: 100% !important;
  }
}
.cid-tDEUguYzzf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ca6700;
}
.cid-tDEUguYzzf .mbr-text {
  color: #ffffff;
}
.cid-tDEUguYzzf .mbr-text p {
  background: #ca6700;
}
.cid-tDEUfojToa {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ca6700;
}
.cid-tDEUfojToa .mbr-text {
  color: #ffffff;
}
.cid-tDEUfojToa .mbr-text p {
  background: #ca6700;
}
.cid-tDEUFKSXFm {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #b05a00;
}
.cid-tDEUFKSXFm .mbr-text {
  color: #ffffff;
}
.cid-tDEUFKSXFm .mbr-text p {
  background: #b05a00;
}
.cid-tDEUELtG6H {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #b05a00;
}
.cid-tDEUELtG6H .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tDEUELtG6H .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tDEUELtG6H .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #ee7900;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tDEUELtG6H .mbr-section-title {
  text-align: left;
  color: #449397;
}
.cid-tDEUELtG6H .mbr-text {
  color: #ffffff;
}
.cid-tDF44dCocD {
  background: #6ab7c3;
  padding-top: 90px;
  padding-bottom: 0px;
}
.cid-tDF44dCocD .image-block {
  margin: auto;
}
.cid-tDF44dCocD figcaption {
  position: relative;
}
.cid-tDF44dCocD figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tDF44dCocD .image-block {
    width: 100% !important;
  }
}
.cid-tDF11lAg1K {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #4c909e;
}
.cid-tDF11lAg1K .mbr-text {
  color: #ffffff;
}
.cid-tDF11lAg1K .mbr-text p {
  background: #4c909e;
}
.cid-tDF185MngN {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4c909e;
}
.cid-tDF185MngN .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tDF185MngN .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tDF185MngN .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #62c7ca;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tDF185MngN .mbr-section-title {
  text-align: left;
  color: #449397;
}
.cid-tDF185MngN .mbr-text {
  color: #ffffff;
}
.cid-tDF3Rx96Uj {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #4c909e;
}
.cid-tDF3Rx96Uj .mbr-text {
  color: #ffffff;
}
.cid-tDF3Rx96Uj .mbr-text p {
  background: #4c909e;
}
.cid-tDF0NyTgiA {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #006774;
}
.cid-tDF0NyTgiA .mbr-text {
  color: #f9bf15;
}
.cid-tDF0NyTgiA .mbr-text p {
  background: #006774;
}
.cid-tlp4Ma0sU0 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #006774;
}
.cid-tlp4Ma0sU0 .mbr-text {
  color: #ffffff;
}
.cid-tlp4Ma0sU0 .mbr-text p {
  background: #006774;
}
.cid-tlozoGuIF9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-tlozoGuIF9 .btn {
  margin: 0 0 .5rem 0;
}
.cid-tlozoGuIF9 H3 {
  text-align: left;
}
.cid-tlozoGFZVa {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #0096a9;
}
.cid-tlozoGFZVa .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tlozoGFZVa .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tlozoGFZVa .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tlozoGFZVa .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tlozoGFZVa .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tlozoGFZVa .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tlozoGFZVa .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tlozoGFZVa .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tlozoGFZVa .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tlozoGFZVa .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tlozoGFZVa .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tlozoGFZVa .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tlozoGFZVa .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tlozoGFZVa .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tlozoGFZVa .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tAxsTxJCe7 .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-tAxsTxJCe7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tAxsTxJCe7 a {
  font-style: normal;
}
.cid-tAxsTxJCe7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tAxsTxJCe7 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tAxsTxJCe7 .nav-item:focus,
.cid-tAxsTxJCe7 .nav-link:focus {
  outline: none;
}
.cid-tAxsTxJCe7 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tAxsTxJCe7 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tAxsTxJCe7 .menu-logo {
  margin-right: auto;
}
.cid-tAxsTxJCe7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tAxsTxJCe7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tAxsTxJCe7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tAxsTxJCe7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tAxsTxJCe7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tAxsTxJCe7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tAxsTxJCe7 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tAxsTxJCe7 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tAxsTxJCe7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tAxsTxJCe7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tAxsTxJCe7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tAxsTxJCe7 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tAxsTxJCe7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tAxsTxJCe7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tAxsTxJCe7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tAxsTxJCe7 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tAxsTxJCe7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tAxsTxJCe7 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tAxsTxJCe7 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tAxsTxJCe7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tAxsTxJCe7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tAxsTxJCe7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tAxsTxJCe7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tAxsTxJCe7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tAxsTxJCe7 button.navbar-toggler:focus {
  outline: none;
}
.cid-tAxsTxJCe7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829400;
}
.cid-tAxsTxJCe7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tAxsTxJCe7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tAxsTxJCe7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tAxsTxJCe7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tAxsTxJCe7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tAxsTxJCe7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tAxsTxJCe7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tAxsTxJCe7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tAxsTxJCe7 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tAxsTxJCe7 .collapsed .btn {
  display: -webkit-flex;
}
.cid-tAxsTxJCe7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tAxsTxJCe7 .collapsed .navbar-collapse.collapsing,
.cid-tAxsTxJCe7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tAxsTxJCe7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tAxsTxJCe7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tAxsTxJCe7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tAxsTxJCe7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tAxsTxJCe7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tAxsTxJCe7 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tAxsTxJCe7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tAxsTxJCe7 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tAxsTxJCe7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tAxsTxJCe7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-tAxsTxJCe7 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tAxsTxJCe7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tAxsTxJCe7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tAxsTxJCe7 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tAxsTxJCe7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tAxsTxJCe7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tAxsTxJCe7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tAxsTxJCe7 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-tAxsTxJCe7.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tAxsTxJCe7 img {
    height: 3.8rem !important;
  }
  .cid-tAxsTxJCe7 .btn {
    display: -webkit-flex;
  }
  .cid-tAxsTxJCe7 button.navbar-toggler {
    display: block;
  }
  .cid-tAxsTxJCe7 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tAxsTxJCe7 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tAxsTxJCe7 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tAxsTxJCe7 .navbar-collapse.collapsing,
  .cid-tAxsTxJCe7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tAxsTxJCe7 .navbar-collapse.collapsing .navbar-nav,
  .cid-tAxsTxJCe7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tAxsTxJCe7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tAxsTxJCe7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tAxsTxJCe7 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tAxsTxJCe7 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tAxsTxJCe7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tAxsTxJCe7 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tAxsTxJCe7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tAxsTxJCe7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tAxsTxJCe7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tAxsTxJCe7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tAxsTxJCe7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tAxsTxJCe7 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tAxsTxJCe7 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tAxsTxJCe7 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tAxsTxJCe7 .nav-link:hover,
.cid-tAxsTxJCe7 .dropdown-item:hover {
  color: #009f99 !important;
}
.cid-tV2qS0GpEw {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/07-betreutes-wohnen-1728x921.jpg");
}
.cid-tV2qS0GpEw .media-container-column {
  align-items: center;
  -webkit-align-items: center;
}
.cid-tV2qS0GpEw .mbr-author-desc {
  display: block;
}
.cid-tV2qS0GpEw .mbr-testimonial {
  flex-basis: auto;
  margin-top: 5rem;
  -webkit-flex-basis: auto;
  margin-top: 3rem;
}
.cid-tV2qS0GpEw .mbr-testimonial .panel-item {
  background-color: #de862a;
  background: linear-gradient(#de862a, transparent);
}
.cid-tV2qS0GpEw .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2rem;
}
.cid-tV2qS0GpEw .mbr-testimonial .card-block .testimonial-photo {
  margin-top: -5rem;
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tV2qS0GpEw .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tV2qS0GpEw .mbr-testimonial .card-block p {
  margin: 0;
}
.cid-tV2qS0GpEw .mbr-testimonial .card-footer {
  padding: 0 2rem 2rem 2rem;
  border-top: 0;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 260px) {
  .cid-tV2qS0GpEw .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tV2qS0GpEw .mbr-text {
  color: #ffffff;
}
.cid-tDHlWF2zfl {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #5e7113, #94a731);
}
.cid-tDHlWF2zfl .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tDHlWF2zfl .main .mbr-section-btn {
  text-align: right;
}
.cid-tDHlWF2zfl .btn {
  margin: 0 0 .5rem 0;
}
.cid-tDHlWF2zfl H3 {
  text-align: left;
}
.cid-tDHlWF2zfl P {
  text-align: left;
}
.cid-tDF5d4hnuo {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #bc8d1b, #aea512);
}
.cid-tAxsTyIOfl {
  background: #de862a;
  padding-top: 60px;
  padding-bottom: 0px;
}
.cid-tAxsTyIOfl .image-block {
  margin: auto;
}
.cid-tAxsTyIOfl figcaption {
  position: relative;
}
.cid-tAxsTyIOfl figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tAxsTyIOfl .image-block {
    width: 100% !important;
  }
}
.cid-tDBxM3S1QO {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #c26301;
}
.cid-tDBxM3S1QO .mbr-text {
  color: #ffffff;
}
.cid-tDBxM3S1QO .mbr-text p {
  background: #c26301;
}
.cid-tDBxL0TYxq {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #c26301;
}
.cid-tDBxL0TYxq .mbr-text {
  color: #ffffff;
}
.cid-tDBxL0TYxq .mbr-text p {
  background: #c26301;
}
.cid-tAxsTzbHOB {
  background: #77a5af;
  padding-top: 60px;
  padding-bottom: 0px;
}
.cid-tAxsTzbHOB .image-block {
  margin: auto;
}
.cid-tAxsTzbHOB figcaption {
  position: relative;
}
.cid-tAxsTzbHOB figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tAxsTzbHOB .image-block {
    width: 100% !important;
  }
}
.cid-tDBGLS1QW9 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #4b909e;
}
.cid-tDBGLS1QW9 .mbr-text {
  color: #ffffff;
}
.cid-tDBGLS1QW9 .mbr-text p {
  background: #4b909e;
}
.cid-tDBGMXhXmd {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #4b909e;
}
.cid-tDBGMXhXmd .mbr-text {
  color: #ffffff;
}
.cid-tDBGMXhXmd .mbr-text p {
  background: #4b909e;
}
.cid-tDF8DDs9uv {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tDF8DDs9uv .mbr-text {
  color: #ff7a0e;
}
.cid-tDF8DDs9uv .mbr-text p {
  background: #ffffff;
}
.cid-tDBTkoKcPZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tDBTkoKcPZ .mbr-text {
  color: #62c7ca;
}
.cid-tDBTkoKcPZ .mbr-text p {
  background: #ffffff;
}
.cid-tDeBKUJVfa {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tDeBKUJVfa .counter-container {
  color: #767676;
}
.cid-tDeBKUJVfa .counter-container ul {
  margin-bottom: 0;
}
.cid-tDeBKUJVfa .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tDeBKUJVfa .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff7a0e;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-tDeBKUJVfa .mbr-text {
  color: #4c909e;
}
.cid-tDBZvDQABw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tDBZvDQABw .mbr-text {
  color: #62c7ca;
}
.cid-tDBZvDQABw .mbr-text p {
  background: #ffffff;
}
.cid-tDBZwqmpnz {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tDBZwqmpnz .counter-container {
  color: #767676;
}
.cid-tDBZwqmpnz .counter-container ul {
  margin-bottom: 0;
}
.cid-tDBZwqmpnz .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
}
.cid-tDBZwqmpnz .counter-container ul li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff7a0e;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  content: '✓';
}
.cid-tDBZwqmpnz .mbr-text {
  color: #4c909e;
}
.cid-tDG1QlzGFS {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #006774;
}
.cid-tDG1QlzGFS .mbr-text {
  color: #ffffff;
}
.cid-tDG1QlzGFS .mbr-text p {
  background: #006774;
}
.cid-tDG2J2uQAf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #006774;
}
.cid-tDG2J2uQAf .mbr-text {
  color: #ffffff;
}
.cid-tDG2J2uQAf .mbr-text p {
  background: #006774;
}
.cid-tDG2K9FKvl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #006774;
}
.cid-tDG2K9FKvl .mbr-text {
  color: #ffffff;
}
.cid-tDG2K9FKvl .mbr-text p {
  background: #006774;
}
.cid-tDG2XdwRiU {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #006774;
}
.cid-tDG2XdwRiU .mbr-text {
  color: #ffffff;
}
.cid-tDG2XdwRiU .mbr-text p {
  background: #006774;
}
.cid-tAxsTANSal {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-tAxsTANSal .btn {
  margin: 0 0 .5rem 0;
}
.cid-tAxsTANSal H3 {
  text-align: left;
}
.cid-tAxsTAZviB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #0096a9;
}
.cid-tAxsTAZviB .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tAxsTAZviB .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tAxsTAZviB .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tAxsTAZviB .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tAxsTAZviB .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tAxsTAZviB .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tAxsTAZviB .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tAxsTAZviB .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tAxsTAZviB .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tAxsTAZviB .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tAxsTAZviB .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tAxsTAZviB .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tAxsTAZviB .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tAxsTAZviB .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tAxsTAZviB .media-container-row .mbr-text {
  color: #ffffff;
}
.cid-tD50J61czA .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-tD50J61czA .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tD50J61czA a {
  font-style: normal;
}
.cid-tD50J61czA .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tD50J61czA .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tD50J61czA .nav-item:focus,
.cid-tD50J61czA .nav-link:focus {
  outline: none;
}
.cid-tD50J61czA .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tD50J61czA .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tD50J61czA .menu-logo {
  margin-right: auto;
}
.cid-tD50J61czA .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tD50J61czA .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tD50J61czA .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tD50J61czA .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tD50J61czA .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tD50J61czA .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tD50J61czA .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tD50J61czA .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tD50J61czA .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tD50J61czA .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tD50J61czA .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tD50J61czA .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tD50J61czA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tD50J61czA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tD50J61czA .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tD50J61czA .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tD50J61czA .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tD50J61czA .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tD50J61czA .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tD50J61czA .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tD50J61czA .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tD50J61czA .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tD50J61czA .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tD50J61czA button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tD50J61czA button.navbar-toggler:focus {
  outline: none;
}
.cid-tD50J61czA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #829400;
}
.cid-tD50J61czA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tD50J61czA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tD50J61czA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tD50J61czA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tD50J61czA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tD50J61czA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tD50J61czA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tD50J61czA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tD50J61czA .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tD50J61czA .collapsed .btn {
  display: -webkit-flex;
}
.cid-tD50J61czA .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tD50J61czA .collapsed .navbar-collapse.collapsing,
.cid-tD50J61czA .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tD50J61czA .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tD50J61czA .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tD50J61czA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tD50J61czA .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tD50J61czA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tD50J61czA .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tD50J61czA .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tD50J61czA .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tD50J61czA .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tD50J61czA .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-tD50J61czA .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-tD50J61czA .collapsed button.navbar-toggler {
  display: block;
}
.cid-tD50J61czA .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tD50J61czA .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tD50J61czA .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tD50J61czA .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tD50J61czA .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tD50J61czA .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-tD50J61czA.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tD50J61czA img {
    height: 3.8rem !important;
  }
  .cid-tD50J61czA .btn {
    display: -webkit-flex;
  }
  .cid-tD50J61czA button.navbar-toggler {
    display: block;
  }
  .cid-tD50J61czA .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tD50J61czA .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tD50J61czA .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tD50J61czA .navbar-collapse.collapsing,
  .cid-tD50J61czA .navbar-collapse.show {
    display: block !important;
  }
  .cid-tD50J61czA .navbar-collapse.collapsing .navbar-nav,
  .cid-tD50J61czA .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tD50J61czA .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tD50J61czA .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tD50J61czA .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tD50J61czA .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tD50J61czA .navbar-collapse.collapsing .navbar-buttons,
  .cid-tD50J61czA .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tD50J61czA .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tD50J61czA .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tD50J61czA .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tD50J61czA .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tD50J61czA .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tD50J61czA .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tD50J61czA .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tD50J61czA .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tD50J61czA .nav-link:hover,
.cid-tD50J61czA .dropdown-item:hover {
  color: #009f99 !important;
}
.cid-tV2pNXIoIz {
  padding-top: 120px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/haus-stat-pflege-1713x771.jpg");
}
.cid-tV2pNXIoIz .media-container-column {
  align-items: center;
  -webkit-align-items: center;
}
.cid-tV2pNXIoIz .mbr-author-desc {
  display: block;
}
.cid-tV2pNXIoIz .mbr-testimonial {
  flex-basis: auto;
  margin-top: 5rem;
  -webkit-flex-basis: auto;
  margin-top: 3rem;
}
.cid-tV2pNXIoIz .mbr-testimonial .panel-item {
  background-color: #77a5af;
  background: linear-gradient(#77a5af, transparent);
}
.cid-tV2pNXIoIz .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2rem;
}
.cid-tV2pNXIoIz .mbr-testimonial .card-block .testimonial-photo {
  margin-top: -5rem;
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-tV2pNXIoIz .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tV2pNXIoIz .mbr-testimonial .card-block p {
  margin: 0;
}
.cid-tV2pNXIoIz .mbr-testimonial .card-footer {
  padding: 0 2rem 2rem 2rem;
  border-top: 0;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 260px) {
  .cid-tV2pNXIoIz .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-tV2pNXIoIz .mbr-text {
  color: #ffffff;
}
.cid-tV2mDca499 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #5e7113, #94a731);
}
.cid-tV2mDca499 .main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tV2mDca499 .main .mbr-section-btn {
  text-align: right;
}
.cid-tV2mDca499 .btn {
  margin: 0 0 .5rem 0;
}
.cid-tV2mDca499 H3 {
  text-align: left;
}
.cid-tV2mDca499 P {
  text-align: left;
}
.cid-tDEFxSGIwZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #bc8d1b, #aea512);
}
.cid-tDAqF23a5k {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #509aaa;
}
.cid-tDAqF23a5k .mbr-text {
  color: #ffffff;
}
.cid-tDAqF23a5k .mbr-text p {
  background: #509aaa;
}
.cid-tD50J7ofGN {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #509aaa;
}
.cid-tD50J7ofGN .mbr-text {
  color: #ffffff;
}
.cid-tD50J7ofGN .mbr-text p {
  background: #509aaa;
}
.cid-tD50J7Bmh0 {
  background: #88c1c4;
  padding-top: 105px;
  padding-bottom: 0px;
}
.cid-tD50J7Bmh0 .image-block {
  margin: auto;
}
.cid-tD50J7Bmh0 figcaption {
  position: relative;
}
.cid-tD50J7Bmh0 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tD50J7Bmh0 .image-block {
    width: 100% !important;
  }
}
.cid-tDAsGCax8L {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #449397;
}
.cid-tDAsGCax8L .mbr-text {
  color: #ffffff;
}
.cid-tDAsGCax8L .mbr-text p {
  background: #449397;
}
.cid-tDAsJhZybR {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #449397;
}
.cid-tDAsJhZybR .mbr-text {
  color: #ffffff;
}
.cid-tDAsJhZybR .mbr-text p {
  background: #449397;
}
.cid-tD50J74lZQ {
  background: #63b9bf;
  padding-top: 90px;
  padding-bottom: 0px;
}
.cid-tD50J74lZQ .image-block {
  margin: auto;
}
.cid-tD50J74lZQ figcaption {
  position: relative;
}
.cid-tD50J74lZQ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tD50J74lZQ .image-block {
    width: 100% !important;
  }
}
.cid-tDAu8DMmoe {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #128d9a;
}
.cid-tDAu8DMmoe .mbr-text {
  color: #ffffff;
}
.cid-tDAu8DMmoe .mbr-text p {
  background: #128d9a;
}
.cid-tDAu9y3yJK {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #128d9a;
}
.cid-tDAu9y3yJK .mbr-text {
  color: #ffffff;
}
.cid-tDAu9y3yJK .mbr-text p {
  background: #128d9a;
}
.cid-tDNvBiDKbA {
  background: #7ac591;
  padding-top: 90px;
  padding-bottom: 0px;
}
.cid-tDNvBiDKbA .image-block {
  margin: auto;
}
.cid-tDNvBiDKbA figcaption {
  position: relative;
}
.cid-tDNvBiDKbA figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tDNvBiDKbA .image-block {
    width: 100% !important;
  }
}
.cid-tDAuM5oBJf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #399d6e;
}
.cid-tDAuM5oBJf .mbr-text {
  color: #ffffff;
}
.cid-tDAuM5oBJf .mbr-text p {
  background: #399d6e;
}
.cid-tDAwWxeHyQ {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #399d6e;
}
.cid-tDAwWxeHyQ .mbr-text {
  color: #ffffff;
}
.cid-tDAwWxeHyQ .mbr-text p {
  background: #399d6e;
}
.cid-tDB3DBgmss {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tDB3DBgmss .mbr-text {
  color: #367e8f;
}
.cid-tDB3DBgmss .mbr-text p {
  background: #ffffff;
}
.cid-tD50J8zIAA {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tD50J8zIAA .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tD50J8zIAA .counter-container ul li {
  margin-bottom: 2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tD50J8zIAA .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: currentColor;
  background-color: #cdeedb;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-tD50J8zIAA .mbr-section-title {
  text-align: left;
  color: #449397;
}
.cid-tD50J8zIAA .mbr-text {
  color: #367e8f;
}
.cid-tDB2auhwYQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tDB2auhwYQ .mbr-text {
  color: #367e8f;
}
.cid-tDB2auhwYQ .mbr-text p {
  background: #ffffff;
}
.cid-tD50J9DCcE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #2e87a4;
}
.cid-tD50J9DCcE .mbr-text {
  color: #ffffff;
}
.cid-tD50J9DCcE .mbr-text p {
  background: #2e87a4;
}
.cid-tD50J9PJrA {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #2e87a4;
}
.cid-tD50J9PJrA .mbr-text {
  color: #ffffff;
}
.cid-tD50J9PJrA .mbr-text p {
  background: #2e87a4;
}
.cid-tD50J9PJrA .mbr-text P {
  text-align: left;
}
.cid-tD50Ja3WeS {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #006774;
}
.cid-tD50Ja3WeS .mbr-text {
  color: #ffffff;
}
.cid-tD50Ja3WeS .mbr-text p {
  background: #006774;
}
.cid-tD50JagMeS {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #006774;
}
.cid-tD50JagMeS .mbr-text {
  color: #ffffff;
}
.cid-tD50JagMeS .mbr-text p {
  background: #006774;
}
.cid-tD50JatCU1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #25aab2);
}
.cid-tD50JatCU1 .btn {
  margin: 0 0 .5rem 0;
}
.cid-tD50JatCU1 H3 {
  text-align: left;
}
.cid-tD50JaILJn {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #0096a9;
}
.cid-tD50JaILJn .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tD50JaILJn .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tD50JaILJn .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tD50JaILJn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tD50JaILJn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tD50JaILJn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tD50JaILJn .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tD50JaILJn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tD50JaILJn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tD50JaILJn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tD50JaILJn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tD50JaILJn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tD50JaILJn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tD50JaILJn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tD50JaILJn .media-container-row .mbr-text {
  color: #ffffff;
}
