body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Roboto Slab', serif;
  font-size: 2rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Bree Serif', serif;
  font-size: 3rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #004d00 !important;
}
.bg-success {
  background-color: #f7ed4a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #004d00 !important;
  border-color: #004d00 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #e27d40 !important;
  border-color: #e27d40 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #b9571c !important;
  border-color: #b9571c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #b9571c !important;
  border-color: #b9571c !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
  color: #3f3c03 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #3f3c03 !important;
  background-color: #eadd0a !important;
  border-color: #eadd0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #004d00;
  border-color: #004d00;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #004d00 !important;
  border-color: #004d00 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #a34d19;
  color: #a34d19;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #e27d40;
  border-color: #e27d40;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #e27d40 !important;
  border-color: #e27d40 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #d2c609;
  color: #d2c609;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #3f3c03;
  background-color: #f7ed4a;
  border-color: #f7ed4a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #3f3c03 !important;
  background-color: #f7ed4a !important;
  border-color: #f7ed4a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !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: #004d00 !important;
}
.text-secondary {
  color: #e27d40 !important;
}
.text-success {
  color: #f7ed4a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #a34d19 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d2c609 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !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: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.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: #004d00;
  border-color: #004d00;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #004d00;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #33ff33;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 1rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #004d00;
}
/* 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: #004d00;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #004d00;
}
.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: #004d00;
  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: #004d00;
  border-bottom-color: #004d00;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #004d00 !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: #e27d40 !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='%23004d00' %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-qCtSe984mR .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qCtSe984mR .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qCtSe984mR a {
  font-style: normal;
}
.cid-qCtSe984mR .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qCtSe984mR .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCtSe984mR .nav-item:focus,
.cid-qCtSe984mR .nav-link:focus {
  outline: none;
}
.cid-qCtSe984mR .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCtSe984mR .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCtSe984mR .menu-logo {
  margin-right: auto;
}
.cid-qCtSe984mR .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCtSe984mR .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCtSe984mR .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCtSe984mR .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCtSe984mR .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCtSe984mR .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCtSe984mR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCtSe984mR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCtSe984mR .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCtSe984mR .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCtSe984mR .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-qCtSe984mR .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCtSe984mR button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCtSe984mR button.navbar-toggler:focus {
  outline: none;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCtSe984mR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCtSe984mR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCtSe984mR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCtSe984mR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCtSe984mR .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCtSe984mR .collapsed .btn {
  display: flex;
}
.cid-qCtSe984mR .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing,
.cid-qCtSe984mR .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCtSe984mR .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCtSe984mR .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCtSe984mR .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCtSe984mR .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qCtSe984mR .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCtSe984mR .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCtSe984mR .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qCtSe984mR .navbar-expand {
    flex-direction: column;
  }
  .cid-qCtSe984mR img {
    height: 3.8rem !important;
  }
  .cid-qCtSe984mR .btn {
    display: flex;
  }
  .cid-qCtSe984mR button.navbar-toggler {
    display: block;
  }
  .cid-qCtSe984mR .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCtSe984mR .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCtSe984mR .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing,
  .cid-qCtSe984mR .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-nav,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCtSe984mR .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qCtSe984mR .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCtSe984mR .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCtSe984mR .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-qCtSe984mR .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCtSe984mR .navbar-collapse {
  flex-basis: auto;
}
.cid-qCtSe984mR .nav-link:hover,
.cid-qCtSe984mR .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qCBEuXG3SD {
  background-image: url("../../../assets/images/wag-web-home-small-2-1168x862.jpg");
}
.cid-qCBEuXG3SD H1 {
  text-align: left;
  color: #91dd9f;
}
.cid-qCBEuXG3SD H3 {
  text-align: left;
  color: #e27d40;
}
.cid-qCBEuXG3SD .mbr-text,
.cid-qCBEuXG3SD .mbr-section-btn {
  text-align: left;
  color: #f9f295;
}
.cid-qCBEuXG3SD I {
  color: #ffffff;
}
.cid-qCBEuXG3SD SPAN {
  color: #e27d40;
}
.cid-qCBEuXG3SD B {
  color: #e27d40;
}
.cid-qCybG8dYFs {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/0-aronbuste-95x71.png");
}
.cid-qCybG8dYFs .mbr-text,
.cid-qCybG8dYFs .mbr-section-btn {
  color: #efefef;
}
.cid-qCxwiiXdY6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qCxwiiXdY6 .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qCxwiiXdY6 H2 {
  color: #ffffff;
}
.cid-sDPiDWLIjV {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sDPiDWLIjV .mbr-text,
.cid-sDPiDWLIjV blockquote {
  color: #767676;
}
.cid-sDPj5dsDde {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 60px;
}
.cid-sDPj5dsDde .image-block {
  margin: auto;
}
.cid-sDPj5dsDde figcaption {
  position: relative;
}
.cid-sDPj5dsDde figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-sDPj5dsDde .image-block {
    width: 100% !important;
  }
}
.cid-rzOaPPpe8A {
  padding-top: 90px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/mbr-1920x1285.jpeg");
}
.cid-rzOaPPpe8A .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-rzOaPPpe8A .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #ffffff;
  margin-left: 2rem;
}
.cid-rzOaPPpe8A .timeline-text-content p {
  margin-bottom: 0;
}
.cid-rzOaPPpe8A .time-line-date-content {
  margin-right: 2rem;
}
.cid-rzOaPPpe8A .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #ffffff;
  float: right;
}
.cid-rzOaPPpe8A .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-rzOaPPpe8A .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-rzOaPPpe8A .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-rzOaPPpe8A .mbr-timeline-date,
.cid-rzOaPPpe8A .timeline-text-content {
  transition: all .4s;
}
.cid-rzOaPPpe8A .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-rzOaPPpe8A .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-rzOaPPpe8A .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-rzOaPPpe8A .reverse .time-line-date-content p {
  float: left;
}
.cid-rzOaPPpe8A .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #ffffff;
  top: 20px;
  margin-left: -10px;
}
.cid-rzOaPPpe8A .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #ffffff;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-rzOaPPpe8A .iconBackground {
    left: 0 !important;
  }
  .cid-rzOaPPpe8A .separline:before {
    left: 0!important;
  }
  .cid-rzOaPPpe8A .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-rzOaPPpe8A .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-rzOaPPpe8A .time-line-date-content p {
    float: left !important;
  }
  .cid-rzOaPPpe8A .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-rzOaPPpe8A .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-rzOaPPpe8A .reverseTimeline {
  display: flex;
  flex-direction: column-reverse;
}
.cid-rzOaPPpe8A .mbr-timeline-date {
  color: #767676;
}
.cid-rzOaPPpe8A .mbr-section-title {
  color: #004d00;
}
.cid-rzOaPPpe8A .mbr-timeline-title {
  color: #767676;
}
.cid-rzOaPPpe8A .mbr-timeline-text {
  color: #767676;
  text-align: left;
}
.cid-rAZK08gX9r {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #004d00;
}
.cid-rAZK08gX9r .mbr-section-subtitle {
  color: #767676;
}
.cid-rAZK08gX9r H2 {
  color: #ffffff;
}
.cid-rzYr1hE9Ur {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #cccccc;
}
.cid-rzYr1hE9Ur h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-rzYr1hE9Ur p {
  color: #767676;
  text-align: left;
}
.cid-rzYr1hE9Ur .card-box {
  padding-top: 2rem;
}
.cid-rzYr1hE9Ur .card-wrapper {
  height: 100%;
}
.cid-qCxy8noGqR {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qCxy8noGqR .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qCxy8noGqR H2 {
  color: #ffffff;
}
.cid-qCJExiUJn7 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1620x1080.jpg");
}
.cid-qCJExiUJn7 .mbr-section-subtitle {
  color: #767676;
}
.cid-qCJExiUJn7 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-qCJExiUJn7 .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qCJExiUJn7 .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-qCJExiUJn7 .mbr-author-name {
  color: #767676;
}
.cid-qCJExiUJn7 .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-qCJExiUJn7 .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-qCJExiUJn7 .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-qCJExiUJn7 .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-qCJExiUJn7 .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-qCJExiUJn7 .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-qCxyRvknFa {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #004d00;
}
.cid-qCxyRvknFa .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qCxyRvknFa H2 {
  color: #ffffff;
}
.cid-qCxyMq2pay {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qCxyMq2pay .title {
  margin-bottom: 2rem;
}
.cid-qCxyMq2pay .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qCxyMq2pay a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qCxyMq2pay a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qCxyMq2pay .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qCxyMq2pay .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qCxyMq2pay LABEL {
  color: #ffffff;
}
.cid-qCxzwGC6pi {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qCxzwGC6pi .content {
    text-align: center;
  }
  .cid-qCxzwGC6pi .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qCxzwGC6pi .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qCxzwGC6pi .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qCxzwGC6pi .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qCxzwGC6pi .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qCxzwGC6pi .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qCxzwGC6pi .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qCxzwGC6pi .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qCxzwGC6pi .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qCxzwGC6pi .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qCxzwGC6pi .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qCxzwGC6pi .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qCxzwGC6pi P {
  color: #7f1933;
}
.cid-qCxzwGC6pi H5 {
  color: #7f1933;
}
.cid-qCxzwGC6pi .copyright > p {
  text-align: right;
}
.cid-qCww8KWdQP .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qCww8KWdQP .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qCww8KWdQP a {
  font-style: normal;
}
.cid-qCww8KWdQP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qCww8KWdQP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCww8KWdQP .nav-item:focus,
.cid-qCww8KWdQP .nav-link:focus {
  outline: none;
}
.cid-qCww8KWdQP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCww8KWdQP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCww8KWdQP .menu-logo {
  margin-right: auto;
}
.cid-qCww8KWdQP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCww8KWdQP .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qCww8KWdQP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCww8KWdQP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCww8KWdQP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCww8KWdQP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCww8KWdQP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCww8KWdQP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCww8KWdQP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCww8KWdQP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCww8KWdQP .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCww8KWdQP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCww8KWdQP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCww8KWdQP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCww8KWdQP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCww8KWdQP .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-qCww8KWdQP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCww8KWdQP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCww8KWdQP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCww8KWdQP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCww8KWdQP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCww8KWdQP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCww8KWdQP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCww8KWdQP button.navbar-toggler:focus {
  outline: none;
}
.cid-qCww8KWdQP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCww8KWdQP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCww8KWdQP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCww8KWdQP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCww8KWdQP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCww8KWdQP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCww8KWdQP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCww8KWdQP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCww8KWdQP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCww8KWdQP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCww8KWdQP .collapsed .btn {
  display: flex;
}
.cid-qCww8KWdQP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCww8KWdQP .collapsed .navbar-collapse.collapsing,
.cid-qCww8KWdQP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCww8KWdQP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCww8KWdQP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCww8KWdQP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCww8KWdQP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCww8KWdQP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qCww8KWdQP .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qCww8KWdQP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCww8KWdQP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCww8KWdQP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCww8KWdQP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCww8KWdQP .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCww8KWdQP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCww8KWdQP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCww8KWdQP .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qCww8KWdQP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCww8KWdQP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCww8KWdQP .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qCww8KWdQP .navbar-expand {
    flex-direction: column;
  }
  .cid-qCww8KWdQP img {
    height: 3.8rem !important;
  }
  .cid-qCww8KWdQP .btn {
    display: flex;
  }
  .cid-qCww8KWdQP button.navbar-toggler {
    display: block;
  }
  .cid-qCww8KWdQP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCww8KWdQP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCww8KWdQP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCww8KWdQP .navbar-collapse.collapsing,
  .cid-qCww8KWdQP .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCww8KWdQP .navbar-collapse.collapsing .navbar-nav,
  .cid-qCww8KWdQP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCww8KWdQP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCww8KWdQP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCww8KWdQP .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qCww8KWdQP .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCww8KWdQP .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCww8KWdQP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCww8KWdQP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCww8KWdQP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCww8KWdQP .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qCww8KWdQP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCww8KWdQP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCww8KWdQP .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-qCww8KWdQP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCww8KWdQP .navbar-collapse {
  flex-basis: auto;
}
.cid-qCww8KWdQP .nav-link:hover,
.cid-qCww8KWdQP .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qF1Bgi4Glx {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qF1Bgi4Glx .line {
  background-color: #e27d40;
  color: #e27d40;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qF1Bgi4Glx .section-text {
  padding: 2rem 0;
  color: #e27d40;
}
.cid-qF1Bgi4Glx .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qF1Bgi4Glx .inner-container {
    width: 100% !important;
  }
}
.cid-qGBHKW2zz2 {
  background: #ffffff;
  background: linear-gradient(0deg, #149dcc, #ffffff);
}
.cid-qGBHKW2zz2 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-qGBHKW2zz2 figcaption {
  position: relative;
}
.cid-qGBHKW2zz2 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-qGBHKW2zz2 .image-block {
    width: 100% !important;
  }
}
.cid-qGBHKW2zz2 DIV {
  text-align: center;
}
.cid-qF1njJzPdm {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qF1nGESqzQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qF1nGESqzQ .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qF1nGESqzQ .section-text {
  padding: 2rem 0;
  color: #004d00;
}
.cid-qF1nGESqzQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qF1nGESqzQ .inner-container {
    width: 100% !important;
  }
}
.cid-qCxUOYlCSD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qCxUOYlCSD .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qCxUOYlCSD H2 {
  color: #ffffff;
}
.cid-qGqsD7CjMk {
  padding-top: 45px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-3-720x1080.jpg");
}
.cid-qGqsD7CjMk .mbr-section-subtitle {
  color: #767676;
}
.cid-qGqsD7CjMk .container-table {
  margin: 0 auto;
}
.cid-qGqsD7CjMk .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qGqsD7CjMk .dataTables_wrapper {
  display: block;
}
.cid-qGqsD7CjMk .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-qGqsD7CjMk .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-qGqsD7CjMk table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #7f1933;
  margin-bottom: 0;
}
.cid-qGqsD7CjMk table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-qGqsD7CjMk table th:hover {
  background: #7f1933;
  color: #ffffff;
}
.cid-qGqsD7CjMk table td {
  border-top: 1px solid #7f1933;
}
.cid-qGqsD7CjMk .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-qGqsD7CjMk .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-qGqsD7CjMk .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-qGqsD7CjMk .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-qGqsD7CjMk .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-qGqsD7CjMk .dataTables_filter {
    text-align: center;
  }
  .cid-qGqsD7CjMk .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-qGqsD7CjMk B {
  color: #004d00;
}
.cid-qGqsD7CjMk .body-item {
  color: #004d00;
}
.cid-qLqcrOg9Un {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qLqcrOg9Un .content {
    text-align: center;
  }
  .cid-qLqcrOg9Un .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qLqcrOg9Un .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qLqcrOg9Un .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qLqcrOg9Un .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qLqcrOg9Un .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qLqcrOg9Un .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qLqcrOg9Un .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qLqcrOg9Un .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qLqcrOg9Un .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qLqcrOg9Un .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qLqcrOg9Un .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qLqcrOg9Un .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qLqcrOg9Un P {
  color: #7f1933;
}
.cid-qLqcrOg9Un H5 {
  color: #7f1933;
}
.cid-qLqcrOg9Un .copyright > p {
  text-align: right;
}
.cid-qF1EK73E0Q {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qF1EK73E0Q .line {
  background-color: #e27d40;
  color: #e27d40;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qF1EK73E0Q .section-text {
  padding: 2rem 0;
  color: #e27d40;
}
.cid-qF1EK73E0Q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qF1EK73E0Q .inner-container {
    width: 100% !important;
  }
}
.cid-qCBDl4yIMo {
  background-image: url("../../../assets/images/0-aronbuste-95x71.png");
}
.cid-qCBDl4yIMo H1 {
  text-align: left;
}
.cid-qCBDl4yIMo H3 {
  text-align: left;
}
.cid-qCwmVjiV8D {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1618x1080.jpg");
}
.cid-qCwmVjiV8D .card-box {
  padding: 0 2rem;
}
.cid-qCwmVjiV8D .mbr-section-btn {
  padding-top: 1rem;
}
.cid-qCwmVjiV8D .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-qCwmVjiV8D h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-qCwmVjiV8D p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-qCwmVjiV8D .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-qCwmVjiV8D .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-qCwmVjiV8D .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-qCwmVjiV8D .card-title {
  text-align: center;
}
.cid-qCwmVjiV8D .card-title B {
  color: #004d00;
}
.cid-qCww2qw5l5 .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qCww2qw5l5 .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qCww2qw5l5 a {
  font-style: normal;
}
.cid-qCww2qw5l5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qCww2qw5l5 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCww2qw5l5 .nav-item:focus,
.cid-qCww2qw5l5 .nav-link:focus {
  outline: none;
}
.cid-qCww2qw5l5 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCww2qw5l5 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCww2qw5l5 .menu-logo {
  margin-right: auto;
}
.cid-qCww2qw5l5 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCww2qw5l5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qCww2qw5l5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCww2qw5l5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCww2qw5l5 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCww2qw5l5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCww2qw5l5 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCww2qw5l5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCww2qw5l5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCww2qw5l5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCww2qw5l5 .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCww2qw5l5 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCww2qw5l5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCww2qw5l5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCww2qw5l5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCww2qw5l5 .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-qCww2qw5l5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCww2qw5l5 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCww2qw5l5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCww2qw5l5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCww2qw5l5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCww2qw5l5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCww2qw5l5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCww2qw5l5 button.navbar-toggler:focus {
  outline: none;
}
.cid-qCww2qw5l5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCww2qw5l5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCww2qw5l5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCww2qw5l5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCww2qw5l5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCww2qw5l5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCww2qw5l5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCww2qw5l5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCww2qw5l5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCww2qw5l5 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCww2qw5l5 .collapsed .btn {
  display: flex;
}
.cid-qCww2qw5l5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCww2qw5l5 .collapsed .navbar-collapse.collapsing,
.cid-qCww2qw5l5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCww2qw5l5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCww2qw5l5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCww2qw5l5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCww2qw5l5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCww2qw5l5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qCww2qw5l5 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qCww2qw5l5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCww2qw5l5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCww2qw5l5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCww2qw5l5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCww2qw5l5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCww2qw5l5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCww2qw5l5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCww2qw5l5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qCww2qw5l5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCww2qw5l5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCww2qw5l5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qCww2qw5l5 .navbar-expand {
    flex-direction: column;
  }
  .cid-qCww2qw5l5 img {
    height: 3.8rem !important;
  }
  .cid-qCww2qw5l5 .btn {
    display: flex;
  }
  .cid-qCww2qw5l5 button.navbar-toggler {
    display: block;
  }
  .cid-qCww2qw5l5 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCww2qw5l5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCww2qw5l5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCww2qw5l5 .navbar-collapse.collapsing,
  .cid-qCww2qw5l5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCww2qw5l5 .navbar-collapse.collapsing .navbar-nav,
  .cid-qCww2qw5l5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCww2qw5l5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCww2qw5l5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCww2qw5l5 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qCww2qw5l5 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCww2qw5l5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCww2qw5l5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCww2qw5l5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCww2qw5l5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCww2qw5l5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qCww2qw5l5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCww2qw5l5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCww2qw5l5 .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-qCww2qw5l5 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCww2qw5l5 .navbar-collapse {
  flex-basis: auto;
}
.cid-qCww2qw5l5 .nav-link:hover,
.cid-qCww2qw5l5 .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qCyxgKuA8c {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qCyxgKuA8c .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qCyxgKuA8c H2 {
  color: #ffffff;
}
.cid-qCyA7jho6z {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qCyA7jho6z .mbr-text,
.cid-qCyA7jho6z blockquote {
  color: #767676;
}
.cid-qCyA7jho6z .mbr-text {
  color: #232323;
}
.cid-qCyxwHgWNW {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qCyxwHgWNW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qCyxwHgWNW H2 {
  color: #ffffff;
}
.cid-qCyAdikIrx {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qCyAdikIrx .mbr-text,
.cid-qCyAdikIrx blockquote {
  color: #767676;
}
.cid-qCyAdikIrx .mbr-text {
  color: #232323;
}
.cid-qCyxAunNJT {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qCyxAunNJT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qCyxAunNJT H2 {
  color: #ffffff;
}
.cid-qF2Ugxwyft {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qF2Ugxwyft .mbr-section-subtitle {
  color: #767676;
}
.cid-qF2Ugxwyft .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-qF2Ugxwyft .mbr-text {
  color: #767676;
}
.cid-qF2Ugxwyft .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-qF2Ugxwyft .mbr-author-name {
  color: #004d00;
}
.cid-qF2Ugxwyft .mbr-testimonial .panel-item {
  background-color: #c1c1c1;
}
.cid-qF2Ugxwyft .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-qF2Ugxwyft .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-qF2Ugxwyft .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-qF2Ugxwyft .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-qF2Ugxwyft .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-qCyBdCGbTu {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-qCyBdCGbTu .mbr-text,
.cid-qCyBdCGbTu blockquote {
  color: #767676;
}
.cid-qCyBdCGbTu .mbr-text {
  color: #232323;
}
.cid-qCyBdCGbTu .mbr-text P {
  color: #004d00;
}
.cid-qF2YlqMJYY {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qF2YlqMJYY .mbr-text,
.cid-qF2YlqMJYY blockquote {
  color: #767676;
}
.cid-qF2YlqMJYY .mbr-text {
  color: #232323;
}
.cid-qF2YlqMJYY .mbr-text P {
  color: #004d00;
}
.cid-qCyzUt6IYQ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qCyzUt6IYQ .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qCyzUt6IYQ H2 {
  color: #ffffff;
}
.cid-rHjeHAaPpe {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-rHjeHAaPpe .mbr-text,
.cid-rHjeHAaPpe blockquote {
  color: #767676;
}
.cid-qLqcjsH21h {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qLqcjsH21h .content {
    text-align: center;
  }
  .cid-qLqcjsH21h .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qLqcjsH21h .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qLqcjsH21h .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qLqcjsH21h .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qLqcjsH21h .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qLqcjsH21h .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qLqcjsH21h .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qLqcjsH21h .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qLqcjsH21h .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qLqcjsH21h .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qLqcjsH21h .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qLqcjsH21h .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qLqcjsH21h P {
  color: #7f1933;
}
.cid-qLqcjsH21h H5 {
  color: #7f1933;
}
.cid-qLqcjsH21h .copyright > p {
  text-align: right;
}
.cid-qF1AWCNeFq {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qF1AWCNeFq .line {
  background-color: #e27d40;
  color: #e27d40;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qF1AWCNeFq .section-text {
  padding: 2rem 0;
  color: #e27d40;
}
.cid-qF1AWCNeFq .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qF1AWCNeFq .inner-container {
    width: 100% !important;
  }
}
.cid-qCBE75tDl5 {
  background-image: url("../../../assets/images/0000aron-182x266.jpeg");
}
.cid-qCBE75tDl5 H1 {
  text-align: left;
}
.cid-snvzKp95zg {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/0-wilhelm-aron1-2-108x81.jpg");
}
.cid-snvzKp95zg .card-box {
  padding: 0 2rem;
}
.cid-snvzKp95zg .mbr-section-btn {
  padding-top: 1rem;
}
.cid-snvzKp95zg .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-snvzKp95zg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-snvzKp95zg p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-snvzKp95zg .mbr-text {
  color: #767676;
}
.cid-snvzKp95zg .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-snvzKp95zg .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-snvzKp95zg .card-title {
  color: #004d00;
}
.cid-qCBznmq8vw {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qCBznmq8vw .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qCBznmq8vw H2 {
  color: #ffffff;
}
.cid-qEZWFPWqDu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-qEZWFPWqDu h3 {
  font-weight: 300;
}
.cid-qEZWFPWqDu .card-img {
  width: initial;
}
.cid-qEZWFPWqDu .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-qEZWFPWqDu .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  height: 100%;
}
.cid-qEZWFPWqDu .media {
  margin: initial;
  align-items: center;
}
.cid-qEZWFPWqDu .mbr-section-subtitle {
  color: #767676;
}
.cid-qEZWFPWqDu .mbr-text {
  color: #767676;
}
.cid-qEZWFPWqDu .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qEZQ6peKuR {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-qEZQ6peKuR .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qEZQ6peKuR .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qEZQ6peKuR .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qEZQ6peKuR .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qEZQ6peKuR .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qEZQ6peKuR .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qEZQ6peKuR .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qEZQ6peKuR .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qEZQ6peKuR .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qCuj71PSFO {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qCuj71PSFO .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qCww5xa5JA .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qCww5xa5JA .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qCww5xa5JA a {
  font-style: normal;
}
.cid-qCww5xa5JA .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qCww5xa5JA .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCww5xa5JA .nav-item:focus,
.cid-qCww5xa5JA .nav-link:focus {
  outline: none;
}
.cid-qCww5xa5JA .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCww5xa5JA .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCww5xa5JA .menu-logo {
  margin-right: auto;
}
.cid-qCww5xa5JA .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCww5xa5JA .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qCww5xa5JA .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCww5xa5JA .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCww5xa5JA .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCww5xa5JA .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCww5xa5JA .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCww5xa5JA .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCww5xa5JA .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCww5xa5JA .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCww5xa5JA .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCww5xa5JA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCww5xa5JA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCww5xa5JA .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCww5xa5JA .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCww5xa5JA .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-qCww5xa5JA .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCww5xa5JA .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCww5xa5JA .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCww5xa5JA .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCww5xa5JA .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCww5xa5JA .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCww5xa5JA button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCww5xa5JA button.navbar-toggler:focus {
  outline: none;
}
.cid-qCww5xa5JA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCww5xa5JA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCww5xa5JA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCww5xa5JA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCww5xa5JA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCww5xa5JA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCww5xa5JA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCww5xa5JA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCww5xa5JA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCww5xa5JA .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCww5xa5JA .collapsed .btn {
  display: flex;
}
.cid-qCww5xa5JA .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCww5xa5JA .collapsed .navbar-collapse.collapsing,
.cid-qCww5xa5JA .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCww5xa5JA .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCww5xa5JA .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCww5xa5JA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCww5xa5JA .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCww5xa5JA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qCww5xa5JA .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qCww5xa5JA .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCww5xa5JA .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCww5xa5JA .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCww5xa5JA .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCww5xa5JA .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCww5xa5JA .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCww5xa5JA .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCww5xa5JA .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qCww5xa5JA .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCww5xa5JA .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCww5xa5JA .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qCww5xa5JA .navbar-expand {
    flex-direction: column;
  }
  .cid-qCww5xa5JA img {
    height: 3.8rem !important;
  }
  .cid-qCww5xa5JA .btn {
    display: flex;
  }
  .cid-qCww5xa5JA button.navbar-toggler {
    display: block;
  }
  .cid-qCww5xa5JA .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCww5xa5JA .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCww5xa5JA .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCww5xa5JA .navbar-collapse.collapsing,
  .cid-qCww5xa5JA .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCww5xa5JA .navbar-collapse.collapsing .navbar-nav,
  .cid-qCww5xa5JA .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCww5xa5JA .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCww5xa5JA .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCww5xa5JA .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qCww5xa5JA .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCww5xa5JA .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCww5xa5JA .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCww5xa5JA .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCww5xa5JA .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCww5xa5JA .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qCww5xa5JA .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCww5xa5JA .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCww5xa5JA .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-qCww5xa5JA .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCww5xa5JA .navbar-collapse {
  flex-basis: auto;
}
.cid-qCww5xa5JA .nav-link:hover,
.cid-qCww5xa5JA .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qCxO8ht8Aa {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qCxO8ht8Aa .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qCxO8ht8Aa H2 {
  color: #ffffff;
}
.cid-qCxQJ3ow0t {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/0-0woelfelbuste-373x280.png");
}
.cid-qCxQJ3ow0t .card-img {
  background-color: #fff;
}
.cid-qCxQJ3ow0t .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-qCxQJ3ow0t h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCxQJ3ow0t p {
  text-align: left;
}
.cid-qCxQJ3ow0t .mbr-text {
  color: #767676;
}
.cid-qCxQJ3ow0t .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-qCxQJ3ow0t .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-qCxQJ3ow0t .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qCxQJ3ow0t .mbr-text I {
  color: #149dcc;
}
.cid-qCxQJ3ow0t .mbr-text B {
  color: #232323;
}
.cid-qCxQPIEV53 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qCxQPIEV53 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qCxQPIEV53 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qCxQPIEV53 .mbr-text {
  color: #767676;
}
.cid-qCxQPIEV53 .mbr-text B {
  color: #004d00;
}
.cid-qCxT8nH9EZ {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qCxT8nH9EZ .mbr-text,
.cid-qCxT8nH9EZ blockquote {
  color: #767676;
}
.cid-qCxT8nH9EZ .mbr-text P {
  color: #5b686b;
}
.cid-qCxTQOUa4o {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qCxTQOUa4o .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qCxTQOUa4o .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qCxTQOUa4o .mbr-text {
  color: #767676;
}
.cid-qCxTQOUa4o .mbr-text B {
  color: #004d00;
}
.cid-qGrrtyC1JH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qGrrtyC1JH .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qGrrtyC1JH .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qGrrtyC1JH .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qLqcnoLR7J {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qLqcnoLR7J .content {
    text-align: center;
  }
  .cid-qLqcnoLR7J .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qLqcnoLR7J .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qLqcnoLR7J .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qLqcnoLR7J .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qLqcnoLR7J .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qLqcnoLR7J .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qLqcnoLR7J .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qLqcnoLR7J .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qLqcnoLR7J .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qLqcnoLR7J .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qLqcnoLR7J .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qLqcnoLR7J .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qLqcnoLR7J P {
  color: #7f1933;
}
.cid-qLqcnoLR7J H5 {
  color: #7f1933;
}
.cid-qLqcnoLR7J .copyright > p {
  text-align: right;
}
.cid-snvxKsp6B5 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-snvxKsp6B5 h2 {
  text-align: left;
}
.cid-snvxKsp6B5 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-snvxKsp6B5 p {
  color: #767676;
  text-align: left;
}
.cid-snvxKsp6B5 .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-snvxKsp6B5 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-snvxKsp6B5 .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-snvxKsp6B5 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-snvxKsp6B5 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-snvxKsp6B5 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-snvxKsp6B5 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-snvxKsp6B5 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-snvxKsp6B5 .card-img span {
    font-size: 40px !important;
  }
}
.cid-qF1A7eNq1Q {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qF1A7eNq1Q .line {
  background-color: #e27d40;
  color: #e27d40;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qF1A7eNq1Q .section-text {
  padding: 2rem 0;
  color: #e27d40;
}
.cid-qF1A7eNq1Q .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qF1A7eNq1Q .inner-container {
    width: 100% !important;
  }
}
.cid-qCBCxDAhQh {
  background-image: url("../../../assets/images/0-stolperstein-5-310x368.png");
}
.cid-qCBCxDAhQh H1 {
  text-align: left;
  color: #b2ccd2;
}
.cid-qCBCxDAhQh SPAN {
  color: #ffffff;
}
.cid-qCyfpbXzEH {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qCyfpbXzEH .mbr-section-subtitle {
  color: #767676;
}
.cid-qF0ogMeYhO {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #f9f9f9;
}
.cid-qF0ogMeYhO h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qF0ogMeYhO p {
  color: #767676;
  text-align: left;
}
.cid-qF0ogMeYhO .card-box {
  padding-top: 2rem;
}
.cid-qF0ogMeYhO .card-wrapper {
  height: 100%;
}
.cid-qF0ogMeYhO .card-title B {
  color: #004d00;
}
.cid-qF0ogMeYhO .card-title {
  color: #004d00;
}
.cid-qCwvWt6nAL .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qCwvWt6nAL .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qCwvWt6nAL a {
  font-style: normal;
}
.cid-qCwvWt6nAL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qCwvWt6nAL .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCwvWt6nAL .nav-item:focus,
.cid-qCwvWt6nAL .nav-link:focus {
  outline: none;
}
.cid-qCwvWt6nAL .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCwvWt6nAL .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCwvWt6nAL .menu-logo {
  margin-right: auto;
}
.cid-qCwvWt6nAL .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCwvWt6nAL .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qCwvWt6nAL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCwvWt6nAL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCwvWt6nAL .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCwvWt6nAL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCwvWt6nAL .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCwvWt6nAL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCwvWt6nAL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCwvWt6nAL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCwvWt6nAL .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCwvWt6nAL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCwvWt6nAL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCwvWt6nAL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCwvWt6nAL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCwvWt6nAL .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-qCwvWt6nAL .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCwvWt6nAL .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCwvWt6nAL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCwvWt6nAL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCwvWt6nAL .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCwvWt6nAL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCwvWt6nAL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCwvWt6nAL button.navbar-toggler:focus {
  outline: none;
}
.cid-qCwvWt6nAL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCwvWt6nAL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCwvWt6nAL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCwvWt6nAL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCwvWt6nAL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCwvWt6nAL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCwvWt6nAL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCwvWt6nAL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCwvWt6nAL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCwvWt6nAL .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCwvWt6nAL .collapsed .btn {
  display: flex;
}
.cid-qCwvWt6nAL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCwvWt6nAL .collapsed .navbar-collapse.collapsing,
.cid-qCwvWt6nAL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCwvWt6nAL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCwvWt6nAL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCwvWt6nAL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCwvWt6nAL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCwvWt6nAL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qCwvWt6nAL .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qCwvWt6nAL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCwvWt6nAL .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCwvWt6nAL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCwvWt6nAL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCwvWt6nAL .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCwvWt6nAL .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCwvWt6nAL .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCwvWt6nAL .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qCwvWt6nAL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCwvWt6nAL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCwvWt6nAL .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qCwvWt6nAL .navbar-expand {
    flex-direction: column;
  }
  .cid-qCwvWt6nAL img {
    height: 3.8rem !important;
  }
  .cid-qCwvWt6nAL .btn {
    display: flex;
  }
  .cid-qCwvWt6nAL button.navbar-toggler {
    display: block;
  }
  .cid-qCwvWt6nAL .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCwvWt6nAL .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCwvWt6nAL .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCwvWt6nAL .navbar-collapse.collapsing,
  .cid-qCwvWt6nAL .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCwvWt6nAL .navbar-collapse.collapsing .navbar-nav,
  .cid-qCwvWt6nAL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCwvWt6nAL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCwvWt6nAL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCwvWt6nAL .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qCwvWt6nAL .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCwvWt6nAL .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCwvWt6nAL .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCwvWt6nAL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCwvWt6nAL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCwvWt6nAL .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qCwvWt6nAL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCwvWt6nAL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCwvWt6nAL .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-qCwvWt6nAL .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCwvWt6nAL .navbar-collapse {
  flex-basis: auto;
}
.cid-qCwvWt6nAL .nav-link:hover,
.cid-qCwvWt6nAL .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qCygC7EaDa {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #004d00;
}
.cid-qCygC7EaDa .mbr-section-subtitle {
  color: #e27d40;
  font-weight: 300;
}
.cid-qCygC7EaDa .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-qCygC7EaDa .card_cont {
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  background-color: #eee;
}
.cid-qCygC7EaDa .card-front {
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-qCygC7EaDa .card-front img {
  min-height: 100%;
  min-width: 100%;
  width: auto;
  max-width: 600px;
}
.cid-qCygC7EaDa .card_back {
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  color: #ffffff;
  background-color: #7f1933;
  z-index: 1;
  margin: 0;
  text-align: center;
  overflow: hidden;
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.cid-qCygC7EaDa .card {
  min-height: 300px;
}
.cid-qCygC7EaDa .card:hover .card-front {
  z-index: 1;
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cid-qCygC7EaDa .card:hover .card_back {
  z-index: 2;
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.cid-qCygC7EaDa .builderCard .card_back {
  border-bottom-left-radius: 100px;
}
.cid-qCygC7EaDa .builderCard .card_cont {
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidd;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.cid-qCygC7EaDa .mbr-section-title {
  color: #ffffff;
}
.cid-qCyiD3fRqw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #004d00;
}
.cid-qCyiD3fRqw .mbr-section-subtitle {
  color: #ffffff;
  font-weight: 300;
}
.cid-qCyiD3fRqw .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-qCyiD3fRqw .card_cont {
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  background-color: #eee;
}
.cid-qCyiD3fRqw .card-front {
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-qCyiD3fRqw .card-front img {
  min-height: 100%;
  min-width: 100%;
  width: auto;
  max-width: 600px;
}
.cid-qCyiD3fRqw .card_back {
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  color: #ffffff;
  background-color: #7f1933;
  z-index: 1;
  margin: 0;
  text-align: center;
  overflow: hidden;
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.cid-qCyiD3fRqw .card {
  min-height: 300px;
}
.cid-qCyiD3fRqw .card:hover .card-front {
  z-index: 1;
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cid-qCyiD3fRqw .card:hover .card_back {
  z-index: 2;
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.cid-qCyiD3fRqw .builderCard .card_back {
  border-bottom-left-radius: 100px;
}
.cid-qCyiD3fRqw .builderCard .card_cont {
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidd;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.cid-qCyiD3fRqw .mbr-section-title {
  color: #ffffff;
}
.cid-qCyiOBICpr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #004d00;
}
.cid-qCyiOBICpr .mbr-section-subtitle {
  color: #ffffff;
  font-weight: 300;
}
.cid-qCyiOBICpr .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-qCyiOBICpr .card_cont {
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  background-color: #eee;
}
.cid-qCyiOBICpr .card-front {
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-qCyiOBICpr .card-front img {
  min-height: 100%;
  min-width: 100%;
  width: auto;
  max-width: 600px;
}
.cid-qCyiOBICpr .card_back {
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  color: #ffffff;
  background-color: #7f1933;
  z-index: 1;
  margin: 0;
  text-align: center;
  overflow: hidden;
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.cid-qCyiOBICpr .card {
  min-height: 300px;
}
.cid-qCyiOBICpr .card:hover .card-front {
  z-index: 1;
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cid-qCyiOBICpr .card:hover .card_back {
  z-index: 2;
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.cid-qCyiOBICpr .builderCard .card_back {
  border-bottom-left-radius: 100px;
}
.cid-qCyiOBICpr .builderCard .card_cont {
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidd;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.cid-qCyiOBICpr .mbr-section-title {
  color: #ffffff;
}
.cid-qCyiQzL6EQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #004d00;
}
.cid-qCyiQzL6EQ .mbr-section-subtitle {
  color: #ffffff;
  font-weight: 300;
}
.cid-qCyiQzL6EQ .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-qCyiQzL6EQ .card_cont {
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  background-color: #eee;
}
.cid-qCyiQzL6EQ .card-front {
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-qCyiQzL6EQ .card-front img {
  min-height: 100%;
  min-width: 100%;
  width: auto;
  max-width: 600px;
}
.cid-qCyiQzL6EQ .card_back {
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  color: #ffffff;
  background-color: #7f1933;
  z-index: 1;
  margin: 0;
  text-align: center;
  overflow: hidden;
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.cid-qCyiQzL6EQ .card {
  min-height: 300px;
}
.cid-qCyiQzL6EQ .card:hover .card-front {
  z-index: 1;
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cid-qCyiQzL6EQ .card:hover .card_back {
  z-index: 2;
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.cid-qCyiQzL6EQ .builderCard .card_back {
  border-bottom-left-radius: 100px;
}
.cid-qCyiQzL6EQ .builderCard .card_cont {
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidd;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.cid-qCyiQzL6EQ .mbr-section-title {
  color: #ffffff;
}
.cid-qCynax6uoT {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qCynax6uoT .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qCynax6uoT H2 {
  color: #ffffff;
}
.cid-qCyl3UjvWu {
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-625x1080.jpg");
}
.cid-qCyl3UjvWu .mbr-section-subtitle {
  color: #767676;
}
.cid-qCyl3UjvWu .container-table {
  margin: 0 auto;
}
.cid-qCyl3UjvWu .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qCyl3UjvWu .dataTables_wrapper {
  display: block;
}
.cid-qCyl3UjvWu .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-qCyl3UjvWu .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-qCyl3UjvWu table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #7f1933;
  margin-bottom: 0;
}
.cid-qCyl3UjvWu table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-qCyl3UjvWu table th:hover {
  background: #7f1933;
  color: #ffffff;
}
.cid-qCyl3UjvWu table td {
  border-top: 1px solid #7f1933;
}
.cid-qCyl3UjvWu table.table {
  background: #efefef;
}
.cid-qCyl3UjvWu .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-qCyl3UjvWu .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-qCyl3UjvWu .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-qCyl3UjvWu .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-qCyl3UjvWu .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-qCyl3UjvWu .dataTables_filter {
    text-align: center;
  }
  .cid-qCyl3UjvWu .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-qCyl3UjvWu B {
  color: #004d00;
}
.cid-qCyl3UjvWu LABEL {
  color: #004d00;
}
.cid-qF0ASxZoNR {
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-625x1080.jpg");
}
.cid-qF0ASxZoNR .mbr-section-subtitle {
  color: #767676;
}
.cid-qF0ASxZoNR .container-table {
  margin: 0 auto;
}
.cid-qF0ASxZoNR .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-qF0ASxZoNR .dataTables_wrapper {
  display: block;
}
.cid-qF0ASxZoNR .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-qF0ASxZoNR .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-qF0ASxZoNR table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #7f1933;
  margin-bottom: 0;
}
.cid-qF0ASxZoNR table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-qF0ASxZoNR table th:hover {
  background: #7f1933;
  color: #ffffff;
}
.cid-qF0ASxZoNR table td {
  border-top: 1px solid #7f1933;
}
.cid-qF0ASxZoNR table.table {
  background: #efefef;
}
.cid-qF0ASxZoNR .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-qF0ASxZoNR .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-qF0ASxZoNR .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-qF0ASxZoNR .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-qF0ASxZoNR .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-qF0ASxZoNR .dataTables_filter {
    text-align: center;
  }
  .cid-qF0ASxZoNR .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-qF0ASxZoNR B {
  color: #004d00;
}
.cid-sneGG26o4Y {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-sneGG26o4Y .mbr-section-subtitle {
  color: #767676;
}
.cid-sneGG26o4Y .container-table {
  margin: 0 auto;
}
.cid-sneGG26o4Y .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sneGG26o4Y .dataTables_wrapper {
  display: block;
}
.cid-sneGG26o4Y .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-sneGG26o4Y .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sneGG26o4Y table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-sneGG26o4Y table th {
  border-top: none;
  transition: all .2s;
  border-bottom: none;
}
.cid-sneGG26o4Y table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-sneGG26o4Y table td {
  border-top: 1px solid #cccccc;
}
.cid-sneGG26o4Y table.table {
  background: #ffffff;
}
.cid-sneGG26o4Y .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-sneGG26o4Y .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sneGG26o4Y .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sneGG26o4Y .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sneGG26o4Y .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-sneGG26o4Y .dataTables_filter {
    text-align: center;
  }
  .cid-sneGG26o4Y .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-sneGG26o4Y .mbr-section-title {
  color: #004d00;
  text-align: right;
}
.cid-qLqc9zxvNG {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qLqc9zxvNG .content {
    text-align: center;
  }
  .cid-qLqc9zxvNG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qLqc9zxvNG .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qLqc9zxvNG .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qLqc9zxvNG .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qLqc9zxvNG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qLqc9zxvNG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qLqc9zxvNG .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qLqc9zxvNG .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qLqc9zxvNG .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qLqc9zxvNG .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qLqc9zxvNG .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qLqc9zxvNG .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qLqc9zxvNG P {
  color: #7f1933;
}
.cid-qLqc9zxvNG H5 {
  color: #7f1933;
}
.cid-qLqc9zxvNG .copyright > p {
  text-align: right;
}
.cid-qCwvZkOXSA .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qCwvZkOXSA .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qCwvZkOXSA a {
  font-style: normal;
}
.cid-qCwvZkOXSA .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qCwvZkOXSA .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCwvZkOXSA .nav-item:focus,
.cid-qCwvZkOXSA .nav-link:focus {
  outline: none;
}
.cid-qCwvZkOXSA .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCwvZkOXSA .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCwvZkOXSA .menu-logo {
  margin-right: auto;
}
.cid-qCwvZkOXSA .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCwvZkOXSA .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qCwvZkOXSA .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCwvZkOXSA .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCwvZkOXSA .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCwvZkOXSA .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCwvZkOXSA .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCwvZkOXSA .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCwvZkOXSA .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCwvZkOXSA .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCwvZkOXSA .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCwvZkOXSA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCwvZkOXSA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCwvZkOXSA .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCwvZkOXSA .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCwvZkOXSA .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-qCwvZkOXSA .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCwvZkOXSA .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCwvZkOXSA .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCwvZkOXSA .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCwvZkOXSA .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCwvZkOXSA .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCwvZkOXSA button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCwvZkOXSA button.navbar-toggler:focus {
  outline: none;
}
.cid-qCwvZkOXSA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCwvZkOXSA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCwvZkOXSA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCwvZkOXSA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCwvZkOXSA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCwvZkOXSA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCwvZkOXSA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCwvZkOXSA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCwvZkOXSA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCwvZkOXSA .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCwvZkOXSA .collapsed .btn {
  display: flex;
}
.cid-qCwvZkOXSA .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCwvZkOXSA .collapsed .navbar-collapse.collapsing,
.cid-qCwvZkOXSA .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCwvZkOXSA .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCwvZkOXSA .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCwvZkOXSA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCwvZkOXSA .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCwvZkOXSA .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qCwvZkOXSA .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qCwvZkOXSA .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCwvZkOXSA .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCwvZkOXSA .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCwvZkOXSA .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCwvZkOXSA .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCwvZkOXSA .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCwvZkOXSA .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCwvZkOXSA .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qCwvZkOXSA .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCwvZkOXSA .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCwvZkOXSA .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qCwvZkOXSA .navbar-expand {
    flex-direction: column;
  }
  .cid-qCwvZkOXSA img {
    height: 3.8rem !important;
  }
  .cid-qCwvZkOXSA .btn {
    display: flex;
  }
  .cid-qCwvZkOXSA button.navbar-toggler {
    display: block;
  }
  .cid-qCwvZkOXSA .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCwvZkOXSA .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCwvZkOXSA .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCwvZkOXSA .navbar-collapse.collapsing,
  .cid-qCwvZkOXSA .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCwvZkOXSA .navbar-collapse.collapsing .navbar-nav,
  .cid-qCwvZkOXSA .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCwvZkOXSA .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCwvZkOXSA .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCwvZkOXSA .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qCwvZkOXSA .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCwvZkOXSA .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCwvZkOXSA .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCwvZkOXSA .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCwvZkOXSA .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCwvZkOXSA .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qCwvZkOXSA .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCwvZkOXSA .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCwvZkOXSA .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-qCwvZkOXSA .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCwvZkOXSA .navbar-collapse {
  flex-basis: auto;
}
.cid-qCwvZkOXSA .nav-link:hover,
.cid-qCwvZkOXSA .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qF1AK6xj7k {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qF1AK6xj7k .line {
  background-color: #e27d40;
  color: #e27d40;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qF1AK6xj7k .section-text {
  padding: 2rem 0;
  color: #e27d40;
}
.cid-qF1AK6xj7k .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qF1AK6xj7k .inner-container {
    width: 100% !important;
  }
}
.cid-qCBBGEyjxp {
  background-image: url("../../../assets/images/mahnmal-l-dr.schraudolph-1944x2592.jpg");
}
.cid-qCBBGEyjxp H1 {
  text-align: left;
  color: #5b686b;
}
.cid-qCyp28FuL8 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qCyp28FuL8 .mbr-text,
.cid-qCyp28FuL8 blockquote {
  color: #767676;
}
.cid-qCyp28FuL8 .mbr-text {
  color: #ffffff;
}
.cid-qCyphmbGWj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-qCyphmbGWj h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qCyphmbGWj p {
  color: #767676;
  text-align: left;
}
.cid-qCyphmbGWj .card-box {
  padding-top: 2rem;
}
.cid-qCyphmbGWj .card-wrapper {
  height: 100%;
}
.cid-qGqKq8zOmr {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #cccccc;
}
.cid-qGqKq8zOmr .image-block {
  margin: auto;
}
.cid-qGqKq8zOmr figcaption {
  position: relative;
}
.cid-qGqKq8zOmr figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-qGqKq8zOmr .image-block {
    width: 100% !important;
  }
}
.cid-qGqKq8zOmr DIV {
  color: #003300;
}
.cid-qGqLAuDQ2S {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qGqLAuDQ2S .mbr-text,
.cid-qGqLAuDQ2S blockquote {
  color: #767676;
}
.cid-qCyruOU7p5 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qCyruOU7p5 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qCyruOU7p5 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qCyruOU7p5 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qCyruOU7p5 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qCyruOU7p5 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qCyruOU7p5 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qCyruOU7p5 .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qCyruOU7p5 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qCyruOU7p5 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qCyr5ANf5T {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qCyr5ANf5T .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qCyr5ANf5T H2 {
  color: #ffffff;
}
.cid-qCyt4nzhkH {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-qCyt4nzhkH .mbr-text,
.cid-qCyt4nzhkH blockquote {
  color: #767676;
}
.cid-qCyt4nzhkH .mbr-text {
  color: #232323;
}
.cid-qCyt4nzhkH .mbr-text B {
  color: #232323;
}
.cid-qCyt4nzhkH .mbr-text DIV {
  color: #004d00;
}
.cid-qF29UyYVOs {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qF29UyYVOs .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qF29UyYVOs .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qF29UyYVOs .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qF29UyYVOs .mbr-text B {
  color: #004d00;
}
.cid-qF2c4vn0lO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qF2c4vn0lO .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qF2c4vn0lO .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qF2c4vn0lO .mbr-text {
  color: #767676;
  text-align: right;
}
.cid-qF2c4vn0lO .mbr-text B {
  color: #004d00;
}
.cid-qGqDiaG9Qu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qGqDiaG9Qu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qGqDiaG9Qu H2 {
  color: #ffffff;
}
.cid-qGqE3Xkfc2 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qGqE3Xkfc2 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qGqE3Xkfc2 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qGqE3Xkfc2 .mbr-text {
  color: #767676;
  text-align: right;
}
.cid-qGqE75UZT7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qGqE75UZT7 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qGqE75UZT7 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qGqE75UZT7 .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qGqE9jpie7 {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qGqE9jpie7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qGqE9jpie7 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qGqE9jpie7 .mbr-text {
  color: #767676;
  text-align: right;
}
.cid-qCyr3Ve2Ra {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qCyr3Ve2Ra .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qCyr3Ve2Ra H2 {
  color: #ffffff;
}
.cid-qCys5GJ4On {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qCys5GJ4On .mbr-text,
.cid-qCys5GJ4On blockquote {
  color: #767676;
}
.cid-qCys5GJ4On .mbr-text {
  color: #232323;
}
.cid-qCys5GJ4On .mbr-text B {
  color: #232323;
}
.cid-qCys5GJ4On .mbr-text DIV {
  color: #232323;
}
.cid-qCyr5PmjH9 {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qCyr5PmjH9 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qCyr5PmjH9 H2 {
  color: #ffffff;
}
.cid-snetfbl2gA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-snetfbl2gA .line {
  background-color: #004d00;
  color: #004d00;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-snetfbl2gA .section-text {
  padding: 2rem 0;
}
.cid-snetfbl2gA .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-snetfbl2gA .inner-container {
    width: 100% !important;
  }
}
.cid-qGEaoCbZO0 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-qGEaoCbZO0 h2 {
  text-align: left;
}
.cid-qGEaoCbZO0 h4 {
  text-align: left;
  font-weight: 500;
}
.cid-qGEaoCbZO0 p {
  color: #767676;
  text-align: left;
}
.cid-qGEaoCbZO0 .aside-content {
  flex-basis: 100%;
}
.cid-qGEaoCbZO0 .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-qGEaoCbZO0 .media {
  margin: initial;
  align-items: center;
}
.cid-qGEaoCbZO0 .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-qGEaoCbZO0 .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-qGEaoCbZO0 .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-qGEaoCbZO0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qGEaoCbZO0 .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-qGEaoCbZO0 .card-img span {
    font-size: 40px !important;
  }
}
.cid-qGEaoCbZO0 H4 {
  text-align: left;
}
.cid-qLqcek4euO {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qLqcek4euO .content {
    text-align: center;
  }
  .cid-qLqcek4euO .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qLqcek4euO .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qLqcek4euO .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qLqcek4euO .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qLqcek4euO .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qLqcek4euO .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qLqcek4euO .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qLqcek4euO .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qLqcek4euO .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qLqcek4euO .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qLqcek4euO .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qLqcek4euO .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qLqcek4euO P {
  color: #7f1933;
}
.cid-qLqcek4euO H5 {
  color: #7f1933;
}
.cid-qLqcek4euO .copyright > p {
  text-align: right;
}
.cid-qCtSe984mR .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qCtSe984mR .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qCtSe984mR a {
  font-style: normal;
}
.cid-qCtSe984mR .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qCtSe984mR .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCtSe984mR .nav-item:focus,
.cid-qCtSe984mR .nav-link:focus {
  outline: none;
}
.cid-qCtSe984mR .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCtSe984mR .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCtSe984mR .menu-logo {
  margin-right: auto;
}
.cid-qCtSe984mR .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCtSe984mR .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCtSe984mR .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCtSe984mR .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCtSe984mR .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCtSe984mR .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCtSe984mR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCtSe984mR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCtSe984mR .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCtSe984mR .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCtSe984mR .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-qCtSe984mR .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCtSe984mR button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCtSe984mR button.navbar-toggler:focus {
  outline: none;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCtSe984mR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCtSe984mR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCtSe984mR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCtSe984mR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCtSe984mR .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCtSe984mR .collapsed .btn {
  display: flex;
}
.cid-qCtSe984mR .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing,
.cid-qCtSe984mR .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCtSe984mR .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCtSe984mR .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCtSe984mR .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCtSe984mR .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qCtSe984mR .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCtSe984mR .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCtSe984mR .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qCtSe984mR .navbar-expand {
    flex-direction: column;
  }
  .cid-qCtSe984mR img {
    height: 3.8rem !important;
  }
  .cid-qCtSe984mR .btn {
    display: flex;
  }
  .cid-qCtSe984mR button.navbar-toggler {
    display: block;
  }
  .cid-qCtSe984mR .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCtSe984mR .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCtSe984mR .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing,
  .cid-qCtSe984mR .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-nav,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCtSe984mR .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qCtSe984mR .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCtSe984mR .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCtSe984mR .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-qCtSe984mR .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCtSe984mR .navbar-collapse {
  flex-basis: auto;
}
.cid-qCtSe984mR .nav-link:hover,
.cid-qCtSe984mR .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qLqdhegbl8 {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qLqdhegbl8 .mbr-text,
.cid-qLqdhegbl8 blockquote {
  color: #767676;
}
.cid-qLqdhegbl8 .mbr-text {
  color: #ffffff;
}
.cid-qCJCeZMUkr {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qCJCeZMUkr .mbr-text,
.cid-qCJCeZMUkr blockquote {
  color: #767676;
}
.cid-qCJCeZMUkr .mbr-text {
  text-align: left;
  color: #c1c1c1;
}
.cid-qCJCeZMUkr .mbr-text B {
  color: #ffffff;
}
.cid-qCJCeZMUkr .mbr-text P {
  text-align: left;
}
.cid-qLqc48A63f {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qLqc48A63f .content {
    text-align: center;
  }
  .cid-qLqc48A63f .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qLqc48A63f .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qLqc48A63f .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qLqc48A63f .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qLqc48A63f .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qLqc48A63f .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qLqc48A63f .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qLqc48A63f .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qLqc48A63f .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qLqc48A63f .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qLqc48A63f .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qLqc48A63f .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qLqc48A63f P {
  color: #7f1933;
}
.cid-qLqc48A63f H5 {
  color: #7f1933;
}
.cid-qLqc48A63f .copyright > p {
  text-align: right;
}
.cid-qCtSe984mR .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qCtSe984mR .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qCtSe984mR a {
  font-style: normal;
}
.cid-qCtSe984mR .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qCtSe984mR .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qCtSe984mR .nav-item:focus,
.cid-qCtSe984mR .nav-link:focus {
  outline: none;
}
.cid-qCtSe984mR .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qCtSe984mR .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qCtSe984mR .menu-logo {
  margin-right: auto;
}
.cid-qCtSe984mR .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qCtSe984mR .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qCtSe984mR .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qCtSe984mR .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qCtSe984mR .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qCtSe984mR .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qCtSe984mR .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qCtSe984mR .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qCtSe984mR .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qCtSe984mR .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qCtSe984mR .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qCtSe984mR .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-qCtSe984mR .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qCtSe984mR .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qCtSe984mR button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qCtSe984mR button.navbar-toggler:focus {
  outline: none;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qCtSe984mR button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qCtSe984mR nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCtSe984mR nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qCtSe984mR nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qCtSe984mR nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qCtSe984mR .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qCtSe984mR .collapsed .btn {
  display: flex;
}
.cid-qCtSe984mR .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing,
.cid-qCtSe984mR .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qCtSe984mR .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qCtSe984mR .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qCtSe984mR .collapsed button.navbar-toggler {
  display: block;
}
.cid-qCtSe984mR .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qCtSe984mR .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qCtSe984mR .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qCtSe984mR .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qCtSe984mR .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qCtSe984mR .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qCtSe984mR .navbar-expand {
    flex-direction: column;
  }
  .cid-qCtSe984mR img {
    height: 3.8rem !important;
  }
  .cid-qCtSe984mR .btn {
    display: flex;
  }
  .cid-qCtSe984mR button.navbar-toggler {
    display: block;
  }
  .cid-qCtSe984mR .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qCtSe984mR .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qCtSe984mR .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing,
  .cid-qCtSe984mR .navbar-collapse.show {
    display: block !important;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-nav,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-buttons,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qCtSe984mR .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qCtSe984mR .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qCtSe984mR .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qCtSe984mR .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qCtSe984mR .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qCtSe984mR .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-qCtSe984mR .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qCtSe984mR .navbar-collapse {
  flex-basis: auto;
}
.cid-qCtSe984mR .nav-link:hover,
.cid-qCtSe984mR .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qCxzCaIaYQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qCxzCaIaYQ .media-container-row .mbr-text {
  color: #7f1933;
}
.cid-qCJEdsnguO {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qCJEdsnguO .title {
  margin-bottom: 2rem;
}
.cid-qCJEdsnguO .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qCJEdsnguO a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qCJEdsnguO a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qCJEdsnguO .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qCJEdsnguO .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qCJEdsnguO LABEL {
  color: #ffffff;
}
.cid-qLqcMVJigX {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qLqcMVJigX .content {
    text-align: center;
  }
  .cid-qLqcMVJigX .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qLqcMVJigX .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qLqcMVJigX .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qLqcMVJigX .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qLqcMVJigX .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qLqcMVJigX .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qLqcMVJigX .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qLqcMVJigX .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qLqcMVJigX .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qLqcMVJigX .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qLqcMVJigX .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qLqcMVJigX .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qLqcMVJigX P {
  color: #7f1933;
}
.cid-qLqcMVJigX H5 {
  color: #7f1933;
}
.cid-qLqcMVJigX .copyright > p {
  text-align: right;
}
.cid-qGjmv7eOKh .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qGjmv7eOKh .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qGjmv7eOKh a {
  font-style: normal;
}
.cid-qGjmv7eOKh .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qGjmv7eOKh .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qGjmv7eOKh .nav-item:focus,
.cid-qGjmv7eOKh .nav-link:focus {
  outline: none;
}
.cid-qGjmv7eOKh .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qGjmv7eOKh .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qGjmv7eOKh .menu-logo {
  margin-right: auto;
}
.cid-qGjmv7eOKh .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qGjmv7eOKh .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qGjmv7eOKh .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qGjmv7eOKh .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qGjmv7eOKh .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qGjmv7eOKh .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qGjmv7eOKh .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qGjmv7eOKh .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qGjmv7eOKh .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qGjmv7eOKh .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qGjmv7eOKh .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qGjmv7eOKh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qGjmv7eOKh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qGjmv7eOKh .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qGjmv7eOKh .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qGjmv7eOKh .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-qGjmv7eOKh .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qGjmv7eOKh .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qGjmv7eOKh .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qGjmv7eOKh .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qGjmv7eOKh .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qGjmv7eOKh .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qGjmv7eOKh button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qGjmv7eOKh button.navbar-toggler:focus {
  outline: none;
}
.cid-qGjmv7eOKh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qGjmv7eOKh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qGjmv7eOKh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qGjmv7eOKh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qGjmv7eOKh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qGjmv7eOKh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGjmv7eOKh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qGjmv7eOKh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qGjmv7eOKh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qGjmv7eOKh .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qGjmv7eOKh .collapsed .btn {
  display: flex;
}
.cid-qGjmv7eOKh .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qGjmv7eOKh .collapsed .navbar-collapse.collapsing,
.cid-qGjmv7eOKh .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qGjmv7eOKh .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qGjmv7eOKh .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qGjmv7eOKh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qGjmv7eOKh .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qGjmv7eOKh .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qGjmv7eOKh .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qGjmv7eOKh .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qGjmv7eOKh .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qGjmv7eOKh .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qGjmv7eOKh .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qGjmv7eOKh .collapsed button.navbar-toggler {
  display: block;
}
.cid-qGjmv7eOKh .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qGjmv7eOKh .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qGjmv7eOKh .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qGjmv7eOKh .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qGjmv7eOKh .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qGjmv7eOKh .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qGjmv7eOKh .navbar-expand {
    flex-direction: column;
  }
  .cid-qGjmv7eOKh img {
    height: 3.8rem !important;
  }
  .cid-qGjmv7eOKh .btn {
    display: flex;
  }
  .cid-qGjmv7eOKh button.navbar-toggler {
    display: block;
  }
  .cid-qGjmv7eOKh .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qGjmv7eOKh .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qGjmv7eOKh .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qGjmv7eOKh .navbar-collapse.collapsing,
  .cid-qGjmv7eOKh .navbar-collapse.show {
    display: block !important;
  }
  .cid-qGjmv7eOKh .navbar-collapse.collapsing .navbar-nav,
  .cid-qGjmv7eOKh .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qGjmv7eOKh .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qGjmv7eOKh .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qGjmv7eOKh .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qGjmv7eOKh .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qGjmv7eOKh .navbar-collapse.collapsing .navbar-buttons,
  .cid-qGjmv7eOKh .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qGjmv7eOKh .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qGjmv7eOKh .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qGjmv7eOKh .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qGjmv7eOKh .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qGjmv7eOKh .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qGjmv7eOKh .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-qGjmv7eOKh .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qGjmv7eOKh .navbar-collapse {
  flex-basis: auto;
}
.cid-qGjmv7eOKh .nav-link:hover,
.cid-qGjmv7eOKh .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qF5sCLlQXC {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qF5sCLlQXC .line {
  background-color: #e27d40;
  color: #e27d40;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qF5sCLlQXC .section-text {
  padding: 2rem 0;
  color: #e27d40;
}
.cid-qF5sCLlQXC .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qF5sCLlQXC .inner-container {
    width: 100% !important;
  }
}
.cid-sAdUvzNGXx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sAdUvzNGXx .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sAdUvzNGXx .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-sAdUvzNGXx .mbr-text {
  color: #767676;
}
.cid-snhIYZgQtN {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
@media (min-width: 992px) {
  .cid-snhIYZgQtN .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-snhIYZgQtN .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-snhIYZgQtN .mbr-text {
  color: #767676;
}
.cid-snhIyKpIvg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-snhIyKpIvg .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-snhIyKpIvg .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-snhIyKpIvg .mbr-text {
  color: #767676;
}
.cid-snhHvE0iqs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-snhHvE0iqs .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-snhHvE0iqs .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-snhHvE0iqs .mbr-text {
  color: #767676;
}
.cid-snhHuWNq9d {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
@media (min-width: 992px) {
  .cid-snhHuWNq9d .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-snhHuWNq9d .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-snhHuWNq9d .mbr-text {
  color: #767676;
}
.cid-snhHua300O {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-snhHua300O .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-snhHua300O .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-snhHua300O .mbr-text {
  color: #767676;
}
.cid-rvZP0kXMUE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #c1c1c1;
}
@media (min-width: 992px) {
  .cid-rvZP0kXMUE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-rvZP0kXMUE .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-rvZP0kXMUE .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-rz8XYK1ZvX {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-rz8XYK1ZvX .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-rz8XYK1ZvX .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-rz8XYK1ZvX .mbr-text {
  color: #767676;
}
.cid-rzNV86HYut {
  padding-top: 15px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-rzNV86HYut .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-rzNV86HYut .media-container-row .img-item {
  display: -webkit-flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
  -webkit-flex-direction: column;
  -webkit-justify-content: center;
}
.cid-rzNV86HYut .media-container-row .img-item img {
  width: 100%;
  min-height: 1px;
}
.cid-rzNV86HYut .media-container-row .img-item .img-caption {
  background: #efefef;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-rzNV86HYut .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-rzNV86HYut .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-rzNV86HYut .img-item {
    width: 100% !important;
  }
  .cid-rzNV86HYut .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
    -webkit-flex-basis: initial !important;
  }
}
.cid-qGE97GL9rp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qGE97GL9rp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qGE97GL9rp .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qGE97GL9rp .mbr-text {
  color: #767676;
}
.cid-qGE97GL9rp .mbr-text B {
  color: #004d00;
}
.cid-qGrwgRbCEn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-qGrwgRbCEn .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qGrwgRbCEn .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qGrwgRbCEn .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qF5sLwjk04 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qF5sLwjk04 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qF5sLwjk04 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qF5sLwjk04 .mbr-text {
  color: #767676;
}
.cid-qF5sLwjk04 .mbr-text B {
  color: #004d00;
}
.cid-qF5sNrFI0A {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
@media (min-width: 992px) {
  .cid-qF5sNrFI0A .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qF5sNrFI0A .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qF5sNrFI0A .mbr-text {
  color: #767676;
}
.cid-qF5sNrFI0A .mbr-text B {
  color: #004d00;
}
.cid-qF5sSDolBq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qF5sSDolBq .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qF5sSDolBq .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qF5sSDolBq .mbr-text {
  color: #767676;
}
.cid-qF5sSDolBq .mbr-text B {
  color: #004d00;
}
.cid-qF5sT58Sdp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-qF5sT58Sdp .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qF5sT58Sdp .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qF5sT58Sdp .mbr-text {
  color: #767676;
}
.cid-qF5sT58Sdp .mbr-text B {
  color: #004d00;
}
.cid-qF5sTjZFql {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qF5sTjZFql .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qF5sTjZFql .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qF5sTjZFql .mbr-text {
  color: #767676;
}
.cid-qF5sTjZFql .mbr-text B {
  color: #004d00;
}
.cid-qF5sTxD3xN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-qF5sTxD3xN .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qF5sTxD3xN .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qF5sTxD3xN .mbr-text {
  color: #767676;
}
.cid-qF5sTxD3xN .mbr-text B {
  color: #004d00;
}
.cid-qF5sV4wZaE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qF5sV4wZaE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qF5sV4wZaE .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qF5sV4wZaE .mbr-text {
  color: #767676;
}
.cid-qF5sV4wZaE .mbr-text B {
  color: #004d00;
}
.cid-qF5sVmFmH7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-qF5sVmFmH7 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qF5sVmFmH7 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qF5sVmFmH7 .mbr-text {
  color: #767676;
}
.cid-qF5sVmFmH7 .mbr-text B {
  color: #004d00;
}
.cid-qGBwIRr7FD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qGBwIRr7FD .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qGBwIRr7FD .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qGBwIRr7FD .mbr-text {
  color: #767676;
}
.cid-qGBwIRr7FD .mbr-text B {
  color: #004d00;
}
.cid-qF5sVG5vp0 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qF5sVG5vp0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qF5sVG5vp0 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qF5sVG5vp0 .mbr-text {
  color: #767676;
}
.cid-qF5sVG5vp0 .mbr-text B {
  color: #004d00;
}
.cid-qF5sVXj5d2 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-qF5sVXj5d2 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qF5sVXj5d2 .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qF5sVXj5d2 .mbr-text {
  color: #767676;
}
.cid-qF5sVXj5d2 .mbr-text B {
  color: #004d00;
}
.cid-qGwmL4xnYQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qGwmL4xnYQ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qGwmL4xnYQ .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qGwmL4xnYQ .mbr-text {
  color: #767676;
}
.cid-qGwmL4xnYQ .mbr-text B {
  color: #004d00;
}
.cid-qGwo4WoJlv {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-qGwo4WoJlv .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qGwo4WoJlv .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qGwo4WoJlv .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qGwo4WoJlv .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qGwo4WoJlv .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qGwo4WoJlv .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qGwo4WoJlv .mbr-gallery-item > div:hover:before {
  opacity: 0.2 !important;
}
.cid-qGwo4WoJlv .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qGwo4WoJlv .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.2;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qLqcEcB9fG {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-qLqcEcB9fG .content {
    text-align: center;
  }
  .cid-qLqcEcB9fG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qLqcEcB9fG .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qLqcEcB9fG .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qLqcEcB9fG .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qLqcEcB9fG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qLqcEcB9fG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qLqcEcB9fG .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qLqcEcB9fG .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qLqcEcB9fG .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qLqcEcB9fG .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qLqcEcB9fG .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qLqcEcB9fG .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qLqcEcB9fG P {
  color: #7f1933;
}
.cid-qLqcEcB9fG H5 {
  color: #7f1933;
}
.cid-qLqcEcB9fG .copyright > p {
  text-align: right;
}
.cid-qSIp8ROZyp {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIp8ROZyp .line {
  background-color: #e27d40;
  color: #e27d40;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qSIp8ROZyp .section-text {
  padding: 2rem 0;
  color: #e27d40;
}
.cid-qSIp8ROZyp .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qSIp8ROZyp .inner-container {
    width: 100% !important;
  }
}
.cid-qSIp8SissT {
  background-image: url("../../../assets/images/wilhelm-aron-2-663x1070.jpg");
}
.cid-qSIp8SissT H1 {
  text-align: left;
}
.cid-qSIp8T24yD {
  padding-top: 105px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1-720x1080.jpg");
}
.cid-qSIp8T24yD .mbr-section-subtitle {
  color: #767676;
}
.cid-qSIp8T24yD .mbr-text {
  color: #767676;
}
.cid-qSIp8T24yD .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qSIp8T24yD .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-qSIp8T24yD .card-wrapper .card-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.cid-qSIp8T24yD .card-wrapper .card-img .mbr-overlay {
  background-color: #efefef;
  display: none;
  transition: opacity .3s;
}
.cid-qSIp8T24yD .card-wrapper .card-img .mbr-section-btn {
  display: flex;
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  margin: auto;
  left: 0;
  justify-content: center;
  align-items: center;
}
.cid-qSIp8T24yD .card-wrapper .card-img img {
  width: 100%;
  height: 100%;
}
.cid-qSIp8T24yD .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-qSIp8T24yD .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-qSIp8T24yD .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-qSIp8T24yD .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-qSIp8T24yD .popup-btn .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-qSIp8T24yD .popup-btn .mbr-section-btn {
  height: 100%;
  display: flex !important;
  opacity: 0;
}
.cid-qSIp8T24yD .popup-btn:hover .mbr-overlay {
  opacity: .5;
}
.cid-qSIp8T24yD .popup-btn:hover .mbr-section-btn {
  opacity: 1;
}
.cid-qSIp8T24yD .card-title {
  text-align: center;
}
.cid-qSIp8T24yD .card-title B {
  color: #004d00;
}
.cid-qSIp8TUm7a {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIp8TUm7a .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIp8TUm7a H2 {
  color: #ffffff;
}
.cid-qSIp8Un8ev {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-qSIp8Un8ev h3 {
  font-weight: 300;
}
.cid-qSIp8Un8ev .card-img {
  width: initial;
}
.cid-qSIp8Un8ev .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-qSIp8Un8ev .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  height: 100%;
}
.cid-qSIp8Un8ev .media {
  margin: initial;
  align-items: center;
}
.cid-qSIp8Un8ev .mbr-section-subtitle {
  color: #767676;
}
.cid-qSIp8Un8ev .mbr-text {
  color: #767676;
}
.cid-qSIp8Un8ev .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qSIp8VdCLH {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-qSIp8VdCLH .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qSIp8VdCLH .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qSIp8VdCLH .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qSIp8VdCLH .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qSIp8VdCLH .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qSIp8VdCLH .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qSIp8VdCLH .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qSIp8VdCLH .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qSIp8VdCLH .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qSIp8WfEf7 {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qSIp8WfEf7 .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIp8WJBKf .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qSIp8WJBKf .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qSIp8WJBKf a {
  font-style: normal;
}
.cid-qSIp8WJBKf .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qSIp8WJBKf .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qSIp8WJBKf .nav-item:focus,
.cid-qSIp8WJBKf .nav-link:focus {
  outline: none;
}
.cid-qSIp8WJBKf .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qSIp8WJBKf .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qSIp8WJBKf .menu-logo {
  margin-right: auto;
}
.cid-qSIp8WJBKf .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qSIp8WJBKf .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qSIp8WJBKf .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qSIp8WJBKf .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qSIp8WJBKf .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qSIp8WJBKf .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qSIp8WJBKf .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qSIp8WJBKf .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qSIp8WJBKf .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qSIp8WJBKf .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qSIp8WJBKf .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qSIp8WJBKf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qSIp8WJBKf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSIp8WJBKf .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qSIp8WJBKf .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSIp8WJBKf .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-qSIp8WJBKf .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qSIp8WJBKf .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qSIp8WJBKf .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qSIp8WJBKf .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qSIp8WJBKf .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qSIp8WJBKf .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qSIp8WJBKf button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qSIp8WJBKf button.navbar-toggler:focus {
  outline: none;
}
.cid-qSIp8WJBKf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSIp8WJBKf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSIp8WJBKf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIp8WJBKf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIp8WJBKf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSIp8WJBKf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIp8WJBKf nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSIp8WJBKf nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSIp8WJBKf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIp8WJBKf .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qSIp8WJBKf .collapsed .btn {
  display: flex;
}
.cid-qSIp8WJBKf .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qSIp8WJBKf .collapsed .navbar-collapse.collapsing,
.cid-qSIp8WJBKf .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qSIp8WJBKf .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qSIp8WJBKf .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qSIp8WJBKf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qSIp8WJBKf .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qSIp8WJBKf .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qSIp8WJBKf .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qSIp8WJBKf .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qSIp8WJBKf .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qSIp8WJBKf .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qSIp8WJBKf .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qSIp8WJBKf .collapsed button.navbar-toggler {
  display: block;
}
.cid-qSIp8WJBKf .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qSIp8WJBKf .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qSIp8WJBKf .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qSIp8WJBKf .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qSIp8WJBKf .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qSIp8WJBKf .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qSIp8WJBKf .navbar-expand {
    flex-direction: column;
  }
  .cid-qSIp8WJBKf img {
    height: 3.8rem !important;
  }
  .cid-qSIp8WJBKf .btn {
    display: flex;
  }
  .cid-qSIp8WJBKf button.navbar-toggler {
    display: block;
  }
  .cid-qSIp8WJBKf .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qSIp8WJBKf .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qSIp8WJBKf .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qSIp8WJBKf .navbar-collapse.collapsing,
  .cid-qSIp8WJBKf .navbar-collapse.show {
    display: block !important;
  }
  .cid-qSIp8WJBKf .navbar-collapse.collapsing .navbar-nav,
  .cid-qSIp8WJBKf .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qSIp8WJBKf .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qSIp8WJBKf .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qSIp8WJBKf .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qSIp8WJBKf .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIp8WJBKf .navbar-collapse.collapsing .navbar-buttons,
  .cid-qSIp8WJBKf .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qSIp8WJBKf .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qSIp8WJBKf .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIp8WJBKf .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qSIp8WJBKf .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qSIp8WJBKf .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qSIp8WJBKf .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-qSIp8WJBKf .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qSIp8WJBKf .navbar-collapse {
  flex-basis: auto;
}
.cid-qSIp8WJBKf .nav-link:hover,
.cid-qSIp8WJBKf .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qSIp8XpNe3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIp8XpNe3 .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIp8XpNe3 H2 {
  color: #ffffff;
}
.cid-qSIp8XXyQc {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/0-0woelfelbuste-373x280.png");
}
.cid-qSIp8XXyQc .card-img {
  background-color: #fff;
}
.cid-qSIp8XXyQc .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-qSIp8XXyQc h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qSIp8XXyQc p {
  text-align: left;
}
.cid-qSIp8XXyQc .mbr-text {
  color: #767676;
}
.cid-qSIp8XXyQc .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-qSIp8XXyQc .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-qSIp8XXyQc .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qSIp8XXyQc .mbr-text I {
  color: #149dcc;
}
.cid-qSIp8XXyQc .mbr-text B {
  color: #232323;
}
.cid-qSIp8Z2mo3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIp8Z2mo3 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIp8Z2mo3 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIp8Z2mo3 .mbr-text {
  color: #767676;
}
.cid-qSIp8Z2mo3 .mbr-text B {
  color: #004d00;
}
.cid-qSIp8ZsVRg {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qSIp8ZsVRg .mbr-text,
.cid-qSIp8ZsVRg blockquote {
  color: #767676;
}
.cid-qSIp8ZsVRg .mbr-text P {
  color: #5b686b;
}
.cid-qSIp8ZVMA7 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIp8ZVMA7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIp8ZVMA7 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIp8ZVMA7 .mbr-text {
  color: #767676;
}
.cid-qSIp8ZVMA7 .mbr-text B {
  color: #004d00;
}
.cid-qSIp90o2Hf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIp90o2Hf .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIp90o2Hf .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qSIp90o2Hf .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIp913DTy {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qSIp913DTy .content {
    text-align: center;
  }
  .cid-qSIp913DTy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qSIp913DTy .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qSIp913DTy .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qSIp913DTy .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qSIp913DTy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSIp913DTy .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qSIp913DTy .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSIp913DTy .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qSIp913DTy .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSIp913DTy .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSIp913DTy .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSIp913DTy .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSIp913DTy P {
  color: #7f1933;
}
.cid-qSIp913DTy H5 {
  color: #7f1933;
}
.cid-qSIp913DTy .copyright > p {
  text-align: right;
}
.cid-qSIpcyBRSU {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIpcyBRSU .line {
  background-color: #e27d40;
  color: #e27d40;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qSIpcyBRSU .section-text {
  padding: 2rem 0;
  color: #e27d40;
}
.cid-qSIpcyBRSU .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qSIpcyBRSU .inner-container {
    width: 100% !important;
  }
}
.cid-qSIpcz1bvN {
  background-image: url("../../../assets/images/0-stauffenbergbuste-374x279.png");
}
.cid-qSIpcz1bvN H1 {
  text-align: left;
}
.cid-qSIpcz1bvN H3 {
  text-align: left;
}
.cid-qSIpczzk8H {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1618x1080.jpg");
}
.cid-qSIpczzk8H .card-box {
  padding: 0 2rem;
}
.cid-qSIpczzk8H .mbr-section-btn {
  padding-top: 1rem;
}
.cid-qSIpczzk8H .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-qSIpczzk8H h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-qSIpczzk8H p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-qSIpczzk8H .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-qSIpczzk8H .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-qSIpczzk8H .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-qSIpczzk8H .card-title {
  text-align: center;
}
.cid-qSIpczzk8H .card-title B {
  color: #004d00;
}
.cid-qSIpcABHvP .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qSIpcABHvP .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qSIpcABHvP a {
  font-style: normal;
}
.cid-qSIpcABHvP .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qSIpcABHvP .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qSIpcABHvP .nav-item:focus,
.cid-qSIpcABHvP .nav-link:focus {
  outline: none;
}
.cid-qSIpcABHvP .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qSIpcABHvP .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qSIpcABHvP .menu-logo {
  margin-right: auto;
}
.cid-qSIpcABHvP .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qSIpcABHvP .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qSIpcABHvP .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qSIpcABHvP .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qSIpcABHvP .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qSIpcABHvP .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qSIpcABHvP .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qSIpcABHvP .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qSIpcABHvP .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qSIpcABHvP .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qSIpcABHvP .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qSIpcABHvP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qSIpcABHvP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSIpcABHvP .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qSIpcABHvP .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSIpcABHvP .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-qSIpcABHvP .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qSIpcABHvP .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qSIpcABHvP .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qSIpcABHvP .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qSIpcABHvP .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qSIpcABHvP .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qSIpcABHvP button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qSIpcABHvP button.navbar-toggler:focus {
  outline: none;
}
.cid-qSIpcABHvP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSIpcABHvP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSIpcABHvP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIpcABHvP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIpcABHvP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSIpcABHvP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIpcABHvP nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSIpcABHvP nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSIpcABHvP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIpcABHvP .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qSIpcABHvP .collapsed .btn {
  display: flex;
}
.cid-qSIpcABHvP .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qSIpcABHvP .collapsed .navbar-collapse.collapsing,
.cid-qSIpcABHvP .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qSIpcABHvP .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qSIpcABHvP .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qSIpcABHvP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qSIpcABHvP .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qSIpcABHvP .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qSIpcABHvP .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qSIpcABHvP .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qSIpcABHvP .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qSIpcABHvP .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qSIpcABHvP .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qSIpcABHvP .collapsed button.navbar-toggler {
  display: block;
}
.cid-qSIpcABHvP .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qSIpcABHvP .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qSIpcABHvP .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qSIpcABHvP .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qSIpcABHvP .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qSIpcABHvP .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qSIpcABHvP .navbar-expand {
    flex-direction: column;
  }
  .cid-qSIpcABHvP img {
    height: 3.8rem !important;
  }
  .cid-qSIpcABHvP .btn {
    display: flex;
  }
  .cid-qSIpcABHvP button.navbar-toggler {
    display: block;
  }
  .cid-qSIpcABHvP .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qSIpcABHvP .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qSIpcABHvP .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qSIpcABHvP .navbar-collapse.collapsing,
  .cid-qSIpcABHvP .navbar-collapse.show {
    display: block !important;
  }
  .cid-qSIpcABHvP .navbar-collapse.collapsing .navbar-nav,
  .cid-qSIpcABHvP .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qSIpcABHvP .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qSIpcABHvP .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qSIpcABHvP .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qSIpcABHvP .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIpcABHvP .navbar-collapse.collapsing .navbar-buttons,
  .cid-qSIpcABHvP .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qSIpcABHvP .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qSIpcABHvP .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIpcABHvP .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qSIpcABHvP .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qSIpcABHvP .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qSIpcABHvP .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-qSIpcABHvP .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qSIpcABHvP .navbar-collapse {
  flex-basis: auto;
}
.cid-qSIpcABHvP .nav-link:hover,
.cid-qSIpcABHvP .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qSIpcB6RVL {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIpcB6RVL .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIpcB6RVL H2 {
  color: #ffffff;
}
.cid-qSIpcBDvdL {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qSIpcBDvdL .mbr-text,
.cid-qSIpcBDvdL blockquote {
  color: #767676;
}
.cid-qSIpcBDvdL .mbr-text {
  color: #232323;
}
.cid-qSIpcC1wir {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIpcC1wir .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIpcC1wir H2 {
  color: #ffffff;
}
.cid-qSIpcCzlll {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qSIpcCzlll .mbr-text,
.cid-qSIpcCzlll blockquote {
  color: #767676;
}
.cid-qSIpcCzlll .mbr-text {
  color: #232323;
}
.cid-qSIpcCYO5Y {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIpcCYO5Y .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIpcCYO5Y H2 {
  color: #ffffff;
}
.cid-qSIpcDu3ZB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qSIpcDu3ZB .mbr-section-subtitle {
  color: #767676;
}
.cid-qSIpcDu3ZB .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-qSIpcDu3ZB .mbr-text {
  color: #767676;
}
.cid-qSIpcDu3ZB .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-qSIpcDu3ZB .mbr-author-name {
  color: #004d00;
}
.cid-qSIpcDu3ZB .mbr-testimonial .panel-item {
  background-color: #c1c1c1;
}
.cid-qSIpcDu3ZB .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-qSIpcDu3ZB .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-qSIpcDu3ZB .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-qSIpcDu3ZB .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-qSIpcDu3ZB .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-qSIpcEkwnN {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-qSIpcEkwnN .mbr-text,
.cid-qSIpcEkwnN blockquote {
  color: #767676;
}
.cid-qSIpcEkwnN .mbr-text {
  color: #232323;
}
.cid-qSIpcEkwnN .mbr-text P {
  color: #004d00;
}
.cid-qSIpcEIjRS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qSIpcEIjRS .mbr-text,
.cid-qSIpcEIjRS blockquote {
  color: #767676;
}
.cid-qSIpcEIjRS .mbr-text {
  color: #232323;
}
.cid-qSIpcEIjRS .mbr-text P {
  color: #004d00;
}
.cid-qSIpcF8CoK {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIpcF8CoK .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIpcF8CoK H2 {
  color: #ffffff;
}
.cid-qSIpcFGcS6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qSIpcFGcS6 .mbr-text,
.cid-qSIpcFGcS6 blockquote {
  color: #767676;
}
.cid-qSIpcFGcS6 .mbr-text {
  color: #232323;
}
.cid-qSIpcFGcS6 .mbr-text P {
  text-align: center;
  color: #ff3366;
}
.cid-qSIpcGgHSy {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qSIpcGgHSy .content {
    text-align: center;
  }
  .cid-qSIpcGgHSy .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qSIpcGgHSy .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qSIpcGgHSy .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qSIpcGgHSy .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qSIpcGgHSy .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSIpcGgHSy .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qSIpcGgHSy .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSIpcGgHSy .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qSIpcGgHSy .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSIpcGgHSy .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSIpcGgHSy .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSIpcGgHSy .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSIpcGgHSy P {
  color: #7f1933;
}
.cid-qSIpcGgHSy H5 {
  color: #7f1933;
}
.cid-qSIpcGgHSy .copyright > p {
  text-align: right;
}
.cid-qSIpiNtTlw .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qSIpiNtTlw .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qSIpiNtTlw a {
  font-style: normal;
}
.cid-qSIpiNtTlw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qSIpiNtTlw .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qSIpiNtTlw .nav-item:focus,
.cid-qSIpiNtTlw .nav-link:focus {
  outline: none;
}
.cid-qSIpiNtTlw .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qSIpiNtTlw .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qSIpiNtTlw .menu-logo {
  margin-right: auto;
}
.cid-qSIpiNtTlw .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qSIpiNtTlw .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qSIpiNtTlw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qSIpiNtTlw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qSIpiNtTlw .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qSIpiNtTlw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qSIpiNtTlw .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qSIpiNtTlw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qSIpiNtTlw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qSIpiNtTlw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qSIpiNtTlw .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qSIpiNtTlw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qSIpiNtTlw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSIpiNtTlw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qSIpiNtTlw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSIpiNtTlw .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-qSIpiNtTlw .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qSIpiNtTlw .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qSIpiNtTlw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qSIpiNtTlw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qSIpiNtTlw .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qSIpiNtTlw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qSIpiNtTlw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qSIpiNtTlw button.navbar-toggler:focus {
  outline: none;
}
.cid-qSIpiNtTlw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSIpiNtTlw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSIpiNtTlw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIpiNtTlw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIpiNtTlw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSIpiNtTlw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIpiNtTlw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSIpiNtTlw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSIpiNtTlw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIpiNtTlw .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qSIpiNtTlw .collapsed .btn {
  display: flex;
}
.cid-qSIpiNtTlw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qSIpiNtTlw .collapsed .navbar-collapse.collapsing,
.cid-qSIpiNtTlw .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qSIpiNtTlw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qSIpiNtTlw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qSIpiNtTlw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qSIpiNtTlw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qSIpiNtTlw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qSIpiNtTlw .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qSIpiNtTlw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qSIpiNtTlw .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qSIpiNtTlw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qSIpiNtTlw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qSIpiNtTlw .collapsed button.navbar-toggler {
  display: block;
}
.cid-qSIpiNtTlw .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qSIpiNtTlw .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qSIpiNtTlw .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qSIpiNtTlw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qSIpiNtTlw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qSIpiNtTlw .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qSIpiNtTlw .navbar-expand {
    flex-direction: column;
  }
  .cid-qSIpiNtTlw img {
    height: 3.8rem !important;
  }
  .cid-qSIpiNtTlw .btn {
    display: flex;
  }
  .cid-qSIpiNtTlw button.navbar-toggler {
    display: block;
  }
  .cid-qSIpiNtTlw .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qSIpiNtTlw .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qSIpiNtTlw .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qSIpiNtTlw .navbar-collapse.collapsing,
  .cid-qSIpiNtTlw .navbar-collapse.show {
    display: block !important;
  }
  .cid-qSIpiNtTlw .navbar-collapse.collapsing .navbar-nav,
  .cid-qSIpiNtTlw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qSIpiNtTlw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qSIpiNtTlw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qSIpiNtTlw .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qSIpiNtTlw .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIpiNtTlw .navbar-collapse.collapsing .navbar-buttons,
  .cid-qSIpiNtTlw .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qSIpiNtTlw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qSIpiNtTlw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIpiNtTlw .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qSIpiNtTlw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qSIpiNtTlw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qSIpiNtTlw .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-qSIpiNtTlw .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qSIpiNtTlw .navbar-collapse {
  flex-basis: auto;
}
.cid-qSIpiNtTlw .nav-link:hover,
.cid-qSIpiNtTlw .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qSIpiO4VPb {
  background-image: url("../../../assets/images/wag-web-home-small-2-1286x915.jpg");
}
.cid-qSIpiO4VPb H1 {
  text-align: left;
  color: #91dd9f;
}
.cid-qSIpiO4VPb H3 {
  text-align: left;
  color: #e27d40;
}
.cid-qSIpiO4VPb .mbr-text,
.cid-qSIpiO4VPb .mbr-section-btn {
  text-align: left;
  color: #f9f295;
}
.cid-qSIpiO4VPb I {
  color: #ffffff;
}
.cid-qSIpiO4VPb SPAN {
  color: #e27d40;
}
.cid-qSIpiO4VPb B {
  color: #e27d40;
}
.cid-qSIpiOSFjb {
  padding-top: 90px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/0-aronbuste-375x279.png");
}
.cid-qSIpiPLBCj {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIpiPLBCj .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIpiPLBCj .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qSIpiPLBCj .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIpiPLBCj .mbr-text B {
  color: #004d00;
}
.cid-qSIpiQphhS {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIpiQphhS .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIpiQphhS .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIpiQphhS .mbr-text {
  color: #767676;
}
.cid-qSIpiQphhS .mbr-text B {
  color: #004d00;
}
.cid-qSIpiQZFeT {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIpiQZFeT .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIpiQZFeT .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIpiQZFeT .mbr-text {
  color: #767676;
}
.cid-qSIpiQZFeT .mbr-text B {
  color: #004d00;
}
.cid-qSIpiRxfIA {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qSIpiSiaij {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIpiSiaij .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIpiSiaij H2 {
  color: #ffffff;
}
.cid-qSIpiSOg4T {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-qSIpiSOg4T .mbr-text,
.cid-qSIpiSOg4T blockquote {
  color: #767676;
}
.cid-qSIpiSOg4T .mbr-text {
  color: #232323;
}
.cid-qSIpiSOg4T .mbr-text P {
  color: #004d00;
}
.cid-qSIpiTe7Gn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIpiTe7Gn .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIpiTe7Gn H2 {
  color: #ffffff;
}
.cid-qSIpiTLTwX {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/03.jpg");
}
.cid-qSIpiTLTwX .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-qSIpiTLTwX .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #ffffff;
  margin-left: 2rem;
}
.cid-qSIpiTLTwX .timeline-text-content p {
  margin-bottom: 0;
}
.cid-qSIpiTLTwX .time-line-date-content {
  margin-right: 2rem;
}
.cid-qSIpiTLTwX .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #ffffff;
  float: right;
}
.cid-qSIpiTLTwX .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-qSIpiTLTwX .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-qSIpiTLTwX .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-qSIpiTLTwX .mbr-timeline-date,
.cid-qSIpiTLTwX .timeline-text-content {
  transition: all .4s;
}
.cid-qSIpiTLTwX .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-qSIpiTLTwX .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-qSIpiTLTwX .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-qSIpiTLTwX .reverse .time-line-date-content p {
  float: left;
}
.cid-qSIpiTLTwX .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #ffffff;
  top: 20px;
  margin-left: -10px;
}
.cid-qSIpiTLTwX .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #ffffff;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-qSIpiTLTwX .iconBackground {
    left: 0 !important;
  }
  .cid-qSIpiTLTwX .separline:before {
    left: 0!important;
  }
  .cid-qSIpiTLTwX .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-qSIpiTLTwX .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-qSIpiTLTwX .time-line-date-content p {
    float: left !important;
  }
  .cid-qSIpiTLTwX .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-qSIpiTLTwX .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-qSIpiTLTwX .mbr-timeline-title {
  color: #003300;
}
.cid-qSIpiTLTwX .mbr-timeline-date {
  color: #767676;
}
.cid-qSIpiUUiQZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIpiUUiQZ .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIpiUUiQZ H2 {
  color: #ffffff;
}
.cid-qSIpiVmxq1 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1620x1080.jpg");
}
.cid-qSIpiVmxq1 .mbr-section-subtitle {
  color: #767676;
}
.cid-qSIpiVmxq1 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-qSIpiVmxq1 .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIpiVmxq1 .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-qSIpiVmxq1 .mbr-author-name {
  color: #767676;
}
.cid-qSIpiVmxq1 .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-qSIpiVmxq1 .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-qSIpiVmxq1 .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-qSIpiVmxq1 .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-qSIpiVmxq1 .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-qSIpiVmxq1 .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-qSIpiWiBKV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #004d00;
}
.cid-qSIpiWiBKV .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIpiWiBKV H2 {
  color: #ffffff;
}
.cid-qSIpiWZ5OM {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIpiWZ5OM .title {
  margin-bottom: 2rem;
}
.cid-qSIpiWZ5OM .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIpiWZ5OM a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qSIpiWZ5OM a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qSIpiWZ5OM .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qSIpiWZ5OM .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qSIpiWZ5OM LABEL {
  color: #ffffff;
}
.cid-qSIpiXC96n {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qSIpiXC96n .content {
    text-align: center;
  }
  .cid-qSIpiXC96n .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qSIpiXC96n .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qSIpiXC96n .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qSIpiXC96n .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qSIpiXC96n .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSIpiXC96n .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qSIpiXC96n .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSIpiXC96n .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qSIpiXC96n .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSIpiXC96n .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSIpiXC96n .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSIpiXC96n .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSIpiXC96n P {
  color: #7f1933;
}
.cid-qSIpiXC96n H5 {
  color: #7f1933;
}
.cid-qSIpiXC96n .copyright > p {
  text-align: right;
}
.cid-qSIqnSUNon .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qSIqnSUNon .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qSIqnSUNon a {
  font-style: normal;
}
.cid-qSIqnSUNon .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qSIqnSUNon .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qSIqnSUNon .nav-item:focus,
.cid-qSIqnSUNon .nav-link:focus {
  outline: none;
}
.cid-qSIqnSUNon .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qSIqnSUNon .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qSIqnSUNon .menu-logo {
  margin-right: auto;
}
.cid-qSIqnSUNon .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qSIqnSUNon .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qSIqnSUNon .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qSIqnSUNon .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qSIqnSUNon .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qSIqnSUNon .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qSIqnSUNon .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qSIqnSUNon .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qSIqnSUNon .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qSIqnSUNon .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qSIqnSUNon .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qSIqnSUNon .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qSIqnSUNon .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSIqnSUNon .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qSIqnSUNon .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSIqnSUNon .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-qSIqnSUNon .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qSIqnSUNon .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qSIqnSUNon .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qSIqnSUNon .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qSIqnSUNon .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qSIqnSUNon .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qSIqnSUNon button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qSIqnSUNon button.navbar-toggler:focus {
  outline: none;
}
.cid-qSIqnSUNon button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSIqnSUNon button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSIqnSUNon button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIqnSUNon button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIqnSUNon button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSIqnSUNon nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIqnSUNon nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSIqnSUNon nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSIqnSUNon nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIqnSUNon .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qSIqnSUNon .collapsed .btn {
  display: flex;
}
.cid-qSIqnSUNon .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qSIqnSUNon .collapsed .navbar-collapse.collapsing,
.cid-qSIqnSUNon .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qSIqnSUNon .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qSIqnSUNon .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qSIqnSUNon .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qSIqnSUNon .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qSIqnSUNon .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qSIqnSUNon .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qSIqnSUNon .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qSIqnSUNon .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qSIqnSUNon .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qSIqnSUNon .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qSIqnSUNon .collapsed button.navbar-toggler {
  display: block;
}
.cid-qSIqnSUNon .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qSIqnSUNon .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qSIqnSUNon .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qSIqnSUNon .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qSIqnSUNon .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qSIqnSUNon .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qSIqnSUNon .navbar-expand {
    flex-direction: column;
  }
  .cid-qSIqnSUNon img {
    height: 3.8rem !important;
  }
  .cid-qSIqnSUNon .btn {
    display: flex;
  }
  .cid-qSIqnSUNon button.navbar-toggler {
    display: block;
  }
  .cid-qSIqnSUNon .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qSIqnSUNon .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qSIqnSUNon .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qSIqnSUNon .navbar-collapse.collapsing,
  .cid-qSIqnSUNon .navbar-collapse.show {
    display: block !important;
  }
  .cid-qSIqnSUNon .navbar-collapse.collapsing .navbar-nav,
  .cid-qSIqnSUNon .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qSIqnSUNon .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qSIqnSUNon .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qSIqnSUNon .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qSIqnSUNon .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIqnSUNon .navbar-collapse.collapsing .navbar-buttons,
  .cid-qSIqnSUNon .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qSIqnSUNon .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qSIqnSUNon .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIqnSUNon .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qSIqnSUNon .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qSIqnSUNon .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qSIqnSUNon .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-qSIqnSUNon .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qSIqnSUNon .navbar-collapse {
  flex-basis: auto;
}
.cid-qSIqnSUNon .nav-link:hover,
.cid-qSIqnSUNon .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qSIqnU5tkz {
  background-image: url("../../../assets/images/wag-web-home-small-2-1286x915.jpg");
}
.cid-qSIqnU5tkz H1 {
  text-align: left;
  color: #91dd9f;
}
.cid-qSIqnU5tkz H3 {
  text-align: left;
  color: #e27d40;
}
.cid-qSIqnU5tkz .mbr-text,
.cid-qSIqnU5tkz .mbr-section-btn {
  text-align: left;
  color: #f9f295;
}
.cid-qSIqnU5tkz I {
  color: #ffffff;
}
.cid-qSIqnU5tkz SPAN {
  color: #e27d40;
}
.cid-qSIqnU5tkz B {
  color: #e27d40;
}
.cid-qSIqnV2Xyy {
  padding-top: 90px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/0-aronbuste-375x279.png");
}
.cid-qSIqnVY8cr {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIqnVY8cr .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIqnVY8cr .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qSIqnVY8cr .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIqnVY8cr .mbr-text B {
  color: #004d00;
}
.cid-qSIqnWFr20 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIqnWFr20 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIqnWFr20 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIqnWFr20 .mbr-text {
  color: #767676;
}
.cid-qSIqnWFr20 .mbr-text B {
  color: #004d00;
}
.cid-qSIqnXnIeZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIqnXnIeZ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIqnXnIeZ .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIqnXnIeZ .mbr-text {
  color: #767676;
}
.cid-qSIqnXnIeZ .mbr-text B {
  color: #004d00;
}
.cid-qSIqnY57kF {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qSIqnYOnAN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIqnYOnAN .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIqnYOnAN H2 {
  color: #ffffff;
}
.cid-qSIqnZwJFy {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-qSIqnZwJFy .mbr-text,
.cid-qSIqnZwJFy blockquote {
  color: #767676;
}
.cid-qSIqnZwJFy .mbr-text {
  color: #232323;
}
.cid-qSIqnZwJFy .mbr-text P {
  color: #004d00;
}
.cid-qSIqo0cdOx {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIqo0cdOx .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIqo0cdOx H2 {
  color: #ffffff;
}
.cid-qSIqo0Xuti {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/03.jpg");
}
.cid-qSIqo0Xuti .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-qSIqo0Xuti .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #ffffff;
  margin-left: 2rem;
}
.cid-qSIqo0Xuti .timeline-text-content p {
  margin-bottom: 0;
}
.cid-qSIqo0Xuti .time-line-date-content {
  margin-right: 2rem;
}
.cid-qSIqo0Xuti .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #ffffff;
  float: right;
}
.cid-qSIqo0Xuti .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-qSIqo0Xuti .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-qSIqo0Xuti .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-qSIqo0Xuti .mbr-timeline-date,
.cid-qSIqo0Xuti .timeline-text-content {
  transition: all .4s;
}
.cid-qSIqo0Xuti .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-qSIqo0Xuti .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-qSIqo0Xuti .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-qSIqo0Xuti .reverse .time-line-date-content p {
  float: left;
}
.cid-qSIqo0Xuti .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #ffffff;
  top: 20px;
  margin-left: -10px;
}
.cid-qSIqo0Xuti .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #ffffff;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-qSIqo0Xuti .iconBackground {
    left: 0 !important;
  }
  .cid-qSIqo0Xuti .separline:before {
    left: 0!important;
  }
  .cid-qSIqo0Xuti .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-qSIqo0Xuti .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-qSIqo0Xuti .time-line-date-content p {
    float: left !important;
  }
  .cid-qSIqo0Xuti .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-qSIqo0Xuti .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-qSIqo0Xuti .mbr-timeline-title {
  color: #767676;
}
.cid-qSIqo0Xuti .mbr-timeline-date {
  color: #767676;
}
.cid-qSIqo3iGfi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIqo3iGfi .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIqo3iGfi H2 {
  color: #ffffff;
}
.cid-qSIqo56SPZ {
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1620x1080.jpg");
}
.cid-qSIqo56SPZ .mbr-section-subtitle {
  color: #767676;
}
.cid-qSIqo56SPZ .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-qSIqo56SPZ .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIqo56SPZ .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-qSIqo56SPZ .mbr-author-name {
  color: #767676;
}
.cid-qSIqo56SPZ .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-qSIqo56SPZ .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-qSIqo56SPZ .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-qSIqo56SPZ .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-qSIqo56SPZ .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-qSIqo56SPZ .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-qSIqo6kQMF {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #004d00;
}
.cid-qSIqo6kQMF .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIqo6kQMF H2 {
  color: #ffffff;
}
.cid-qSIqo6TIqD {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIqo6TIqD .title {
  margin-bottom: 2rem;
}
.cid-qSIqo6TIqD .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIqo6TIqD a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qSIqo6TIqD a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qSIqo6TIqD .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qSIqo6TIqD .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qSIqo6TIqD LABEL {
  color: #ffffff;
}
.cid-qSIqo7HoMq {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qSIqo7HoMq .content {
    text-align: center;
  }
  .cid-qSIqo7HoMq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qSIqo7HoMq .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qSIqo7HoMq .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qSIqo7HoMq .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qSIqo7HoMq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSIqo7HoMq .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qSIqo7HoMq .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSIqo7HoMq .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qSIqo7HoMq .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSIqo7HoMq .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSIqo7HoMq .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSIqo7HoMq .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSIqo7HoMq P {
  color: #7f1933;
}
.cid-qSIqo7HoMq H5 {
  color: #7f1933;
}
.cid-qSIqo7HoMq .copyright > p {
  text-align: right;
}
.cid-qSIqvBr10M .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qSIqvBr10M .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qSIqvBr10M a {
  font-style: normal;
}
.cid-qSIqvBr10M .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qSIqvBr10M .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qSIqvBr10M .nav-item:focus,
.cid-qSIqvBr10M .nav-link:focus {
  outline: none;
}
.cid-qSIqvBr10M .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qSIqvBr10M .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qSIqvBr10M .menu-logo {
  margin-right: auto;
}
.cid-qSIqvBr10M .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qSIqvBr10M .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qSIqvBr10M .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qSIqvBr10M .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qSIqvBr10M .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qSIqvBr10M .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qSIqvBr10M .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qSIqvBr10M .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qSIqvBr10M .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qSIqvBr10M .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qSIqvBr10M .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qSIqvBr10M .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qSIqvBr10M .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSIqvBr10M .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qSIqvBr10M .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSIqvBr10M .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-qSIqvBr10M .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qSIqvBr10M .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qSIqvBr10M .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qSIqvBr10M .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qSIqvBr10M .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qSIqvBr10M .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qSIqvBr10M button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qSIqvBr10M button.navbar-toggler:focus {
  outline: none;
}
.cid-qSIqvBr10M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSIqvBr10M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSIqvBr10M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIqvBr10M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIqvBr10M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSIqvBr10M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIqvBr10M nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSIqvBr10M nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSIqvBr10M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIqvBr10M .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qSIqvBr10M .collapsed .btn {
  display: flex;
}
.cid-qSIqvBr10M .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qSIqvBr10M .collapsed .navbar-collapse.collapsing,
.cid-qSIqvBr10M .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qSIqvBr10M .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qSIqvBr10M .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qSIqvBr10M .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qSIqvBr10M .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qSIqvBr10M .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qSIqvBr10M .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qSIqvBr10M .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qSIqvBr10M .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qSIqvBr10M .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qSIqvBr10M .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qSIqvBr10M .collapsed button.navbar-toggler {
  display: block;
}
.cid-qSIqvBr10M .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qSIqvBr10M .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qSIqvBr10M .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qSIqvBr10M .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qSIqvBr10M .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qSIqvBr10M .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qSIqvBr10M .navbar-expand {
    flex-direction: column;
  }
  .cid-qSIqvBr10M img {
    height: 3.8rem !important;
  }
  .cid-qSIqvBr10M .btn {
    display: flex;
  }
  .cid-qSIqvBr10M button.navbar-toggler {
    display: block;
  }
  .cid-qSIqvBr10M .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qSIqvBr10M .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qSIqvBr10M .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qSIqvBr10M .navbar-collapse.collapsing,
  .cid-qSIqvBr10M .navbar-collapse.show {
    display: block !important;
  }
  .cid-qSIqvBr10M .navbar-collapse.collapsing .navbar-nav,
  .cid-qSIqvBr10M .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qSIqvBr10M .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qSIqvBr10M .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qSIqvBr10M .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qSIqvBr10M .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIqvBr10M .navbar-collapse.collapsing .navbar-buttons,
  .cid-qSIqvBr10M .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qSIqvBr10M .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qSIqvBr10M .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIqvBr10M .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qSIqvBr10M .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qSIqvBr10M .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qSIqvBr10M .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-qSIqvBr10M .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qSIqvBr10M .navbar-collapse {
  flex-basis: auto;
}
.cid-qSIqvBr10M .nav-link:hover,
.cid-qSIqvBr10M .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qSIqvCa0e5 {
  background-image: url("../../../assets/images/wag-web-home-small-2-1286x915.jpg");
}
.cid-qSIqvCa0e5 H1 {
  text-align: left;
  color: #91dd9f;
}
.cid-qSIqvCa0e5 H3 {
  text-align: left;
  color: #e27d40;
}
.cid-qSIqvCa0e5 .mbr-text,
.cid-qSIqvCa0e5 .mbr-section-btn {
  text-align: left;
  color: #f9f295;
}
.cid-qSIqvCa0e5 I {
  color: #ffffff;
}
.cid-qSIqvCa0e5 SPAN {
  color: #e27d40;
}
.cid-qSIqvCa0e5 B {
  color: #e27d40;
}
.cid-qSIqvCWV9i {
  padding-top: 90px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/0-aronbuste-375x279.png");
}
.cid-qSIqvDX3RE {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIqvDX3RE .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIqvDX3RE .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qSIqvDX3RE .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIqvDX3RE .mbr-text B {
  color: #004d00;
}
.cid-qSIqvEEsos {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIqvEEsos .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIqvEEsos .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIqvEEsos .mbr-text {
  color: #767676;
}
.cid-qSIqvEEsos .mbr-text B {
  color: #004d00;
}
.cid-qSIqvFmtWG {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIqvFmtWG .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIqvFmtWG .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIqvFmtWG .mbr-text {
  color: #767676;
}
.cid-qSIqvFmtWG .mbr-text B {
  color: #004d00;
}
.cid-qSIqvFTwxE {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qSIqvGtrPi {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIqvGtrPi .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIqvGtrPi H2 {
  color: #ffffff;
}
.cid-qSIqvHeWW9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-qSIqvHeWW9 .mbr-text,
.cid-qSIqvHeWW9 blockquote {
  color: #767676;
}
.cid-qSIqvHeWW9 .mbr-text {
  color: #232323;
}
.cid-qSIqvHeWW9 .mbr-text P {
  color: #004d00;
}
.cid-qSIqvHQcKN {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIqvHQcKN .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIqvHQcKN H2 {
  color: #ffffff;
}
.cid-qSIqvICXS3 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/03.jpg");
}
.cid-qSIqvICXS3 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-qSIqvICXS3 .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #ffffff;
  margin-left: 2rem;
}
.cid-qSIqvICXS3 .timeline-text-content p {
  margin-bottom: 0;
}
.cid-qSIqvICXS3 .time-line-date-content {
  margin-right: 2rem;
}
.cid-qSIqvICXS3 .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #ffffff;
  float: right;
}
.cid-qSIqvICXS3 .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-qSIqvICXS3 .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-qSIqvICXS3 .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-qSIqvICXS3 .mbr-timeline-date,
.cid-qSIqvICXS3 .timeline-text-content {
  transition: all .4s;
}
.cid-qSIqvICXS3 .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-qSIqvICXS3 .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-qSIqvICXS3 .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-qSIqvICXS3 .reverse .time-line-date-content p {
  float: left;
}
.cid-qSIqvICXS3 .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #ffffff;
  top: 20px;
  margin-left: -10px;
}
.cid-qSIqvICXS3 .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #ffffff;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-qSIqvICXS3 .iconBackground {
    left: 0 !important;
  }
  .cid-qSIqvICXS3 .separline:before {
    left: 0!important;
  }
  .cid-qSIqvICXS3 .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-qSIqvICXS3 .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-qSIqvICXS3 .time-line-date-content p {
    float: left !important;
  }
  .cid-qSIqvICXS3 .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-qSIqvICXS3 .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-qSIqvICXS3 .mbr-timeline-title {
  color: #767676;
}
.cid-qSIqvICXS3 .mbr-timeline-date {
  color: #767676;
}
.cid-qSIqvKEvE7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIqvKEvE7 .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIqvKEvE7 H2 {
  color: #ffffff;
}
.cid-qSIqvM8AmS {
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1620x1080.jpg");
}
.cid-qSIqvM8AmS .mbr-section-subtitle {
  color: #767676;
}
.cid-qSIqvM8AmS .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-qSIqvM8AmS .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIqvM8AmS .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-qSIqvM8AmS .mbr-author-name {
  color: #767676;
}
.cid-qSIqvM8AmS .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-qSIqvM8AmS .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-qSIqvM8AmS .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-qSIqvM8AmS .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-qSIqvM8AmS .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-qSIqvM8AmS .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-qSIqvOautv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #004d00;
}
.cid-qSIqvOautv .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIqvOautv H2 {
  color: #ffffff;
}
.cid-qSIqvOKTke {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIqvOKTke .title {
  margin-bottom: 2rem;
}
.cid-qSIqvOKTke .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIqvOKTke a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qSIqvOKTke a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qSIqvOKTke .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qSIqvOKTke .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qSIqvOKTke LABEL {
  color: #ffffff;
}
.cid-qSIqvPrphH {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qSIqvPrphH .content {
    text-align: center;
  }
  .cid-qSIqvPrphH .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qSIqvPrphH .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qSIqvPrphH .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qSIqvPrphH .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qSIqvPrphH .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSIqvPrphH .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qSIqvPrphH .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSIqvPrphH .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qSIqvPrphH .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSIqvPrphH .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSIqvPrphH .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSIqvPrphH .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSIqvPrphH P {
  color: #7f1933;
}
.cid-qSIqvPrphH H5 {
  color: #7f1933;
}
.cid-qSIqvPrphH .copyright > p {
  text-align: right;
}
.cid-qSIqKYi2pM {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIqKYi2pM .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIqKYi2pM .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qSIqKYi2pM .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIqKYi2pM .mbr-text B {
  color: #004d00;
}
.cid-qSIqPLh3Fa .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qSIqPLh3Fa .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qSIqPLh3Fa a {
  font-style: normal;
}
.cid-qSIqPLh3Fa .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qSIqPLh3Fa .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qSIqPLh3Fa .nav-item:focus,
.cid-qSIqPLh3Fa .nav-link:focus {
  outline: none;
}
.cid-qSIqPLh3Fa .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qSIqPLh3Fa .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qSIqPLh3Fa .menu-logo {
  margin-right: auto;
}
.cid-qSIqPLh3Fa .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qSIqPLh3Fa .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qSIqPLh3Fa .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qSIqPLh3Fa .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qSIqPLh3Fa .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qSIqPLh3Fa .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qSIqPLh3Fa .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qSIqPLh3Fa .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qSIqPLh3Fa .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qSIqPLh3Fa .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qSIqPLh3Fa .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qSIqPLh3Fa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qSIqPLh3Fa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSIqPLh3Fa .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qSIqPLh3Fa .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSIqPLh3Fa .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-qSIqPLh3Fa .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qSIqPLh3Fa .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qSIqPLh3Fa .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qSIqPLh3Fa .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qSIqPLh3Fa .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qSIqPLh3Fa .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qSIqPLh3Fa button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qSIqPLh3Fa button.navbar-toggler:focus {
  outline: none;
}
.cid-qSIqPLh3Fa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSIqPLh3Fa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSIqPLh3Fa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIqPLh3Fa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIqPLh3Fa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSIqPLh3Fa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIqPLh3Fa nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSIqPLh3Fa nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSIqPLh3Fa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIqPLh3Fa .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qSIqPLh3Fa .collapsed .btn {
  display: flex;
}
.cid-qSIqPLh3Fa .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qSIqPLh3Fa .collapsed .navbar-collapse.collapsing,
.cid-qSIqPLh3Fa .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qSIqPLh3Fa .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qSIqPLh3Fa .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qSIqPLh3Fa .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qSIqPLh3Fa .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qSIqPLh3Fa .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qSIqPLh3Fa .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qSIqPLh3Fa .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qSIqPLh3Fa .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qSIqPLh3Fa .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qSIqPLh3Fa .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qSIqPLh3Fa .collapsed button.navbar-toggler {
  display: block;
}
.cid-qSIqPLh3Fa .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qSIqPLh3Fa .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qSIqPLh3Fa .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qSIqPLh3Fa .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qSIqPLh3Fa .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qSIqPLh3Fa .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qSIqPLh3Fa .navbar-expand {
    flex-direction: column;
  }
  .cid-qSIqPLh3Fa img {
    height: 3.8rem !important;
  }
  .cid-qSIqPLh3Fa .btn {
    display: flex;
  }
  .cid-qSIqPLh3Fa button.navbar-toggler {
    display: block;
  }
  .cid-qSIqPLh3Fa .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qSIqPLh3Fa .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qSIqPLh3Fa .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qSIqPLh3Fa .navbar-collapse.collapsing,
  .cid-qSIqPLh3Fa .navbar-collapse.show {
    display: block !important;
  }
  .cid-qSIqPLh3Fa .navbar-collapse.collapsing .navbar-nav,
  .cid-qSIqPLh3Fa .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qSIqPLh3Fa .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qSIqPLh3Fa .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qSIqPLh3Fa .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qSIqPLh3Fa .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIqPLh3Fa .navbar-collapse.collapsing .navbar-buttons,
  .cid-qSIqPLh3Fa .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qSIqPLh3Fa .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qSIqPLh3Fa .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIqPLh3Fa .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qSIqPLh3Fa .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qSIqPLh3Fa .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qSIqPLh3Fa .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-qSIqPLh3Fa .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qSIqPLh3Fa .navbar-collapse {
  flex-basis: auto;
}
.cid-qSIqPLh3Fa .nav-link:hover,
.cid-qSIqPLh3Fa .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qSIqPM3z7n {
  background-image: url("../../../assets/images/wag-web-home-small-2-1286x915.jpg");
}
.cid-qSIqPM3z7n H1 {
  text-align: left;
  color: #91dd9f;
}
.cid-qSIqPM3z7n H3 {
  text-align: left;
  color: #e27d40;
}
.cid-qSIqPM3z7n .mbr-text,
.cid-qSIqPM3z7n .mbr-section-btn {
  text-align: left;
  color: #f9f295;
}
.cid-qSIqPM3z7n I {
  color: #ffffff;
}
.cid-qSIqPM3z7n SPAN {
  color: #e27d40;
}
.cid-qSIqPM3z7n B {
  color: #e27d40;
}
.cid-qSIqPMVmYp {
  padding-top: 90px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/0-aronbuste-375x279.png");
}
.cid-qSIqPNGo6o {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIqPNGo6o .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIqPNGo6o .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qSIqPNGo6o .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIqPNGo6o .mbr-text B {
  color: #004d00;
}
.cid-qSIqPOfIC7 {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIqPOfIC7 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIqPOfIC7 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIqPOfIC7 .mbr-text {
  color: #767676;
}
.cid-qSIqPOfIC7 .mbr-text B {
  color: #004d00;
}
.cid-qSIqPOPINd {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIqPOPINd .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIqPOPINd .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIqPOPINd .mbr-text {
  color: #767676;
}
.cid-qSIqPOPINd .mbr-text B {
  color: #004d00;
}
.cid-qSIqPPpZbw {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qSIqPPXPxK {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIqPPXPxK .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIqPPXPxK H2 {
  color: #ffffff;
}
.cid-qSIqPQuxrB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-qSIqPQuxrB .mbr-text,
.cid-qSIqPQuxrB blockquote {
  color: #767676;
}
.cid-qSIqPQuxrB .mbr-text {
  color: #232323;
}
.cid-qSIqPQuxrB .mbr-text P {
  color: #004d00;
}
.cid-qSIqPR1A9T {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIqPR1A9T .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIqPR1A9T H2 {
  color: #ffffff;
}
.cid-qSIqPRMWFO {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/03.jpg");
}
.cid-qSIqPRMWFO .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-qSIqPRMWFO .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #ffffff;
  margin-left: 2rem;
}
.cid-qSIqPRMWFO .timeline-text-content p {
  margin-bottom: 0;
}
.cid-qSIqPRMWFO .time-line-date-content {
  margin-right: 2rem;
}
.cid-qSIqPRMWFO .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #ffffff;
  float: right;
}
.cid-qSIqPRMWFO .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-qSIqPRMWFO .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-qSIqPRMWFO .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-qSIqPRMWFO .mbr-timeline-date,
.cid-qSIqPRMWFO .timeline-text-content {
  transition: all .4s;
}
.cid-qSIqPRMWFO .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-qSIqPRMWFO .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-qSIqPRMWFO .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-qSIqPRMWFO .reverse .time-line-date-content p {
  float: left;
}
.cid-qSIqPRMWFO .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #ffffff;
  top: 20px;
  margin-left: -10px;
}
.cid-qSIqPRMWFO .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #ffffff;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-qSIqPRMWFO .iconBackground {
    left: 0 !important;
  }
  .cid-qSIqPRMWFO .separline:before {
    left: 0!important;
  }
  .cid-qSIqPRMWFO .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-qSIqPRMWFO .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-qSIqPRMWFO .time-line-date-content p {
    float: left !important;
  }
  .cid-qSIqPRMWFO .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-qSIqPRMWFO .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-qSIqPRMWFO .mbr-timeline-title {
  color: #767676;
}
.cid-qSIqPRMWFO .mbr-timeline-date {
  color: #767676;
}
.cid-qSIqPT2Lcv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIqPT2Lcv .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIqPT2Lcv H2 {
  color: #ffffff;
}
.cid-qSIqPTAP39 {
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1620x1080.jpg");
}
.cid-qSIqPTAP39 .mbr-section-subtitle {
  color: #767676;
}
.cid-qSIqPTAP39 .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-qSIqPTAP39 .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIqPTAP39 .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-qSIqPTAP39 .mbr-author-name {
  color: #767676;
}
.cid-qSIqPTAP39 .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-qSIqPTAP39 .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-qSIqPTAP39 .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-qSIqPTAP39 .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-qSIqPTAP39 .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-qSIqPTAP39 .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-qSIqPUH9Um {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #004d00;
}
.cid-qSIqPUH9Um .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIqPUH9Um H2 {
  color: #ffffff;
}
.cid-qSIqPVkMnE {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIqPVkMnE .title {
  margin-bottom: 2rem;
}
.cid-qSIqPVkMnE .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIqPVkMnE a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qSIqPVkMnE a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qSIqPVkMnE .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qSIqPVkMnE .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qSIqPVkMnE LABEL {
  color: #ffffff;
}
.cid-qSIqPWggJc {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qSIqPWggJc .content {
    text-align: center;
  }
  .cid-qSIqPWggJc .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qSIqPWggJc .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qSIqPWggJc .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qSIqPWggJc .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qSIqPWggJc .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSIqPWggJc .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qSIqPWggJc .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSIqPWggJc .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qSIqPWggJc .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSIqPWggJc .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSIqPWggJc .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSIqPWggJc .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSIqPWggJc P {
  color: #7f1933;
}
.cid-qSIqPWggJc H5 {
  color: #7f1933;
}
.cid-qSIqPWggJc .copyright > p {
  text-align: right;
}
.cid-qSIqTBU6NO {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIqTBU6NO .line {
  background-color: #e27d40;
  color: #e27d40;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qSIqTBU6NO .section-text {
  padding: 2rem 0;
  color: #e27d40;
}
.cid-qSIqTBU6NO .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qSIqTBU6NO .inner-container {
    width: 100% !important;
  }
}
.cid-qSIqTCsc9X {
  background-image: url("../../../assets/images/0-stauffenbergbuste-374x279.png");
}
.cid-qSIqTCsc9X H1 {
  text-align: left;
}
.cid-qSIqTCsc9X H3 {
  text-align: left;
}
.cid-qSIqTDhdts {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1618x1080.jpg");
}
.cid-qSIqTDhdts .card-box {
  padding: 0 2rem;
}
.cid-qSIqTDhdts .mbr-section-btn {
  padding-top: 1rem;
}
.cid-qSIqTDhdts .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-qSIqTDhdts h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-qSIqTDhdts p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-qSIqTDhdts .mbr-text {
  color: #767676;
  text-align: center;
}
.cid-qSIqTDhdts .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-qSIqTDhdts .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-qSIqTDhdts .card-title {
  text-align: center;
}
.cid-qSIqTDhdts .card-title B {
  color: #004d00;
}
.cid-qSIqTElEc8 .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qSIqTElEc8 .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qSIqTElEc8 a {
  font-style: normal;
}
.cid-qSIqTElEc8 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qSIqTElEc8 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qSIqTElEc8 .nav-item:focus,
.cid-qSIqTElEc8 .nav-link:focus {
  outline: none;
}
.cid-qSIqTElEc8 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qSIqTElEc8 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qSIqTElEc8 .menu-logo {
  margin-right: auto;
}
.cid-qSIqTElEc8 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qSIqTElEc8 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qSIqTElEc8 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qSIqTElEc8 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qSIqTElEc8 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qSIqTElEc8 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qSIqTElEc8 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qSIqTElEc8 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qSIqTElEc8 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qSIqTElEc8 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qSIqTElEc8 .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qSIqTElEc8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qSIqTElEc8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSIqTElEc8 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qSIqTElEc8 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSIqTElEc8 .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-qSIqTElEc8 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qSIqTElEc8 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qSIqTElEc8 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qSIqTElEc8 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qSIqTElEc8 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qSIqTElEc8 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qSIqTElEc8 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qSIqTElEc8 button.navbar-toggler:focus {
  outline: none;
}
.cid-qSIqTElEc8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSIqTElEc8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSIqTElEc8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIqTElEc8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIqTElEc8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSIqTElEc8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIqTElEc8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSIqTElEc8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSIqTElEc8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIqTElEc8 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qSIqTElEc8 .collapsed .btn {
  display: flex;
}
.cid-qSIqTElEc8 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qSIqTElEc8 .collapsed .navbar-collapse.collapsing,
.cid-qSIqTElEc8 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qSIqTElEc8 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qSIqTElEc8 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qSIqTElEc8 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qSIqTElEc8 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qSIqTElEc8 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qSIqTElEc8 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qSIqTElEc8 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qSIqTElEc8 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qSIqTElEc8 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qSIqTElEc8 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qSIqTElEc8 .collapsed button.navbar-toggler {
  display: block;
}
.cid-qSIqTElEc8 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qSIqTElEc8 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qSIqTElEc8 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qSIqTElEc8 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qSIqTElEc8 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qSIqTElEc8 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qSIqTElEc8 .navbar-expand {
    flex-direction: column;
  }
  .cid-qSIqTElEc8 img {
    height: 3.8rem !important;
  }
  .cid-qSIqTElEc8 .btn {
    display: flex;
  }
  .cid-qSIqTElEc8 button.navbar-toggler {
    display: block;
  }
  .cid-qSIqTElEc8 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qSIqTElEc8 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qSIqTElEc8 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qSIqTElEc8 .navbar-collapse.collapsing,
  .cid-qSIqTElEc8 .navbar-collapse.show {
    display: block !important;
  }
  .cid-qSIqTElEc8 .navbar-collapse.collapsing .navbar-nav,
  .cid-qSIqTElEc8 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qSIqTElEc8 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qSIqTElEc8 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qSIqTElEc8 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qSIqTElEc8 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIqTElEc8 .navbar-collapse.collapsing .navbar-buttons,
  .cid-qSIqTElEc8 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qSIqTElEc8 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qSIqTElEc8 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIqTElEc8 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qSIqTElEc8 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qSIqTElEc8 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qSIqTElEc8 .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-qSIqTElEc8 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qSIqTElEc8 .navbar-collapse {
  flex-basis: auto;
}
.cid-qSIqTElEc8 .nav-link:hover,
.cid-qSIqTElEc8 .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qSIqTEVo6W {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIqTEVo6W .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIqTEVo6W H2 {
  color: #ffffff;
}
.cid-qSIqTFsm1e {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qSIqTFsm1e .mbr-text,
.cid-qSIqTFsm1e blockquote {
  color: #767676;
}
.cid-qSIqTFsm1e .mbr-text {
  color: #232323;
}
.cid-qSIqTFYoqO {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIqTFYoqO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIqTFYoqO H2 {
  color: #ffffff;
}
.cid-qSIqTGD2tC {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qSIqTGD2tC .mbr-text,
.cid-qSIqTGD2tC blockquote {
  color: #767676;
}
.cid-qSIqTGD2tC .mbr-text {
  color: #232323;
}
.cid-qSIqTHbcTE {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIqTHbcTE .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIqTHbcTE H2 {
  color: #ffffff;
}
.cid-qSIqTHJttf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qSIqTHJttf .mbr-section-subtitle {
  color: #767676;
}
.cid-qSIqTHJttf .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-qSIqTHJttf .mbr-text {
  color: #767676;
}
.cid-qSIqTHJttf .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-qSIqTHJttf .mbr-author-name {
  color: #004d00;
}
.cid-qSIqTHJttf .mbr-testimonial .panel-item {
  background-color: #c1c1c1;
}
.cid-qSIqTHJttf .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-qSIqTHJttf .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-qSIqTHJttf .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-qSIqTHJttf .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-qSIqTHJttf .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-qSIqTIL3V0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-qSIqTIL3V0 .mbr-text,
.cid-qSIqTIL3V0 blockquote {
  color: #767676;
}
.cid-qSIqTIL3V0 .mbr-text {
  color: #232323;
}
.cid-qSIqTIL3V0 .mbr-text P {
  color: #004d00;
}
.cid-qSIqTJgFZQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qSIqTJgFZQ .mbr-text,
.cid-qSIqTJgFZQ blockquote {
  color: #767676;
}
.cid-qSIqTJgFZQ .mbr-text {
  color: #232323;
}
.cid-qSIqTJgFZQ .mbr-text P {
  color: #004d00;
}
.cid-qSIqTJJU3T {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIqTJJU3T .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIqTJJU3T H2 {
  color: #ffffff;
}
.cid-qSIqTKkhPn {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-qSIqTKkhPn .mbr-text,
.cid-qSIqTKkhPn blockquote {
  color: #767676;
}
.cid-qSIqTKkhPn .mbr-text {
  color: #232323;
}
.cid-qSIqTKkhPn .mbr-text P {
  text-align: center;
  color: #ff3366;
}
.cid-qSIqTKQxXf {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qSIqTKQxXf .content {
    text-align: center;
  }
  .cid-qSIqTKQxXf .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qSIqTKQxXf .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qSIqTKQxXf .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qSIqTKQxXf .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qSIqTKQxXf .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSIqTKQxXf .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qSIqTKQxXf .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSIqTKQxXf .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qSIqTKQxXf .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSIqTKQxXf .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSIqTKQxXf .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSIqTKQxXf .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSIqTKQxXf P {
  color: #7f1933;
}
.cid-qSIqTKQxXf H5 {
  color: #7f1933;
}
.cid-qSIqTKQxXf .copyright > p {
  text-align: right;
}
.cid-qSIr5rJ5bc {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIr5rJ5bc .line {
  background-color: #e27d40;
  color: #e27d40;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qSIr5rJ5bc .section-text {
  padding: 2rem 0;
  color: #e27d40;
}
.cid-qSIr5rJ5bc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qSIr5rJ5bc .inner-container {
    width: 100% !important;
  }
}
.cid-qSIr5ss37P {
  background-image: url("../../../assets/images/wilhelm-aron-2-663x1070.jpg");
}
.cid-qSIr5ss37P H1 {
  text-align: left;
}
.cid-qSIr5tN9u3 {
  padding-top: 105px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1-720x1080.jpg");
}
.cid-qSIr5tN9u3 .mbr-section-subtitle {
  color: #767676;
}
.cid-qSIr5tN9u3 .mbr-text {
  color: #767676;
}
.cid-qSIr5tN9u3 .card {
  display: flex;
  position: relative;
  justify-content: center;
}
.cid-qSIr5tN9u3 .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-qSIr5tN9u3 .card-wrapper .card-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.cid-qSIr5tN9u3 .card-wrapper .card-img .mbr-overlay {
  background-color: #efefef;
  display: none;
  transition: opacity .3s;
}
.cid-qSIr5tN9u3 .card-wrapper .card-img .mbr-section-btn {
  display: flex;
  position: absolute;
  transition: opacity .3s;
  width: 100%;
  margin: auto;
  left: 0;
  justify-content: center;
  align-items: center;
}
.cid-qSIr5tN9u3 .card-wrapper .card-img img {
  width: 100%;
  height: 100%;
}
.cid-qSIr5tN9u3 .card-wrapper .card-box {
  background-color: #ffffff;
  padding: 0 2rem 2rem 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cid-qSIr5tN9u3 .card-wrapper .card-box h4 {
  font-weight: 500;
  margin-bottom: 0;
  padding-top: 2rem;
}
.cid-qSIr5tN9u3 .card-wrapper .card-box p {
  margin-bottom: 0;
  padding-top: 1.5rem;
}
.cid-qSIr5tN9u3 .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-qSIr5tN9u3 .popup-btn .mbr-overlay {
  display: block !important;
  opacity: 0;
}
.cid-qSIr5tN9u3 .popup-btn .mbr-section-btn {
  height: 100%;
  display: flex !important;
  opacity: 0;
}
.cid-qSIr5tN9u3 .popup-btn:hover .mbr-overlay {
  opacity: .5;
}
.cid-qSIr5tN9u3 .popup-btn:hover .mbr-section-btn {
  opacity: 1;
}
.cid-qSIr5tN9u3 .card-title {
  text-align: center;
}
.cid-qSIr5tN9u3 .card-title B {
  color: #004d00;
}
.cid-qSIr5w6fYF {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIr5w6fYF .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIr5w6fYF H2 {
  color: #ffffff;
}
.cid-qSIr5x1TLr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-qSIr5x1TLr h3 {
  font-weight: 300;
}
.cid-qSIr5x1TLr .card-img {
  width: initial;
}
.cid-qSIr5x1TLr .card-img .mbr-iconfont {
  font-size: 48px;
  padding-right: 1rem;
}
.cid-qSIr5x1TLr .media-container-row {
  word-wrap: break-word;
  padding-bottom: 2rem;
  height: 100%;
}
.cid-qSIr5x1TLr .media {
  margin: initial;
  align-items: center;
}
.cid-qSIr5x1TLr .mbr-section-subtitle {
  color: #767676;
}
.cid-qSIr5x1TLr .mbr-text {
  color: #767676;
}
.cid-qSIr5x1TLr .media-container-column {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qSIr5yrjAf {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-qSIr5yrjAf .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qSIr5yrjAf .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qSIr5yrjAf .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qSIr5yrjAf .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qSIr5yrjAf .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qSIr5yrjAf .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qSIr5yrjAf .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qSIr5yrjAf .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qSIr5yrjAf .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qSIr5zQvas {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qSIr5zQvas .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIr5AnL57 .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qSIr5AnL57 .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qSIr5AnL57 a {
  font-style: normal;
}
.cid-qSIr5AnL57 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qSIr5AnL57 .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qSIr5AnL57 .nav-item:focus,
.cid-qSIr5AnL57 .nav-link:focus {
  outline: none;
}
.cid-qSIr5AnL57 .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qSIr5AnL57 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qSIr5AnL57 .menu-logo {
  margin-right: auto;
}
.cid-qSIr5AnL57 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qSIr5AnL57 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qSIr5AnL57 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qSIr5AnL57 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qSIr5AnL57 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qSIr5AnL57 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qSIr5AnL57 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qSIr5AnL57 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qSIr5AnL57 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qSIr5AnL57 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qSIr5AnL57 .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qSIr5AnL57 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qSIr5AnL57 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSIr5AnL57 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qSIr5AnL57 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSIr5AnL57 .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-qSIr5AnL57 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qSIr5AnL57 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qSIr5AnL57 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qSIr5AnL57 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qSIr5AnL57 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qSIr5AnL57 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qSIr5AnL57 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qSIr5AnL57 button.navbar-toggler:focus {
  outline: none;
}
.cid-qSIr5AnL57 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSIr5AnL57 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSIr5AnL57 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIr5AnL57 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIr5AnL57 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSIr5AnL57 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIr5AnL57 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSIr5AnL57 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSIr5AnL57 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIr5AnL57 .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qSIr5AnL57 .collapsed .btn {
  display: flex;
}
.cid-qSIr5AnL57 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qSIr5AnL57 .collapsed .navbar-collapse.collapsing,
.cid-qSIr5AnL57 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qSIr5AnL57 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qSIr5AnL57 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qSIr5AnL57 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qSIr5AnL57 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qSIr5AnL57 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qSIr5AnL57 .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qSIr5AnL57 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qSIr5AnL57 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qSIr5AnL57 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qSIr5AnL57 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qSIr5AnL57 .collapsed button.navbar-toggler {
  display: block;
}
.cid-qSIr5AnL57 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qSIr5AnL57 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qSIr5AnL57 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qSIr5AnL57 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qSIr5AnL57 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qSIr5AnL57 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qSIr5AnL57 .navbar-expand {
    flex-direction: column;
  }
  .cid-qSIr5AnL57 img {
    height: 3.8rem !important;
  }
  .cid-qSIr5AnL57 .btn {
    display: flex;
  }
  .cid-qSIr5AnL57 button.navbar-toggler {
    display: block;
  }
  .cid-qSIr5AnL57 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qSIr5AnL57 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qSIr5AnL57 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qSIr5AnL57 .navbar-collapse.collapsing,
  .cid-qSIr5AnL57 .navbar-collapse.show {
    display: block !important;
  }
  .cid-qSIr5AnL57 .navbar-collapse.collapsing .navbar-nav,
  .cid-qSIr5AnL57 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qSIr5AnL57 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qSIr5AnL57 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qSIr5AnL57 .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qSIr5AnL57 .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIr5AnL57 .navbar-collapse.collapsing .navbar-buttons,
  .cid-qSIr5AnL57 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qSIr5AnL57 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qSIr5AnL57 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIr5AnL57 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qSIr5AnL57 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qSIr5AnL57 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qSIr5AnL57 .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-qSIr5AnL57 .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qSIr5AnL57 .navbar-collapse {
  flex-basis: auto;
}
.cid-qSIr5AnL57 .nav-link:hover,
.cid-qSIr5AnL57 .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qSIr5BdTU4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIr5BdTU4 .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qSIr5BdTU4 H2 {
  color: #ffffff;
}
.cid-qSIr5D9LEl {
  padding-top: 90px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/0-0woelfelbuste-373x280.png");
}
.cid-qSIr5D9LEl .card-img {
  background-color: #fff;
}
.cid-qSIr5D9LEl .card-box {
  background-color: #ffffff;
  padding: 2rem;
}
.cid-qSIr5D9LEl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qSIr5D9LEl p {
  text-align: left;
}
.cid-qSIr5D9LEl .mbr-text {
  color: #767676;
}
.cid-qSIr5D9LEl .card-wrapper {
  height: 100%;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-qSIr5D9LEl .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
@media (min-width: 992px) {
  .cid-qSIr5D9LEl .my-col {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-qSIr5D9LEl .mbr-text I {
  color: #149dcc;
}
.cid-qSIr5D9LEl .mbr-text B {
  color: #232323;
}
.cid-qSIr5ENgUj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIr5ENgUj .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIr5ENgUj .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIr5ENgUj .mbr-text {
  color: #767676;
}
.cid-qSIr5ENgUj .mbr-text B {
  color: #004d00;
}
.cid-qSIr5Fm39j {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qSIr5Fm39j .mbr-text,
.cid-qSIr5Fm39j blockquote {
  color: #767676;
}
.cid-qSIr5Fm39j .mbr-text P {
  color: #5b686b;
}
.cid-qSIr5FV8AT {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIr5FV8AT .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIr5FV8AT .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIr5FV8AT .mbr-text {
  color: #767676;
}
.cid-qSIr5FV8AT .mbr-text B {
  color: #004d00;
}
.cid-qSIr5Gx8HY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIr5Gx8HY .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIr5Gx8HY .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qSIr5Gx8HY .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIr5H3abQ {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qSIr5H3abQ .content {
    text-align: center;
  }
  .cid-qSIr5H3abQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qSIr5H3abQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qSIr5H3abQ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qSIr5H3abQ .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qSIr5H3abQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSIr5H3abQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qSIr5H3abQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSIr5H3abQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qSIr5H3abQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSIr5H3abQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSIr5H3abQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSIr5H3abQ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSIr5H3abQ P {
  color: #7f1933;
}
.cid-qSIr5H3abQ H5 {
  color: #7f1933;
}
.cid-qSIr5H3abQ .copyright > p {
  text-align: right;
}
.cid-qSIrdbbtQs .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qSIrdbbtQs .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qSIrdbbtQs a {
  font-style: normal;
}
.cid-qSIrdbbtQs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qSIrdbbtQs .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qSIrdbbtQs .nav-item:focus,
.cid-qSIrdbbtQs .nav-link:focus {
  outline: none;
}
.cid-qSIrdbbtQs .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qSIrdbbtQs .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qSIrdbbtQs .menu-logo {
  margin-right: auto;
}
.cid-qSIrdbbtQs .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qSIrdbbtQs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qSIrdbbtQs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qSIrdbbtQs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qSIrdbbtQs .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qSIrdbbtQs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qSIrdbbtQs .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qSIrdbbtQs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qSIrdbbtQs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qSIrdbbtQs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qSIrdbbtQs .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qSIrdbbtQs .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qSIrdbbtQs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qSIrdbbtQs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qSIrdbbtQs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qSIrdbbtQs .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-qSIrdbbtQs .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qSIrdbbtQs .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qSIrdbbtQs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qSIrdbbtQs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qSIrdbbtQs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qSIrdbbtQs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qSIrdbbtQs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qSIrdbbtQs button.navbar-toggler:focus {
  outline: none;
}
.cid-qSIrdbbtQs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qSIrdbbtQs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qSIrdbbtQs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIrdbbtQs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qSIrdbbtQs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qSIrdbbtQs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIrdbbtQs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qSIrdbbtQs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qSIrdbbtQs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qSIrdbbtQs .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qSIrdbbtQs .collapsed .btn {
  display: flex;
}
.cid-qSIrdbbtQs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qSIrdbbtQs .collapsed .navbar-collapse.collapsing,
.cid-qSIrdbbtQs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qSIrdbbtQs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qSIrdbbtQs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qSIrdbbtQs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qSIrdbbtQs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qSIrdbbtQs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qSIrdbbtQs .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qSIrdbbtQs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qSIrdbbtQs .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qSIrdbbtQs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qSIrdbbtQs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qSIrdbbtQs .collapsed button.navbar-toggler {
  display: block;
}
.cid-qSIrdbbtQs .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qSIrdbbtQs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qSIrdbbtQs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qSIrdbbtQs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qSIrdbbtQs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qSIrdbbtQs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qSIrdbbtQs .navbar-expand {
    flex-direction: column;
  }
  .cid-qSIrdbbtQs img {
    height: 3.8rem !important;
  }
  .cid-qSIrdbbtQs .btn {
    display: flex;
  }
  .cid-qSIrdbbtQs button.navbar-toggler {
    display: block;
  }
  .cid-qSIrdbbtQs .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qSIrdbbtQs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qSIrdbbtQs .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qSIrdbbtQs .navbar-collapse.collapsing,
  .cid-qSIrdbbtQs .navbar-collapse.show {
    display: block !important;
  }
  .cid-qSIrdbbtQs .navbar-collapse.collapsing .navbar-nav,
  .cid-qSIrdbbtQs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qSIrdbbtQs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qSIrdbbtQs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qSIrdbbtQs .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qSIrdbbtQs .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIrdbbtQs .navbar-collapse.collapsing .navbar-buttons,
  .cid-qSIrdbbtQs .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qSIrdbbtQs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qSIrdbbtQs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qSIrdbbtQs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qSIrdbbtQs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qSIrdbbtQs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qSIrdbbtQs .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-qSIrdbbtQs .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qSIrdbbtQs .navbar-collapse {
  flex-basis: auto;
}
.cid-qSIrdbbtQs .nav-link:hover,
.cid-qSIrdbbtQs .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qSIrdc28HB {
  padding-top: 120px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIrdc28HB .line {
  background-color: #e27d40;
  color: #e27d40;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-qSIrdc28HB .section-text {
  padding: 2rem 0;
  color: #e27d40;
}
.cid-qSIrdc28HB .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-qSIrdc28HB .inner-container {
    width: 100% !important;
  }
}
.cid-qSIrdcNgB4 {
  background-image: url("../../../assets/images/0-3594926-mahnmal-gesamtansicht3-von-oben-nach-unten-woelfel-aron-stauffenberg-2016foto-bocksch-2-1200x900.jpg");
}
.cid-qSIrdcNgB4 H1 {
  text-align: left;
  color: #5b686b;
}
.cid-qSIrddyVxD {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qSIrddyVxD .mbr-text,
.cid-qSIrddyVxD blockquote {
  color: #767676;
}
.cid-qSIrddyVxD .mbr-text {
  color: #ffffff;
}
.cid-qSIrde47EG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-qSIrde47EG h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qSIrde47EG p {
  color: #767676;
  text-align: left;
}
.cid-qSIrde47EG .card-box {
  padding-top: 2rem;
}
.cid-qSIrde47EG .card-wrapper {
  height: 100%;
}
.cid-qSIrdf2tpZ {
  padding-top: 60px;
  padding-bottom: 0px;
  background: #cccccc;
}
.cid-qSIrdf2tpZ .image-block {
  margin: auto;
}
.cid-qSIrdf2tpZ figcaption {
  position: relative;
}
.cid-qSIrdf2tpZ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-qSIrdf2tpZ .image-block {
    width: 100% !important;
  }
}
.cid-qSIrdf2tpZ DIV {
  color: #003300;
}
.cid-qSIrdfxkQo {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qSIrdfxkQo .mbr-text,
.cid-qSIrdfxkQo blockquote {
  color: #767676;
}
.cid-qSIrdg4Txs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
.cid-qSIrdg4Txs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qSIrdg4Txs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qSIrdg4Txs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qSIrdg4Txs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qSIrdg4Txs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qSIrdg4Txs .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qSIrdg4Txs .mbr-gallery-item > div:hover:before {
  opacity: 0.7 !important;
}
.cid-qSIrdg4Txs .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qSIrdg4Txs .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.7;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-qSIrdhTHuA {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIrdhTHuA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIrdhTHuA H2 {
  color: #ffffff;
}
.cid-qSIrdipVqG {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
.cid-qSIrdipVqG .mbr-text,
.cid-qSIrdipVqG blockquote {
  color: #767676;
}
.cid-qSIrdipVqG .mbr-text {
  color: #232323;
}
.cid-qSIrdipVqG .mbr-text B {
  color: #232323;
}
.cid-qSIrdipVqG .mbr-text DIV {
  color: #004d00;
}
.cid-qSIrdiWcXY {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIrdiWcXY .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIrdiWcXY .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qSIrdiWcXY .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIrdiWcXY .mbr-text B {
  color: #004d00;
}
.cid-qSIrdjwG1u {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIrdjwG1u .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIrdjwG1u .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIrdjwG1u .mbr-text {
  color: #767676;
  text-align: right;
}
.cid-qSIrdjwG1u .mbr-text B {
  color: #004d00;
}
.cid-qSIrdk94xs {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIrdk94xs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIrdk94xs H2 {
  color: #ffffff;
}
.cid-qSIrdkLO4J {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIrdkLO4J .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIrdkLO4J .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIrdkLO4J .mbr-text {
  color: #767676;
  text-align: right;
}
.cid-qSIrdlrN0d {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIrdlrN0d .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIrdlrN0d .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qSIrdlrN0d .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIrdm0LSI {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIrdm0LSI .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIrdm0LSI .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qSIrdm0LSI .mbr-text {
  color: #767676;
  text-align: right;
}
.cid-qSIrdmBYIs {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIrdmBYIs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIrdmBYIs H2 {
  color: #ffffff;
}
.cid-qSIrdne2mT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qSIrdne2mT .mbr-text,
.cid-qSIrdne2mT blockquote {
  color: #767676;
}
.cid-qSIrdne2mT .mbr-text {
  color: #232323;
}
.cid-qSIrdne2mT .mbr-text B {
  color: #232323;
}
.cid-qSIrdne2mT .mbr-text DIV {
  color: #232323;
  text-align: left;
}
.cid-qSIrdnKxcu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #004d00;
}
.cid-qSIrdnKxcu .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSIrdnKxcu H2 {
  color: #ffffff;
}
.cid-qSIrdopImU {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f9f9f9;
}
.cid-qSIrdopImU h2 {
  text-align: left;
}
.cid-qSIrdopImU h4 {
  text-align: left;
  font-weight: 500;
}
.cid-qSIrdopImU p {
  color: #767676;
  text-align: left;
}
.cid-qSIrdopImU .aside-content {
  flex-basis: 100%;
}
.cid-qSIrdopImU .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-qSIrdopImU .media {
  margin: initial;
  align-items: center;
}
.cid-qSIrdopImU .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-qSIrdopImU .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-qSIrdopImU .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-qSIrdopImU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-qSIrdopImU .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-qSIrdopImU .card-img span {
    font-size: 40px !important;
  }
}
.cid-qSIrdopImU H4 {
  text-align: left;
}
.cid-qSIrdpmswG {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qSIrdpmswG .content {
    text-align: center;
  }
  .cid-qSIrdpmswG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qSIrdpmswG .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qSIrdpmswG .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qSIrdpmswG .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qSIrdpmswG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qSIrdpmswG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qSIrdpmswG .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qSIrdpmswG .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qSIrdpmswG .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qSIrdpmswG .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qSIrdpmswG .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qSIrdpmswG .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qSIrdpmswG P {
  color: #7f1933;
}
.cid-qSIrdpmswG H5 {
  color: #7f1933;
}
.cid-qSIrdpmswG .copyright > p {
  text-align: right;
}
.cid-qSIsNOy6Fq {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qSIsNOy6Fq .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qSIsNOy6Fq .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qSIsNOy6Fq .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qSIsNOy6Fq .mbr-text B {
  color: #004d00;
}
.cid-qWbYKo7tga .navbar {
  padding: .5rem 0;
  background: #003300;
  transition: none;
  min-height: 77px;
}
.cid-qWbYKo7tga .navbar-dropdown.bg-color.transparent.opened {
  background: #003300;
}
.cid-qWbYKo7tga a {
  font-style: normal;
}
.cid-qWbYKo7tga .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-qWbYKo7tga .nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-qWbYKo7tga .nav-item:focus,
.cid-qWbYKo7tga .nav-link:focus {
  outline: none;
}
.cid-qWbYKo7tga .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-qWbYKo7tga .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-qWbYKo7tga .menu-logo {
  margin-right: auto;
}
.cid-qWbYKo7tga .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-qWbYKo7tga .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-qWbYKo7tga .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-qWbYKo7tga .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-qWbYKo7tga .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-qWbYKo7tga .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-qWbYKo7tga .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-qWbYKo7tga .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-qWbYKo7tga .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-qWbYKo7tga .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-qWbYKo7tga .dropdown .dropdown-menu {
  background: #003300;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-qWbYKo7tga .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-qWbYKo7tga .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-qWbYKo7tga .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-qWbYKo7tga .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-qWbYKo7tga .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-qWbYKo7tga .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-qWbYKo7tga .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-qWbYKo7tga .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-qWbYKo7tga .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-qWbYKo7tga .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-qWbYKo7tga .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-qWbYKo7tga button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-qWbYKo7tga button.navbar-toggler:focus {
  outline: none;
}
.cid-qWbYKo7tga button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-qWbYKo7tga button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-qWbYKo7tga button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-qWbYKo7tga button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-qWbYKo7tga button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-qWbYKo7tga nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qWbYKo7tga nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-qWbYKo7tga nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-qWbYKo7tga nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-qWbYKo7tga .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-qWbYKo7tga .collapsed .btn {
  display: flex;
}
.cid-qWbYKo7tga .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-qWbYKo7tga .collapsed .navbar-collapse.collapsing,
.cid-qWbYKo7tga .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-qWbYKo7tga .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-qWbYKo7tga .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-qWbYKo7tga .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-qWbYKo7tga .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-qWbYKo7tga .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-qWbYKo7tga .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-qWbYKo7tga .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-qWbYKo7tga .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-qWbYKo7tga .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-qWbYKo7tga .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-qWbYKo7tga .collapsed button.navbar-toggler {
  display: block;
}
.cid-qWbYKo7tga .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-qWbYKo7tga .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-qWbYKo7tga .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-qWbYKo7tga .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-qWbYKo7tga .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-qWbYKo7tga .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-qWbYKo7tga .navbar-expand {
    flex-direction: column;
  }
  .cid-qWbYKo7tga img {
    height: 3.8rem !important;
  }
  .cid-qWbYKo7tga .btn {
    display: flex;
  }
  .cid-qWbYKo7tga button.navbar-toggler {
    display: block;
  }
  .cid-qWbYKo7tga .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-qWbYKo7tga .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-qWbYKo7tga .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-qWbYKo7tga .navbar-collapse.collapsing,
  .cid-qWbYKo7tga .navbar-collapse.show {
    display: block !important;
  }
  .cid-qWbYKo7tga .navbar-collapse.collapsing .navbar-nav,
  .cid-qWbYKo7tga .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-qWbYKo7tga .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-qWbYKo7tga .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-qWbYKo7tga .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-qWbYKo7tga .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-qWbYKo7tga .navbar-collapse.collapsing .navbar-buttons,
  .cid-qWbYKo7tga .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-qWbYKo7tga .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-qWbYKo7tga .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-qWbYKo7tga .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-qWbYKo7tga .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-qWbYKo7tga .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-qWbYKo7tga .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-qWbYKo7tga .menu-logo {
    flex-shrink: 0;
  }
}
.cid-qWbYKo7tga .navbar-collapse {
  flex-basis: auto;
}
.cid-qWbYKo7tga .nav-link:hover,
.cid-qWbYKo7tga .dropdown-item:hover {
  color: #ff3366 !important;
}
.cid-qWbYKoO6jk {
  background-image: url("../../../assets/images/wag-web-home-small-2-1286x915.jpg");
}
.cid-qWbYKoO6jk H1 {
  text-align: left;
  color: #91dd9f;
}
.cid-qWbYKoO6jk H3 {
  text-align: left;
  color: #e27d40;
}
.cid-qWbYKoO6jk .mbr-text,
.cid-qWbYKoO6jk .mbr-section-btn {
  text-align: left;
  color: #f9f295;
}
.cid-qWbYKoO6jk I {
  color: #ffffff;
}
.cid-qWbYKoO6jk SPAN {
  color: #e27d40;
}
.cid-qWbYKoO6jk B {
  color: #e27d40;
}
.cid-qWbYKpyLyW {
  padding-top: 90px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/0-aronbuste-375x279.png");
}
.cid-qWbYKqglYd {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qWbYKqglYd .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qWbYKqglYd .mbr-figure {
    padding-top: 1rem;
  }
}
.cid-qWbYKqglYd .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qWbYKqglYd .mbr-text B {
  color: #004d00;
}
.cid-qWbYKqSeBy {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qWbYKqSeBy .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qWbYKqSeBy .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qWbYKqSeBy .mbr-text {
  color: #767676;
}
.cid-qWbYKqSeBy .mbr-text B {
  color: #004d00;
}
.cid-qWbYKrygpl {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #cccccc;
}
@media (min-width: 992px) {
  .cid-qWbYKrygpl .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qWbYKrygpl .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qWbYKrygpl .mbr-text {
  color: #767676;
}
.cid-qWbYKrygpl .mbr-text B {
  color: #004d00;
}
.cid-qWbYKs4xNX {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
.cid-qWbYKsTx1E {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qWbYKsTx1E .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qWbYKsTx1E H2 {
  color: #ffffff;
}
.cid-qWbYKtpB5v {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-qWbYKtpB5v .mbr-text,
.cid-qWbYKtpB5v blockquote {
  color: #767676;
}
.cid-qWbYKtpB5v .mbr-text {
  color: #232323;
}
.cid-qWbYKtpB5v .mbr-text P {
  color: #004d00;
}
.cid-qWbYKtTpNv {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qWbYKtTpNv .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qWbYKtTpNv H2 {
  color: #ffffff;
}
.cid-qWbYKuvmLZ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/03.jpg");
}
.cid-qWbYKuvmLZ .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-qWbYKuvmLZ .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #ffffff;
  margin-left: 2rem;
}
.cid-qWbYKuvmLZ .timeline-text-content p {
  margin-bottom: 0;
}
.cid-qWbYKuvmLZ .time-line-date-content {
  margin-right: 2rem;
}
.cid-qWbYKuvmLZ .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #ffffff;
  float: right;
}
.cid-qWbYKuvmLZ .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-qWbYKuvmLZ .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-qWbYKuvmLZ .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-qWbYKuvmLZ .mbr-timeline-date,
.cid-qWbYKuvmLZ .timeline-text-content {
  transition: all .4s;
}
.cid-qWbYKuvmLZ .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-qWbYKuvmLZ .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-qWbYKuvmLZ .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-qWbYKuvmLZ .reverse .time-line-date-content p {
  float: left;
}
.cid-qWbYKuvmLZ .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #ffffff;
  top: 20px;
  margin-left: -10px;
}
.cid-qWbYKuvmLZ .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #ffffff;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-qWbYKuvmLZ .iconBackground {
    left: 0 !important;
  }
  .cid-qWbYKuvmLZ .separline:before {
    left: 0!important;
  }
  .cid-qWbYKuvmLZ .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-qWbYKuvmLZ .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-qWbYKuvmLZ .time-line-date-content p {
    float: left !important;
  }
  .cid-qWbYKuvmLZ .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-qWbYKuvmLZ .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-qWbYKuvmLZ .mbr-timeline-title {
  color: #767676;
}
.cid-qWbYKuvmLZ .mbr-timeline-date {
  color: #767676;
}
.cid-qWbYKvOIkC {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qWbYKvOIkC .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qWbYKvOIkC H2 {
  color: #ffffff;
}
.cid-qWbYKwqswj {
  padding-top: 15px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1620x1080.jpg");
}
.cid-qWbYKwqswj .mbr-section-subtitle {
  color: #767676;
}
.cid-qWbYKwqswj .media-container-row {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-qWbYKwqswj .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-qWbYKwqswj .mbr-author-desc {
  display: block;
  color: #767676;
}
.cid-qWbYKwqswj .mbr-author-name {
  color: #767676;
}
.cid-qWbYKwqswj .mbr-testimonial .panel-item {
  background-color: #ffffff;
}
.cid-qWbYKwqswj .mbr-testimonial .card-block {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  padding: 2.4rem 2.4rem 0 2.4rem;
}
.cid-qWbYKwqswj .mbr-testimonial .card-block .testimonial-photo {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 1.6rem;
  overflow: hidden;
  border-radius: 50%;
}
.cid-qWbYKwqswj .mbr-testimonial .card-block .testimonial-photo img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-qWbYKwqswj .mbr-testimonial .card-footer {
  padding-bottom: 2.4rem;
  border-top: 0;
  padding-top: 1rem;
  word-wrap: break-word;
  word-break: break-word;
  background: none;
}
@media (max-width: 300px) {
  .cid-qWbYKwqswj .testimonial-photo {
    width: 100% !important;
    height: auto !important;
  }
}
.cid-qWbYKxGWMn {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #004d00;
}
.cid-qWbYKxGWMn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qWbYKxGWMn H2 {
  color: #ffffff;
}
.cid-qWbYKykpVr {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #004d00;
}
.cid-qWbYKykpVr .title {
  margin-bottom: 2rem;
}
.cid-qWbYKykpVr .mbr-section-subtitle {
  color: #e27d40;
}
.cid-qWbYKykpVr a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-qWbYKykpVr a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-qWbYKykpVr .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-qWbYKykpVr .input-group-btn {
  display: block;
  text-align: center;
}
.cid-qWbYKykpVr LABEL {
  color: #ffffff;
}
.cid-qWbYKz3fFW {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-qWbYKz3fFW .content {
    text-align: center;
  }
  .cid-qWbYKz3fFW .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-qWbYKz3fFW .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-qWbYKz3fFW .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-qWbYKz3fFW .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-qWbYKz3fFW .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-qWbYKz3fFW .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-qWbYKz3fFW .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-qWbYKz3fFW .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-qWbYKz3fFW .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-qWbYKz3fFW .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-qWbYKz3fFW .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-qWbYKz3fFW .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-qWbYKz3fFW P {
  color: #7f1933;
}
.cid-qWbYKz3fFW H5 {
  color: #7f1933;
}
.cid-qWbYKz3fFW .copyright > p {
  text-align: right;
}
